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

@@ -1,6 +1,5 @@
import { Layout } from '@/components';
import { NavigateWithToast } from '@/components/NavigateWithToast';
import { AccountCreatedPage } from '@/features/authorization/routes/AccountCreatedPage';
import {
Calendar,
Devices,
@@ -18,17 +17,22 @@ import { lazy, type ReactNode } from 'react';
import { Navigate } from 'react-router-dom';
const AuthenticationPage = lazy(() =>
import('@/features/authorization').then((module) => ({
import('@/features/authentication').then((module) => ({
default: module.AuthenticationPage,
})),
);
const AccountCreatedPage = lazy(() =>
import('@/features/authentication').then((module) => ({
default: module.AccountCreatedPage,
})),
);
const UserCompletionPage = lazy(() =>
import('@/features/authorization').then((module) => ({
import('@/features/authentication').then((module) => ({
default: module.UserCompletionPage,
})),
);
const ForgetPasswordPage = lazy(() =>
import('@/features/authorization').then((module) => ({
import('@/features/authentication').then((module) => ({
default: module.ForgetPasswordPage,
})),
);