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-08 19:45:44 +00:00
|
|
|
import {TeamService} from '../../api';
|
|
|
|
|
import {CommonModule, NgOptimizedImage} from '@angular/common';
|
|
|
|
|
import {HeaderComponent} from '../header/header.component';
|
2025-04-06 11:03:59 +00:00
|
|
|
|
|
|
|
|
@Component({
|
|
|
|
|
selector: 'app-team',
|
2025-04-08 19:45:44 +00:00
|
|
|
standalone: true,
|
|
|
|
|
imports: [
|
|
|
|
|
CommonModule,
|
|
|
|
|
HeaderComponent,
|
|
|
|
|
NgOptimizedImage
|
|
|
|
|
],
|
2025-04-06 11:03:59 +00:00
|
|
|
templateUrl: './team.component.html',
|
|
|
|
|
styleUrl: './team.component.scss'
|
|
|
|
|
})
|
|
|
|
|
export class TeamComponent {
|
2025-04-08 19:45:44 +00:00
|
|
|
constructor(public scrollService: ScrollService, public teamApi: TeamService) {
|
|
|
|
|
teamApi.getTeamMembers("test").subscribe(res => {
|
|
|
|
|
console.log(res)
|
|
|
|
|
});
|
2025-04-06 15:27:22 +00:00
|
|
|
}
|
2025-04-06 11:03:59 +00:00
|
|
|
}
|