optimized ui a little bit and added impressum

This commit is contained in:
2025-12-20 15:36:47 +01:00
parent 436a7a151d
commit 8f888851e8
16 changed files with 149 additions and 818 deletions

View File

@@ -2,11 +2,13 @@ import { Routes } from '@angular/router';
import {AboutComponent} from './pages/about/about.component';
import {ProjectsComponent} from './pages/projects/projects.component';
import {HobbiesComponent} from './pages/hobbies/hobbies.component';
import {ImprintComponent} from './pages/imprint/imprint.component';
export const routes: Routes = [
{ path: '', component: AboutComponent },
{ path: 'about', component: AboutComponent},
{ path: 'projects', component: ProjectsComponent},
{ path: 'hobbies', component: HobbiesComponent},
{ path: 'imprint', component: ImprintComponent},
];