Added About and Team components with routing

This commit introduces new "About" and "Team" components, integrating them into the application and updating the routing module.
This commit is contained in:
Peter
2025-04-06 13:03:59 +02:00
parent 2eb619b253
commit 6e459767ed
11 changed files with 229 additions and 5 deletions
+11
View File
@@ -0,0 +1,11 @@
import {Component} from '@angular/core';
@Component({
selector: 'app-about',
standalone: false,
templateUrl: './about.component.html',
styleUrl: './about.component.scss'
})
export class AboutComponent {
scrollService: any;
}