feat: layout padding and scroll added

This commit is contained in:
2025-08-20 23:28:18 +03:30
parent c738c58618
commit 882498637b
37 changed files with 19 additions and 6 deletions

View File

@@ -0,0 +1,20 @@
import { FlexBox } from '@/components/common/FlexBox';
import Logo from '@/components/Logo';
import { AccountCreated } from '../components/AccountCreated/AccountCreated';
export const AccountCreatedPage = () => {
return (
<FlexBox
direction="column"
align="center"
justify="center"
sx={{
minHeight: '100vh',
gap: 3,
}}
>
<Logo />
<AccountCreated />
</FlexBox>
);
};