import { Inter } from 'next/font/google' import './globals.css' const inter = Inter({ subsets: ['latin'] }) export const metadata = { title: 'MongoDB LlamaIndex demo', description: '', } export default function RootLayout({ children }) { return ( {children} ) }