-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
71 lines (67 loc) · 3.82 KB
/
Copy pathindex.html
File metadata and controls
71 lines (67 loc) · 3.82 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>BovaBalls — Settle It With a Bracket</title>
<script src="https://cdn.tailwindcss.com"></script>
<style>
/* Slow-floating BBQ emojis in the hero background */
.float-emoji {
position: absolute;
opacity: 0.15;
animation: float-drift 14s ease-in-out infinite;
pointer-events: none;
user-select: none;
}
@keyframes float-drift {
0%, 100% { transform: translateY(0) rotate(-8deg); }
50% { transform: translateY(-30px) rotate(8deg); }
}
</style>
</head>
<body class="bg-zinc-900 text-white min-h-screen flex flex-col">
<main class="flex-1 flex flex-col items-center justify-center px-4 relative overflow-hidden">
<!-- Floating background emojis -->
<span class="float-emoji text-6xl" style="top: 12%; left: 10%;">🍖</span>
<span class="float-emoji text-5xl" style="top: 22%; right: 14%; animation-delay: -4s;">🔥</span>
<span class="float-emoji text-6xl" style="bottom: 18%; left: 18%; animation-delay: -8s;">🌭</span>
<span class="float-emoji text-5xl" style="bottom: 24%; right: 10%; animation-delay: -11s;">🏆</span>
<!-- Hero -->
<div class="text-center max-w-2xl relative z-10">
<h1 class="text-5xl md:text-7xl font-extrabold tracking-tight mb-4">
Bova<span class="text-transparent bg-clip-text bg-gradient-to-r from-amber-400 to-yellow-500">Balls</span>
</h1>
<p class="text-lg md:text-xl text-zinc-400 mb-10">
64 enter. One leaves. Settle it with a bracket.
</p>
<a href="/bracket/" class="inline-block px-8 py-4 bg-emerald-600 hover:bg-emerald-500 text-white text-lg font-semibold rounded-xl transition-colors shadow-lg shadow-emerald-900/40">
Enter the Bracket
</a>
<!-- Bracket lineup -->
<div class="grid grid-cols-2 md:grid-cols-4 gap-3 mt-14">
<a href="/bracket/?bracket=food" class="block bg-zinc-800/50 hover:bg-zinc-700/60 border border-zinc-700 hover:border-zinc-500 rounded-lg p-4 transition-colors">
<div class="text-3xl mb-2">🍔</div>
<div class="text-sm font-medium text-zinc-200">Food</div>
</a>
<a href="/bracket/?bracket=rappers" class="block bg-zinc-800/50 hover:bg-zinc-700/60 border border-zinc-700 hover:border-zinc-500 rounded-lg p-4 transition-colors">
<div class="text-3xl mb-2">🎤</div>
<div class="text-sm font-medium text-zinc-200">Rappers</div>
</a>
<a href="/bracket/?bracket=stags" class="block bg-zinc-800/50 hover:bg-zinc-700/60 border border-zinc-700 hover:border-zinc-500 rounded-lg p-4 transition-colors">
<div class="text-3xl mb-2">🦌</div>
<div class="text-sm font-medium text-zinc-200">Stags</div>
</a>
<a href="/bracket/?bracket=bbq" class="block bg-zinc-800/50 hover:bg-zinc-700/60 border border-zinc-700 hover:border-zinc-500 rounded-lg p-4 transition-colors">
<div class="text-3xl mb-2">🍖</div>
<div class="text-sm font-medium text-zinc-200">BBQ</div>
</a>
<a href="/bracket/?bracket=nations" class="block bg-zinc-800/50 hover:bg-zinc-700/60 border border-zinc-700 hover:border-zinc-500 rounded-lg p-4 transition-colors">
<div class="text-3xl mb-2">⚽</div>
<div class="text-sm font-medium text-zinc-200">Nations</div>
</a>
</div>
</div>
</main>
</body>
</html>