import * as React from 'react'; import Box from '@mui/material/Box'; import Container from '@mui/material/Container'; import GlobalStyles from '@mui/material/GlobalStyles'; import { AuthGuard } from '@/components/auth/auth-guard'; import { MainNav } from '@/components/dashboard/layout/main-nav'; import { SideNav } from '@/components/dashboard/layout/side-nav'; interface LayoutProps { children: React.ReactNode; } export default function Layout({ children }: LayoutProps): React.JSX.Element { return (
{children}
); }