feat(navigation): add navigation bar component and update app layout

This commit is contained in:
Jan K9f 2024-12-18 09:11:59 +01:00
parent 2feff13e5a
commit ba2e989d49
Signed by: jank
GPG key ID: B267751B8AE29EFE
6 changed files with 39 additions and 337 deletions

View file

@ -0,0 +1,12 @@
import { Component } from '@angular/core';
@Component({
selector: 'app-navigation-bar',
standalone: true,
imports: [],
templateUrl: './navigation-bar.component.html',
styleUrl: './navigation-bar.component.css'
})
export class NavigationBarComponent {
}