feat: add footer component and FontAwesome integration
This commit is contained in:
parent
29305a75b1
commit
325bc118ee
10 changed files with 219 additions and 17 deletions
|
@ -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;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Reference in a new issue