Files
rc-portfolio/src/app/footer/footer.component.ts
raghu 00e7ba98d3
All checks were successful
continuous-integration/drone/push Build is passing
update footer, header and home compoents
2025-02-25 22:21:31 -05:00

14 lines
344 B
TypeScript

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