Files
hurler-webdesign-saas/src/app/features/landing/components/footer/footer.component.ts

14 lines
431 B
TypeScript

import { Component } from '@angular/core';
import { RouterModule } from '@angular/router';
import { OpenPanelTrackDirective } from '@core/directives/openpanel.directive';
@Component({
selector: 'app-footer',
imports: [RouterModule, OpenPanelTrackDirective],
templateUrl: './footer.component.html',
styleUrl: './footer.component.scss',
})
export class FooterComponent {
readonly currentYear = new Date().getFullYear();
}