a1b40e7a9c
- Updated database connection to support Turso auth token - Added vercel.json with bun build configuration - Updated environment schema for production deployment - Added new features and components for production readiness
20 lines
396 B
TypeScript
20 lines
396 B
TypeScript
import { Navbar } from "~/components/Navbar";
|
|
import { Sidebar } from "~/components/Sidebar";
|
|
|
|
export default function ClientsLayout({
|
|
children,
|
|
}: {
|
|
children: React.ReactNode;
|
|
}) {
|
|
return (
|
|
<>
|
|
<Navbar />
|
|
<div className="flex">
|
|
<Sidebar />
|
|
<main className="flex-1 min-h-screen bg-background">
|
|
{children}
|
|
</main>
|
|
</div>
|
|
</>
|
|
);
|
|
}
|