dashboard layout + implement page navigation + docs

This commit is contained in:
Michi 2025-04-19 15:03:37 +02:00
parent aa734325b4
commit aea677e6f7
6 changed files with 116 additions and 3 deletions

View file

@ -0,0 +1,14 @@
import SideNav from "@/app/ui/dashboard/sidenav";
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>
);
}