import TopNav from '../components/topnav' import { Container, Box } from '@chakra-ui/react' import ReactNode from 'react' type Props = { children?: any } export default function Layout({ children } : Props) { return ( <> {children} ) }