ProjectGenesis's picture
Generate animated number designs for a futuristic "Top 10 Trending Games" leaderboard.
80a975e verified
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Neon Leaderboard Arcade</title>
<link rel="stylesheet" href="style.css">
<script src="https://cdn.tailwindcss.com"></script>
<script src="https://cdn.jsdelivr.net/npm/feather-icons/dist/feather.min.js"></script>
<script src="https://unpkg.com/feather-icons"></script>
<link href="https://fonts.googleapis.com/css2?family=Orbitron:wght@400;700&family=Rajdhani:wght@500;700&display=swap" rel="stylesheet">
</head>
<body class="bg-gray-900 min-h-screen">
<custom-header></custom-header>
<main class="container mx-auto px-4 py-12">
<h1 class="text-center text-5xl font-bold mb-16 font-orbitron text-transparent bg-clip-text bg-gradient-to-r from-yellow-400 to-orange-500">
TOP 10 TRENDING GAMES
</h1>
<div class="grid grid-cols-1 md:grid-cols-2 gap-12">
<!-- Glow Pulse Animation -->
<div class="leaderboard-card">
<h2 class="text-xl font-rajdhani text-white mb-6">GLOW PULSE</h2>
<div class="space-y-4" id="glow-pulse-board"></div>
</div>
<!-- Slide In Animation -->
<div class="leaderboard-card">
<h2 class="text-xl font-rajdhani text-white mb-6">SLIDE IN</h2>
<div class="space-y-4" id="slide-in-board"></div>
</div>
<!-- Countdown Snap Animation -->
<div class="leaderboard-card">
<h2 class="text-xl font-rajdhani text-white mb-6">COUNTDOWN SNAP</h2>
<div class="space-y-4" id="countdown-board"></div>
</div>
<!-- Flicker Reveal Animation -->
<div class="leaderboard-card">
<h2 class="text-xl font-rajdhani text-white mb-6">FLICKER REVEAL</h2>
<div class="space-y-4" id="flicker-board"></div>
</div>
</div>
</main>
<custom-footer></custom-footer>
<script src="components/header.js"></script>
<script src="components/footer.js"></script>
<script src="script.js"></script>
<script>feather.replace();</script>
<script src="https://huggingface.co/deepsite/deepsite-badge.js"></script>
</body>
</html>