import type { Metadata } from 'next'; export const metadata: Metadata = { robots: 'noindex,nofollow', }; export default function Layout({ children }: { children: React.ReactNode }) { return children; }