feat: add footer component and FontAwesome integration

This commit is contained in:
Jan-Marlon Leibl 2025-02-12 12:26:48 +01:00
parent 29305a75b1
commit 325bc118ee
No known key found for this signature in database
GPG key ID: E7B6F77BF5EDB6F7
10 changed files with 219 additions and 17 deletions

View file

@ -6,7 +6,7 @@ import { CommonModule } from '@angular/common';
selector: 'app-navbar',
templateUrl: './navbar.component.html',
standalone: true,
imports: [CommonModule, RouterModule]
imports: [CommonModule, RouterModule],
})
export class NavbarComponent {
isMenuOpen = false;
@ -14,4 +14,4 @@ export class NavbarComponent {
toggleMenu() {
this.isMenuOpen = !this.isMenuOpen;
}
}
}