21 lines
468 B
TypeScript
21 lines
468 B
TypeScript
import { FlexBox } from '@/components/components/common/FlexBox';
|
|
import Logo from '@/components/Logo';
|
|
import { AuthenticationSteps } from '../components/AuthenticationSteps/AuthenticationSteps';
|
|
|
|
export function AuthenticationPage() {
|
|
return (
|
|
<FlexBox
|
|
direction="column"
|
|
align="center"
|
|
justify="center"
|
|
sx={{
|
|
minHeight: '100vh',
|
|
gap: 3,
|
|
}}
|
|
>
|
|
<Logo />
|
|
<AuthenticationSteps />
|
|
</FlexBox>
|
|
);
|
|
}
|