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