// import { fonts } from './fonts' // import { Inter } from 'next/font/google' // import 'bootstrap/dist/css/bootstrap.min.css' // const inter = Inter({ subsets: ['latin'] }) // export default function RootLayout({ // children, // }: { // children: React.ReactNode, // }) { // return ( // // // {children} // // // ) // } import '@mantine/core/styles.css' import { ColorSchemeScript, MantineProvider } from '@mantine/core' export const metadata = { title: 'My Mantine app', description: 'I have followed setup instructions carefully', } export default function RootLayout({ children, }: { children: React.ReactNode }) { return ( {children} ) }