import type { Metadata } from 'next'; import type { ReactNode } from 'react'; import Link from 'next/link'; import { nav, navLink, wrap } from '@/lib/adminUi'; export const metadata: Metadata = { title: 'Admin — Catherine League', robots: 'noindex, nofollow', }; export default function AdminRootLayout({ children }: { children: ReactNode }) { return (
{children}
); }