Add hobbies page and update projects WIP UI

Introduced a new HobbiesComponent with routing and navigation updates. Removed unused ProjectDetailsComponent. Enhanced the projects page with a new 'work in progress' UI and improved .gitattributes for better file handling.
This commit is contained in:
2025-12-02 18:48:34 +01:00
parent 839b7c9ba5
commit 0cc445de87
11 changed files with 130 additions and 22 deletions

View File

@@ -0,0 +1,11 @@
import { Component } from '@angular/core';
@Component({
selector: 'app-hobbies',
imports: [],
templateUrl: './hobbies.component.html',
styleUrl: './hobbies.component.scss',
})
export class HobbiesComponent {
}