Init sakai-v19

This commit is contained in:
Çetin
2024-12-27 16:00:31 +03:00
parent 07ae55c3c5
commit 0369931355
314 changed files with 18699 additions and 246892 deletions
+21
View File
@@ -0,0 +1,21 @@
import { Routes } from '@angular/router';
import {AppLayoutComponent} from './layout/app.layout.component';
import {NotfoundComponent} from './demo/components/notfound/notfound.component';
export const routes: Routes = [
{
path: '', component: AppLayoutComponent,
children: [
{ path: '', loadChildren: () => import('./demo/components/dashboard/dashboard.module').then(m => m.DashboardModule) },
{ path: 'uikit', loadChildren: () => import('./demo/components/uikit/uikit.module').then(m => m.UIkitModule) },
{ 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: 'auth', loadChildren: () => import('./demo/components/auth/auth.module').then(m => m.AuthModule) },
{ path: 'landing', loadChildren: () => import('./demo/components/landing/landing.module').then(m => m.LandingModule) },
{ path: 'notfound', component: NotfoundComponent },
{ path: '**', redirectTo: '/notfound' },
];