AltitudeWeb/frontend/src/app/birthdays/birthdays.component.ts
Peter e7ac2d0462 Added Birthdays page
Introduced a new BirthdaysComponent with its corresponding HTML, SCSS, and spec files. Added a route for '/birthdays' in the application and integrated it into the module and routing. This component showcases staff and previous staff birthdays.
2025-04-06 22:06:48 +02:00

14 lines
343 B
TypeScript

import {Component} from '@angular/core';
import {ScrollService} from '../scroll/scroll.service';
@Component({
selector: 'app-birthdays',
standalone: false,
templateUrl: './birthdays.component.html',
styleUrl: './birthdays.component.scss'
})
export class BirthdaysComponent {
constructor(public scrollService: ScrollService) {
}
}