2025-04-06 11:37:44 +00:00
|
|
|
import {Component} from '@angular/core';
|
2025-07-04 17:50:21 +00:00
|
|
|
import {ScrollService} from '@services/scroll.service';
|
2025-04-08 19:45:44 +00:00
|
|
|
import {CommonModule, NgOptimizedImage} from '@angular/common';
|
2025-07-04 17:50:21 +00:00
|
|
|
import {HeaderComponent} from '@header/header.component';
|
2025-04-06 11:37:44 +00:00
|
|
|
|
|
|
|
|
@Component({
|
|
|
|
|
selector: 'app-socials',
|
2025-04-08 19:45:44 +00:00
|
|
|
standalone: true,
|
|
|
|
|
imports: [
|
|
|
|
|
CommonModule,
|
|
|
|
|
HeaderComponent,
|
|
|
|
|
NgOptimizedImage
|
|
|
|
|
],
|
2025-04-06 11:37:44 +00:00
|
|
|
templateUrl: './socials.component.html',
|
|
|
|
|
styleUrl: './socials.component.scss'
|
|
|
|
|
})
|
|
|
|
|
export class SocialsComponent {
|
2025-04-06 15:27:22 +00:00
|
|
|
constructor(public scrollService: ScrollService) {
|
|
|
|
|
}
|
2025-04-06 11:37:44 +00:00
|
|
|
}
|