This commit is contained in:
bigdeejay
2025-01-22 17:58:47 +09:00
parent ef90ee4042
commit 19a7d45b7b
63 changed files with 7108 additions and 0 deletions

15
app/dashboard/layout.tsx Normal file
View File

@@ -0,0 +1,15 @@
import React from "react";
import SideNav from "@/app/ui/dashboard/sidenav";
export const experimental_ppr = true;
export default function Layout({ children } : { children: React.ReactNode}) {
return (
<div className="flex h-screen flex-col md:flex-row md:overflow-hidden">
<div className="w-full flex-none md:w-64">
<SideNav />
</div>
<div className="flex-grow p-6 md:overflow-y-auto md:p-12">{ children }</div>
</div>
)
}