ParulPandey commited on
Commit
8e9c6c4
·
verified ·
1 Parent(s): 6170e11

when i click, animated videos can you link https://huggingface.co/spaces/ParulPandey/watchful-sun to it - Initial Deployment

Browse files
Files changed (2) hide show
  1. README.md +7 -5
  2. index.html +438 -19
README.md CHANGED
@@ -1,10 +1,12 @@
1
  ---
2
- title: Space Explorers Academy
3
- emoji:
4
- colorFrom: green
5
- colorTo: indigo
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: space-explorers-academy
3
+ emoji: 🐳
4
+ colorFrom: blue
5
+ colorTo: pink
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,438 @@
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>Space Explorers Academy | Fun Space Learning for Kids</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=Comic+Neue:wght@400;700&family=Orbitron:wght@400;700&display=swap');
11
+
12
+ body {
13
+ font-family: 'Comic Neue', cursive;
14
+ background-color: #0a0e2e;
15
+ color: white;
16
+ }
17
+
18
+ .title-font {
19
+ font-family: 'Orbitron', sans-serif;
20
+ }
21
+
22
+ .planet-card {
23
+ transition: all 0.3s ease;
24
+ }
25
+
26
+ .planet-card:hover {
27
+ transform: scale(1.05);
28
+ }
29
+
30
+ .astronaut-float {
31
+ animation: float 6s ease-in-out infinite;
32
+ }
33
+
34
+ @keyframes float {
35
+ 0% { transform: translateY(0px); }
36
+ 50% { transform: translateY(-20px); }
37
+ 100% { transform: translateY(0px); }
38
+ }
39
+
40
+ .rocket-launch {
41
+ animation: launch 8s linear infinite;
42
+ }
43
+
44
+ @keyframes launch {
45
+ 0% { transform: translateY(0) scale(0.8); opacity: 0; }
46
+ 20% { transform: translateY(-50px) scale(1); opacity: 1; }
47
+ 80% { transform: translateY(-500px) scale(1.2); opacity: 1; }
48
+ 100% { transform: translateY(-600px) scale(1.5); opacity: 0; }
49
+ }
50
+
51
+ .star {
52
+ position: absolute;
53
+ background-color: white;
54
+ border-radius: 50%;
55
+ animation: twinkle 2s infinite alternate;
56
+ }
57
+
58
+ @keyframes twinkle {
59
+ 0% { opacity: 0.2; }
60
+ 100% { opacity: 1; }
61
+ }
62
+ </style>
63
+ </head>
64
+ <body class="min-h-screen">
65
+ <!-- Stars Background -->
66
+ <div id="stars-container" class="fixed inset-0 overflow-hidden -z-10"></div>
67
+
68
+ <!-- Header -->
69
+ <header class="bg-gradient-to-b from-purple-900 to-blue-900 py-6 px-4 shadow-lg">
70
+ <div class="container mx-auto flex flex-col md:flex-row justify-between items-center">
71
+ <div class="flex items-center mb-4 md:mb-0">
72
+ <i class="fas fa-rocket text-3xl text-yellow-400 mr-3"></i>
73
+ <h1 class="title-font text-3xl md:text-4xl font-bold bg-clip-text text-transparent bg-gradient-to-r from-yellow-400 to-pink-500">
74
+ Space Explorers Academy
75
+ </h1>
76
+ </div>
77
+ <nav class="flex space-x-1 md:space-x-6">
78
+ <a href="#" class="px-3 py-2 rounded-full hover:bg-purple-700 transition font-bold text-sm md:text-base">Home</a>
79
+ <a href="#" class="px-3 py-2 rounded-full hover:bg-purple-700 transition font-bold text-sm md:text-base">Courses</a>
80
+ <a href="#" class="px-3 py-2 rounded-full hover:bg-purple-700 transition font-bold text-sm md:text-base">Games</a>
81
+ <a href="#" class="px-3 py-2 rounded-full hover:bg-purple-700 transition font-bold text-sm md:text-base">Videos</a>
82
+ <a href="#" class="px-3 py-2 rounded-full bg-yellow-400 text-purple-900 hover:bg-yellow-300 transition font-bold text-sm md:text-base">Sign Up</a>
83
+ </nav>
84
+ </div>
85
+ </header>
86
+
87
+ <!-- Hero Section -->
88
+ <section class="py-12 md:py-24 px-4 relative overflow-hidden">
89
+ <div class="container mx-auto flex flex-col md:flex-row items-center">
90
+ <div class="md:w-1/2 mb-12 md:mb-0 relative z-10">
91
+ <h2 class="title-font text-4xl md:text-6xl font-bold mb-6 leading-tight">
92
+ Blast Off Into <span class="text-yellow-400">Space Learning!</span>
93
+ </h2>
94
+ <p class="text-lg md:text-xl mb-8 text-blue-100">
95
+ Join our cosmic classroom where learning about planets, stars, and rockets is out of this world! Perfect for young astronauts aged 6-12.
96
+ </p>
97
+ <div class="flex flex-col sm:flex-row space-y-4 sm:space-y-0 sm:space-x-4">
98
+ <button class="bg-yellow-400 hover:bg-yellow-300 text-purple-900 font-bold py-3 px-6 rounded-full transition transform hover:scale-105 shadow-lg">
99
+ Start Learning Now <i class="fas fa-arrow-right ml-2"></i>
100
+ </button>
101
+ <button class="bg-transparent hover:bg-purple-800 border-2 border-white text-white font-bold py-3 px-6 rounded-full transition transform hover:scale-105">
102
+ <i class="fas fa-play mr-2"></i> Watch Demo
103
+ </button>
104
+ </div>
105
+ </div>
106
+ <div class="md:w-1/2 relative">
107
+ <img src="https://huggingface.co/spaces/ParulPandey/watchful-sun"
108
+ alt="Happy kid astronaut"
109
+ class="rounded-full border-4 border-yellow-400 w-64 h-64 md:w-80 md:h-80 object-cover mx-auto astronaut-float">
110
+ <div class="absolute -bottom-10 -left-10">
111
+ <div class="rocket-launch">
112
+ <i class="fas fa-rocket text-4xl text-yellow-400"></i>
113
+ </div>
114
+ </div>
115
+ <div class="absolute -top-10 -right-10">
116
+ <div class="w-24 h-24 rounded-full bg-purple-800 opacity-30"></div>
117
+ </div>
118
+ </div>
119
+ </div>
120
+ </section>
121
+
122
+ <!-- Features Section -->
123
+ <section class="py-16 px-4 bg-gradient-to-b from-blue-900 to-purple-900">
124
+ <div class="container mx-auto">
125
+ <h2 class="title-font text-3xl md:text-4xl font-bold text-center mb-16">
126
+ Why Kids <span class="text-yellow-400">Love</span> Learning With Us
127
+ </h2>
128
+
129
+ <div class="grid grid-cols-1 md:grid-cols-3 gap-8">
130
+ <div class="bg-purple-800 bg-opacity-50 p-8 rounded-2xl border border-purple-600 hover:border-yellow-400 transition">
131
+ <div class="w-16 h-16 bg-yellow-400 rounded-full flex items-center justify-center mb-6 mx-auto">
132
+ <i class="fas fa-gamepad text-2xl text-purple-900"></i>
133
+ </div>
134
+ <h3 class="title-font text-xl font-bold mb-4 text-center">Interactive Games</h3>
135
+ <p class="text-blue-100 text-center">
136
+ Play fun space games that teach real astronomy concepts while you explore the cosmos!
137
+ </p>
138
+ </div>
139
+
140
+ <a href="https://huggingface.co/spaces/ParulPandey/watchful-sun" target="_blank" class="block bg-purple-800 bg-opacity-50 p-8 rounded-2xl border border-purple-600 hover:border-yellow-400 transition hover:scale-105">
141
+ <div class="w-16 h-16 bg-yellow-400 rounded-full flex items-center justify-center mb-6 mx-auto">
142
+ <i class="fas fa-video text-2xl text-purple-900"></i>
143
+ </div>
144
+ <h3 class="title-font text-xl font-bold mb-4 text-center">Animated Videos</h3>
145
+ <p class="text-blue-100 text-center">
146
+ Watch colorful cartoons that explain space science in ways kids can easily understand.
147
+ </p>
148
+ </a>
149
+
150
+ <div class="bg-purple-800 bg-opacity-50 p-8 rounded-2xl border border-purple-600 hover:border-yellow-400 transition">
151
+ <div class="w-16 h-16 bg-yellow-400 rounded-full flex items-center justify-center mb-6 mx-auto">
152
+ <i class="fas fa-certificate text-2xl text-purple-900"></i>
153
+ </div>
154
+ <h3 class="title-font text-xl font-bold mb-4 text-center">Earn Badges</h3>
155
+ <p class="text-blue-100 text-center">
156
+ Collect cosmic achievement badges as you master new space knowledge!
157
+ </p>
158
+ </div>
159
+ </div>
160
+ </div>
161
+ </section>
162
+
163
+ <!-- Planets Section -->
164
+ <section class="py-16 px-4 bg-gradient-to-b from-purple-900 to-blue-900">
165
+ <div class="container mx-auto">
166
+ <h2 class="title-font text-3xl md:text-4xl font-bold text-center mb-6">
167
+ Explore Our <span class="text-yellow-400">Planetary</span> Courses
168
+ </h2>
169
+ <p class="text-xl text-blue-200 text-center mb-12 max-w-3xl mx-auto">
170
+ Each planet has its own special lessons and activities designed just for young space explorers!
171
+ </p>
172
+
173
+ <div class="grid grid-cols-2 md:grid-cols-4 gap-6">
174
+ <div class="planet-card bg-blue-800 bg-opacity-50 p-6 rounded-xl text-center">
175
+ <div class="w-24 h-24 bg-gradient-to-b from-orange-400 to-orange-600 rounded-full mx-auto mb-4 flex items-center justify-center">
176
+ <i class="fas fa-fire text-3xl text-white"></i>
177
+ </div>
178
+ <h3 class="title-font font-bold mb-2">Mercury</h3>
179
+ <p class="text-sm text-blue-200">The speedy planet</p>
180
+ </div>
181
+
182
+ <div class="planet-card bg-yellow-600 bg-opacity-50 p-6 rounded-xl text-center">
183
+ <div class="w-24 h-24 bg-gradient-to-b from-yellow-300 to-yellow-500 rounded-full mx-auto mb-4 flex items-center justify-center">
184
+ <i class="fas fa-cloud-sun text-3xl text-white"></i>
185
+ </div>
186
+ <h3 class="title-font font-bold mb-2">Venus</h3>
187
+ <p class="text-sm text-blue-200">Earth's fiery twin</p>
188
+ </div>
189
+
190
+ <div class="planet-card bg-blue-600 bg-opacity-50 p-6 rounded-xl text-center">
191
+ <div class="w-24 h-24 bg-gradient-to-b from-blue-400 to-blue-600 rounded-full mx-auto mb-4 flex items-center justify-center">
192
+ <i class="fas fa-globe-americas text-3xl text-white"></i>
193
+ </div>
194
+ <h3 class="title-font font-bold mb-2">Earth</h3>
195
+ <p class="text-sm text-blue-200">Our home planet</p>
196
+ </div>
197
+
198
+ <div class="planet-card bg-red-600 bg-opacity-50 p-6 rounded-xl text-center">
199
+ <div class="w-24 h-24 bg-gradient-to-b from-red-400 to-red-600 rounded-full mx-auto mb-4 flex items-center justify-center">
200
+ <i class="fas fa-mountain text-3xl text-white"></i>
201
+ </div>
202
+ <h3 class="title-font font-bold mb-2">Mars</h3>
203
+ <p class="text-sm text-blue-200">The red planet</p>
204
+ </div>
205
+
206
+ <div class="planet-card bg-orange-700 bg-opacity-50 p-6 rounded-xl text-center">
207
+ <div class="w-24 h-24 bg-gradient-to-b from-orange-300 to-orange-500 rounded-full mx-auto mb-4 flex items-center justify-center">
208
+ <i class="fas fa-ring text-3xl text-white"></i>
209
+ </div>
210
+ <h3 class="title-font font-bold mb-2">Jupiter</h3>
211
+ <p class="text-sm text-blue-200">King of planets</p>
212
+ </div>
213
+
214
+ <div class="planet-card bg-yellow-700 bg-opacity-50 p-6 rounded-xl text-center">
215
+ <div class="w-24 h-24 bg-gradient-to-b from-yellow-200 to-yellow-400 rounded-full mx-auto mb-4 flex items-center justify-center">
216
+ <i class="fas fa-ring text-3xl text-white"></i>
217
+ </div>
218
+ <h3 class="title-font font-bold mb-2">Saturn</h3>
219
+ <p class="text-sm text-blue-200">Ringed beauty</p>
220
+ </div>
221
+
222
+ <div class="planet-card bg-teal-600 bg-opacity-50 p-6 rounded-xl text-center">
223
+ <div class="w-24 h-24 bg-gradient-to-b from-teal-300 to-teal-500 rounded-full mx-auto mb-4 flex items-center justify-center">
224
+ <i class="fas fa-ice-cream text-3xl text-white"></i>
225
+ </div>
226
+ <h3 class="title-font font-bold mb-2">Uranus</h3>
227
+ <p class="text-sm text-blue-200">The sideways planet</p>
228
+ </div>
229
+
230
+ <div class="planet-card bg-blue-700 bg-opacity-50 p-6 rounded-xl text-center">
231
+ <div class="w-24 h-24 bg-gradient-to-b from-blue-300 to-blue-500 rounded-full mx-auto mb-4 flex items-center justify-center">
232
+ <i class="fas fa-wind text-3xl text-white"></i>
233
+ </div>
234
+ <h3 class="title-font font-bold mb-2">Neptune</h3>
235
+ <p class="text-sm text-blue-200">The windy planet</p>
236
+ </div>
237
+ </div>
238
+
239
+ <div class="text-center mt-12">
240
+ <button class="bg-transparent hover:bg-purple-800 border-2 border-white text-white font-bold py-3 px-8 rounded-full transition transform hover:scale-105">
241
+ See All Space Topics <i class="fas fa-arrow-right ml-2"></i>
242
+ </button>
243
+ </div>
244
+ </div>
245
+ </section>
246
+
247
+ <!-- Testimonials -->
248
+ <section class="py-16 px-4 bg-gradient-to-b from-blue-900 to-purple-900">
249
+ <div class="container mx-auto">
250
+ <h2 class="title-font text-3xl md:text-4xl font-bold text-center mb-16">
251
+ What Our <span class="text-yellow-400">Young Astronauts</span> Say
252
+ </h2>
253
+
254
+ <div class="grid grid-cols-1 md:grid-cols-2 gap-8 max-w-6xl mx-auto">
255
+ <div class="bg-purple-800 bg-opacity-50 p-8 rounded-2xl border border-purple-600">
256
+ <div class="flex items-start mb-6">
257
+ <img src="https://images.unsplash.com/photo-1553531384-411bb247748d?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=200&q=80"
258
+ alt="Happy kid"
259
+ class="w-16 h-16 rounded-full border-2 border-yellow-400 object-cover">
260
+ <div class="ml-4">
261
+ <h4 class="title-font font-bold">Jamie, 8 years old</h4>
262
+ <div class="flex text-yellow-400">
263
+ <i class="fas fa-star"></i>
264
+ <i class="fas fa-star"></i>
265
+ <i class="fas fa-star"></i>
266
+ <i class="fas fa-star"></i>
267
+ <i class="fas fa-star"></i>
268
+ </div>
269
+ </div>
270
+ </div>
271
+ <p class="text-blue-100 italic">
272
+ "I love the rocket building game! Now I know all the parts of a real rocket. Mom says I talk about space at dinner every night!"
273
+ </p>
274
+ </div>
275
+
276
+ <div class="bg-purple-800 bg-opacity-50 p-8 rounded-2xl border border-purple-600">
277
+ <div class="flex items-start mb-6">
278
+ <img src="https://images.unsplash.com/photo-1596495577886-d920f1fb7238?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=200&q=80"
279
+ alt="Happy kid"
280
+ class="w-16 h-16 rounded-full border-2 border-yellow-400 object-cover">
281
+ <div class="ml-4">
282
+ <h4 class="title-font font-bold">Sophia, 10 years old</h4>
283
+ <div class="flex text-yellow-400">
284
+ <i class="fas fa-star"></i>
285
+ <i class="fas fa-star"></i>
286
+ <i class="fas fa-star"></i>
287
+ <i class="fas fa-star"></i>
288
+ <i class="fas fa-star"></i>
289
+ </div>
290
+ </div>
291
+ </div>
292
+ <p class="text-blue-100 italic">
293
+ "The planet songs help me remember facts for school. I got an A+ on my science test and my teacher was so impressed!"
294
+ </p>
295
+ </div>
296
+ </div>
297
+ </div>
298
+ </section>
299
+
300
+ <!-- CTA Section -->
301
+ <section class="py-20 px-4 bg-gradient-to-b from-purple-900 to-blue-900 relative overflow-hidden">
302
+ <div class="absolute top-0 left-0 w-full h-full opacity-10">
303
+ <div class="absolute top-1/4 left-1/4 w-32 h-32 rounded-full bg-purple-500"></div>
304
+ <div class="absolute top-1/3 right-1/4 w-40 h-40 rounded-full bg-blue-500"></div>
305
+ <div class="absolute bottom-1/4 right-1/3 w-24 h-24 rounded-full bg-yellow-400"></div>
306
+ </div>
307
+
308
+ <div class="container mx-auto text-center relative z-10">
309
+ <h2 class="title-font text-3xl md:text-5xl font-bold mb-6">
310
+ Ready for <span class="text-yellow-400">Liftoff?</span>
311
+ </h2>
312
+ <p class="text-xl text-blue-200 mb-10 max-w-2xl mx-auto">
313
+ Join thousands of young space explorers on an educational journey through the cosmos!
314
+ </p>
315
+
316
+ <div class="max-w-md mx-auto bg-purple-800 bg-opacity-50 p-8 rounded-2xl border border-purple-600">
317
+ <h3 class="title-font text-2xl font-bold mb-6">Start Learning for Free</h3>
318
+
319
+ <div class="mb-4">
320
+ <input type="text" placeholder="Parent's Name" class="w-full px-4 py-3 rounded-lg bg-purple-900 border border-purple-700 focus:outline-none focus:ring-2 focus:ring-yellow-400">
321
+ </div>
322
+
323
+ <div class="mb-4">
324
+ <input type="email" placeholder="Email Address" class="w-full px-4 py-3 rounded-lg bg-purple-900 border border-purple-700 focus:outline-none focus:ring-2 focus:ring-yellow-400">
325
+ </div>
326
+
327
+ <div class="mb-6">
328
+ <input type="text" placeholder="Child's Name & Age" class="w-full px-4 py-3 rounded-lg bg-purple-900 border border-purple-700 focus:outline-none focus:ring-2 focus:ring-yellow-400">
329
+ </div>
330
+
331
+ <button class="w-full bg-yellow-400 hover:bg-yellow-300 text-purple-900 font-bold py-3 px-6 rounded-full transition transform hover:scale-105 shadow-lg">
332
+ Create Free Account <i class="fas fa-rocket ml-2"></i>
333
+ </button>
334
+
335
+ <p class="text-sm text-blue-200 mt-4">
336
+ No credit card needed. 100% safe for kids.
337
+ </p>
338
+ </div>
339
+ </div>
340
+ </section>
341
+
342
+ <!-- Footer -->
343
+ <footer class="bg-blue-900 py-12 px-4">
344
+ <div class="container mx-auto">
345
+ <div class="grid grid-cols-1 md:grid-cols-4 gap-8">
346
+ <div>
347
+ <div class="flex items-center mb-4">
348
+ <i class="fas fa-rocket text-2xl text-yellow-400 mr-3"></i>
349
+ <h3 class="title-font text-xl font-bold">Space Explorers Academy</h3>
350
+ </div>
351
+ <p class="text-blue-200 mb-4">
352
+ Making space education fun and accessible for the next generation of astronauts and scientists.
353
+ </p>
354
+ <div class="flex space-x-4">
355
+ <a href="#" class="text-blue-200 hover:text-yellow-400 transition"><i class="fab fa-facebook-f"></i></a>
356
+ <a href="#" class="text-blue-200 hover:text-yellow-400 transition"><i class="fab fa-instagram"></i></a>
357
+ <a href="#" class="text-blue-200 hover:text-yellow-400 transition"><i class="fab fa-youtube"></i></a>
358
+ <a href="#" class="text-blue-200 hover:text-yellow-400 transition"><i class="fab fa-tiktok"></i></a>
359
+ </div>
360
+ </div>
361
+
362
+ <div>
363
+ <h4 class="title-font font-bold text-lg mb-4">Explore</h4>
364
+ <ul class="space-y-2">
365
+ <li><a href="#" class="text-blue-200 hover:text-yellow-400 transition">Planets</a></li>
366
+ <li><a href="#" class="text-blue-200 hover:text-yellow-400 transition">Stars</a></li>
367
+ <li><a href="#" class="text-blue-200 hover:text-yellow-400 transition">Galaxies</a></li>
368
+ <li><a href="#" class="text-blue-200 hover:text-yellow-400 transition">Space Travel</a></li>
369
+ <li><a href="#" class="text-blue-200 hover:text-yellow-400 transition">Astronauts</a></li>
370
+ </ul>
371
+ </div>
372
+
373
+ <div>
374
+ <h4 class="title-font font-bold text-lg mb-4">Parents</h4>
375
+ <ul class="space-y-2">
376
+ <li><a href="#" class="text-blue-200 hover:text-yellow-400 transition">Safety</a></li>
377
+ <li><a href="#" class="text-blue-200 hover:text-yellow-400 transition">Pricing</a></li>
378
+ <li><a href="#" class="text-blue-200 hover:text-yellow-400 transition">FAQ</a></li>
379
+ <li><a href="#" class="text-blue-200 hover:text-yellow-400 transition">Curriculum</a></li>
380
+ <li><a href="#" class="text-blue-200 hover:text-yellow-400 transition">Contact Us</a></li>
381
+ </ul>
382
+ </div>
383
+
384
+ <div>
385
+ <h4 class="title-font font-bold text-lg mb-4">Teachers</h4>
386
+ <ul class="space-y-2">
387
+ <li><a href="#" class="text-blue-200 hover:text-yellow-400 transition">Classroom Plans</a></li>
388
+ <li><a href="#" class="text-blue-200 hover:text-yellow-400 transition">Lesson Plans</a></li>
389
+ <li><a href="#" class="text-blue-200 hover:text-yellow-400 transition">School Discounts</a></li>
390
+ <li><a href="#" class="text-blue-200 hover:text-yellow-400 transition">Standards Alignment</a></li>
391
+ <li><a href="#" class="text-blue-200 hover:text-yellow-400 transition">Teacher Resources</a></li>
392
+ </ul>
393
+ </div>
394
+ </div>
395
+
396
+ <div class="border-t border-blue-800 mt-12 pt-8 text-center text-blue-300 text-sm">
397
+ <p>© 2023 Space Explorers Academy. All rights reserved. | <a href="#" class="hover:text-yellow-400 transition">Privacy Policy</a> | <a href="#" class="hover:text-yellow-400 transition">Terms of Service</a></p>
398
+ <p class="mt-2">Made with <i class="fas fa-heart text-red-400"></i> for future astronauts everywhere</p>
399
+ </div>
400
+ </div>
401
+ </footer>
402
+
403
+ <script>
404
+ // Create twinkling stars
405
+ document.addEventListener('DOMContentLoaded', function() {
406
+ const starsContainer = document.getElementById('stars-container');
407
+ const starsCount = 100;
408
+
409
+ for (let i = 0; i < starsCount; i++) {
410
+ const star = document.createElement('div');
411
+ star.classList.add('star');
412
+
413
+ // Random size between 1-3px
414
+ const size = Math.random() * 2 + 1;
415
+ star.style.width = `${size}px`;
416
+ star.style.height = `${size}px`;
417
+
418
+ // Random position
419
+ star.style.left = `${Math.random() * 100}%`;
420
+ star.style.top = `${Math.random() * 100}%`;
421
+
422
+ // Random animation duration
423
+ star.style.animationDuration = `${Math.random() * 3 + 1}s`;
424
+
425
+ starsContainer.appendChild(star);
426
+ }
427
+
428
+ // Rocket launch animation reset
429
+ setInterval(() => {
430
+ const rocket = document.querySelector('.rocket-launch');
431
+ rocket.style.animation = 'none';
432
+ void rocket.offsetWidth; // Trigger reflow
433
+ rocket.style.animation = 'launch 8s linear infinite';
434
+ }, 8000);
435
+ });
436
+ </script>
437
+ <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=ParulPandey/space-explorers-academy" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
438
+ </html>