feat: initial admin panel

This commit is contained in:
2026-02-19 22:13:11 +03:30
parent 70efff0dfd
commit 9aff48019d
50 changed files with 9604 additions and 1 deletions
+17
View File
@@ -0,0 +1,17 @@
'use client';
import { AuthProvider } from '@/contexts/AuthContext';
export default function AdminLayout({
children,
}: {
children: React.ReactNode;
}) {
return (
<AuthProvider>
<div className="min-h-screen bg-gray-100">
{children}
</div>
</AuthProvider>
);
}