actually adding sidebar

This commit is contained in:
Levi Planelles 2025-12-11 12:58:40 +01:00
parent 6c7cb9f2d2
commit 79aeccfd6c
1 changed files with 7 additions and 1 deletions

View File

@ -30,7 +30,13 @@ export default function RootLayout({
<body <body
className={`${geistSans.variable} ${geistMono.variable} antialiased`} className={`${geistSans.variable} ${geistMono.variable} antialiased`}
> >
{children} <SidebarProvider>
<AppSidebar />
<main>
<SidebarTrigger />
{children}
</main>
</SidebarProvider>
</body> </body>
</html> </html>
); );