2026-02-19 01:23:25 +04:00
|
|
|
import { Component, ChangeDetectionStrategy } from '@angular/core';
|
2026-01-18 18:57:06 +04:00
|
|
|
import { RouterLink } from '@angular/router';
|
|
|
|
|
import { environment } from '../../../environments/environment';
|
2026-02-26 22:23:08 +04:00
|
|
|
import { LangRoutePipe } from '../../pipes/lang-route.pipe';
|
2026-02-26 23:09:20 +04:00
|
|
|
import { TranslatePipe } from '../../i18n/translate.pipe';
|
2026-01-18 18:57:06 +04:00
|
|
|
|
|
|
|
|
@Component({
|
|
|
|
|
selector: 'app-footer',
|
2026-02-26 23:09:20 +04:00
|
|
|
imports: [RouterLink, LangRoutePipe, TranslatePipe],
|
2026-01-18 18:57:06 +04:00
|
|
|
templateUrl: './footer.component.html',
|
2026-02-19 01:23:25 +04:00
|
|
|
styleUrls: ['./footer.component.scss'],
|
|
|
|
|
changeDetection: ChangeDetectionStrategy.OnPush
|
2026-01-18 18:57:06 +04:00
|
|
|
})
|
|
|
|
|
export class FooterComponent {
|
|
|
|
|
currentYear = new Date().getFullYear();
|
|
|
|
|
brandName = environment.brandName;
|
|
|
|
|
contactEmail = environment.contactEmail;
|
|
|
|
|
isnovo = environment.theme === 'novo';
|
|
|
|
|
}
|