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