This commit is contained in:
Malai Raja
2023-12-02 19:22:27 +05:30
parent 2aab086a66
commit 2d7eb690a1
21 changed files with 7495 additions and 146 deletions

View File

@@ -17,6 +17,14 @@ const SamplePage = Loadable(lazy(() => import('pages/extra-pages/sample-page')))
const Login = Loadable(lazy(() => import('pages/nearle/login')));
const Dashboard = Loadable(lazy(() => import('pages/nearle/dashboard')));
const Client = Loadable(lazy(() => import('pages/nearle/clients/client')));
const Orders = Loadable(lazy(() => import('pages/nearle/orders/orders')));
const Accountsettings = Loadable(lazy(() => import('pages/nearle/accountsettings')));
const Createorder = Loadable(lazy(() => import('pages/nearle/orders/createorder')));
const Createclient = Loadable(lazy(() => import('pages/nearle/clients/createclient')));
// ==============================|| MAIN ROUTING ||============================== //
@@ -40,6 +48,26 @@ const MainRoutes = {
path: 'dashboard',
element: <Dashboard />
},
{
path: 'clients',
element: <Client />
},
{
path: 'orders',
element: <Orders />
},
{
path: 'accountsettings',
element: <Accountsettings />
},
{
path: 'orders/create',
element: <Createorder />
},
{
path: 'clients/create',
element: <Createclient />
},
]
},