diff --git a/frontend/src/app/feature/landing/landing.component.html b/frontend/src/app/feature/landing/landing.component.html index 2f38d9f..ae963a9 100644 --- a/frontend/src/app/feature/landing/landing.component.html +++ b/frontend/src/app/feature/landing/landing.component.html @@ -64,20 +64,20 @@ > - + +
+
-

Coinflip

-

Münzwurf

+

Poker

+

Texas Hold'em & mehr

Jetzt Spielen
-
- -

Dice

@@ -165,7 +165,7 @@
24/7
-
Support
+
Support *
diff --git a/frontend/src/app/shared/components/footer/footer.component.html b/frontend/src/app/shared/components/footer/footer.component.html index ef2de86..79cf823 100644 --- a/frontend/src/app/shared/components/footer/footer.component.html +++ b/frontend/src/app/shared/components/footer/footer.component.html @@ -5,19 +5,24 @@ +
+ @@ -49,6 +54,10 @@ Google Pay + @@ -56,6 +65,10 @@
diff --git a/frontend/src/app/shared/components/footer/footer.component.ts b/frontend/src/app/shared/components/footer/footer.component.ts index b47b6fd..2cb56e1 100644 --- a/frontend/src/app/shared/components/footer/footer.component.ts +++ b/frontend/src/app/shared/components/footer/footer.component.ts @@ -1,14 +1,13 @@ import { ChangeDetectionStrategy, Component } from '@angular/core'; import { FontAwesomeModule } from '@fortawesome/angular-fontawesome'; import { faCreditCard, faMoneyBillTransfer, faWallet } from '@fortawesome/free-solid-svg-icons'; -import { faGooglePay, faPaypal } from '@fortawesome/free-brands-svg-icons'; -import { RouterLink } from '@angular/router'; +import { faApplePay, faGooglePay, faPaypal } from '@fortawesome/free-brands-svg-icons'; @Component({ selector: 'app-footer', standalone: true, templateUrl: './footer.component.html', - imports: [FontAwesomeModule, RouterLink], + imports: [FontAwesomeModule], changeDetection: ChangeDetectionStrategy.OnPush, }) export class FooterComponent { @@ -19,4 +18,5 @@ export class FooterComponent { faMoneyBillTransfer = faMoneyBillTransfer; faWallet = faWallet; faGooglePay = faGooglePay; + faApplePay = faApplePay; }