Surobhi commited on
Commit
90fef9f
·
verified ·
1 Parent(s): 1335069

undefined - Initial Deployment

Browse files
Files changed (2) hide show
  1. README.md +7 -5
  2. index.html +546 -19
README.md CHANGED
@@ -1,10 +1,12 @@
1
  ---
2
- title: Gen Ai Learn
3
- emoji:
4
- colorFrom: purple
5
- colorTo: yellow
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: gen-ai-learn
3
+ emoji: 🐳
4
+ colorFrom: yellow
5
+ colorTo: purple
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,546 @@
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>GenAI Learn - No Code AI Learning Platform</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
+ .gradient-bg {
11
+ background: linear-gradient(135deg, #6e8efb, #a777e3);
12
+ }
13
+ .course-card:hover {
14
+ transform: translateY(-5px);
15
+ box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
16
+ }
17
+ .progress-ring__circle {
18
+ transition: stroke-dashoffset 0.5s;
19
+ transform: rotate(-90deg);
20
+ transform-origin: 50% 50%;
21
+ }
22
+ .tab-content {
23
+ display: none;
24
+ }
25
+ .tab-content.active {
26
+ display: block;
27
+ animation: fadeIn 0.5s;
28
+ }
29
+ @keyframes fadeIn {
30
+ from { opacity: 0; }
31
+ to { opacity: 1; }
32
+ }
33
+ </style>
34
+ </head>
35
+ <body class="font-sans bg-gray-50">
36
+ <!-- Header -->
37
+ <header class="gradient-bg text-white shadow-lg">
38
+ <div class="container mx-auto px-4 py-6">
39
+ <div class="flex justify-between items-center">
40
+ <div class="flex items-center space-x-2">
41
+ <i class="fas fa-robot text-3xl"></i>
42
+ <h1 class="text-2xl font-bold">GenAI Learn</h1>
43
+ </div>
44
+ <nav class="hidden md:flex space-x-8">
45
+ <a href="#" class="hover:text-gray-200 font-medium">Home</a>
46
+ <a href="#" class="hover:text-gray-200 font-medium">Courses</a>
47
+ <a href="#" class="hover:text-gray-200 font-medium">Labs</a>
48
+ <a href="#" class="hover:text-gray-200 font-medium">Community</a>
49
+ </nav>
50
+ <div class="flex items-center space-x-4">
51
+ <button class="hidden md:block bg-white text-purple-600 px-4 py-2 rounded-full font-medium hover:bg-gray-100 transition">Sign In</button>
52
+ <button class="md:hidden text-2xl" id="mobile-menu-button">
53
+ <i class="fas fa-bars"></i>
54
+ </button>
55
+ </div>
56
+ </div>
57
+ </div>
58
+
59
+ <!-- Mobile Menu -->
60
+ <div class="md:hidden hidden bg-purple-700 py-4 px-4" id="mobile-menu">
61
+ <div class="flex flex-col space-y-3">
62
+ <a href="#" class="text-white hover:text-gray-200">Home</a>
63
+ <a href="#" class="text-white hover:text-gray-200">Courses</a>
64
+ <a href="#" class="text-white hover:text-gray-200">Labs</a>
65
+ <a href="#" class="text-white hover:text-gray-200">Community</a>
66
+ <button class="bg-white text-purple-600 px-4 py-2 rounded-full font-medium mt-2">Sign In</button>
67
+ </div>
68
+ </div>
69
+ </header>
70
+
71
+ <!-- Hero Section -->
72
+ <section class="gradient-bg text-white py-16">
73
+ <div class="container mx-auto px-4">
74
+ <div class="flex flex-col md:flex-row items-center">
75
+ <div class="md:w-1/2 mb-10 md:mb-0">
76
+ <h1 class="text-4xl md:text-5xl font-bold mb-4">Learn Generative AI Without Writing Code</h1>
77
+ <p class="text-xl mb-8">Explore the world of AI with our interactive, no-code learning platform. Build, experiment, and understand AI models visually.</p>
78
+ <div class="flex flex-col sm:flex-row space-y-4 sm:space-y-0 sm:space-x-4">
79
+ <button class="bg-white text-purple-600 px-6 py-3 rounded-full font-bold hover:bg-gray-100 transition">Start Learning Free</button>
80
+ <button class="border-2 border-white text-white px-6 py-3 rounded-full font-bold hover:bg-white hover:text-purple-600 transition">Watch Demo</button>
81
+ </div>
82
+ </div>
83
+ <div class="md:w-1/2 flex justify-center">
84
+ <div class="relative w-full max-w-md">
85
+ <div class="absolute -top-6 -left-6 w-32 h-32 bg-yellow-400 rounded-full opacity-20"></div>
86
+ <div class="absolute -bottom-6 -right-6 w-32 h-32 bg-blue-400 rounded-full opacity-20"></div>
87
+ <div class="relative bg-white bg-opacity-10 backdrop-filter backdrop-blur-lg rounded-2xl p-6 shadow-xl border border-white border-opacity-20">
88
+ <div class="flex justify-between items-center mb-4">
89
+ <h3 class="font-bold">AI Image Generator</h3>
90
+ <span class="text-xs bg-white bg-opacity-20 px-2 py-1 rounded">LAB</span>
91
+ </div>
92
+ <div class="bg-black bg-opacity-30 rounded-lg p-4 mb-4 h-40 flex items-center justify-center">
93
+ <i class="fas fa-image text-4xl text-white opacity-50"></i>
94
+ </div>
95
+ <div class="grid grid-cols-2 gap-4 mb-4">
96
+ <div class="bg-white bg-opacity-10 rounded-lg p-2 text-center">
97
+ <p class="text-xs opacity-70">Style</p>
98
+ <p class="font-medium">Cyberpunk</p>
99
+ </div>
100
+ <div class="bg-white bg-opacity-10 rounded-lg p-2 text-center">
101
+ <p class="text-xs opacity-70">Model</p>
102
+ <p class="font-medium">Stable Diffusion</p>
103
+ </div>
104
+ </div>
105
+ <button class="w-full bg-white text-purple-600 py-2 rounded-lg font-medium hover:bg-gray-100 transition">Generate Image</button>
106
+ </div>
107
+ </div>
108
+ </div>
109
+ </div>
110
+ </div>
111
+ </section>
112
+
113
+ <!-- Features Section -->
114
+ <section class="py-16 bg-white">
115
+ <div class="container mx-auto px-4">
116
+ <h2 class="text-3xl font-bold text-center mb-12">Why Learn With Us</h2>
117
+ <div class="grid grid-cols-1 md:grid-cols-3 gap-8">
118
+ <div class="bg-gray-50 p-6 rounded-xl hover:shadow-lg transition">
119
+ <div class="w-16 h-16 gradient-bg rounded-full flex items-center justify-center text-white text-2xl mb-4">
120
+ <i class="fas fa-project-diagram"></i>
121
+ </div>
122
+ <h3 class="text-xl font-bold mb-2">Visual Learning</h3>
123
+ <p class="text-gray-600">Understand complex AI concepts through interactive visualizations and drag-and-drop interfaces.</p>
124
+ </div>
125
+ <div class="bg-gray-50 p-6 rounded-xl hover:shadow-lg transition">
126
+ <div class="w-16 h-16 gradient-bg rounded-full flex items-center justify-center text-white text-2xl mb-4">
127
+ <i class="fas fa-flask"></i>
128
+ </div>
129
+ <h3 class="text-xl font-bold mb-2">Hands-on Labs</h3>
130
+ <p class="text-gray-600">Experiment with real AI models in our sandbox environment without writing a single line of code.</p>
131
+ </div>
132
+ <div class="bg-gray-50 p-6 rounded-xl hover:shadow-lg transition">
133
+ <div class="w-16 h-16 gradient-bg rounded-full flex items-center justify-center text-white text-2xl mb-4">
134
+ <i class="fas fa-chart-line"></i>
135
+ </div>
136
+ <h3 class="text-xl font-bold mb-2">Track Progress</h3>
137
+ <p class="text-gray-600">Monitor your learning journey with detailed progress tracking and personalized recommendations.</p>
138
+ </div>
139
+ </div>
140
+ </div>
141
+ </section>
142
+
143
+ <!-- Courses Section -->
144
+ <section class="py-16 bg-gray-50">
145
+ <div class="container mx-auto px-4">
146
+ <div class="flex justify-between items-center mb-8">
147
+ <h2 class="text-3xl font-bold">Popular Courses</h2>
148
+ <button class="text-purple-600 font-medium hover:text-purple-800">View All</button>
149
+ </div>
150
+
151
+ <div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-6">
152
+ <!-- Course Card 1 -->
153
+ <div class="course-card bg-white rounded-xl overflow-hidden shadow-md transition duration-300">
154
+ <div class="relative">
155
+ <img src="https://images.unsplash.com/photo-1620712943543-bcc4688e7485?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=500&q=80" alt="AI Fundamentals" class="w-full h-48 object-cover">
156
+ <div class="absolute top-2 right-2 bg-yellow-400 text-xs font-bold px-2 py-1 rounded">Beginner</div>
157
+ </div>
158
+ <div class="p-6">
159
+ <div class="flex justify-between items-start mb-2">
160
+ <h3 class="font-bold text-lg">AI Fundamentals</h3>
161
+ <div class="flex items-center text-yellow-500">
162
+ <i class="fas fa-star"></i>
163
+ <span class="ml-1 text-gray-600">4.8</span>
164
+ </div>
165
+ </div>
166
+ <p class="text-gray-600 text-sm mb-4">Learn the core concepts of artificial intelligence and machine learning without any coding.</p>
167
+ <div class="flex justify-between items-center">
168
+ <div class="flex items-center">
169
+ <i class="far fa-clock text-gray-500 mr-1"></i>
170
+ <span class="text-sm text-gray-600">3h 20m</span>
171
+ </div>
172
+ <button class="text-purple-600 text-sm font-medium hover:text-purple-800">Start Course</button>
173
+ </div>
174
+ </div>
175
+ </div>
176
+
177
+ <!-- Course Card 2 -->
178
+ <div class="course-card bg-white rounded-xl overflow-hidden shadow-md transition duration-300">
179
+ <div class="relative">
180
+ <img src="https://images.unsplash.com/photo-1620641788421-7a1c342ea42e?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=500&q=80" alt="Generative Models" class="w-full h-48 object-cover">
181
+ <div class="absolute top-2 right-2 bg-green-400 text-xs font-bold px-2 py-1 rounded">Intermediate</div>
182
+ </div>
183
+ <div class="p-6">
184
+ <div class="flex justify-between items-start mb-2">
185
+ <h3 class="font-bold text-lg">Generative Models</h3>
186
+ <div class="flex items-center text-yellow-500">
187
+ <i class="fas fa-star"></i>
188
+ <span class="ml-1 text-gray-600">4.9</span>
189
+ </div>
190
+ </div>
191
+ <p class="text-gray-600 text-sm mb-4">Explore GANs, VAEs, and diffusion models through interactive visual experiments.</p>
192
+ <div class="flex justify-between items-center">
193
+ <div class="flex items-center">
194
+ <i class="far fa-clock text-gray-500 mr-1"></i>
195
+ <span class="text-sm text-gray-600">5h 45m</span>
196
+ </div>
197
+ <button class="text-purple-600 text-sm font-medium hover:text-purple-800">Start Course</button>
198
+ </div>
199
+ </div>
200
+ </div>
201
+
202
+ <!-- Course Card 3 -->
203
+ <div class="course-card bg-white rounded-xl overflow-hidden shadow-md transition duration-300">
204
+ <div class="relative">
205
+ <img src="https://images.unsplash.com/photo-1620712943543-bcc4688e7485?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=500&q=80" alt="LLMs Explained" class="w-full h-48 object-cover">
206
+ <div class="absolute top-2 right-2 bg-red-400 text-xs font-bold px-2 py-1 rounded">Advanced</div>
207
+ </div>
208
+ <div class="p-6">
209
+ <div class="flex justify-between items-start mb-2">
210
+ <h3 class="font-bold text-lg">Large Language Models</h3>
211
+ <div class="flex items-center text-yellow-500">
212
+ <i class="fas fa-star"></i>
213
+ <span class="ml-1 text-gray-600">4.7</span>
214
+ </div>
215
+ </div>
216
+ <p class="text-gray-600 text-sm mb-4">Understand transformers, attention mechanisms, and how tools like ChatGPT work under the hood.</p>
217
+ <div class="flex justify-between items-center">
218
+ <div class="flex items-center">
219
+ <i class="far fa-clock text-gray-500 mr-1"></i>
220
+ <span class="text-sm text-gray-600">7h 10m</span>
221
+ </div>
222
+ <button class="text-purple-600 text-sm font-medium hover:text-purple-800">Start Course</button>
223
+ </div>
224
+ </div>
225
+ </div>
226
+ </div>
227
+ </div>
228
+ </section>
229
+
230
+ <!-- Interactive Lab Section -->
231
+ <section class="py-16 bg-white">
232
+ <div class="container mx-auto px-4">
233
+ <h2 class="text-3xl font-bold text-center mb-12">Try Our Interactive Lab</h2>
234
+
235
+ <div class="bg-gray-50 rounded-xl p-6 md:p-8 shadow-inner">
236
+ <div class="flex flex-col md:flex-row">
237
+ <!-- Lab Controls -->
238
+ <div class="md:w-1/3 mb-6 md:mb-0 md:pr-6">
239
+ <h3 class="text-xl font-bold mb-4">Image Generation Lab</h3>
240
+
241
+ <div class="mb-4">
242
+ <label class="block text-sm font-medium text-gray-700 mb-1">Model</label>
243
+ <select class="w-full p-2 border border-gray-300 rounded-lg focus:ring-2 focus:ring-purple-500 focus:border-purple-500">
244
+ <option>Stable Diffusion v2.1</option>
245
+ <option>DALL-E Mini</option>
246
+ <option>Midjourney v5</option>
247
+ </select>
248
+ </div>
249
+
250
+ <div class="mb-4">
251
+ <label class="block text-sm font-medium text-gray-700 mb-1">Prompt</label>
252
+ <textarea class="w-full p-2 border border-gray-300 rounded-lg focus:ring-2 focus:ring-purple-500 focus:border-purple-500 h-24" placeholder="Describe the image you want to generate..."></textarea>
253
+ </div>
254
+
255
+ <div class="grid grid-cols-2 gap-4 mb-6">
256
+ <div>
257
+ <label class="block text-sm font-medium text-gray-700 mb-1">Steps</label>
258
+ <input type="range" min="10" max="50" value="20" class="w-full">
259
+ </div>
260
+ <div>
261
+ <label class="block text-sm font-medium text-gray-700 mb-1">Guidance</label>
262
+ <input type="range" min="1" max="20" value="7" class="w-full">
263
+ </div>
264
+ </div>
265
+
266
+ <button class="w-full gradient-bg text-white py-3 rounded-lg font-bold hover:opacity-90 transition flex items-center justify-center">
267
+ <i class="fas fa-magic mr-2"></i> Generate Image
268
+ </button>
269
+ </div>
270
+
271
+ <!-- Lab Output -->
272
+ <div class="md:w-2/3 bg-black bg-opacity-5 rounded-xl p-6 flex flex-col">
273
+ <div class="flex justify-between items-center mb-4">
274
+ <h4 class="font-medium">Output</h4>
275
+ <div class="flex space-x-2">
276
+ <button class="p-2 bg-white rounded-lg hover:bg-gray-100">
277
+ <i class="fas fa-download"></i>
278
+ </button>
279
+ <button class="p-2 bg-white rounded-lg hover:bg-gray-100">
280
+ <i class="fas fa-share-alt"></i>
281
+ </button>
282
+ </div>
283
+ </div>
284
+
285
+ <div class="bg-black bg-opacity-10 rounded-lg flex-1 flex items-center justify-center">
286
+ <div class="text-center p-6">
287
+ <i class="fas fa-image text-5xl text-gray-400 mb-4"></i>
288
+ <p class="text-gray-600">Your generated image will appear here</p>
289
+ <p class="text-sm text-gray-500 mt-2">Try changing the parameters to see different results</p>
290
+ </div>
291
+ </div>
292
+
293
+ <div class="mt-4 bg-white p-3 rounded-lg">
294
+ <h5 class="font-medium text-sm mb-2">How It Works</h5>
295
+ <p class="text-xs text-gray-600">This lab uses a diffusion model to generate images from text. The model gradually transforms random noise into an image that matches your prompt through a series of steps.</p>
296
+ </div>
297
+ </div>
298
+ </div>
299
+ </div>
300
+ </div>
301
+ </section>
302
+
303
+ <!-- Learning Path Section -->
304
+ <section class="py-16 bg-gray-50">
305
+ <div class="container mx-auto px-4">
306
+ <h2 class="text-3xl font-bold text-center mb-12">Personalized Learning Path</h2>
307
+
308
+ <div class="max-w-4xl mx-auto bg-white rounded-xl shadow-md overflow-hidden">
309
+ <div class="p-6">
310
+ <div class="flex items-center mb-6">
311
+ <div class="w-16 h-16 bg-purple-100 rounded-full flex items-center justify-center mr-4">
312
+ <i class="fas fa-user-graduate text-purple-600 text-2xl"></i>
313
+ </div>
314
+ <div>
315
+ <h3 class="font-bold text-xl">Your AI Journey</h3>
316
+ <p class="text-gray-600">Based on your interests and progress</p>
317
+ </div>
318
+ </div>
319
+
320
+ <div class="mb-8">
321
+ <div class="flex justify-between mb-2">
322
+ <span class="text-sm font-medium">Current Progress</span>
323
+ <span class="text-sm font-medium">25%</span>
324
+ </div>
325
+ <div class="w-full bg-gray-200 rounded-full h-2.5">
326
+ <div class="gradient-bg h-2.5 rounded-full" style="width: 25%"></div>
327
+ </div>
328
+ </div>
329
+
330
+ <div class="space-y-6">
331
+ <!-- Path Item 1 -->
332
+ <div class="flex items-start">
333
+ <div class="flex-shrink-0 mr-4">
334
+ <div class="w-10 h-10 rounded-full bg-green-100 flex items-center justify-center">
335
+ <i class="fas fa-check text-green-600"></i>
336
+ </div>
337
+ </div>
338
+ <div class="flex-1 pt-1">
339
+ <h4 class="font-medium">AI Fundamentals</h4>
340
+ <p class="text-sm text-gray-600">Completed on May 15, 2023</p>
341
+ </div>
342
+ <button class="text-purple-600 text-sm font-medium">Review</button>
343
+ </div>
344
+
345
+ <!-- Path Item 2 -->
346
+ <div class="flex items-start">
347
+ <div class="flex-shrink-0 mr-4">
348
+ <div class="w-10 h-10 rounded-full bg-blue-100 flex items-center justify-center">
349
+ <span class="text-blue-600 font-medium">2</span>
350
+ </div>
351
+ </div>
352
+ <div class="flex-1 pt-1">
353
+ <h4 class="font-medium">Neural Networks</h4>
354
+ <p class="text-sm text-gray-600">In progress (45% completed)</p>
355
+ <div class="w-full bg-gray-200 rounded-full h-1.5 mt-2">
356
+ <div class="gradient-bg h-1.5 rounded-full" style="width: 45%"></div>
357
+ </div>
358
+ </div>
359
+ <button class="text-purple-600 text-sm font-medium">Continue</button>
360
+ </div>
361
+
362
+ <!-- Path Item 3 -->
363
+ <div class="flex items-start opacity-50">
364
+ <div class="flex-shrink-0 mr-4">
365
+ <div class="w-10 h-10 rounded-full bg-gray-100 flex items-center justify-center">
366
+ <span class="text-gray-600 font-medium">3</span>
367
+ </div>
368
+ </div>
369
+ <div class="flex-1 pt-1">
370
+ <h4 class="font-medium">Generative Models</h4>
371
+ <p class="text-sm text-gray-600">Available after completing Neural Networks</p>
372
+ </div>
373
+ <button class="text-gray-400 text-sm font-medium" disabled>Locked</button>
374
+ </div>
375
+ </div>
376
+
377
+ <button class="w-full mt-8 border-2 border-purple-600 text-purple-600 px-6 py-3 rounded-full font-bold hover:bg-purple-50 transition">View Full Path</button>
378
+ </div>
379
+ </div>
380
+ </div>
381
+ </section>
382
+
383
+ <!-- Testimonials -->
384
+ <section class="py-16 bg-white">
385
+ <div class="container mx-auto px-4">
386
+ <h2 class="text-3xl font-bold text-center mb-12">What Our Learners Say</h2>
387
+
388
+ <div class="grid grid-cols-1 md:grid-cols-2 gap-8">
389
+ <!-- Testimonial 1 -->
390
+ <div class="bg-gray-50 p-6 rounded-xl">
391
+ <div class="flex items-center mb-4">
392
+ <img src="https://randomuser.me/api/portraits/women/44.jpg" alt="Sarah J." class="w-12 h-12 rounded-full mr-4">
393
+ <div>
394
+ <h4 class="font-bold">Sarah J.</h4>
395
+ <div class="flex text-yellow-400">
396
+ <i class="fas fa-star"></i>
397
+ <i class="fas fa-star"></i>
398
+ <i class="fas fa-star"></i>
399
+ <i class="fas fa-star"></i>
400
+ <i class="fas fa-star"></i>
401
+ </div>
402
+ </div>
403
+ </div>
404
+ <p class="text-gray-600 mb-4">"As a designer with no coding background, I never thought I could understand AI. This platform made complex concepts accessible through visual explanations and interactive labs."</p>
405
+ <div class="text-sm text-gray-500">Completed: AI Fundamentals, Generative Models</div>
406
+ </div>
407
+
408
+ <!-- Testimonial 2 -->
409
+ <div class="bg-gray-50 p-6 rounded-xl">
410
+ <div class="flex items-center mb-4">
411
+ <img src="https://randomuser.me/api/portraits/men/32.jpg" alt="Michael T." class="w-12 h-12 rounded-full mr-4">
412
+ <div>
413
+ <h4 class="font-bold">Michael T.</h4>
414
+ <div class="flex text-yellow-400">
415
+ <i class="fas fa-star"></i>
416
+ <i class="fas fa-star"></i>
417
+ <i class="fas fa-star"></i>
418
+ <i class="fas fa-star"></i>
419
+ <i class="fas fa-star-half-alt"></i>
420
+ </div>
421
+ </div>
422
+ </div>
423
+ <p class="text-gray-600 mb-4">"The no-code approach helped me focus on understanding the core AI concepts without getting bogged down in implementation details. The labs are incredibly well-designed."</p>
424
+ <div class="text-sm text-gray-500">Completed: Neural Networks, LLMs Explained</div>
425
+ </div>
426
+ </div>
427
+ </div>
428
+ </section>
429
+
430
+ <!-- CTA Section -->
431
+ <section class="gradient-bg text-white py-16">
432
+ <div class="container mx-auto px-4 text-center">
433
+ <h2 class="text-3xl md:text-4xl font-bold mb-6">Ready to Start Your AI Learning Journey?</h2>
434
+ <p class="text-xl mb-8 max-w-2xl mx-auto">Join thousands of learners exploring AI without writing a single line of code.</p>
435
+ <div class="flex flex-col sm:flex-row justify-center space-y-4 sm:space-y-0 sm:space-x-4">
436
+ <button class="bg-white text-purple-600 px-8 py-4 rounded-full font-bold hover:bg-gray-100 transition text-lg">Get Started for Free</button>
437
+ <button class="border-2 border-white text-white px-8 py-4 rounded-full font-bold hover:bg-white hover:text-purple-600 transition text-lg">Take a Tour</button>
438
+ </div>
439
+ </div>
440
+ </section>
441
+
442
+ <!-- Footer -->
443
+ <footer class="bg-gray-900 text-white py-12">
444
+ <div class="container mx-auto px-4">
445
+ <div class="grid grid-cols-1 md:grid-cols-4 gap-8">
446
+ <div>
447
+ <div class="flex items-center space-x-2 mb-4">
448
+ <i class="fas fa-robot text-2xl"></i>
449
+ <h3 class="text-xl font-bold">GenAI Learn</h3>
450
+ </div>
451
+ <p class="text-gray-400 mb-4">The no-code platform for learning generative AI concepts through interactive visualizations and experiments.</p>
452
+ <div class="flex space-x-4">
453
+ <a href="#" class="text-gray-400 hover:text-white"><i class="fab fa-twitter"></i></a>
454
+ <a href="#" class="text-gray-400 hover:text-white"><i class="fab fa-linkedin"></i></a>
455
+ <a href="#" class="text-gray-400 hover:text-white"><i class="fab fa-youtube"></i></a>
456
+ <a href="#" class="text-gray-400 hover:text-white"><i class="fab fa-discord"></i></a>
457
+ </div>
458
+ </div>
459
+
460
+ <div>
461
+ <h4 class="text-lg font-bold mb-4">Learn</h4>
462
+ <ul class="space-y-2">
463
+ <li><a href="#" class="text-gray-400 hover:text-white">Courses</a></li>
464
+ <li><a href="#" class="text-gray-400 hover:text-white">Learning Paths</a></li>
465
+ <li><a href="#" class="text-gray-400 hover:text-white">Interactive Labs</a></li>
466
+ <li><a href="#" class="text-gray-400 hover:text-white">AI Glossary</a></li>
467
+ </ul>
468
+ </div>
469
+
470
+ <div>
471
+ <h4 class="text-lg font-bold mb-4">Company</h4>
472
+ <ul class="space-y-2">
473
+ <li><a href="#" class="text-gray-400 hover:text-white">About Us</a></li>
474
+ <li><a href="#" class="text-gray-400 hover:text-white">Careers</a></li>
475
+ <li><a href="#" class="text-gray-400 hover:text-white">Blog</a></li>
476
+ <li><a href="#" class="text-gray-400 hover:text-white">Contact</a></li>
477
+ </ul>
478
+ </div>
479
+
480
+ <div>
481
+ <h4 class="text-lg font-bold mb-4">Stay Updated</h4>
482
+ <p class="text-gray-400 mb-4">Subscribe to our newsletter for the latest in AI education.</p>
483
+ <div class="flex">
484
+ <input type="email" placeholder="Your email" class="px-4 py-2 rounded-l-lg w-full text-gray-900">
485
+ <button class="gradient-bg px-4 py-2 rounded-r-lg font-medium"><i class="fas fa-paper-plane"></i></button>
486
+ </div>
487
+ </div>
488
+ </div>
489
+
490
+ <div class="border-t border-gray-800 mt-12 pt-8 flex flex-col md:flex-row justify-between items-center">
491
+ <p class="text-gray-400 mb-4 md:mb-0">© 2023 GenAI Learn. All rights reserved.</p>
492
+ <div class="flex space-x-6">
493
+ <a href="#" class="text-gray-400 hover:text-white">Privacy Policy</a>
494
+ <a href="#" class="text-gray-400 hover:text-white">Terms of Service</a>
495
+ <a href="#" class="text-gray-400 hover:text-white">Cookies</a>
496
+ </div>
497
+ </div>
498
+ </div>
499
+ </footer>
500
+
501
+ <script>
502
+ // Mobile menu toggle
503
+ document.getElementById('mobile-menu-button').addEventListener('click', function() {
504
+ const menu = document.getElementById('mobile-menu');
505
+ menu.classList.toggle('hidden');
506
+ });
507
+
508
+ // Simple tab system for potential future use
509
+ const tabs = document.querySelectorAll('.tab-button');
510
+ const tabContents = document.querySelectorAll('.tab-content');
511
+
512
+ if (tabs.length > 0) {
513
+ tabs.forEach(tab => {
514
+ tab.addEventListener('click', () => {
515
+ // Remove active class from all tabs and contents
516
+ tabs.forEach(t => t.classList.remove('active'));
517
+ tabContents.forEach(c => c.classList.remove('active'));
518
+
519
+ // Add active class to clicked tab and corresponding content
520
+ tab.classList.add('active');
521
+ const contentId = tab.getAttribute('data-tab');
522
+ document.getElementById(contentId).classList.add('active');
523
+ });
524
+ });
525
+ }
526
+
527
+ // Course card hover effect
528
+ const courseCards = document.querySelectorAll('.course-card');
529
+ courseCards.forEach(card => {
530
+ card.style.transition = 'transform 0.3s ease, box-shadow 0.3s ease';
531
+ });
532
+
533
+ // Simple progress ring animation
534
+ function updateProgressRing(percent) {
535
+ const circumference = 2 * Math.PI * 40;
536
+ const offset = circumference - (percent / 100) * circumference;
537
+ document.querySelector('.progress-ring__circle').style.strokeDashoffset = offset;
538
+ }
539
+
540
+ // Initialize progress ring
541
+ if (document.querySelector('.progress-ring__circle')) {
542
+ updateProgressRing(25); // 25% progress
543
+ }
544
+ </script>
545
+ <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=Surobhi/gen-ai-learn" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
546
+ </html>