This repository has been archived on 2025-06-18. You can view files and clone it, but you cannot make any changes to its state, such as pushing and creating new issues, pull requests or comments.
casino/frontend/src/app/shared/components/footer/footer.component.html
Phan Huy Tran bd031e8658
Some checks failed
CI / Get Changed Files (pull_request) Successful in 8s
CI / Backend Tests (pull_request) Has been skipped
CI / Checkstyle Main (pull_request) Has been skipped
Pull Request Labeler / labeler (pull_request_target) Successful in 8s
CI / Docker backend validation (pull_request) Has been skipped
Label PRs based on size / Check PR size (pull_request) Successful in 14s
CI / oxlint (pull_request) Failing after 26s
CI / prettier (pull_request) Failing after 35s
CI / eslint (pull_request) Failing after 39s
CI / Docker frontend validation (pull_request) Successful in 49s
CI / test-build (pull_request) Successful in 57s
Claude PR Review / claude-code (pull_request) Successful in 1m13s
fix: adjust inconsistencies in the frontend
2025-06-04 10:29:30 +02:00

64 lines
2.5 KiB
HTML

<footer class="bg-deep-blue mt-auto">
<div class="max-w-7xl mx-auto py-12 px-4 sm:px-6 lg:px-8">
<div class="grid grid-cols-2 md:grid-cols-4 lg:grid-cols-6 gap-8">
<div class="footer-section">
<h3 class="footer-heading">Casino Spiele</h3>
<ul class="space-y-3">
<li>
<a routerLink="/game/slots" class="footer-link">Slots</a>
</li>
<li>
<a routerLink="/game/blackjack" class="footer-link">Blackjack</a>
</li>
<li>
<a routerLink="/game/dice" class="footer-link">Dice</a>
</li>
<li>
<a routerLink="/game/coinflip" class="footer-link">Coinflip</a>
</li>
<li>
<a routerLink="/game/lootboxes" class="footer-link">Lootboxen</a>
</li>
</ul>
</div>
<div class="col-span-2 lg:col-span-2">
<h3 class="footer-heading">Einzahlungsmöglichkeiten</h3>
<div class="grid grid-cols-2 md:grid-cols-3 gap-4">
<div class="footer-payment-method">
<fa-icon [icon]="faMoneyBillTransfer" class="footer-payment-icon"></fa-icon>
<span class="footer-payment-text">Sofort</span>
</div>
<div class="footer-payment-method">
<fa-icon [icon]="faPaypal" class="footer-payment-icon"></fa-icon>
<span class="footer-payment-text">Paypal</span>
</div>
<div class="footer-payment-method">
<fa-icon [icon]="faCreditCard" class="footer-payment-icon"></fa-icon>
<span class="footer-payment-text">Kreditkarte</span>
</div>
<div class="footer-payment-method">
<fa-icon [icon]="faWallet" class="footer-payment-icon"></fa-icon>
<span class="footer-payment-text">Klarna</span>
</div>
<div class="footer-payment-method">
<fa-icon [icon]="faMoneyBillTransfer" class="footer-payment-icon"></fa-icon>
<span class="footer-payment-text">Sepa</span>
</div>
<div class="footer-payment-method">
<fa-icon [icon]="faGooglePay" class="footer-payment-icon"></fa-icon>
<span class="footer-payment-text">Google Pay</span>
</div>
</div>
</div>
</div>
<div class="mt-12 pt-8 border-t border-deep-blue-light">
<div class="flex flex-col md:flex-row justify-between items-center">
<div class="footer-copyright">
© {{ currentYear }} Trustworthy Casino. Keine Rechte vorbehalten.
</div>
</div>
</div>
</div>
</footer>