import { ChangeDetectionStrategy, Component } from '@angular/core'; @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 privacy1 = 'https://www.exeltis.com.mx/aviso.html'; readonly privacy2 = 'https://www.exeltis.com.mx/avisomedico.html'; }