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