Add pages

This commit is contained in:
Çetin
2024-12-30 13:29:44 +03:00
parent f3d1148b3e
commit c7be0df88e
11 changed files with 992 additions and 5 deletions

View File

@@ -11,10 +11,10 @@ export const routes: Routes = [
// { path: 'utilities', loadChildren: () => import('./demo/components/utilities/utilities.module').then(m => m.UtilitiesModule) },
// { path: 'documentation', loadChildren: () => import('./demo/components/documentation/documentation.module').then(m => m.DocumentationModule) },
// { path: 'blocks', loadChildren: () => import('./demo/components/primeblocks/primeblocks.module').then(m => m.PrimeBlocksModule) },
// { path: 'pages', loadChildren: () => import('./demo/components/pages/pages.module').then(m => m.PagesModule) }
{ path: 'pages', loadChildren: () => import('../views/pages/pages.routes')},
]
},
{ path: 'auth', loadChildren: () => import('../views/pages/auth/routes')},
{ path: 'auth', loadChildren: () => import('../views/pages/auth/auth.routes')},
{ path: '**', redirectTo: '/notfound' },
];