Files
Skunk-Lounge/resources/views/landing/index.blade.php

40 lines
2.1 KiB
PHP

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Skunk Lounge - Fake Casino</title>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/css/bootstrap.min.css">
<style>
body { background-color: #111; color: #fff; font-family: Arial, sans-serif; }
.glow { text-shadow: 0 0 10px #ff00de; }
.shadow-neon { box-shadow: 0 0 15px #ff00de; }
.btn-neon { background-color: #ff00de; color: #111; padding: 0.5rem 1rem; border-radius: 0.25rem; box-shadow: 0 0 10px #ff00de; }
.btn-neon:hover { box-shadow: 0 0 15px #ff00de; }
</style>
</head>
<body>
<div class="container mx-auto mt-4 bg-gray-900 text-white p-4 rounded shadow-neon">
<h1 class="text-3xl font-bold mb-4 glow">Welcome to Skunk Lounge</h1>
<p class="mb-4">Self-hosted fake casino for entertainment only. No real money—only fake currency for dopamine rushes. Mimicking Stake.com and Jetmyst.com with sleek navigation and vibrant games.</p>
<div class="grid grid-cols-1 md:grid-cols-3 gap-4 mb-4">
<div class="card bg-gray-800 p-4 rounded shadow-neon">
<h3 class="text-lg mb-2">Games Available</h3>
<p class="text-2xl font-bold glow">{{ $gamesCount }}</p>
</div>
<div class="card bg-gray-800 p-4 rounded shadow-neon">
<h3 class="text-lg mb-2">Registered Users</h3>
<p class="text-2xl font-bold glow">{{ $usersCount }}</p>
</div>
<div class="card bg-gray-800 p-4 rounded shadow-neon">
<h3 class="text-lg mb-2">Biggest Jackpot Won</h3>
<p class="text-2xl font-bold glow">${{ $biggestJackpot }}</p>
</div>
</div>
<div class="flex justify-center">
<a href="{{ route('filament.user.auth.login') }}" class="btn-neon mr-4">Login</a>
<a href="{{ route('filament.user.auth.register') }}" class="btn-neon">Register</a>
</div>
</div>
</body>
</html>