import type { Metadata } from 'next' import { ColorSchemeScript, MantineProvider, mantineHtmlProps, } from '@mantine/core' import { Notifications } from '@mantine/notifications' import { theme } from './theme' import './globals.css' import '@mantine/core/styles.css' import '@mantine/core/styles.layer.css' import '@mantine/notifications/styles.css' export const metadata: Metadata = { title: 'SSO Portal', description: 'SSO Login Portal', } export default function RootLayout({ children, }: Readonly<{ children: React.ReactNode }>) { return ( {children} ) }