import {Component} from '@angular/core'; import {ALTITUDE_VERSION} from '../constant'; import {CommonModule, NgOptimizedImage} from '@angular/common'; import {RouterLink} from '@angular/router'; @Component({ selector: 'app-footer', standalone: true, imports: [ CommonModule, RouterLink, NgOptimizedImage ], templateUrl: './footer.component.html', styleUrl: './footer.component.scss' }) export class FooterComponent { public getCurrentYear() { return new Date().getFullYear(); } protected readonly ALTITUDE_VERSION = ALTITUDE_VERSION; }