first commit

This commit is contained in:
2026-07-24 11:34:00 -03:00
commit 7ad059e613
282 changed files with 49054 additions and 0 deletions
+15
View File
@@ -0,0 +1,15 @@
'use client';
import dynamic from 'next/dynamic';
export const AdminShell = dynamic(
() => import('./admin-shell').then((mod) => mod.AdminShell),
{
ssr: false,
loading: () => (
<div className="flex h-screen items-center justify-center">
<div className="h-8 w-8 animate-spin rounded-full border-4 border-primary border-t-transparent" />
</div>
),
},
);