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