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.
12 lines
220 B
TypeScript
12 lines
220 B
TypeScript
import { Component } from '@angular/core';
|
|
|
|
@Component({
|
|
selector: 'app-hobbies',
|
|
imports: [],
|
|
templateUrl: './hobbies.component.html',
|
|
styleUrl: './hobbies.component.scss',
|
|
})
|
|
export class HobbiesComponent {
|
|
|
|
}
|