Spaces:
Sleeping
Sleeping
Create Index.html
Browse files- Index.html +53 -0
Index.html
ADDED
|
@@ -0,0 +1,53 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
<!DOCTYPE html>
|
| 2 |
+
<html lang="en">
|
| 3 |
+
<head>
|
| 4 |
+
<meta charset="UTF-8">
|
| 5 |
+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
| 6 |
+
<script src="https://cdn.tailwindcss.com"></script>
|
| 7 |
+
<title>OdiStay | Neural Grid</title>
|
| 8 |
+
<style>
|
| 9 |
+
body { background: radial-gradient(circle at top, #0c2135, #010a13); min-height: 100vh; }
|
| 10 |
+
.glass { background: rgba(255, 255, 255, 0.03); backdrop-filter: blur(12px); border: 1px solid rgba(255, 255, 255, 0.1); }
|
| 11 |
+
.glow-green { box-shadow: 0 0 15px rgba(34, 197, 94, 0.4); }
|
| 12 |
+
</style>
|
| 13 |
+
</head>
|
| 14 |
+
<body class="text-slate-100 p-4">
|
| 15 |
+
<header class="max-w-6xl mx-auto flex justify-between items-center py-6">
|
| 16 |
+
<h1 class="text-2xl font-bold tracking-tighter text-cyan-400">ODISTAY</h1>
|
| 17 |
+
<div class="glass px-4 py-1 rounded-full text-xs font-mono text-green-400 animate-pulse">● GRID_SYNCHRONIZED</div>
|
| 18 |
+
</header>
|
| 19 |
+
|
| 20 |
+
<main class="max-w-6xl mx-auto grid grid-cols-1 lg:grid-cols-3 gap-6">
|
| 21 |
+
<div class="lg:col-span-2 glass rounded-3xl h-[500px] flex flex-col items-center justify-center relative overflow-hidden">
|
| 22 |
+
<div class="absolute top-4 left-4 z-10 text-[10px] font-mono text-cyan-500 bg-black/40 p-2 rounded">LOGISTICS_FEED: FOLLOWME.MV</div>
|
| 23 |
+
<div class="text-center">
|
| 24 |
+
<p class="text-cyan-400 text-sm font-mono mb-2">SCANNING KAAVU ATOLL...</p>
|
| 25 |
+
<div class="w-64 h-1 bg-cyan-900 rounded-full overflow-hidden">
|
| 26 |
+
<div class="bg-cyan-400 h-full w-1/3 animate-[bounce_2s_infinite]"></div>
|
| 27 |
+
</div>
|
| 28 |
+
</div>
|
| 29 |
+
</div>
|
| 30 |
+
|
| 31 |
+
<div class="space-y-4">
|
| 32 |
+
<h3 class="text-sm font-semibold text-slate-400 uppercase tracking-widest px-2">Active Stays</h3>
|
| 33 |
+
{% for node in nodes %}
|
| 34 |
+
<div class="glass p-5 rounded-2xl hover:bg-white/5 transition group cursor-pointer">
|
| 35 |
+
<div class="flex justify-between items-start">
|
| 36 |
+
<div>
|
| 37 |
+
<h4 class="font-bold text-lg">{{ node.name }}</h4>
|
| 38 |
+
<p class="text-xs text-slate-400">{{ node.island }}</p>
|
| 39 |
+
</div>
|
| 40 |
+
<span class="bg-green-500/20 text-green-400 text-[10px] px-2 py-1 rounded-md font-bold glow-green">
|
| 41 |
+
{{ node.rooms }} ROOMS
|
| 42 |
+
</span>
|
| 43 |
+
</div>
|
| 44 |
+
<div class="mt-4 flex gap-2">
|
| 45 |
+
<a href="https://wa.me/{{ node.whatsapp }}" class="flex-1 bg-cyan-600 hover:bg-cyan-500 py-2 rounded-xl text-center text-xs font-bold transition">WhatsApp Host</a>
|
| 46 |
+
<a href="https://m.followme.mv/public/" target="_blank" class="glass px-4 py-2 rounded-xl text-xs">Track Boat</a>
|
| 47 |
+
</div>
|
| 48 |
+
</div>
|
| 49 |
+
{% endfor %}
|
| 50 |
+
</div>
|
| 51 |
+
</main>
|
| 52 |
+
</body>
|
| 53 |
+
</html>
|