added images for the games

This commit is contained in:
Lea 2025-02-19 12:25:20 +01:00
parent a933f0b397
commit 09ccad479e
8 changed files with 6 additions and 7 deletions

Binary file not shown.

After

Width:  |  Height:  |  Size: 83 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 28 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 167 KiB

BIN
frontend/public/plinko.webp Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 11 KiB

BIN
frontend/public/poker.webp Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 56 KiB

BIN
frontend/public/slots.webp Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 186 KiB

View file

@ -61,7 +61,6 @@
<div class="space-y-4"> <div class="space-y-4">
<button class="bg-deep-blue-light hover:bg-deep-blue-contrast w-full py-2 rounded">Transaktionen</button> <button class="bg-deep-blue-light hover:bg-deep-blue-contrast w-full py-2 rounded">Transaktionen</button>
<button class="bg-deep-blue-light hover:bg-deep-blue-contrast w-full py-2 rounded">Kontoeinstellungen</button> <button class="bg-deep-blue-light hover:bg-deep-blue-contrast w-full py-2 rounded">Kontoeinstellungen</button>
<button class="bg-accent-red hover:bg-accent-red/90 w-full py-2 rounded">Abmelden</button>
</div> </div>
</div> </div>

View file

@ -37,32 +37,32 @@ export default class HomeComponent {
{ {
id: '1', id: '1',
name: 'Poker', name: 'Poker',
image: '/assets/images/games/poker.jpg', image: '/poker.webp',
}, },
{ {
id: '2', id: '2',
name: 'Blackjack', name: 'Blackjack',
image: '/assets/images/games/blackjack.jpg', image: '/blackjack.webp',
}, },
{ {
id: '3', id: '3',
name: 'Slots', name: 'Slots',
image: '/assets/images/games/slots.jpg', image: '/slots.webp',
}, },
{ {
id: '4', id: '4',
name: 'Plinko', name: 'Plinko',
image: '/assets/images/games/plinko.jpg', image: '/plinko.webp',
}, },
{ {
id: '5', id: '5',
name: 'Liars Dice', name: 'Liars Dice',
image: '/assets/images/games/liars-dice.jpg', image: '/liars-dice.webp',
}, },
{ {
id: '6', id: '6',
name: 'Lootboxen', name: 'Lootboxen',
image: '/assets/images/games/lootboxen.jpg', image: '/lootbox.webp',
} }
]; ];