summaryrefslogtreecommitdiff
path: root/components/layout.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'components/layout.tsx')
-rw-r--r--components/layout.tsx12
1 files changed, 7 insertions, 5 deletions
diff --git a/components/layout.tsx b/components/layout.tsx
index b24a0e7..64f87b7 100644
--- a/components/layout.tsx
+++ b/components/layout.tsx
@@ -2,11 +2,13 @@ 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>
+ <Container maxW="lg">
+ <Box as="main">
+ {children}
+ </Box>
+ </Container>
+ </>
)
}