import type { Metadata } from 'next'; export const metadata: Metadata = { title: 'Admin ยท Content CMS', robots: { index: false, follow: false }, }; // Admin chrome is independent of the public LocaleProvider/Navbar; the // route-group split means these pages never inherit the marketing layout. export default function AdminRootLayout({ children, }: { children: React.ReactNode; }) { return