Files
Personal-Portfolio-Website/src/app/app.routes.ts
T
2026-04-28 19:05:22 +02:00

17 lines
425 B
TypeScript

import type { Routes } from '@angular/router';
export const routes: Routes = [
{
path: '',
loadComponent: () => import('./home/home.component').then((module) => module.HomeComponent),
pathMatch: 'full',
},
{
path: 'imprint',
loadComponent: () =>
import('./imprint/imprint.component').then((module) => module.ImprintComponent),
pathMatch: 'full',
},
{ path: '**', redirectTo: '' },
];