What's the best way to have a page with fixed header and footer and the actual content to take all the remaining space and vertically center the content?
i tried something like this
<AppShell
padding={0}
fixed={true}
style={{ minHeight: '100vh' }}
header={...}
footer={...}>
<Box style={{ flexGrow: 1, display: 'flex', flexDirection: 'column', justifyContent: 'center' }}>
{children}
</Box>
</AppShell>
And then have something on the page like
<Stack
justify="center"
px={16}
style={{ width: '100%' }}>
...
</Stack>
But I didn't get it to work