diff --git a/src/app/shared/components/navbar/navbar.component.html b/src/app/shared/components/navbar/navbar.component.html
new file mode 100644
index 0000000..6bbf8ee
--- /dev/null
+++ b/src/app/shared/components/navbar/navbar.component.html
@@ -0,0 +1 @@
+
navbar works!
diff --git a/src/app/shared/components/navbar/navbar.component.scss b/src/app/shared/components/navbar/navbar.component.scss
new file mode 100644
index 0000000..e69de29
diff --git a/src/app/shared/components/navbar/navbar.component.spec.ts b/src/app/shared/components/navbar/navbar.component.spec.ts
new file mode 100644
index 0000000..cfedf9e
--- /dev/null
+++ b/src/app/shared/components/navbar/navbar.component.spec.ts
@@ -0,0 +1,23 @@
+import { ComponentFixture, TestBed } from '@angular/core/testing';
+
+import { NavbarComponent } from './navbar.component';
+
+describe('NavbarComponent', () => {
+ let component: NavbarComponent;
+ let fixture: ComponentFixture;
+
+ beforeEach(async () => {
+ await TestBed.configureTestingModule({
+ imports: [NavbarComponent]
+ })
+ .compileComponents();
+
+ fixture = TestBed.createComponent(NavbarComponent);
+ component = fixture.componentInstance;
+ fixture.detectChanges();
+ });
+
+ it('should create', () => {
+ expect(component).toBeTruthy();
+ });
+});
diff --git a/src/app/shared/components/navbar/navbar.component.ts b/src/app/shared/components/navbar/navbar.component.ts
new file mode 100644
index 0000000..61730ec
--- /dev/null
+++ b/src/app/shared/components/navbar/navbar.component.ts
@@ -0,0 +1,29 @@
+import { Component, OnInit } from '@angular/core';
+
+
+@Component({
+ selector: 'app-navbar',
+ standalone: true,
+ imports: [],
+ templateUrl: './navbar.component.html',
+ styleUrl: './navbar.component.scss'
+})
+export class NavbarComponent implements OnInit {
+
+ // --------------- INPUTS AND OUTPUTS ------------------
+
+ // --------------- LOCAL UI STATE ----------------------
+
+ // --------------- COMPUTED DATA -----------------------
+
+ // --------------- EVENT HANDLING ----------------------
+
+ // --------------- OTHER -------------------------------
+
+ constructor(
+ ) { }
+
+ // --------------- LOAD AND CLEANUP --------------------
+ ngOnInit(): void {
+ }
+}