From 921227959919f655a61ca0730c1fbecc1102a8b9 Mon Sep 17 00:00:00 2001 From: ayrisdev Date: Thu, 11 Jun 2026 14:11:25 +0300 Subject: [PATCH] kite-menu-admin --- app/admin/layout.tsx | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 app/admin/layout.tsx 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} + + + ) +}