diff --git a/admin/src/app/layout.tsx b/admin/src/app/layout.tsx index 201f369..eb3543c 100644 --- a/admin/src/app/layout.tsx +++ b/admin/src/app/layout.tsx @@ -1,17 +1,21 @@ -'use client'; +import './globals.css'; import { AuthProvider } from '@/lib/auth'; import AuthGuard from '@/components/auth-guard'; import Sidebar from '@/components/sidebar'; import { Toaster } from '@/components/ui/sonner'; -export default function AppLayout({ children }: { children: React.ReactNode }) { +export default function RootLayout({ children }: { children: React.ReactNode }) { return ( - - - {children} - - - + + + + + {children} + + + + + ); }