This commit introduces new "About" and "Team" components, integrating them into the application and updating the routing module.
12 lines
236 B
TypeScript
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;
|
|
}
|