Files
marketplaces/src/app/components/footer/footer.component.ts
2026-01-18 18:57:06 +04:00

19 lines
586 B
TypeScript

import { Component } from '@angular/core';
import { CommonModule } from '@angular/common';
import { RouterLink } from '@angular/router';
import { environment } from '../../../environments/environment';
@Component({
selector: 'app-footer',
standalone: true,
imports: [CommonModule, RouterLink],
templateUrl: './footer.component.html',
styleUrls: ['./footer.component.scss']
})
export class FooterComponent {
currentYear = new Date().getFullYear();
brandName = environment.brandName;
contactEmail = environment.contactEmail;
isnovo = environment.theme === 'novo';
}