Files
Toju/website/src/app/components/footer/footer.component.ts
Myx 00adf39121
All checks were successful
Queue Release Build / prepare (push) Successful in 1m20s
Deploy Web Apps / deploy (push) Successful in 17m37s
Queue Release Build / build-windows (push) Successful in 39m8s
Queue Release Build / build-linux (push) Successful in 1h3m53s
Queue Release Build / finalize (push) Successful in 5m43s
Add translation support for website
2026-03-13 03:45:29 +01:00

14 lines
374 B
TypeScript

import { Component } from '@angular/core';
import { TranslateModule } from '@ngx-translate/core';
import { RouterLink } from '@angular/router';
@Component({
selector: 'app-footer',
standalone: true,
imports: [RouterLink, TranslateModule],
templateUrl: './footer.component.html'
})
export class FooterComponent {
readonly currentYear = new Date().getFullYear();
}