mirror of
https://github.com/MetaFam/TheGame.git
synced 2026-01-22 20:58:01 -05:00
28 lines
661 B
TypeScript
28 lines
661 B
TypeScript
import { Flex } from '@metafam/ds';
|
|
import BackgroundImage from 'assets/main-background.jpg';
|
|
import React from 'react';
|
|
|
|
type Props = React.ComponentProps<typeof Flex>;
|
|
|
|
export const PageContainer: React.FC<Props> = ({ children, ...props }) => (
|
|
<Flex
|
|
bgSize="cover"
|
|
bgAttachment="fixed"
|
|
w="100%"
|
|
minH="100vh"
|
|
p={[4, 8, 12]}
|
|
direction="column"
|
|
align="center"
|
|
backgroundImage={`url(${BackgroundImage})`}
|
|
{...props}
|
|
>
|
|
{children}
|
|
</Flex>
|
|
);
|
|
|
|
export const FlexContainer: React.FC<Props> = ({ children, ...props }) => (
|
|
<Flex align="center" justify="center" direction="column" {...props}>
|
|
{children}
|
|
</Flex>
|
|
);
|