Cleanup Added lobby menu and page items. fix for root redirect

This commit is contained in:
2025-09-03 22:49:27 +02:00
parent 6e212db8e1
commit eff5aafbdb
25 changed files with 148 additions and 65 deletions

View File

@@ -1,22 +0,0 @@
<x-layout title="Lobby">
<div class="container mx-auto mt-4">
<h1 class="text-2xl font-bold mb-4 text-neon_green text-glow">Casino Lobby</h1>
<div class="grid grid-cols-1 md:grid-cols-3 gap-4">
<div class="card bg-gray_800 p-4 rounded shadow-neon">
<h3 class="text-lg mb-2">Slots</h3>
<p>Pragmatic-style reels and animations.</p>
<a href="/games/slots" class="btn btn-neon mt-2">Play</a>
</div>
<div class="card bg-gray_800 p-4 rounded shadow-neon">
<h3 class="text-lg mb-2">Plinko</h3>
<p>Physics-based drop with multipliers.</p>
<a href="/games/plinko" class="btn btn-neon mt-2">Play</a>
</div>
<div class="card bg-gray_800 p-4 rounded shadow-neon">
<h3 class="text-lg mb-2">Wheel Spin</h3>
<p>Fortune wheel with prizes.</p>
<a href="/games/wheel" class="btn btn-neon mt-2">Play</a>
</div>
</div>
</div>
</x-layout>

View File

@@ -0,0 +1,3 @@
<x-filament-panels::page>
</x-filament-panels::page>

View File

@@ -0,0 +1,4 @@
<x-filament-panels::page>
<h1 class="text-2xl font-bold mb-4">Deposits</h1>
<p>Claim promo codes for fake currency. Claim history below (coming soon).</p>
</x-filament-panels::page>

View File

@@ -1,3 +1,20 @@
<x-filament-panels::page>
</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>

View File

@@ -0,0 +1,4 @@
<x-filament-panels::page>
<h1 class="text-2xl font-bold mb-4">Profile</h1>
<p>Change password, profile picture, email, add 2FA (coming soon).</p>
</x-filament-panels::page>

View File

@@ -0,0 +1,3 @@
<x-filament-panels::page>
<h1 class="text-2xl font-bold mb-4">Transactions</h1><p>View deposits, withdrawals, wins/losses (coming soon).</p>
</x-filament-panels::page>

View File

@@ -0,0 +1,3 @@
<x-filament-panels::page>
<h1 class="text-2xl font-bold mb-4">About Us</h1><p>Skunk Lounge is a fake casino for entertainment only. No real money.</p>
</x-filament-panels::page>

View File

@@ -0,0 +1,4 @@
<x-filament-widgets::widget>
<x-filament::section>
<a href="/admin" class="btn-neon">Admin Panel</a>
</x-filament-widgets::widget>

View File

@@ -0,0 +1,3 @@
<x-filament-widgets::widget>
<a href="/admin" class="filament-button filament-button-size-sm">Admin Panel</a>
</x-filament-widgets::widget>

View File

@@ -1,4 +0,0 @@
<x-layout title="About Us">
<h1 class="text-2xl font-bold mb-4 glow">About Us</h1>
<p>Skunk Lounge is a fake casino for entertainment only. No real money involved.</p>
</x-layout>

View File

@@ -1,4 +0,0 @@
<x-layout title="Deposits">
<h1 class="text-2xl font-bold mb-4 glow">Deposits</h1>
<p>Claim promo codes for fake currency. Claim history below. (Coming soon)</p>
</x-layout>

View File

@@ -1,4 +0,0 @@
<x-layout title="Profile">
<h1 class="text-2xl font-bold mb-4 glow">Profile</h1>
<p>Change password, profile picture, email, add 2FA, etc. (Coming soon)</p>
</x-layout>

View File

@@ -1,4 +0,0 @@
<x-layout title="Transactions">
<h1 class="text-2xl font-bold mb-4 glow">Transactions</h1>
<p>View deposits, withdrawals, wins/losses. (Coming soon)</p>
</x-layout>

View File

@@ -1,4 +0,0 @@
<x-layout title="VIP">
<h1 class="text-2xl font-bold mb-4 glow">VIP</h1>
<p>Subscribe with casino money for VIP status. (Coming soon)</p>
</x-layout>