import { ChangeDetectionStrategy, Component } from '@angular/core'; import { environment } from '@environments/environment'; @Component({ selector: 'app-footer', templateUrl: './footer.component.html', styleUrls: ['./footer.component.scss'], changeDetection: ChangeDetectionStrategy.OnPush, standalone: true, imports: [], }) export class FooterComponent { year = new Date().getFullYear(); readonly links = environment.links; }