Pages are now grouped per group they appear in on in the header (where possible) Utilities used by multiple pages in the project are grouped in folders such as services/pipes/etc
21 lines
534 B
TypeScript
21 lines
534 B
TypeScript
import {Component} from '@angular/core';
|
|
import {ScrollService} from '@services/scroll.service';
|
|
import {CommonModule, NgOptimizedImage} from '@angular/common';
|
|
import {HeaderComponent} from '@header/header.component';
|
|
|
|
@Component({
|
|
selector: 'app-socials',
|
|
standalone: true,
|
|
imports: [
|
|
CommonModule,
|
|
HeaderComponent,
|
|
NgOptimizedImage
|
|
],
|
|
templateUrl: './socials.component.html',
|
|
styleUrl: './socials.component.scss'
|
|
})
|
|
export class SocialsComponent {
|
|
constructor(public scrollService: ScrollService) {
|
|
}
|
|
}
|