2021-11-22 16:49:32 +01:00
|
|
|
import React from 'react';
|
|
|
|
import { Box } from '@chakra-ui/react';
|
|
|
|
|
|
|
|
type PageWrapperProps = {
|
|
|
|
children: React.ReactNode;
|
|
|
|
}
|
|
|
|
|
|
|
|
export function PageWrapper(props: PageWrapperProps) {
|
|
|
|
const { children } = props;
|
|
|
|
|
|
|
|
return (
|
2021-12-09 13:25:01 +01:00
|
|
|
<Box bgColor='brand.bg' bgImage='url(/bg.jpg)' bgRepeat='no-repeat' bgSize='100%' w='100%' minH='100vh'>
|
2021-11-22 16:49:32 +01:00
|
|
|
{ children }
|
|
|
|
</Box>
|
|
|
|
);
|
|
|
|
}
|