feat: reworked portfolio

This commit is contained in:
2026-04-17 23:40:29 +02:00
parent b0e7a71a0c
commit d34b2aa669
71 changed files with 11627 additions and 5197 deletions
+7 -9
View File
@@ -1,16 +1,14 @@
import {Component} from '@angular/core';
import {RouterLink} from "@angular/router";
import {globalFields} from '../../global.fields';
import { Component } from '@angular/core';
import { RouterLink } from '@angular/router';
import type { Global } from '../../global.fields';
import { global } from '../../global.fields';
@Component({
selector: 'app-footer',
imports: [
RouterLink
],
templateUrl: './footer.component.html'
imports: [RouterLink],
templateUrl: './footer.component.html',
})
export class FooterComponent {
protected readonly globalFields: typeof globalFields = globalFields;
protected readonly global: Global = global;
protected readonly currentYear: number = new Date().getFullYear();
}