diff --git a/frontend/src/app/app.module.ts b/frontend/src/app/app.module.ts index 1a5460f..5120f37 100644 --- a/frontend/src/app/app.module.ts +++ b/frontend/src/app/app.module.ts @@ -17,6 +17,7 @@ import {TeamComponent} from './team/team.component'; import {AboutComponent} from './about/about.component'; import {SocialsComponent} from './socials/socials.component'; import {VoteComponent} from './vote/vote.component'; +import {BirthdaysComponent} from './birthdays/birthdays.component'; const routes: Routes = [ {path: '', component: HomeComponent}, @@ -26,6 +27,7 @@ const routes: Routes = [ {path: 'about', component: AboutComponent}, {path: 'socials', component: SocialsComponent}, {path: 'team', component: TeamComponent}, + {path: 'birthdays', component: BirthdaysComponent}, {path: 'terms', component: TermsComponent}, {path: 'privacy', component: PrivacyComponent}, ]; @@ -43,6 +45,7 @@ const routes: Routes = [ AboutComponent, SocialsComponent, TeamComponent, + BirthdaysComponent, TermsComponent, PrivacyComponent, ], diff --git a/frontend/src/app/birthdays/birthdays.component.html b/frontend/src/app/birthdays/birthdays.component.html new file mode 100644 index 0000000..5ba4f05 --- /dev/null +++ b/frontend/src/app/birthdays/birthdays.component.html @@ -0,0 +1,16 @@ + + + + Famous Altitude Staff Birthdays + (and previous staff) + + + + + + + + + + diff --git a/frontend/src/app/birthdays/birthdays.component.scss b/frontend/src/app/birthdays/birthdays.component.scss new file mode 100644 index 0000000..e69de29 diff --git a/frontend/src/app/birthdays/birthdays.component.spec.ts b/frontend/src/app/birthdays/birthdays.component.spec.ts new file mode 100644 index 0000000..31aebfc --- /dev/null +++ b/frontend/src/app/birthdays/birthdays.component.spec.ts @@ -0,0 +1,23 @@ +import { ComponentFixture, TestBed } from '@angular/core/testing'; + +import { BirthdaysComponent } from './birthdays.component'; + +describe('BirthdaysComponent', () => { + let component: BirthdaysComponent; + let fixture: ComponentFixture; + + beforeEach(async () => { + await TestBed.configureTestingModule({ + imports: [BirthdaysComponent] + }) + .compileComponents(); + + fixture = TestBed.createComponent(BirthdaysComponent); + component = fixture.componentInstance; + fixture.detectChanges(); + }); + + it('should create', () => { + expect(component).toBeTruthy(); + }); +}); diff --git a/frontend/src/app/birthdays/birthdays.component.ts b/frontend/src/app/birthdays/birthdays.component.ts new file mode 100644 index 0000000..59d78b1 --- /dev/null +++ b/frontend/src/app/birthdays/birthdays.component.ts @@ -0,0 +1,13 @@ +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) { + } +}