feat: add footer component and FontAwesome integration
This commit is contained in:
parent
29305a75b1
commit
325bc118ee
10 changed files with 219 additions and 17 deletions
114
frontend/src/app/shared/components/footer/footer.component.html
Normal file
114
frontend/src/app/shared/components/footer/footer.component.html
Normal file
|
@ -0,0 +1,114 @@
|
|||
<footer class="bg-deep-blue-contrast 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="col-span-2 md:col-span-1">
|
||||
<h3 class="text-white text-sm font-semibold mb-4">Casino Spiele</h3>
|
||||
<ul class="space-y-3">
|
||||
<li>
|
||||
<a
|
||||
href="#"
|
||||
class="text-gray-400 hover:text-white text-sm transition-colors duration-200"
|
||||
>Slots</a
|
||||
>
|
||||
</li>
|
||||
<li>
|
||||
<a
|
||||
href="#"
|
||||
class="text-gray-400 hover:text-white text-sm transition-colors duration-200"
|
||||
>Plinko</a
|
||||
>
|
||||
</li>
|
||||
<li>
|
||||
<a
|
||||
href="#"
|
||||
class="text-gray-400 hover:text-white text-sm transition-colors duration-200"
|
||||
>Blackjack</a
|
||||
>
|
||||
</li>
|
||||
<li>
|
||||
<a
|
||||
href="#"
|
||||
class="text-gray-400 hover:text-white text-sm transition-colors duration-200"
|
||||
>Poker</a
|
||||
>
|
||||
</li>
|
||||
<li>
|
||||
<a
|
||||
href="#"
|
||||
class="text-gray-400 hover:text-white text-sm transition-colors duration-200"
|
||||
>Liars Dice</a
|
||||
>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="col-span-2 md:col-span-1">
|
||||
<h3 class="text-white text-sm font-semibold mb-4">Andere Spiele</h3>
|
||||
<ul class="space-y-3">
|
||||
<li>
|
||||
<a
|
||||
href="#"
|
||||
class="text-gray-400 hover:text-white text-sm transition-colors duration-200"
|
||||
>Lootboxen</a
|
||||
>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
<div class="col-span-2 lg:col-span-2">
|
||||
<h3 class="text-white text-sm font-semibold mb-4">Einzahlungsmöglichkeiten</h3>
|
||||
<div class="grid grid-cols-2 md:grid-cols-3 gap-4">
|
||||
<div
|
||||
class="bg-deep-blue rounded p-3 flex items-center justify-center space-x-2 hover:bg-deep-blue/50 transition-colors duration-200"
|
||||
>
|
||||
<fa-icon [icon]="faMoneyBillTransfer" class="text-gray-400 text-lg"></fa-icon>
|
||||
<span class="text-gray-400 text-xs whitespace-nowrap">Sofort</span>
|
||||
</div>
|
||||
<div
|
||||
class="bg-deep-blue rounded p-3 flex items-center justify-center space-x-2 hover:bg-deep-blue/50 transition-colors duration-200"
|
||||
>
|
||||
<fa-icon [icon]="faPaypal" class="text-gray-400 text-lg"></fa-icon>
|
||||
<span class="text-gray-400 text-xs whitespace-nowrap">Paypal</span>
|
||||
</div>
|
||||
<div
|
||||
class="bg-deep-blue rounded p-3 flex items-center justify-center space-x-2 hover:bg-deep-blue/50 transition-colors duration-200"
|
||||
>
|
||||
<fa-icon [icon]="faCreditCard" class="text-gray-400 text-lg"></fa-icon>
|
||||
<span class="text-gray-400 text-xs whitespace-nowrap">Kreditkarte</span>
|
||||
</div>
|
||||
<div
|
||||
class="bg-deep-blue rounded p-3 flex items-center justify-center space-x-2 hover:bg-deep-blue/50 transition-colors duration-200"
|
||||
>
|
||||
<fa-icon [icon]="faWallet" class="text-gray-400 text-lg"></fa-icon>
|
||||
<span class="text-gray-400 text-xs whitespace-nowrap">Klara</span>
|
||||
</div>
|
||||
<div
|
||||
class="bg-deep-blue rounded p-3 flex items-center justify-center space-x-2 hover:bg-deep-blue/50 transition-colors duration-200"
|
||||
>
|
||||
<fa-icon [icon]="faMoneyBillTransfer" class="text-gray-400 text-lg"></fa-icon>
|
||||
<span class="text-gray-400 text-xs whitespace-nowrap">Sepa</span>
|
||||
</div>
|
||||
<div
|
||||
class="bg-deep-blue rounded p-3 flex items-center justify-center space-x-2 hover:bg-deep-blue/50 transition-colors duration-200"
|
||||
>
|
||||
<fa-icon [icon]="faGooglePay" class="text-gray-400 text-lg"></fa-icon>
|
||||
<span class="text-gray-400 text-xs whitespace-nowrap">Google Pay</span>
|
||||
</div>
|
||||
<div
|
||||
class="bg-deep-blue rounded p-3 flex items-center justify-center space-x-2 hover:bg-deep-blue/50 transition-colors duration-200"
|
||||
>
|
||||
<fa-icon [icon]="faApplePay" class="text-gray-400 text-lg"></fa-icon>
|
||||
<span class="text-gray-400 text-xs whitespace-nowrap">Apple 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="text-gray-400 text-sm mb-4 md:mb-0">
|
||||
© {{ currentYear }} Trustworthy Casino. Keine Rechte vorbehalten.
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</footer>
|
Loading…
Add table
Add a link
Reference in a new issue