2025-04-05 20:24:38 +00:00
|
|
|
import {Component} from '@angular/core';
|
2025-04-05 21:05:45 +00:00
|
|
|
import {ALTITUDE_VERSION} from '../constant';
|
2025-04-05 20:24:38 +00:00
|
|
|
|
|
|
|
|
@Component({
|
|
|
|
|
selector: 'app-footer',
|
|
|
|
|
standalone: false,
|
|
|
|
|
templateUrl: './footer.component.html',
|
|
|
|
|
styleUrl: './footer.component.scss'
|
|
|
|
|
})
|
|
|
|
|
export class FooterComponent {
|
2025-04-05 20:31:32 +00:00
|
|
|
public getCurrentYear() {
|
|
|
|
|
return new Date().getFullYear();
|
|
|
|
|
}
|
2025-04-05 21:05:45 +00:00
|
|
|
|
|
|
|
|
protected readonly ALTITUDE_VERSION = ALTITUDE_VERSION;
|
2025-04-05 20:24:38 +00:00
|
|
|
}
|