diff --git a/frontend/src/app/feature/home/home.component.ts b/frontend/src/app/feature/home/home.component.ts
index a4b2b8b..f179e2c 100644
--- a/frontend/src/app/feature/home/home.component.ts
+++ b/frontend/src/app/feature/home/home.component.ts
@@ -3,11 +3,12 @@ import { KeycloakService } from 'keycloak-angular';
import { MatDialog } from '@angular/material/dialog';
import { DepositComponent } from '../deposit/deposit.component';
+import { NavbarComponent } from '../../shared/components/navbar/navbar.component';
@Component({
selector: 'app-homepage',
standalone: true,
- imports: [],
- templateUrl: './home.component.html',
+ imports: [NavbarComponent],
+ templateUrl: './homepage.component.html',
changeDetection: ChangeDetectionStrategy.OnPush,
})
export class HomeComponent {
diff --git a/frontend/src/app/landing-page/landing-page.component.html b/frontend/src/app/landing-page/landing-page.component.html
index aa8bbd8..4e7c12f 100644
--- a/frontend/src/app/landing-page/landing-page.component.html
+++ b/frontend/src/app/landing-page/landing-page.component.html
@@ -1 +1,2 @@
+
Einloggen
diff --git a/frontend/src/app/landing-page/landing-page.component.ts b/frontend/src/app/landing-page/landing-page.component.ts
new file mode 100644
index 0000000..826d86f
--- /dev/null
+++ b/frontend/src/app/landing-page/landing-page.component.ts
@@ -0,0 +1,10 @@
+import { Component } from '@angular/core';
+import { NavbarComponent } from '../shared/components/navbar/navbar.component';
+
+@Component({
+ selector: 'app-landing-page',
+ standalone: true,
+ imports: [NavbarComponent],
+ templateUrl: './landing-page.component.html',
+})
+export class LandingPageComponent {}