import { Flex } from '@mantine/core'; import { Outlet } from 'react-router-dom'; import { headerLinks } from '@/configs/links'; import ShellHeader from './Header'; export interface ShellProps {} const Shell: React.FC = () => { return ( ); }; export default Shell;