Bhevin commited on
Commit
9358e40
·
verified ·
1 Parent(s): 75ac7f4

undefined - Initial Deployment

Browse files
Files changed (2) hide show
  1. README.md +6 -4
  2. index.html +391 -19
README.md CHANGED
@@ -1,10 +1,12 @@
1
  ---
2
- title: Techeduhub Com
3
- emoji: 🦀
4
- colorFrom: red
5
  colorTo: blue
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: techeduhub-com
3
+ emoji: 🐳
4
+ colorFrom: gray
5
  colorTo: blue
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,391 @@
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>TechEduHub - Learn Tech Skills Online</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
+ .hero-gradient {
11
+ background: linear-gradient(135deg, #6e8efb, #a777e3);
12
+ }
13
+ .course-card:hover {
14
+ transform: translateY(-5px);
15
+ box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
16
+ }
17
+ .testimonial-card {
18
+ transition: all 0.3s ease;
19
+ }
20
+ .testimonial-card:hover {
21
+ transform: scale(1.03);
22
+ }
23
+ .nav-link:hover {
24
+ color: #6e8efb;
25
+ }
26
+ .mobile-menu {
27
+ transition: all 0.3s ease;
28
+ }
29
+ </style>
30
+ </head>
31
+ <body class="font-sans antialiased">
32
+ <!-- Header/Navigation -->
33
+ <header class="bg-white shadow-md sticky top-0 z-50">
34
+ <div class="container mx-auto px-4 py-3 flex justify-between items-center">
35
+ <div class="flex items-center">
36
+ <a href="#" class="flex items-center">
37
+ <i class="fas fa-laptop-code text-3xl text-indigo-600 mr-2"></i>
38
+ <span class="text-2xl font-bold text-gray-800">TechEduHub</span>
39
+ </a>
40
+ </div>
41
+
42
+ <nav class="hidden md:flex space-x-8">
43
+ <a href="#" class="nav-link text-gray-700 hover:text-indigo-600 font-medium">Home</a>
44
+ <a href="#" class="nav-link text-gray-700 hover:text-indigo-600 font-medium">Courses</a>
45
+ <a href="#" class="nav-link text-gray-700 hover:text-indigo-600 font-medium">About</a>
46
+ <a href="#" class="nav-link text-gray-700 hover:text-indigo-600 font-medium">Pricing</a>
47
+ <a href="#" class="nav-link text-gray-700 hover:text-indigo-600 font-medium">Contact</a>
48
+ </nav>
49
+
50
+ <div class="hidden md:flex items-center space-x-4">
51
+ <a href="#" class="text-gray-700 hover:text-indigo-600 font-medium">Login</a>
52
+ <a href="#" class="bg-indigo-600 text-white px-4 py-2 rounded-md hover:bg-indigo-700 transition">Sign Up</a>
53
+ </div>
54
+
55
+ <button id="mobile-menu-button" class="md:hidden text-gray-700 focus:outline-none">
56
+ <i class="fas fa-bars text-2xl"></i>
57
+ </button>
58
+ </div>
59
+
60
+ <!-- Mobile Menu -->
61
+ <div id="mobile-menu" class="mobile-menu hidden md:hidden bg-white w-full px-4 py-2 shadow-lg">
62
+ <a href="#" class="block py-2 text-gray-700 hover:text-indigo-600">Home</a>
63
+ <a href="#" class="block py-2 text-gray-700 hover:text-indigo-600">Courses</a>
64
+ <a href="#" class="block py-2 text-gray-700 hover:text-indigo-600">About</a>
65
+ <a href="#" class="block py-2 text-gray-700 hover:text-indigo-600">Pricing</a>
66
+ <a href="#" class="block py-2 text-gray-700 hover:text-indigo-600">Contact</a>
67
+ <div class="flex space-x-4 mt-3">
68
+ <a href="#" class="text-gray-700 hover:text-indigo-600 font-medium">Login</a>
69
+ <a href="#" class="bg-indigo-600 text-white px-4 py-2 rounded-md hover:bg-indigo-700 transition">Sign Up</a>
70
+ </div>
71
+ </div>
72
+ </header>
73
+
74
+ <!-- Hero Section -->
75
+ <section class="hero-gradient text-white py-20">
76
+ <div class="container mx-auto px-4 flex flex-col md:flex-row items-center">
77
+ <div class="md:w-1/2 mb-10 md:mb-0">
78
+ <h1 class="text-4xl md:text-5xl font-bold mb-6">Learn Tech Skills for the Digital Age</h1>
79
+ <p class="text-xl mb-8 opacity-90">Join thousands of students learning in-demand tech skills with our expert-led courses. Start your journey today!</p>
80
+ <div class="flex flex-col sm:flex-row space-y-4 sm:space-y-0 sm:space-x-4">
81
+ <a href="#" class="bg-white text-indigo-600 px-6 py-3 rounded-md font-medium hover:bg-gray-100 text-center">Browse Courses</a>
82
+ <a href="#" class="border border-white px-6 py-3 rounded-md font-medium hover:bg-white hover:text-indigo-600 text-center">Watch Demo</a>
83
+ </div>
84
+ </div>
85
+ <div class="md:w-1/2 flex justify-center">
86
+ <img src="https://images.unsplash.com/photo-1551434678-e076c223a692?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80" alt="Learning illustration" class="rounded-lg shadow-xl max-w-full h-auto">
87
+ </div>
88
+ </div>
89
+ </section>
90
+
91
+ <!-- Stats Section -->
92
+ <section class="bg-gray-50 py-16">
93
+ <div class="container mx-auto px-4">
94
+ <div class="grid grid-cols-2 md:grid-cols-4 gap-8 text-center">
95
+ <div class="p-4">
96
+ <div class="text-4xl font-bold text-indigo-600 mb-2">10K+</div>
97
+ <div class="text-gray-600">Students Enrolled</div>
98
+ </div>
99
+ <div class="p-4">
100
+ <div class="text-4xl font-bold text-indigo-600 mb-2">50+</div>
101
+ <div class="text-gray-600">Expert Instructors</div>
102
+ </div>
103
+ <div class="p-4">
104
+ <div class="text-4xl font-bold text-indigo-600 mb-2">200+</div>
105
+ <div class="text-gray-600">Courses Available</div>
106
+ </div>
107
+ <div class="p-4">
108
+ <div class="text-4xl font-bold text-indigo-600 mb-2">95%</div>
109
+ <div class="text-gray-600">Satisfaction Rate</div>
110
+ </div>
111
+ </div>
112
+ </div>
113
+ </section>
114
+
115
+ <!-- Popular Courses -->
116
+ <section class="py-20">
117
+ <div class="container mx-auto px-4">
118
+ <div class="text-center mb-16">
119
+ <h2 class="text-3xl font-bold text-gray-800 mb-4">Popular Courses</h2>
120
+ <p class="text-gray-600 max-w-2xl mx-auto">Choose from our most popular courses to kickstart your tech career</p>
121
+ </div>
122
+
123
+ <div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-8">
124
+ <!-- Course 1 -->
125
+ <div class="course-card bg-white rounded-lg overflow-hidden shadow-md transition duration-300">
126
+ <img src="https://images.unsplash.com/photo-1563986768609-322da13575f3?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80" alt="Web Development" class="w-full h-48 object-cover">
127
+ <div class="p-6">
128
+ <div class="flex justify-between items-center mb-3">
129
+ <span class="bg-indigo-100 text-indigo-600 text-xs px-3 py-1 rounded-full">Beginner</span>
130
+ <span class="text-gray-500">4.9 <i class="fas fa-star text-yellow-400"></i></span>
131
+ </div>
132
+ <h3 class="text-xl font-bold text-gray-800 mb-2">Complete Web Development Bootcamp</h3>
133
+ <p class="text-gray-600 mb-4">Learn HTML, CSS, JavaScript, React and more to build modern web applications.</p>
134
+ <div class="flex justify-between items-center">
135
+ <span class="text-indigo-600 font-bold">$99.99</span>
136
+ <a href="#" class="text-indigo-600 hover:text-indigo-800 font-medium">Enroll Now</a>
137
+ </div>
138
+ </div>
139
+ </div>
140
+
141
+ <!-- Course 2 -->
142
+ <div class="course-card bg-white rounded-lg overflow-hidden shadow-md transition duration-300">
143
+ <img src="https://images.unsplash.com/photo-1551288049-bebda4e38f71?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80" alt="Data Science" class="w-full h-48 object-cover">
144
+ <div class="p-6">
145
+ <div class="flex justify-between items-center mb-3">
146
+ <span class="bg-green-100 text-green-600 text-xs px-3 py-1 rounded-full">Intermediate</span>
147
+ <span class="text-gray-500">4.8 <i class="fas fa-star text-yellow-400"></i></span>
148
+ </div>
149
+ <h3 class="text-xl font-bold text-gray-800 mb-2">Data Science & Machine Learning</h3>
150
+ <p class="text-gray-600 mb-4">Master Python, Pandas, NumPy, Scikit-learn and TensorFlow for data analysis.</p>
151
+ <div class="flex justify-between items-center">
152
+ <span class="text-indigo-600 font-bold">$129.99</span>
153
+ <a href="#" class="text-indigo-600 hover:text-indigo-800 font-medium">Enroll Now</a>
154
+ </div>
155
+ </div>
156
+ </div>
157
+
158
+ <!-- Course 3 -->
159
+ <div class="course-card bg-white rounded-lg overflow-hidden shadow-md transition duration-300">
160
+ <img src="https://images.unsplash.com/photo-1517245386807-bb43f82c33c4?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80" alt="Mobile Development" class="w-full h-48 object-cover">
161
+ <div class="p-6">
162
+ <div class="flex justify-between items-center mb-3">
163
+ <span class="bg-purple-100 text-purple-600 text-xs px-3 py-1 rounded-full">Advanced</span>
164
+ <span class="text-gray-500">4.7 <i class="fas fa-star text-yellow-400"></i></span>
165
+ </div>
166
+ <h3 class="text-xl font-bold text-gray-800 mb-2">Flutter Mobile App Development</h3>
167
+ <p class="text-gray-600 mb-4">Build cross-platform mobile apps with Flutter and Dart for iOS and Android.</p>
168
+ <div class="flex justify-between items-center">
169
+ <span class="text-indigo-600 font-bold">$89.99</span>
170
+ <a href="#" class="text-indigo-600 hover:text-indigo-800 font-medium">Enroll Now</a>
171
+ </div>
172
+ </div>
173
+ </div>
174
+ </div>
175
+
176
+ <div class="text-center mt-12">
177
+ <a href="#" class="inline-block bg-indigo-600 text-white px-6 py-3 rounded-md font-medium hover:bg-indigo-700">View All Courses</a>
178
+ </div>
179
+ </div>
180
+ </section>
181
+
182
+ <!-- Features Section -->
183
+ <section class="bg-gray-50 py-20">
184
+ <div class="container mx-auto px-4">
185
+ <div class="text-center mb-16">
186
+ <h2 class="text-3xl font-bold text-gray-800 mb-4">Why Choose TechEduHub?</h2>
187
+ <p class="text-gray-600 max-w-2xl mx-auto">We provide the best learning experience for our students</p>
188
+ </div>
189
+
190
+ <div class="grid grid-cols-1 md:grid-cols-3 gap-8">
191
+ <div class="bg-white p-8 rounded-lg shadow-sm text-center">
192
+ <div class="bg-indigo-100 w-16 h-16 rounded-full flex items-center justify-center mx-auto mb-6">
193
+ <i class="fas fa-chalkboard-teacher text-indigo-600 text-2xl"></i>
194
+ </div>
195
+ <h3 class="text-xl font-bold text-gray-800 mb-3">Expert Instructors</h3>
196
+ <p class="text-gray-600">Learn from industry professionals with years of practical experience in their fields.</p>
197
+ </div>
198
+
199
+ <div class="bg-white p-8 rounded-lg shadow-sm text-center">
200
+ <div class="bg-indigo-100 w-16 h-16 rounded-full flex items-center justify-center mx-auto mb-6">
201
+ <i class="fas fa-laptop-code text-indigo-600 text-2xl"></i>
202
+ </div>
203
+ <h3 class="text-xl font-bold text-gray-800 mb-3">Hands-on Projects</h3>
204
+ <p class="text-gray-600">Apply what you learn with real-world projects to build your portfolio.</p>
205
+ </div>
206
+
207
+ <div class="bg-white p-8 rounded-lg shadow-sm text-center">
208
+ <div class="bg-indigo-100 w-16 h-16 rounded-full flex items-center justify-center mx-auto mb-6">
209
+ <i class="fas fa-certificate text-indigo-600 text-2xl"></i>
210
+ </div>
211
+ <h3 class="text-xl font-bold text-gray-800 mb-3">Certification</h3>
212
+ <p class="text-gray-600">Earn certificates to showcase your skills to employers and boost your career.</p>
213
+ </div>
214
+ </div>
215
+ </div>
216
+ </section>
217
+
218
+ <!-- Testimonials -->
219
+ <section class="py-20">
220
+ <div class="container mx-auto px-4">
221
+ <div class="text-center mb-16">
222
+ <h2 class="text-3xl font-bold text-gray-800 mb-4">What Our Students Say</h2>
223
+ <p class="text-gray-600 max-w-2xl mx-auto">Hear from our successful students who transformed their careers</p>
224
+ </div>
225
+
226
+ <div class="grid grid-cols-1 md:grid-cols-3 gap-8">
227
+ <!-- Testimonial 1 -->
228
+ <div class="testimonial-card bg-white p-6 rounded-lg shadow-sm">
229
+ <div class="flex items-center mb-4">
230
+ <img src="https://randomuser.me/api/portraits/women/44.jpg" alt="Sarah Johnson" class="w-12 h-12 rounded-full mr-4">
231
+ <div>
232
+ <h4 class="font-bold text-gray-800">Sarah Johnson</h4>
233
+ <p class="text-gray-500 text-sm">Web Developer</p>
234
+ </div>
235
+ </div>
236
+ <p class="text-gray-600 mb-4">"The web development course completely changed my career. I went from knowing nothing to landing my first developer job in 6 months!"</p>
237
+ <div class="text-yellow-400">
238
+ <i class="fas fa-star"></i>
239
+ <i class="fas fa-star"></i>
240
+ <i class="fas fa-star"></i>
241
+ <i class="fas fa-star"></i>
242
+ <i class="fas fa-star"></i>
243
+ </div>
244
+ </div>
245
+
246
+ <!-- Testimonial 2 -->
247
+ <div class="testimonial-card bg-white p-6 rounded-lg shadow-sm">
248
+ <div class="flex items-center mb-4">
249
+ <img src="https://randomuser.me/api/portraits/men/32.jpg" alt="Michael Chen" class="w-12 h-12 rounded-full mr-4">
250
+ <div>
251
+ <h4 class="font-bold text-gray-800">Michael Chen</h4>
252
+ <p class="text-gray-500 text-sm">Data Scientist</p>
253
+ </div>
254
+ </div>
255
+ <p class="text-gray-600 mb-4">"The depth of the data science curriculum is impressive. The projects helped me build a strong portfolio that got me multiple job offers."</p>
256
+ <div class="text-yellow-400">
257
+ <i class="fas fa-star"></i>
258
+ <i class="fas fa-star"></i>
259
+ <i class="fas fa-star"></i>
260
+ <i class="fas fa-star"></i>
261
+ <i class="fas fa-star"></i>
262
+ </div>
263
+ </div>
264
+
265
+ <!-- Testimonial 3 -->
266
+ <div class="testimonial-card bg-white p-6 rounded-lg shadow-sm">
267
+ <div class="flex items-center mb-4">
268
+ <img src="https://randomuser.me/api/portraits/women/68.jpg" alt="Emma Rodriguez" class="w-12 h-12 rounded-full mr-4">
269
+ <div>
270
+ <h4 class="font-bold text-gray-800">Emma Rodriguez</h4>
271
+ <p class="text-gray-500 text-sm">Mobile Developer</p>
272
+ </div>
273
+ </div>
274
+ <p class="text-gray-600 mb-4">"I never thought I could build mobile apps until I took the Flutter course. The instructors break down complex concepts into easy-to-understand lessons."</p>
275
+ <div class="text-yellow-400">
276
+ <i class="fas fa-star"></i>
277
+ <i class="fas fa-star"></i>
278
+ <i class="fas fa-star"></i>
279
+ <i class="fas fa-star"></i>
280
+ <i class="fas fa-star-half-alt"></i>
281
+ </div>
282
+ </div>
283
+ </div>
284
+ </div>
285
+ </section>
286
+
287
+ <!-- CTA Section -->
288
+ <section class="bg-indigo-600 text-white py-20">
289
+ <div class="container mx-auto px-4 text-center">
290
+ <h2 class="text-3xl md:text-4xl font-bold mb-6">Ready to Transform Your Career?</h2>
291
+ <p class="text-xl mb-8 max-w-2xl mx-auto opacity-90">Join thousands of students who have already started their journey with TechEduHub.</p>
292
+ <div class="flex flex-col sm:flex-row justify-center space-y-4 sm:space-y-0 sm:space-x-4">
293
+ <a href="#" class="bg-white text-indigo-600 px-8 py-3 rounded-md font-bold hover:bg-gray-100">Get Started Now</a>
294
+ <a href="#" class="border border-white px-8 py-3 rounded-md font-bold hover:bg-white hover:text-indigo-600">Talk to Advisor</a>
295
+ </div>
296
+ </div>
297
+ </section>
298
+
299
+ <!-- Footer -->
300
+ <footer class="bg-gray-900 text-white pt-16 pb-8">
301
+ <div class="container mx-auto px-4">
302
+ <div class="grid grid-cols-1 md:grid-cols-4 gap-8 mb-12">
303
+ <div>
304
+ <a href="#" class="flex items-center mb-6">
305
+ <i class="fas fa-laptop-code text-3xl text-indigo-400 mr-2"></i>
306
+ <span class="text-2xl font-bold">TechEduHub</span>
307
+ </a>
308
+ <p class="text-gray-400 mb-4">Empowering the next generation of tech professionals through quality education.</p>
309
+ <div class="flex space-x-4">
310
+ <a href="#" class="text-gray-400 hover:text-white"><i class="fab fa-facebook-f"></i></a>
311
+ <a href="#" class="text-gray-400 hover:text-white"><i class="fab fa-twitter"></i></a>
312
+ <a href="#" class="text-gray-400 hover:text-white"><i class="fab fa-linkedin-in"></i></a>
313
+ <a href="#" class="text-gray-400 hover:text-white"><i class="fab fa-instagram"></i></a>
314
+ </div>
315
+ </div>
316
+
317
+ <div>
318
+ <h3 class="text-lg font-bold mb-4">Quick Links</h3>
319
+ <ul class="space-y-2">
320
+ <li><a href="#" class="text-gray-400 hover:text-white">Home</a></li>
321
+ <li><a href="#" class="text-gray-400 hover:text-white">About Us</a></li>
322
+ <li><a href="#" class="text-gray-400 hover:text-white">Courses</a></li>
323
+ <li><a href="#" class="text-gray-400 hover:text-white">Pricing</a></li>
324
+ <li><a href="#" class="text-gray-400 hover:text-white">Contact</a></li>
325
+ </ul>
326
+ </div>
327
+
328
+ <div>
329
+ <h3 class="text-lg font-bold mb-4">Support</h3>
330
+ <ul class="space-y-2">
331
+ <li><a href="#" class="text-gray-400 hover:text-white">FAQs</a></li>
332
+ <li><a href="#" class="text-gray-400 hover:text-white">Help Center</a></li>
333
+ <li><a href="#" class="text-gray-400 hover:text-white">Terms of Service</a></li>
334
+ <li><a href="#" class="text-gray-400 hover:text-white">Privacy Policy</a></li>
335
+ <li><a href="#" class="text-gray-400 hover:text-white">Refund Policy</a></li>
336
+ </ul>
337
+ </div>
338
+
339
+ <div>
340
+ <h3 class="text-lg font-bold mb-4">Contact Us</h3>
341
+ <ul class="space-y-2 text-gray-400">
342
+ <li class="flex items-start">
343
+ <i class="fas fa-map-marker-alt mt-1 mr-3 text-indigo-400"></i>
344
+ <span>123 Tech Street, Silicon Valley, CA 94000</span>
345
+ </li>
346
+ <li class="flex items-center">
347
+ <i class="fas fa-phone-alt mr-3 text-indigo-400"></i>
348
+ <span>+1 (555) 123-4567</span>
349
+ </li>
350
+ <li class="flex items-center">
351
+ <i class="fas fa-envelope mr-3 text-indigo-400"></i>
352
+ <span>info@techeduhub.com</span>
353
+ </li>
354
+ </ul>
355
+ </div>
356
+ </div>
357
+
358
+ <div class="border-t border-gray-800 pt-8 text-center text-gray-400">
359
+ <p>&copy; 2023 TechEduHub. All rights reserved.</p>
360
+ </div>
361
+ </div>
362
+ </footer>
363
+
364
+ <script>
365
+ // Mobile menu toggle
366
+ const mobileMenuButton = document.getElementById('mobile-menu-button');
367
+ const mobileMenu = document.getElementById('mobile-menu');
368
+
369
+ mobileMenuButton.addEventListener('click', () => {
370
+ mobileMenu.classList.toggle('hidden');
371
+ });
372
+
373
+ // Smooth scrolling for anchor links
374
+ document.querySelectorAll('a[href^="#"]').forEach(anchor => {
375
+ anchor.addEventListener('click', function (e) {
376
+ e.preventDefault();
377
+
378
+ const targetId = this.getAttribute('href');
379
+ if (targetId === '#') return;
380
+
381
+ const targetElement = document.querySelector(targetId);
382
+ if (targetElement) {
383
+ targetElement.scrollIntoView({
384
+ behavior: 'smooth'
385
+ });
386
+ }
387
+ });
388
+ });
389
+ </script>
390
+ <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=Bhevin/techeduhub-com" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
391
+ </html>