import '@mantine/core/styles.css'; import React from 'react'; import { MantineProvider, ColorSchemeScript } from '@mantine/core'; import { theme } from '../theme'; export const metadata = { title: 'Mantine Next.js template', description: 'I am using Mantine with Next.js!', }; export default function RootLayout({ children }: { children: any }) { return ( {children} ); }