Files
Skunk-Lounge/resources/views/filament/user/pages/lobby.blade.php

20 lines
961 B
PHP

<x-filament-panels::page>
<h1 class="text-2xl font-bold mb-4">Casino Lobby</h1>
<div class="grid grid-cols-1 md:grid-cols-3 gap-4">
<div class="card bg-gray-800 p-4 rounded">
<h3 class="text-lg mb-2">Slots</h3>
<p>Pragmatic-style reels and animations.</p>
<a href="/games/slots" class="filament-button filament-button-size-sm">Play</a>
</div>
<div class="card bg-gray-800 p-4 rounded">
<h3 class="text-lg mb-2">Plinko</h3>
<p>Physics-based drop with multipliers.</p>
<a href="/games/plinko" class="filament-button filament-button-size-sm">Play</a>
</div>
<div class="card bg-gray-800 p-4 rounded">
<h3 class="text-lg mb-2">Wheel Spin</h3>
<p>Fortune wheel with prizes.</p>
<a href="/games/wheel" class="filament-button filament-button-size-sm">Play</a>
</div>
</div>
</x-filament-panels::page>