summaryrefslogtreecommitdiff
path: root/components/layout.tsx
blob: 64f87b74ac6c87ae2973f9b5fca49b1643eac773 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
import TopNav from '../components/topnav.tsx'
import { Container, Box } from '@chakra-ui/react'
export default function Layout({ children }) {
  return (
    <>
      <TopNav/>
      <Container maxW="lg">
        <Box as="main">
          {children}
        </Box>
      </Container>
    </>
  )
}