import type { Metadata } from 'next'; import type { ReactNode } from 'react'; import { Geist, Geist_Mono } from 'next/font/google'; import '../globals.css'; const geistSans = Geist({ variable: '--font-geist-sans', subsets: ['latin'], }); const geistMono = Geist_Mono({ variable: '--font-geist-mono', subsets: ['latin'], }); export const metadata: Metadata = { title: 'Plugin sandbox', robots: { index: false, follow: false }, }; export default function PluginSandboxLayout({ children }: { children: ReactNode }) { return ( {children} ); }