import { AppShell, useMantineTheme } from '@mantine/core'; import { MainHeader } from './new-header/Header'; type MainLayoutProps = { children: React.ReactNode; }; export const MainLayout = ({ children }: MainLayoutProps) => { const theme = useMantineTheme(); return ( } > {children} ); };