2025-04-06 11:03:59 +00:00
|
|
|
import {Component} from '@angular/core';
|
2025-04-06 15:27:22 +00:00
|
|
|
import {ScrollService} from '../scroll/scroll.service';
|
2025-04-06 11:03:59 +00:00
|
|
|
|
|
|
|
|
@Component({
|
|
|
|
|
selector: 'app-team',
|
|
|
|
|
standalone: false,
|
|
|
|
|
templateUrl: './team.component.html',
|
|
|
|
|
styleUrl: './team.component.scss'
|
|
|
|
|
})
|
|
|
|
|
export class TeamComponent {
|
2025-04-06 15:27:22 +00:00
|
|
|
constructor(public scrollService: ScrollService) {
|
|
|
|
|
}
|
2025-04-06 11:03:59 +00:00
|
|
|
}
|