diff --git a/app/admin/layout.tsx b/app/admin/layout.tsx new file mode 100644 index 0000000..af00e85 --- /dev/null +++ b/app/admin/layout.tsx @@ -0,0 +1,14 @@ +import type { Metadata } from "next"; + +export const metadata: Metadata = { + title: "Hördle Admin Dashboard", + description: "Admin dashboard for managing songs and daily puzzles", +}; + +export default function AdminLayout({ + children, +}: { + children: React.ReactNode; +}) { + return <>{children}; +}