Files
Personal-Portfolio-Website/src/app/footer/footer.component.ts
T
2026-05-14 15:36:37 +02:00

20 lines
688 B
TypeScript

import { ChangeDetectionStrategy, Component, inject } from '@angular/core';
import { RouterLink } from '@angular/router';
import { global } from '../../global';
import { ShellLanguageService } from '../services/shell-language.service';
@Component({
selector: 'app-footer',
standalone: true,
imports: [RouterLink],
templateUrl: './footer.component.html',
changeDetection: ChangeDetectionStrategy.OnPush,
})
export class FooterComponent {
private readonly shellLanguageService = inject(ShellLanguageService);
protected readonly content = this.shellLanguageService.content;
protected readonly global = global;
protected readonly currentYear = new Date().getFullYear();
}