updates and removed on the dead codes

This commit is contained in:
2026-07-07 12:38:20 +05:30
parent d90609f5a0
commit 8224f45974
65 changed files with 41 additions and 3967 deletions

View File

@@ -1,17 +1,10 @@
import { lazy } from 'react';
// project import
// import GuestGuard from 'utils/route-guard/GuestGuard';
import CommonLayout from 'layout/CommonLayout';
import Loadable from 'components/Loadable';
// render - login
// const AuthLogin = Loadable(lazy(() => import('pages/auth/login')));
// const AuthRegister = Loadable(lazy(() => import('pages/auth/register')));
// const AuthForgotPassword = Loadable(lazy(() => import('pages/auth/forgot-password')));
// const AuthCheckMail = Loadable(lazy(() => import('pages/auth/check-mail')));
// const AuthResetPassword = Loadable(lazy(() => import('pages/auth/reset-password')));
// const AuthCodeVerification = Loadable(lazy(() => import('pages/auth/code-verification')));
const Login = Loadable(lazy(() => import('pages/nearle/login')));
// ==============================|| AUTH ROUTING ||============================== //
@@ -21,11 +14,7 @@ const LoginRoutes = {
children: [
{
path: '/',
element: (
// <GuestGuard>
<CommonLayout />
// </GuestGuard>
),
element: <CommonLayout />,
children: [
{
path: '/',
@@ -35,35 +24,6 @@ const LoginRoutes = {
path: 'login',
element: <Login />
}
// {
// path: '/',
// element: <AuthLogin />
// },
// {
// path: 'login',
// element: <AuthLogin />
// },
// {
// path: 'register',
// element: <AuthRegister />
// },
// {
// path: 'forgot-password',
// element: <AuthForgotPassword />
// },
// {
// path: 'check-mail',
// element: <AuthCheckMail />
// },
// {
// path: 'reset-password',
// element: <AuthResetPassword />
// },
// {
// path: 'code-verification',
// element: <AuthCodeVerification />
// }
]
}
]