AltitudeWeb/frontend/src/app/about/about.component.ts
Peter 6e459767ed 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.
2025-04-06 13:03:59 +02:00

12 lines
236 B
TypeScript

import {Component} from '@angular/core';
@Component({
selector: 'app-about',
standalone: false,
templateUrl: './about.component.html',
styleUrl: './about.component.scss'
})
export class AboutComponent {
scrollService: any;
}