import type { Metadata } from "next"; import { AdminGate } from "@/components/admin/gate"; import { AdminShell } from "@/components/admin/shell"; export const metadata: Metadata = { title: { default: "Admin", template: "%s ยท Spinza Admin" }, description: "Spinza internal administration console.", robots: { index: false, follow: false, nocache: true, googleBot: { index: false, follow: false } }, }; /** The admin console has its own shell (dense dark console) and never uses the player AppShell. */ export default function AdminLayout({ children }: { children: React.ReactNode }) { return ( {children} ); }