full project: admin panel, backend modules, docs

This commit is contained in:
Lizandro Guarnizo
2026-06-03 22:11:01 -05:00
parent 1635723035
commit afc096d552
94 changed files with 15994 additions and 240 deletions
+17
View File
@@ -0,0 +1,17 @@
'use client';
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 }) {
return (
<AuthProvider>
<AuthGuard>
<Sidebar>{children}</Sidebar>
<Toaster richColors />
</AuthGuard>
</AuthProvider>
);
}