-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
25 lines (25 loc) · 1.26 KB
/
index.html
File metadata and controls
25 lines (25 loc) · 1.26 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>Sling – Coming Soon</title>
<script src="https://cdn.tailwindcss.com"></script>
<meta name="description" content="Sling – Coming soon. We are shooting the bullseyes to complete this." />
</head>
<body class="min-h-screen bg-gradient-to-br from-slate-900 via-slate-800 to-slate-900 text-white flex items-center justify-center">
<main class="text-center p-8 bg-slate-800/40 rounded-3xl shadow-2xl backdrop-blur-sm border border-slate-700 max-w-2xl">
<h1 class="text-5xl md:text-6xl font-extrabold mb-6 bg-gradient-to-r from-cyan-400 to-blue-500 bg-clip-text text-transparent animate-pulse">
Coming Soon
</h1>
<p class="text-lg md:text-2xl text-gray-300 leading-relaxed mb-6">
We are shooting the bullseyes to complete this. Stay tuned!
</p>
<div class="flex justify-center">
<div class="h-3 w-3 bg-cyan-400 rounded-full animate-bounce mx-1"></div>
<div class="h-3 w-3 bg-blue-400 rounded-full animate-bounce mx-1 [animation-delay:200ms]"></div>
<div class="h-3 w-3 bg-indigo-400 rounded-full animate-bounce mx-1 [animation-delay:400ms]"></div>
</div>
</main>
</body>
</html>