diff --git a/frontend/src/app/app.component.html b/frontend/src/app/app.component.html index 67fc2d4..828546c 100644 --- a/frontend/src/app/app.component.html +++ b/frontend/src/app/app.component.html @@ -1,7 +1,6 @@
-
-
+ \ No newline at end of file diff --git a/frontend/src/app/feature/home/home.component.html b/frontend/src/app/feature/home/home.component.html index b85ce29..27cec95 100644 --- a/frontend/src/app/feature/home/home.component.html +++ b/frontend/src/app/feature/home/home.component.html @@ -1,14 +1,4 @@ - +
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 @@ + 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 {}