import './globals.css'; export const metadata = { title: 'AI SDK - Next.js OpenAI Examples', description: 'Examples of using the AI SDK with Next.js and OpenAI.', }; export default function RootLayout({ children, }: { children: React.ReactNode; }) { return ( {children} ); }