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 @@
<p>navigation-bar works!</p>

View file

@ -0,0 +1,23 @@
import { ComponentFixture, TestBed } from '@angular/core/testing';
import { NavigationBarComponent } from './navigation-bar.component';
describe('NavigationBarComponent', () => {
let component: NavigationBarComponent;
let fixture: ComponentFixture<NavigationBarComponent>;
beforeEach(async () => {
await TestBed.configureTestingModule({
imports: [NavigationBarComponent]
})
.compileComponents();
fixture = TestBed.createComponent(NavigationBarComponent);
component = fixture.componentInstance;
fixture.detectChanges();
});
it('should create', () => {
expect(component).toBeTruthy();
});
});

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 {
}