diff --git a/frontend/src/app/app.module.ts b/frontend/src/app/app.module.ts
index 4fbd980..93f49a5 100644
--- a/frontend/src/app/app.module.ts
+++ b/frontend/src/app/app.module.ts
@@ -7,9 +7,11 @@ import {HomeComponent} from './home/home.component';
import {NgOptimizedImage} from '@angular/common';
import {ThemeComponent} from "./theme/theme.component";
import {CookieService} from 'ngx-cookie-service';
+import {MapComponent} from './map/map.component';
const routes: Routes = [
- {path: '', component: HomeComponent}
+ {path: '', component: HomeComponent},
+ {path: 'map', component: MapComponent},
];
@NgModule({
@@ -17,7 +19,8 @@ const routes: Routes = [
AppComponent,
HeaderComponent,
HomeComponent,
- ThemeComponent
+ ThemeComponent,
+ MapComponent
],
imports: [
BrowserModule,
diff --git a/frontend/src/app/header/header.component.html b/frontend/src/app/header/header.component.html
index a2be95e..888156b 100644
--- a/frontend/src/app/header/header.component.html
+++ b/frontend/src/app/header/header.component.html
@@ -65,7 +65,7 @@
- - Home
+
- Home
-
- Discord
- - Vote
+
- Vote
-
- Store
+ Store
-
+
+
+
+
+
+
diff --git a/frontend/src/app/map/map.component.scss b/frontend/src/app/map/map.component.scss
new file mode 100644
index 0000000..e69de29
diff --git a/frontend/src/app/map/map.component.spec.ts b/frontend/src/app/map/map.component.spec.ts
new file mode 100644
index 0000000..afefab5
--- /dev/null
+++ b/frontend/src/app/map/map.component.spec.ts
@@ -0,0 +1,23 @@
+import { ComponentFixture, TestBed } from '@angular/core/testing';
+
+import { MapComponent } from './map.component';
+
+describe('MapComponent', () => {
+ let component: MapComponent;
+ let fixture: ComponentFixture;
+
+ beforeEach(async () => {
+ await TestBed.configureTestingModule({
+ imports: [MapComponent]
+ })
+ .compileComponents();
+
+ fixture = TestBed.createComponent(MapComponent);
+ component = fixture.componentInstance;
+ fixture.detectChanges();
+ });
+
+ it('should create', () => {
+ expect(component).toBeTruthy();
+ });
+});
diff --git a/frontend/src/app/map/map.component.ts b/frontend/src/app/map/map.component.ts
new file mode 100644
index 0000000..e57916b
--- /dev/null
+++ b/frontend/src/app/map/map.component.ts
@@ -0,0 +1,11 @@
+import {Component} from '@angular/core';
+
+@Component({
+ standalone: false,
+ selector: 'app-map',
+ templateUrl: './map.component.html',
+ styleUrl: './map.component.scss'
+})
+export class MapComponent {
+
+}