diff --git a/frontend/src/app/feature/landing/landing.component.html b/frontend/src/app/feature/landing/landing.component.html
index ae963a9..2f38d9f 100644
--- a/frontend/src/app/feature/landing/landing.component.html
+++ b/frontend/src/app/feature/landing/landing.component.html
@@ -64,20 +64,20 @@
>
-
-
-
diff --git a/frontend/src/app/shared/components/footer/footer.component.ts b/frontend/src/app/shared/components/footer/footer.component.ts
index 2cb56e1..15d4e0e 100644
--- a/frontend/src/app/shared/components/footer/footer.component.ts
+++ b/frontend/src/app/shared/components/footer/footer.component.ts
@@ -2,12 +2,13 @@ import { ChangeDetectionStrategy, Component } from '@angular/core';
import { FontAwesomeModule } from '@fortawesome/angular-fontawesome';
import { faCreditCard, faMoneyBillTransfer, faWallet } from '@fortawesome/free-solid-svg-icons';
import { faApplePay, faGooglePay, faPaypal } from '@fortawesome/free-brands-svg-icons';
+import {RouterLink} from "@angular/router";
@Component({
selector: 'app-footer',
standalone: true,
templateUrl: './footer.component.html',
- imports: [FontAwesomeModule],
+ imports: [FontAwesomeModule, RouterLink],
changeDetection: ChangeDetectionStrategy.OnPush,
})
export class FooterComponent {
@@ -18,5 +19,4 @@ export class FooterComponent {
faMoneyBillTransfer = faMoneyBillTransfer;
faWallet = faWallet;
faGooglePay = faGooglePay;
- faApplePay = faApplePay;
}