diff --git a/app/admin/layout.tsx b/app/admin/layout.tsx new file mode 100644 index 0000000..b276194 --- /dev/null +++ b/app/admin/layout.tsx @@ -0,0 +1,20 @@ +import "../globals.css"; + +export const metadata = { + title: 'Admin Panel', + description: 'Kite Beach Yƶnetim Paneli', +} + +export default function AdminRootLayout({ + children, +}: { + children: React.ReactNode +}) { + return ( + + + {children} + + + ) +}