chore: authentication container changed to auth steps

This commit is contained in:
مهرزاد قدرتی
2025-07-29 16:51:20 +03:30
parent bd34468332
commit 9191ea31fa
7 changed files with 11 additions and 11 deletions

View File

@@ -2,7 +2,7 @@ import { FlexBox } from '@/components/components/common/FlexBox';
import Logo from '@/components/Logo';
import { Paper } from '@mui/material';
import { useState } from 'react';
import { AuthenticationContainer } from '../components/AuthenticationContainer';
import { AuthenticationSteps } from '../components/AuthenticationSteps/AuthenticationSteps';
export function AuthenticationPage() {
return (
@@ -16,7 +16,7 @@ export function AuthenticationPage() {
}}
>
<Logo />
<AuthenticationContainer />
<AuthenticationSteps />
</FlexBox>
);
}