19 lines
586 B
TypeScript
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';
|
|||
|
|
}
|