iamTheFoxCoder commited on
Commit
9d658b3
·
verified ·
1 Parent(s): 4ba2c97

Add 3 files

Browse files
Files changed (3) hide show
  1. README.md +7 -5
  2. index.html +376 -19
  3. prompts.txt +1 -0
README.md CHANGED
@@ -1,10 +1,12 @@
1
  ---
2
- title: Ytlean1
3
- emoji: 📚
4
- colorFrom: gray
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: ytlean1
3
+ emoji: 🐳
4
+ colorFrom: red
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,376 @@
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="fr">
3
+ <head>
4
+ <meta charset="UTF-8">
5
+ <meta name="viewport" content="width=device-width, initial-scale=1.0">
6
+ <title>LearnAI - Apprentissage intelligent par IA</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=Inter:wght@300;400;500;600;700&display=swap');
11
+
12
+ body {
13
+ font-family: 'Inter', sans-serif;
14
+ background-color: #f8fafc;
15
+ color: #1e293b;
16
+ }
17
+
18
+ .gradient-bg {
19
+ background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 50%, #d946ef 100%);
20
+ }
21
+
22
+ .card-hover {
23
+ transition: all 0.3s ease;
24
+ }
25
+
26
+ .card-hover:hover {
27
+ transform: translateY(-5px);
28
+ box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
29
+ }
30
+
31
+ .input-focus:focus {
32
+ box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.3);
33
+ }
34
+
35
+ .floating-animation {
36
+ animation: float 6s ease-in-out infinite;
37
+ }
38
+
39
+ @keyframes float {
40
+ 0% { transform: translateY(0px); }
41
+ 50% { transform: translateY(-15px); }
42
+ 100% { transform: translateY(0px); }
43
+ }
44
+
45
+ .wave-shape {
46
+ position: absolute;
47
+ bottom: 0;
48
+ left: 0;
49
+ width: 100%;
50
+ overflow: hidden;
51
+ line-height: 0;
52
+ }
53
+
54
+ .wave-shape svg {
55
+ position: relative;
56
+ display: block;
57
+ width: calc(100% + 1.3px);
58
+ height: 150px;
59
+ }
60
+
61
+ .wave-shape .shape-fill {
62
+ fill: #FFFFFF;
63
+ }
64
+ </style>
65
+ </head>
66
+ <body class="antialiased">
67
+ <!-- Navigation -->
68
+ <nav class="bg-white shadow-sm">
69
+ <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
70
+ <div class="flex justify-between h-16">
71
+ <div class="flex items-center">
72
+ <div class="flex-shrink-0 flex items-center">
73
+ <i class="fas fa-brain text-indigo-500 text-2xl mr-2"></i>
74
+ <span class="text-xl font-bold text-gray-900">LearnAI</span>
75
+ </div>
76
+ </div>
77
+ <div class="hidden md:ml-6 md:flex md:items-center md:space-x-8">
78
+ <a href="#" class="text-gray-900 inline-flex items-center px-1 pt-1 border-b-2 border-indigo-500 text-sm font-medium">Accueil</a>
79
+ <a href="#" class="text-gray-500 hover:text-gray-700 inline-flex items-center px-1 pt-1 border-b-2 border-transparent hover:border-gray-300 text-sm font-medium">Fonctionnalités</a>
80
+ <a href="#" class="text-gray-500 hover:text-gray-700 inline-flex items-center px-1 pt-1 border-b-2 border-transparent hover:border-gray-300 text-sm font-medium">Tarifs</a>
81
+ <a href="#" class="text-gray-500 hover:text-gray-700 inline-flex items-center px-1 pt-1 border-b-2 border-transparent hover:border-gray-300 text-sm font-medium">À propos</a>
82
+ </div>
83
+ <div class="flex items-center">
84
+ <button class="bg-indigo-600 hover:bg-indigo-700 text-white px-4 py-2 rounded-md text-sm font-medium transition duration-150 ease-in-out">
85
+ Essayer gratuitement
86
+ </button>
87
+ </div>
88
+ </div>
89
+ </div>
90
+ </nav>
91
+
92
+ <!-- Hero Section -->
93
+ <div class="relative gradient-bg overflow-hidden">
94
+ <div class="max-w-7xl mx-auto">
95
+ <div class="relative z-10 pb-8 sm:pb-16 md:pb-20 lg:max-w-2xl lg:w-full lg:pb-28 xl:pb-32">
96
+ <div class="pt-10 sm:pt-16 lg:pt-8 lg:pb-14 lg:overflow-hidden">
97
+ <div class="mt-10 mx-auto max-w-7xl px-4 sm:mt-12 sm:px-6 md:mt-16 lg:mt-20 lg:px-8 xl:mt-28">
98
+ <div class="sm:text-center lg:text-left">
99
+ <h1 class="text-4xl tracking-tight font-extrabold text-white sm:text-5xl md:text-6xl">
100
+ <span class="block">Apprenez avec</span>
101
+ <span class="block text-indigo-200">l'intelligence artificielle</span>
102
+ </h1>
103
+ <p class="mt-3 text-base text-indigo-100 sm:mt-5 sm:text-lg sm:max-w-xl sm:mx-auto md:mt-5 md:text-xl lg:mx-0">
104
+ Transformez n'importe quelle vidéo YouTube ou document PDF en expérience d'apprentissage interactive avec des quiz, flashcards et explications visuelles.
105
+ </p>
106
+ <div class="mt-5 sm:mt-8 sm:flex sm:justify-center lg:justify-start">
107
+ <div class="rounded-md shadow">
108
+ <a href="#" class="w-full flex items-center justify-center px-8 py-3 border border-transparent text-base font-medium rounded-md text-indigo-600 bg-white hover:bg-gray-50 md:py-4 md:text-lg md:px-10">
109
+ Commencer maintenant
110
+ </a>
111
+ </div>
112
+ <div class="mt-3 sm:mt-0 sm:ml-3">
113
+ <a href="#" class="w-full flex items-center justify-center px-8 py-3 border border-transparent text-base font-medium rounded-md text-white bg-indigo-500 bg-opacity-60 hover:bg-opacity-70 md:py-4 md:text-lg md:px-10">
114
+ <i class="fas fa-play mr-2"></i> Voir la démo
115
+ </a>
116
+ </div>
117
+ </div>
118
+ </div>
119
+ </div>
120
+ </div>
121
+ <div class="lg:absolute lg:inset-y-0 lg:right-0 lg:w-1/2">
122
+ <div class="h-56 w-full sm:h-72 md:h-96 lg:w-full lg:h-full floating-animation">
123
+ <div class="absolute inset-0 flex items-center justify-center">
124
+ <img class="w-3/4" src="https://cdn-icons-png.flaticon.com/512/3161/3161837.png" alt="App screenshot">
125
+ </div>
126
+ </div>
127
+ </div>
128
+ </div>
129
+ </div>
130
+ <div class="wave-shape">
131
+ <svg data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 120" preserveAspectRatio="none">
132
+ <path d="M321.39,56.44c58-10.79,114.16-30.13,172-41.86,82.39-16.72,168.19-17.73,250.45-.39C823.78,31,906.67,72,985.66,92.83c70.05,18.48,146.53,26.09,214.34,3V0H0V27.35A600.21,600.21,0,0,0,321.39,56.44Z" class="shape-fill"></path>
133
+ </svg>
134
+ </div>
135
+ </div>
136
+
137
+ <!-- Features Section -->
138
+ <div class="py-12 bg-white">
139
+ <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
140
+ <div class="lg:text-center">
141
+ <h2 class="text-base text-indigo-600 font-semibold tracking-wide uppercase">Fonctionnalités</h2>
142
+ <p class="mt-2 text-3xl leading-8 font-extrabold tracking-tight text-gray-900 sm:text-4xl">
143
+ Une nouvelle façon d'apprendre
144
+ </p>
145
+ <p class="mt-4 max-w-2xl text-xl text-gray-500 lg:mx-auto">
146
+ Notre IA transforme votre contenu en expériences d'apprentissage engageantes
147
+ </p>
148
+ </div>
149
+
150
+ <div class="mt-10">
151
+ <div class="grid grid-cols-1 gap-10 sm:grid-cols-2 lg:grid-cols-3">
152
+ <!-- Feature 1 -->
153
+ <div class="bg-gray-50 rounded-lg p-6 card-hover">
154
+ <div class="flex items-center justify-center h-12 w-12 rounded-md bg-indigo-500 text-white">
155
+ <i class="fab fa-youtube text-xl"></i>
156
+ </div>
157
+ <div class="mt-5">
158
+ <h3 class="text-lg leading-6 font-medium text-gray-900">Vidéos YouTube</h3>
159
+ <p class="mt-2 text-base text-gray-500">
160
+ Collez simplement un lien YouTube et notre IA créera des quiz interactifs, des résumés et des flashcards basés sur le contenu.
161
+ </p>
162
+ </div>
163
+ </div>
164
+
165
+ <!-- Feature 2 -->
166
+ <div class="bg-gray-50 rounded-lg p-6 card-hover">
167
+ <div class="flex items-center justify-center h-12 w-12 rounded-md bg-purple-500 text-white">
168
+ <i class="fas fa-file-pdf text-xl"></i>
169
+ </div>
170
+ <div class="mt-5">
171
+ <h3 class="text-lg leading-6 font-medium text-gray-900">Documents PDF</h3>
172
+ <p class="mt-2 text-base text-gray-500">
173
+ Téléchargez vos PDF de cours et obtenez des explications simplifiées, des schémas visuels et des exercices personnalisés.
174
+ </p>
175
+ </div>
176
+ </div>
177
+
178
+ <!-- Feature 3 -->
179
+ <div class="bg-gray-50 rounded-lg p-6 card-hover">
180
+ <div class="flex items-center justify-center h-12 w-12 rounded-md bg-pink-500 text-white">
181
+ <i class="fas fa-gamepad text-xl"></i>
182
+ </div>
183
+ <div class="mt-5">
184
+ <h3 class="text-lg leading-6 font-medium text-gray-900">Jeux interactifs</h3>
185
+ <p class="mt-2 text-base text-gray-500">
186
+ Apprenez en jouant avec des mini-jeux éducatifs générés automatiquement à partir de votre contenu.
187
+ </p>
188
+ </div>
189
+ </div>
190
+
191
+ <!-- Feature 4 -->
192
+ <div class="bg-gray-50 rounded-lg p-6 card-hover">
193
+ <div class="flex items-center justify-center h-12 w-12 rounded-md bg-blue-500 text-white">
194
+ <i class="fas fa-images text-xl"></i>
195
+ </div>
196
+ <div class="mt-5">
197
+ <h3 class="text-lg leading-6 font-medium text-gray-900">Explications visuelles</h3>
198
+ <p class="mt-2 text-base text-gray-500">
199
+ Des illustrations et analogies amusantes pour mieux comprendre les concepts complexes.
200
+ </p>
201
+ </div>
202
+ </div>
203
+
204
+ <!-- Feature 5 -->
205
+ <div class="bg-gray-50 rounded-lg p-6 card-hover">
206
+ <div class="flex items-center justify-center h-12 w-12 rounded-md bg-green-500 text-white">
207
+ <i class="fas fa-layer-group text-xl"></i>
208
+ </div>
209
+ <div class="mt-5">
210
+ <h3 class="text-lg leading-6 font-medium text-gray-900">Flashcards intelligentes</h3>
211
+ <p class="mt-2 text-base text-gray-500">
212
+ Des cartes mémoire optimisées par l'IA qui s'adaptent à votre rythme d'apprentissage.
213
+ </p>
214
+ </div>
215
+ </div>
216
+
217
+ <!-- Feature 6 -->
218
+ <div class="bg-gray-50 rounded-lg p-6 card-hover">
219
+ <div class="flex items-center justify-center h-12 w-12 rounded-md bg-yellow-500 text-white">
220
+ <i class="fas fa-chart-line text-xl"></i>
221
+ </div>
222
+ <div class="mt-5">
223
+ <h3 class="text-lg leading-6 font-medium text-gray-900">Suivi des progrès</h3>
224
+ <p class="mt-2 text-base text-gray-500">
225
+ Visualisez vos forces et faiblesses avec des analyses détaillées et des recommandations personnalisées.
226
+ </p>
227
+ </div>
228
+ </div>
229
+ </div>
230
+ </div>
231
+ </div>
232
+ </div>
233
+
234
+ <!-- How it works -->
235
+ <div class="py-12 bg-gray-50">
236
+ <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
237
+ <div class="lg:text-center">
238
+ <h2 class="text-base text-indigo-600 font-semibold tracking-wide uppercase">Comment ça marche</h2>
239
+ <p class="mt-2 text-3xl leading-8 font-extrabold tracking-tight text-gray-900 sm:text-4xl">
240
+ Apprentissage en 3 étapes
241
+ </p>
242
+ </div>
243
+
244
+ <div class="mt-10">
245
+ <div class="relative">
246
+ <div class="absolute left-1/2 -ml-px h-full w-0.5 bg-indigo-200" aria-hidden="true"></div>
247
+
248
+ <div class="relative flex items-start mb-8">
249
+ <div class="flex-shrink-0">
250
+ <span class="flex items-center justify-center h-12 w-12 rounded-full bg-indigo-500 text-white border-4 border-white">
251
+ <span class="text-lg font-bold">1</span>
252
+ </span>
253
+ </div>
254
+ <div class="ml-4">
255
+ <h3 class="text-lg leading-6 font-medium text-gray-900">Ajoutez votre contenu</h3>
256
+ <p class="mt-2 text-base text-gray-500">
257
+ Collez un lien YouTube ou téléchargez un PDF. Vous pouvez ajouter des instructions spécifiques pour personnaliser votre expérience d'apprentissage.
258
+ </p>
259
+ </div>
260
+ </div>
261
+
262
+ <div class="relative flex items-start mb-8">
263
+ <div class="flex-shrink-0">
264
+ <span class="flex items-center justify-center h-12 w-12 rounded-full bg-indigo-500 text-white border-4 border-white">
265
+ <span class="text-lg font-bold">2</span>
266
+ </span>
267
+ </div>
268
+ <div class="ml-4">
269
+ <h3 class="text-lg leading-6 font-medium text-gray-900">Notre IA travaille</h3>
270
+ <p class="mt-2 text-base text-gray-500">
271
+ En quelques secondes, notre intelligence artificielle analyse le contenu, identifie les concepts clés et crée des activités d'apprentissage personnalisées.
272
+ </p>
273
+ </div>
274
+ </div>
275
+
276
+ <div class="relative flex items-start">
277
+ <div class="flex-shrink-0">
278
+ <span class="flex items-center justify-center h-12 w-12 rounded-full bg-indigo-500 text-white border-4 border-white">
279
+ <span class="text-lg font-bold">3</span>
280
+ </span>
281
+ </div>
282
+ <div class="ml-4">
283
+ <h3 class="text-lg leading-6 font-medium text-gray-900">Apprenez et révisez</h3>
284
+ <p class="mt-2 text-base text-gray-500">
285
+ Accédez à vos quiz interactifs, flashcards et explications visuelles. Revenez quand vous voulez pour réviser avec des exercices toujours plus pertinents.
286
+ </p>
287
+ </div>
288
+ </div>
289
+ </div>
290
+ </div>
291
+ </div>
292
+ </div>
293
+
294
+ <!-- CTA Section -->
295
+ <div class="bg-indigo-700">
296
+ <div class="max-w-2xl mx-auto text-center py-16 px-4 sm:py-20 sm:px-6 lg:px-8">
297
+ <h2 class="text-3xl font-extrabold text-white sm:text-4xl">
298
+ <span class="block">Prêt à révolutionner votre façon d'apprendre ?</span>
299
+ <span class="block">Essayez LearnAI gratuitement.</span>
300
+ </h2>
301
+ <p class="mt-4 text-lg leading-6 text-indigo-200">
302
+ Aucune carte de crédit requise. Commencez en 30 secondes.
303
+ </p>
304
+ <a href="#" class="mt-8 w-full inline-flex items-center justify-center px-5 py-3 border border-transparent text-base font-medium rounded-md text-indigo-600 bg-white hover:bg-indigo-50 sm:w-auto">
305
+ <i class="fas fa-rocket mr-2"></i> Commencer maintenant
306
+ </a>
307
+ </div>
308
+ </div>
309
+
310
+ <!-- Footer -->
311
+ <footer class="bg-white">
312
+ <div class="max-w-7xl mx-auto py-12 px-4 overflow-hidden sm:px-6 lg:px-8">
313
+ <nav class="-mx-5 -my-2 flex flex-wrap justify-center" aria-label="Footer">
314
+ <div class="px-5 py-2">
315
+ <a href="#" class="text-base text-gray-500 hover:text-gray-900">Accueil</a>
316
+ </div>
317
+ <div class="px-5 py-2">
318
+ <a href="#" class="text-base text-gray-500 hover:text-gray-900">Fonctionnalités</a>
319
+ </div>
320
+ <div class="px-5 py-2">
321
+ <a href="#" class="text-base text-gray-500 hover:text-gray-900">Tarifs</a>
322
+ </div>
323
+ <div class="px-5 py-2">
324
+ <a href="#" class="text-base text-gray-500 hover:text-gray-900">À propos</a>
325
+ </div>
326
+ <div class="px-5 py-2">
327
+ <a href="#" class="text-base text-gray-500 hover:text-gray-900">Confidentialité</a>
328
+ </div>
329
+ <div class="px-5 py-2">
330
+ <a href="#" class="text-base text-gray-500 hover:text-gray-900">Conditions</a>
331
+ </div>
332
+ </nav>
333
+ <div class="mt-8 flex justify-center space-x-6">
334
+ <a href="#" class="text-gray-400 hover:text-gray-500">
335
+ <span class="sr-only">Facebook</span>
336
+ <i class="fab fa-facebook-f text-xl"></i>
337
+ </a>
338
+ <a href="#" class="text-gray-400 hover:text-gray-500">
339
+ <span class="sr-only">Twitter</span>
340
+ <i class="fab fa-twitter text-xl"></i>
341
+ </a>
342
+ <a href="#" class="text-gray-400 hover:text-gray-500">
343
+ <span class="sr-only">Instagram</span>
344
+ <i class="fab fa-instagram text-xl"></i>
345
+ </a>
346
+ <a href="#" class="text-gray-400 hover:text-gray-500">
347
+ <span class="sr-only">LinkedIn</span>
348
+ <i class="fab fa-linkedin-in text-xl"></i>
349
+ </a>
350
+ </div>
351
+ <p class="mt-8 text-center text-base text-gray-400">
352
+ &copy; 2023 LearnAI. Tous droits réservés.
353
+ </p>
354
+ </div>
355
+ </footer>
356
+
357
+ <script>
358
+ // Simple animation for demo purposes
359
+ document.addEventListener('DOMContentLoaded', function() {
360
+ const cards = document.querySelectorAll('.card-hover');
361
+
362
+ cards.forEach(card => {
363
+ card.addEventListener('mouseenter', function() {
364
+ this.style.transform = 'translateY(-5px)';
365
+ });
366
+
367
+ card.addEventListener('mouseleave', function() {
368
+ this.style.transform = 'translateY(0)';
369
+ });
370
+ });
371
+
372
+ // Mobile menu toggle would go here
373
+ });
374
+ </script>
375
+ <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=iamTheFoxCoder/ytlean1" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
376
+ </html>
prompts.txt ADDED
@@ -0,0 +1 @@
 
 
1
+ j'insiste vraiment sur le meilluer design du monde qui vas impressioner tout le monde , un design tellement beau et moderne , DIGNE des grands comme google et apple , tellmeent moderne beau et epure , de sorte que mon app ressemble vraiment a ces app super pro des gands la , et le responsive parfait sur mobile (vu que la lupart des gens utilisent le modbile aujourdhui). bon le contexte , je veux faire la premiere page de mon app web qui va utiliser L'IA et youtube(ou tes notes de cours) pour apprendre , l'ia va prendre le lien d'une Video youtube que tu vas lui donner (set si tu veux ajouter des commentaires supllmentaies et specs supplmentaires) et l'IA va te generer un jeu interractif (dans une webview) , qui va te permettre de reviser la notion ou t'exercier par rapport au suet de la video , ca mache aussi avec des fihciers PDF,elle peut aussi generer des flashcards , elle peut aussi expliquer des concepts en se servants d'images drole.