feat: reworked portfolio
This commit is contained in:
@@ -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();
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user