import type { Metadata } from 'next'; import type { ReactNode } from 'react'; export const metadata: Metadata = { title: 'Plugin sandbox', robots: { index: false, follow: false }, }; export default function PluginSandboxLayout({ children }: { children: ReactNode }) { return ( {children} ); }