summaryrefslogtreecommitdiff
path: root/components/layout.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'components/layout.tsx')
-rw-r--r--components/layout.tsx6
1 files changed, 3 insertions, 3 deletions
diff --git a/components/layout.tsx b/components/layout.tsx
index b99ba347..b24a0e7c 100644
--- a/components/layout.tsx
+++ b/components/layout.tsx
@@ -1,12 +1,12 @@
import TopNav from '../components/topnav.tsx'
-import { VStack, Box } from '@chakra-ui/react'
+import { Container, Box } from '@chakra-ui/react'
export default function Layout({ children }) {
return (
- <VStack>
+ <Container maxW="2xl">
<TopNav/>
<Box as="main">
{children}
</Box>
- </VStack>
+ </Container>
)
}