Complete english version of site

This commit is contained in:
Wouter van Veelen
2025-12-20 02:02:11 +01:00
parent 23cd5a9e53
commit 87932f1934
19 changed files with 355 additions and 139 deletions

View File

@@ -6,7 +6,14 @@ export type ContentProps = PropsWithChildren;
export function Content({ children }: ContentProps): ReactElement {
return (
<Box sx={{ width: { xs: '100%', md: '80%' }, margin: 'auto' }}>
<Box
sx={{
width: { xs: '100%', md: '80%' },
margin: 'auto',
height: 'calc(100vh - 25px)',
color: (theme) => theme.palette.text.primary,
}}
>
<TopBar />
{children}
</Box>