update routes

This commit is contained in:
Mehmet Çetin
2025-01-06 15:38:18 +03:00
parent ced67f5818
commit cedbba30ae
2 changed files with 14 additions and 13 deletions

View File

@@ -1,15 +1,11 @@
import { Routes } from '@angular/router';
import { Documentation } from '@/src/views/pages/documentation';
import { Crud } from '@/src/views/pages/crud';
import { Landing } from '@/src/views/pages/landing';
import { Empty } from '@/src/views/pages/empty';
import { Notfound } from '@/src/views/pages/notfound';
export default [
{ path: 'documentation', component: Documentation},
{ path: 'crud', component: Crud},
{ path: 'landing', component: Landing},
{ path: 'empty', component: Empty},
{ path: 'notfound', component: Notfound},
{ path: '**', redirectTo: '/notfound' }
{ path: 'documentation', component: Documentation },
{ path: 'crud', component: Crud },
{ path: 'empty', component: Empty },
{ path: '**', redirectTo: '/notfound' }
] as Routes;