Freefall commited on
Commit
6c14e95
·
verified ·
1 Parent(s): 70c3785

Add 2 files

Browse files
Files changed (2) hide show
  1. README.md +6 -4
  2. index.html +355 -19
README.md CHANGED
@@ -1,10 +1,12 @@
1
  ---
2
- title: Wont Orbit
3
- emoji: 🐨
4
  colorFrom: blue
5
- colorTo: red
6
  sdk: static
7
  pinned: false
 
 
8
  ---
9
 
10
- Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
 
1
  ---
2
+ title: wont-orbit
3
+ emoji: 🐳
4
  colorFrom: blue
5
+ colorTo: green
6
  sdk: static
7
  pinned: false
8
+ tags:
9
+ - deepsite
10
  ---
11
 
12
+ Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
index.html CHANGED
@@ -1,19 +1,355 @@
1
- <!doctype html>
2
- <html>
3
- <head>
4
- <meta charset="utf-8" />
5
- <meta name="viewport" content="width=device-width" />
6
- <title>My static Space</title>
7
- <link rel="stylesheet" href="style.css" />
8
- </head>
9
- <body>
10
- <div class="card">
11
- <h1>Welcome to your static Space!</h1>
12
- <p>You can modify this app directly by editing <i>index.html</i> in the Files and versions tab.</p>
13
- <p>
14
- Also don't forget to check the
15
- <a href="https://huggingface.co/docs/hub/spaces" target="_blank">Spaces documentation</a>.
16
- </p>
17
- </div>
18
- </body>
19
- </html>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
+ <title>Cosmic Explorer Dashboard</title>
7
+ <script src="https://cdn.tailwindcss.com"></script>
8
+ <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
9
+ <style>
10
+ @import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300;400;500;600;700&display=swap');
11
+
12
+ :root {
13
+ --primary: #6d28d9;
14
+ --secondary: #10b981;
15
+ --dark: #1e293b;
16
+ --light: #f8fafc;
17
+ }
18
+
19
+ body {
20
+ font-family: 'Space Grotesk', sans-serif;
21
+ background-color: #0f172a;
22
+ color: var(--light);
23
+ }
24
+
25
+ .gradient-bg {
26
+ background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
27
+ }
28
+
29
+ .card-glass {
30
+ background: rgba(30, 41, 59, 0.5);
31
+ backdrop-filter: blur(10px);
32
+ border: 1px solid rgba(255, 255, 255, 0.1);
33
+ }
34
+
35
+ .pulse {
36
+ animation: pulse 2s infinite;
37
+ }
38
+
39
+ @keyframes pulse {
40
+ 0% {
41
+ box-shadow: 0 0 0 0 rgba(109, 40, 217, 0.7);
42
+ }
43
+ 70% {
44
+ box-shadow: 0 0 0 10px rgba(109, 40, 217, 0);
45
+ }
46
+ 100% {
47
+ box-shadow: 0 0 0 0 rgba(109, 40, 217, 0);
48
+ }
49
+ }
50
+
51
+ .orbit {
52
+ position: relative;
53
+ width: 200px;
54
+ height: 200px;
55
+ }
56
+
57
+ .planet {
58
+ position: absolute;
59
+ width: 30px;
60
+ height: 30px;
61
+ border-radius: 50%;
62
+ background: var(--secondary);
63
+ top: 50%;
64
+ left: 50%;
65
+ transform: translate(-50%, -50%);
66
+ }
67
+
68
+ .moon {
69
+ position: absolute;
70
+ width: 12px;
71
+ height: 12px;
72
+ border-radius: 50%;
73
+ background: #f8fafc;
74
+ animation: orbit 8s linear infinite;
75
+ }
76
+
77
+ @keyframes orbit {
78
+ from { transform: rotate(0deg) translateX(60px) rotate(0deg); }
79
+ to { transform: rotate(360deg) translateX(60px) rotate(-360deg); }
80
+ }
81
+ </style>
82
+ </head>
83
+ <body class="min-h-screen gradient-bg">
84
+ <div class="container mx-auto px-4 py-8">
85
+ <!-- Header -->
86
+ <header class="flex justify-between items-center mb-10">
87
+ <div class="flex items-center space-x-3">
88
+ <div class="w-12 h-12 rounded-full bg-purple-600 flex items-center justify-center">
89
+ <i class="fas fa-rocket text-white text-xl"></i>
90
+ </div>
91
+ <h1 class="text-2xl font-bold bg-clip-text text-transparent bg-gradient-to-r from-purple-400 to-emerald-400">
92
+ Cosmic Explorer
93
+ </h1>
94
+ </div>
95
+ <div class="flex items-center space-x-4">
96
+ <button class="relative p-2 rounded-full hover:bg-slate-700 transition">
97
+ <i class="fas fa-bell text-slate-300"></i>
98
+ <span class="absolute top-0 right-0 w-2 h-2 bg-red-500 rounded-full"></span>
99
+ </button>
100
+ <div class="flex items-center space-x-2">
101
+ <div class="w-10 h-10 rounded-full bg-slate-600 flex items-center justify-center">
102
+ <i class="fas fa-user-astronaut text-white"></i>
103
+ </div>
104
+ <span class="font-medium">Explorer</span>
105
+ </div>
106
+ </div>
107
+ </header>
108
+
109
+ <!-- Main Content -->
110
+ <main class="grid grid-cols-1 lg:grid-cols-3 gap-6">
111
+ <!-- Left Sidebar -->
112
+ <div class="lg:col-span-1 space-y-6">
113
+ <!-- Mission Status -->
114
+ <div class="card-glass rounded-xl p-6">
115
+ <h2 class="text-lg font-semibold mb-4 flex items-center">
116
+ <i class="fas fa-satellite-dish mr-2 text-purple-400"></i>
117
+ Mission Status
118
+ </h2>
119
+ <div class="space-y-4">
120
+ <div class="flex items-center justify-between">
121
+ <span class="text-slate-300">Fuel Level</span>
122
+ <div class="w-24 bg-slate-700 rounded-full h-2">
123
+ <div class="bg-emerald-400 h-2 rounded-full" style="width: 85%"></div>
124
+ </div>
125
+ </div>
126
+ <div class="flex items-center justify-between">
127
+ <span class="text-slate-300">Oxygen Supply</span>
128
+ <div class="w-24 bg-slate-700 rounded-full h-2">
129
+ <div class="bg-blue-400 h-2 rounded-full" style="width: 72%"></div>
130
+ </div>
131
+ </div>
132
+ <div class="flex items-center justify-between">
133
+ <span class="text-slate-300">Power Output</span>
134
+ <div class="w-24 bg-slate-700 rounded-full h-2">
135
+ <div class="bg-purple-400 h-2 rounded-full" style="width: 93%"></div>
136
+ </div>
137
+ </div>
138
+ </div>
139
+ <button class="mt-6 w-full py-2 bg-purple-600 hover:bg-purple-700 rounded-lg font-medium transition flex items-center justify-center space-x-2">
140
+ <i class="fas fa-play"></i>
141
+ <span>Launch Sequence</span>
142
+ </button>
143
+ </div>
144
+
145
+ <!-- Recent Discoveries -->
146
+ <div class="card-glass rounded-xl p-6">
147
+ <h2 class="text-lg font-semibold mb-4 flex items-center">
148
+ <i class="fas fa-star mr-2 text-yellow-400"></i>
149
+ Recent Discoveries
150
+ </h2>
151
+ <div class="space-y-3">
152
+ <div class="flex items-start space-x-3">
153
+ <div class="w-10 h-10 rounded-full bg-slate-700 flex items-center justify-center">
154
+ <i class="fas fa-atom text-purple-400"></i>
155
+ </div>
156
+ <div>
157
+ <h3 class="font-medium">Quantum Nebula</h3>
158
+ <p class="text-sm text-slate-400">Located in Andromeda sector</p>
159
+ </div>
160
+ </div>
161
+ <div class="flex items-start space-x-3">
162
+ <div class="w-10 h-10 rounded-full bg-slate-700 flex items-center justify-center">
163
+ <i class="fas fa-meteor text-orange-400"></i>
164
+ </div>
165
+ <div>
166
+ <h3 class="font-medium">Crystalline Asteroid</h3>
167
+ <p class="text-sm text-slate-400">Rich in rare minerals</p>
168
+ </div>
169
+ </div>
170
+ <div class="flex items-start space-x-3">
171
+ <div class="w-10 h-10 rounded-full bg-slate-700 flex items-center justify-center">
172
+ <i class="fas fa-water text-blue-400"></i>
173
+ </div>
174
+ <div>
175
+ <h3 class="font-medium">Aqua Planet</h3>
176
+ <p class="text-sm text-slate-400">Potential for life</p>
177
+ </div>
178
+ </div>
179
+ </div>
180
+ </div>
181
+ </div>
182
+
183
+ <!-- Main Dashboard -->
184
+ <div class="lg:col-span-2 space-y-6">
185
+ <!-- Orbit Visualization -->
186
+ <div class="card-glass rounded-xl p-6">
187
+ <div class="flex justify-between items-center mb-6">
188
+ <h2 class="text-lg font-semibold flex items-center">
189
+ <i class="fas fa-globe-americas mr-2 text-emerald-400"></i>
190
+ Current Orbit
191
+ </h2>
192
+ <div class="flex space-x-2">
193
+ <button class="px-3 py-1 bg-slate-700 rounded-lg text-sm">Zoom In</button>
194
+ <button class="px-3 py-1 bg-slate-700 rounded-lg text-sm">Zoom Out</button>
195
+ </div>
196
+ </div>
197
+ <div class="flex flex-col items-center">
198
+ <div class="orbit mb-6">
199
+ <div class="planet pulse"></div>
200
+ <div class="moon"></div>
201
+ </div>
202
+ <div class="w-full bg-slate-800 rounded-lg p-4">
203
+ <div class="flex justify-between text-sm mb-2">
204
+ <span>Orbital Velocity</span>
205
+ <span class="font-mono">7.8 km/s</span>
206
+ </div>
207
+ <div class="flex justify-between text-sm mb-2">
208
+ <span>Altitude</span>
209
+ <span class="font-mono">402 km</span>
210
+ </div>
211
+ <div class="flex justify-between text-sm">
212
+ <span>Inclination</span>
213
+ <span class="font-mono">51.6°</span>
214
+ </div>
215
+ </div>
216
+ </div>
217
+ </div>
218
+
219
+ <!-- Telemetry Data -->
220
+ <div class="grid grid-cols-1 md:grid-cols-2 gap-6">
221
+ <div class="card-glass rounded-xl p-6">
222
+ <h2 class="text-lg font-semibold mb-4 flex items-center">
223
+ <i class="fas fa-temperature-high mr-2 text-red-400"></i>
224
+ Thermal Control
225
+ </h2>
226
+ <div class="space-y-4">
227
+ <div>
228
+ <div class="flex justify-between text-sm mb-1">
229
+ <span>External</span>
230
+ <span>-120°C</span>
231
+ </div>
232
+ <div class="w-full bg-slate-800 rounded-full h-2">
233
+ <div class="bg-blue-400 h-2 rounded-full" style="width: 15%"></div>
234
+ </div>
235
+ </div>
236
+ <div>
237
+ <div class="flex justify-between text-sm mb-1">
238
+ <span>Internal</span>
239
+ <span>22°C</span>
240
+ </div>
241
+ <div class="w-full bg-slate-800 rounded-full h-2">
242
+ <div class="bg-green-400 h-2 rounded-full" style="width: 65%"></div>
243
+ </div>
244
+ </div>
245
+ <div>
246
+ <div class="flex justify-between text-sm mb-1">
247
+ <span>Engine</span>
248
+ <span>320°C</span>
249
+ </div>
250
+ <div class="w-full bg-slate-800 rounded-full h-2">
251
+ <div class="bg-red-400 h-2 rounded-full" style="width: 80%"></div>
252
+ </div>
253
+ </div>
254
+ </div>
255
+ </div>
256
+
257
+ <div class="card-glass rounded-xl p-6">
258
+ <h2 class="text-lg font-semibold mb-4 flex items-center">
259
+ <i class="fas fa-tachometer-alt mr-2 text-purple-400"></i>
260
+ Navigation Data
261
+ </h2>
262
+ <div class="grid grid-cols-2 gap-4">
263
+ <div class="bg-slate-800 p-3 rounded-lg">
264
+ <div class="text-xs text-slate-400 mb-1">Latitude</div>
265
+ <div class="font-mono">28.5° N</div>
266
+ </div>
267
+ <div class="bg-slate-800 p-3 rounded-lg">
268
+ <div class="text-xs text-slate-400 mb-1">Longitude</div>
269
+ <div class="font-mono">80.6° W</div>
270
+ </div>
271
+ <div class="bg-slate-800 p-3 rounded-lg">
272
+ <div class="text-xs text-slate-400 mb-1">Speed</div>
273
+ <div class="font-mono">7.66 km/s</div>
274
+ </div>
275
+ <div class="bg-slate-800 p-3 rounded-lg">
276
+ <div class="text-xs text-slate-400 mb-1">Altitude</div>
277
+ <div class="font-mono">402 km</div>
278
+ </div>
279
+ </div>
280
+ </div>
281
+ </div>
282
+
283
+ <!-- Communication Controls -->
284
+ <div class="card-glass rounded-xl p-6">
285
+ <h2 class="text-lg font-semibold mb-4 flex items-center">
286
+ <i class="fas fa-broadcast-tower mr-2 text-blue-400"></i>
287
+ Communication
288
+ </h2>
289
+ <div class="flex flex-col md:flex-row md:items-center md:justify-between space-y-4 md:space-y-0">
290
+ <div class="flex items-center space-x-3">
291
+ <div class="relative">
292
+ <div class="w-12 h-12 rounded-full bg-blue-900 flex items-center justify-center">
293
+ <i class="fas fa-satellite text-blue-300"></i>
294
+ </div>
295
+ <div class="absolute -bottom-1 -right-1 w-5 h-5 bg-green-500 rounded-full border-2 border-slate-800"></div>
296
+ </div>
297
+ <div>
298
+ <h3 class="font-medium">Signal Strength</h3>
299
+ <p class="text-sm text-slate-400">Connected to Deep Space Network</p>
300
+ </div>
301
+ </div>
302
+ <div class="flex space-x-3">
303
+ <button class="px-4 py-2 bg-blue-600 hover:bg-blue-700 rounded-lg flex items-center space-x-2">
304
+ <i class="fas fa-microphone"></i>
305
+ <span>Transmit</span>
306
+ </button>
307
+ <button class="px-4 py-2 bg-slate-700 hover:bg-slate-600 rounded-lg flex items-center space-x-2">
308
+ <i class="fas fa-headphones"></i>
309
+ <span>Receive</span>
310
+ </button>
311
+ </div>
312
+ </div>
313
+ </div>
314
+ </div>
315
+ </main>
316
+
317
+ <!-- Footer -->
318
+ <footer class="mt-12 pt-6 border-t border-slate-800 text-center text-slate-500 text-sm">
319
+ <p>Cosmic Explorer Dashboard v1.0 • Mission Control: Houston</p>
320
+ <p class="mt-1">© 2023 Space Exploration Technologies</p>
321
+ </footer>
322
+ </div>
323
+
324
+ <script>
325
+ // Simple animation for the dashboard
326
+ document.addEventListener('DOMContentLoaded', function() {
327
+ // Pulse animation for important elements
328
+ const pulseElements = document.querySelectorAll('.pulse');
329
+ pulseElements.forEach(el => {
330
+ el.addEventListener('mouseenter', () => {
331
+ el.style.animation = 'pulse 1s infinite';
332
+ });
333
+ el.addEventListener('mouseleave', () => {
334
+ el.style.animation = 'pulse 2s infinite';
335
+ });
336
+ });
337
+
338
+ // Simulate data updates
339
+ setInterval(() => {
340
+ const randomTemp = Math.floor(Math.random() * 10) + 18;
341
+ document.querySelectorAll('.font-mono')[2].textContent = `${randomTemp}.${Math.floor(Math.random() * 10)}° N`;
342
+
343
+ const randomSpeed = (Math.random() * 0.2 + 7.6).toFixed(2);
344
+ document.querySelectorAll('.font-mono')[4].textContent = `${randomSpeed} km/s`;
345
+ }, 3000);
346
+
347
+ // Launch sequence button
348
+ const launchBtn = document.querySelector('button:contains("Launch Sequence")');
349
+ launchBtn.addEventListener('click', () => {
350
+ alert('🚀 Launch sequence initiated! Preparing for takeoff in T-10 seconds...');
351
+ });
352
+ });
353
+ </script>
354
+ <p style="border-radius: 8px; text-align: center; font-size: 12px; color: #fff; margin-top: 16px;position: fixed; left: 8px; bottom: 8px; z-index: 10; background: rgba(0, 0, 0, 0.8); padding: 4px 8px;">Made with <img src="https://enzostvs-deepsite.hf.space/logo.svg" alt="DeepSite Logo" style="width: 16px; height: 16px; vertical-align: middle;display:inline-block;margin-right:3px;filter:brightness(0) invert(1);"><a href="https://enzostvs-deepsite.hf.space" style="color: #fff;text-decoration: underline;" target="_blank" >DeepSite</a> - 🧬 <a href="https://enzostvs-deepsite.hf.space?remix=Freefall/wont-orbit" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
355
+ </html>