import type { Metadata } from 'next'; import type { ReactNode } from 'react'; /** Everything under /admin is private: never indexed, never cached (see `headers()` in next.config.ts). */ export const metadata: Metadata = { title: { default: 'Admin', template: '%s ยท Admin | SatelliteIndex' }, robots: { index: false, follow: false, nocache: true, googleBot: { index: false, follow: false } }, }; export const dynamic = 'force-dynamic'; export default function AdminRootLayout({ children }: { children: ReactNode }) { return <>{children}; }