feat: layout padding and scroll added
This commit is contained in:
@@ -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,
|
||||
})),
|
||||
);
|
||||
|
||||
Reference in New Issue
Block a user