30 lines
727 B
TypeScript
30 lines
727 B
TypeScript
|
|
import { Box, Text } from 'folds';
|
||
|
|
import React, { ReactNode } from 'react';
|
||
|
|
import classNames from 'classnames';
|
||
|
|
import * as patternsCSS from '../../styles/Patterns.css';
|
||
|
|
import * as css from './SplashScreen.css';
|
||
|
|
|
||
|
|
type SplashScreenProps = {
|
||
|
|
children: ReactNode;
|
||
|
|
};
|
||
|
|
export function SplashScreen({ children }: SplashScreenProps) {
|
||
|
|
return (
|
||
|
|
<Box
|
||
|
|
className={classNames(css.SplashScreen, patternsCSS.BackgroundDotPattern)}
|
||
|
|
direction="Column"
|
||
|
|
>
|
||
|
|
{children}
|
||
|
|
<Box
|
||
|
|
className={css.SplashScreenFooter}
|
||
|
|
shrink="No"
|
||
|
|
alignItems="Center"
|
||
|
|
justifyContent="Center"
|
||
|
|
>
|
||
|
|
<Text size="H2" align="Center">
|
||
|
|
Cinny
|
||
|
|
</Text>
|
||
|
|
</Box>
|
||
|
|
</Box>
|
||
|
|
);
|
||
|
|
}
|