docto41 commited on
Commit
84d266d
·
verified ·
1 Parent(s): d7985cb

Add 3 files

Browse files
Files changed (3) hide show
  1. README.md +7 -5
  2. index.html +491 -19
  3. prompts.txt +1 -0
README.md CHANGED
@@ -1,10 +1,12 @@
1
  ---
2
- title: Hyper Assistant Ia
3
- emoji: 📊
4
- colorFrom: red
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: hyper-assistant-ia
3
+ emoji: 🐳
4
+ colorFrom: blue
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,491 @@
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>Hyper Assistant IA - 92,000 Services</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
+ :root {
11
+ --primary: #3b82f6;
12
+ --secondary: #8b5cf6;
13
+ --accent: #ec4899;
14
+ }
15
+
16
+ body {
17
+ background: linear-gradient(135deg, #1e293b, #0f172a);
18
+ min-height: 100vh;
19
+ color: white;
20
+ font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
21
+ }
22
+
23
+ .gradient-text {
24
+ background: linear-gradient(90deg, var(--primary), var(--secondary), var(--accent));
25
+ -webkit-background-clip: text;
26
+ background-clip: text;
27
+ color: transparent;
28
+ }
29
+
30
+ .gradient-border {
31
+ border: 2px solid transparent;
32
+ background: linear-gradient(#0f172a, #0f172a) padding-box,
33
+ linear-gradient(135deg, var(--primary), var(--secondary)) border-box;
34
+ }
35
+
36
+ .service-card {
37
+ transition: all 0.3s ease;
38
+ background: rgba(15, 23, 42, 0.7);
39
+ backdrop-filter: blur(10px);
40
+ }
41
+
42
+ .service-card:hover {
43
+ transform: translateY(-5px);
44
+ box-shadow: 0 10px 25px rgba(59, 130, 246, 0.3);
45
+ }
46
+
47
+ .category-tab {
48
+ transition: all 0.3s ease;
49
+ }
50
+
51
+ .category-tab:hover, .category-tab.active {
52
+ background: linear-gradient(90deg, var(--primary), var(--secondary));
53
+ }
54
+
55
+ /* Custom scrollbar */
56
+ ::-webkit-scrollbar {
57
+ width: 8px;
58
+ }
59
+
60
+ ::-webkit-scrollbar-track {
61
+ background: #0f172a;
62
+ }
63
+
64
+ ::-webkit-scrollbar-thumb {
65
+ background: linear-gradient(var(--primary), var(--secondary));
66
+ border-radius: 10px;
67
+ }
68
+
69
+ /* Animation for buttons */
70
+ @keyframes pulse {
71
+ 0%, 100% {
72
+ transform: scale(1);
73
+ box-shadow: 0 0 0 0 rgba(59, 130, 246, 0.7);
74
+ }
75
+ 50% {
76
+ transform: scale(1.05);
77
+ box-shadow: 0 0 0 10px rgba(59, 130, 246, 0);
78
+ }
79
+ }
80
+
81
+ .pulse {
82
+ animation: pulse 2s infinite;
83
+ }
84
+
85
+ /* Grid layout for services */
86
+ .services-grid {
87
+ display: grid;
88
+ grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
89
+ gap: 1.5rem;
90
+ }
91
+
92
+ /* Loading animation */
93
+ @keyframes spin {
94
+ 0% { transform: rotate(0deg); }
95
+ 100% { transform: rotate(360deg); }
96
+ }
97
+
98
+ .loading-spinner {
99
+ animation: spin 1s linear infinite;
100
+ }
101
+ </style>
102
+ </head>
103
+ <body class="min-h-screen">
104
+ <!-- Header -->
105
+ <header class="gradient-border border-b">
106
+ <div class="container mx-auto px-4 py-6">
107
+ <div class="flex flex-col md:flex-row justify-between items-center">
108
+ <div class="flex items-center mb-4 md:mb-0">
109
+ <i class="fas fa-robot text-4xl mr-3 gradient-text"></i>
110
+ <h1 class="text-3xl font-bold gradient-text">Hyper Assistant IA</h1>
111
+ </div>
112
+
113
+ <div class="relative w-full md:w-1/3">
114
+ <input type="text" placeholder="Rechercher parmi 92,000 services..."
115
+ class="w-full bg-slate-800 rounded-full py-3 px-6 pr-12 text-white focus:outline-none focus:ring-2 focus:ring-blue-500">
116
+ <button class="absolute right-3 top-1/2 transform -translate-y-1/2 text-slate-400 hover:text-white">
117
+ <i class="fas fa-search"></i>
118
+ </button>
119
+ </div>
120
+ </div>
121
+
122
+ <div class="mt-6 flex flex-wrap gap-2">
123
+ <span class="px-3 py-1 rounded-full text-xs font-semibold bg-blue-900 text-blue-200">92,000+ Services</span>
124
+ <span class="px-3 py-1 rounded-full text-xs font-semibold bg-purple-900 text-purple-200">IA Multifonction</span>
125
+ <span class="px-3 py-1 rounded-full text-xs font-semibold bg-pink-900 text-pink-200">Ouverture Automatique</span>
126
+ <span class="px-3 py-1 rounded-full text-xs font-semibold bg-slate-700 text-slate-300">Mise à jour Quotidienne</span>
127
+ </div>
128
+ </div>
129
+ </header>
130
+
131
+ <!-- Main Content -->
132
+ <main class="container mx-auto px-4 py-8">
133
+ <!-- Categories Navigation -->
134
+ <div class="mb-8 overflow-x-auto">
135
+ <div class="flex space-x-2 pb-2">
136
+ <button class="category-tab active px-4 py-2 rounded-lg font-medium">Tous</button>
137
+ <button class="category-tab px-4 py-2 rounded-lg font-medium">Développement Web</button>
138
+ <button class="category-tab px-4 py-2 rounded-lg font-medium">Scripts & Automatisation</button>
139
+ <button class="category-tab px-4 py-2 rounded-lg font-medium">Streaming & Médias</button>
140
+ <button class="category-tab px-4 py-2 rounded-lg font-medium">Films & Séries</button>
141
+ <button class="category-tab px-4 py-2 rounded-lg font-medium">Productivité</button>
142
+ <button class="category-tab px-4 py-2 rounded-lg font-medium">Réseaux Sociaux</button>
143
+ <button class="category-tab px-4 py-2 rounded-lg font-medium">IA Générative</button>
144
+ <button class="category-tab px-4 py-2 rounded-lg font-medium">Design Graphique</button>
145
+ <button class="category-tab px-4 py-2 rounded-lg font-medium">Jeux Vidéo</button>
146
+ </div>
147
+ </div>
148
+
149
+ <!-- Featured Services -->
150
+ <section class="mb-12">
151
+ <h2 class="text-2xl font-bold mb-6 gradient-text flex items-center">
152
+ <i class="fas fa-star mr-3"></i> Services Vedettes
153
+ </h2>
154
+ <div class="services-grid">
155
+ <!-- Featured Service 1 -->
156
+ <div class="service-card rounded-xl p-5 gradient-border hover:border-blue-500">
157
+ <div class="flex items-center mb-3">
158
+ <div class="w-10 h-10 rounded-full bg-blue-900 flex items-center justify-center mr-3">
159
+ <i class="fas fa-code text-blue-300"></i>
160
+ </div>
161
+ <h3 class="font-bold text-lg">Générateur de Code HTML/CSS</h3>
162
+ </div>
163
+ <p class="text-slate-400 mb-4 text-sm">Créez des interfaces web professionnelles en quelques clics avec notre IA spécialisée.</p>
164
+ <button onclick="window.open('https://example.com/code-generator', '_blank')" class="w-full py-2 bg-blue-600 hover:bg-blue-700 rounded-lg font-medium flex items-center justify-center pulse">
165
+ <i class="fas fa-external-link-alt mr-2"></i> Ouvrir
166
+ </button>
167
+ </div>
168
+
169
+ <!-- Featured Service 2 -->
170
+ <div class="service-card rounded-xl p-5 gradient-border hover:border-purple-500">
171
+ <div class="flex items-center mb-3">
172
+ <div class="w-10 h-10 rounded-full bg-purple-900 flex items-center justify-center mr-3">
173
+ <i class="fas fa-film text-purple-300"></i>
174
+ </div>
175
+ <h3 class="font-bold text-lg">Assistant Streaming Premium</h3>
176
+ </div>
177
+ <p class="text-slate-400 mb-4 text-sm">Accédez à tous les contenus streaming avec recommandations personnalisées.</p>
178
+ <button onclick="window.open('https://example.com/streaming-assistant', '_blank')" class="w-full py-2 bg-purple-600 hover:bg-purple-700 rounded-lg font-medium flex items-center justify-center">
179
+ <i class="fas fa-external-link-alt mr-2"></i> Ouvrir
180
+ </button>
181
+ </div>
182
+
183
+ <!-- Featured Service 3 -->
184
+ <div class="service-card rounded-xl p-5 gradient-border hover:border-pink-500">
185
+ <div class="flex items-center mb-3">
186
+ <div class="w-10 h-10 rounded-full bg-pink-900 flex items-center justify-center mr-3">
187
+ <i class="fas fa-robot text-pink-300"></i>
188
+ </div>
189
+ <h3 class="font-bold text-lg">Super Assistant IA Tout-en-Un</h3>
190
+ </div>
191
+ <p class="text-slate-400 mb-4 text-sm">Une IA polyvalente pour répondre à tous vos besoins quotidiens.</p>
192
+ <button onclick="window.open('https://example.com/super-assistant', '_blank')" class="w-full py-2 bg-pink-600 hover:bg-pink-700 rounded-lg font-medium flex items-center justify-center">
193
+ <i class="fas fa-external-link-alt mr-2"></i> Ouvrir
194
+ </button>
195
+ </div>
196
+
197
+ <!-- Featured Service 4 -->
198
+ <div class="service-card rounded-xl p-5 gradient-border hover:border-green-500">
199
+ <div class="flex items-center mb-3">
200
+ <div class="w-10 h-10 rounded-full bg-green-900 flex items-center justify-center mr-3">
201
+ <i class="fas fa-music text-green-300"></i>
202
+ </div>
203
+ <h3 class="font-bold text-lg">Centre de Média Intelligent</h3>
204
+ </div>
205
+ <p class="text-slate-400 mb-4 text-sm">Organisez et découvrez musique, films et séries avec une IA dédiée.</p>
206
+ <button onclick="window.open('https://example.com/media-center', '_blank')" class="w-full py-2 bg-green-600 hover:bg-green-700 rounded-lg font-medium flex items-center justify-center">
207
+ <i class="fas fa-external-link-alt mr-2"></i> Ouvrir
208
+ </button>
209
+ </div>
210
+ </div>
211
+ </section>
212
+
213
+ <!-- All Services Section -->
214
+ <section>
215
+ <div class="flex justify-between items-center mb-6">
216
+ <h2 class="text-2xl font-bold gradient-text flex items-center">
217
+ <i class="fas fa-th-large mr-3"></i> Tous les Services (92,000+)
218
+ </h2>
219
+ <div class="flex items-center">
220
+ <span class="text-slate-400 mr-3">Filtrer:</span>
221
+ <select class="bg-slate-800 text-white rounded-lg px-3 py-2 focus:outline-none focus:ring-2 focus:ring-blue-500">
222
+ <option>Tous</option>
223
+ <option>Populaires</option>
224
+ <option>Récents</option>
225
+ <option>Premium</option>
226
+ </select>
227
+ </div>
228
+ </div>
229
+
230
+ <!-- Services Grid with Pagination -->
231
+ <div class="services-grid" id="services-container">
232
+ <!-- This will be populated with JavaScript -->
233
+ </div>
234
+
235
+ <!-- Pagination -->
236
+ <div class="flex justify-center mt-10">
237
+ <nav class="flex items-center space-x-2">
238
+ <button class="px-4 py-2 rounded-lg bg-slate-800 text-white disabled:opacity-50" disabled>
239
+ <i class="fas fa-chevron-left"></i>
240
+ </button>
241
+ <button class="px-4 py-2 rounded-lg bg-blue-600 text-white">1</button>
242
+ <button class="px-4 py-2 rounded-lg bg-slate-800 text-white hover:bg-slate-700">2</button>
243
+ <button class="px-4 py-2 rounded-lg bg-slate-800 text-white hover:bg-slate-700">3</button>
244
+ <span class="px-2 text-slate-400">...</span>
245
+ <button class="px-4 py-2 rounded-lg bg-slate-800 text-white hover:bg-slate-700">42</button>
246
+ <button class="px-4 py-2 rounded-lg bg-slate-800 text-white hover:bg-slate-700">
247
+ <i class="fas fa-chevron-right"></i>
248
+ </button>
249
+ </nav>
250
+ </div>
251
+ </section>
252
+ </main>
253
+
254
+ <!-- Footer -->
255
+ <footer class="gradient-border border-t mt-12">
256
+ <div class="container mx-auto px-4 py-8">
257
+ <div class="grid grid-cols-1 md:grid-cols-4 gap-8">
258
+ <div>
259
+ <h3 class="text-lg font-bold mb-4 gradient-text">Hyper Assistant IA</h3>
260
+ <p class="text-slate-400">La plateforme ultime regroupant 92,000 services IA pour tous vos besoins numériques.</p>
261
+ <div class="flex space-x-4 mt-4">
262
+ <a href="#" class="text-slate-400 hover:text-white"><i class="fab fa-twitter"></i></a>
263
+ <a href="#" class="text-slate-400 hover:text-white"><i class="fab fa-github"></i></a>
264
+ <a href="#" class="text-slate-400 hover:text-white"><i class="fab fa-discord"></i></a>
265
+ </div>
266
+ </div>
267
+
268
+ <div>
269
+ <h4 class="font-bold mb-4">Catégories</h4>
270
+ <ul class="space-y-2">
271
+ <li><a href="#" class="text-slate-400 hover:text-white">Développement</a></li>
272
+ <li><a href="#" class="text-slate-400 hover:text-white">Médias & Streaming</a></li>
273
+ <li><a href="#" class="text-slate-400 hover:text-white">Productivité</a></li>
274
+ <li><a href="#" class="text-slate-400 hover:text-white">Réseaux Sociaux</a></li>
275
+ <li><a href="#" class="text-slate-400 hover:text-white">Jeux</a></li>
276
+ </ul>
277
+ </div>
278
+
279
+ <div>
280
+ <h4 class="font-bold mb-4">Ressources</h4>
281
+ <ul class="space-y-2">
282
+ <li><a href="#" class="text-slate-400 hover:text-white">Documentation</a></li>
283
+ <li><a href="#" class="text-slate-400 hover:text-white">Blog</a></li>
284
+ <li><a href="#" class="text-slate-400 hover:text-white">Tutoriels</a></li>
285
+ <li><a href="#" class="text-slate-400 hover:text-white">API</a></li>
286
+ <li><a href="#" class="text-slate-400 hover:text-white">Statut</a></li>
287
+ </ul>
288
+ </div>
289
+
290
+ <div>
291
+ <h4 class="font-bold mb-4">Newsletter</h4>
292
+ <p class="text-slate-400 mb-3">Recevez les dernières nouveautés directement dans votre boîte mail.</p>
293
+ <div class="flex">
294
+ <input type="email" placeholder="Votre email" class="bg-slate-800 text-white px-3 py-2 rounded-l-lg focus:outline-none w-full">
295
+ <button class="bg-blue-600 hover:bg-blue-700 px-4 py-2 rounded-r-lg">
296
+ <i class="fas fa-paper-plane"></i>
297
+ </button>
298
+ </div>
299
+ </div>
300
+ </div>
301
+
302
+ <div class="border-t border-slate-800 mt-8 pt-6 flex flex-col md:flex-row justify-between items-center">
303
+ <p class="text-slate-500 text-sm mb-4 md:mb-0">© 2023 Hyper Assistant IA. Tous droits réservés.</p>
304
+ <div class="flex space-x-6">
305
+ <a href="#" class="text-slate-500 hover:text-white text-sm">Conditions</a>
306
+ <a href="#" class="text-slate-500 hover:text-white text-sm">Confidentialité</a>
307
+ <a href="#" class="text-slate-500 hover:text-white text-sm">Cookies</a>
308
+ </div>
309
+ </div>
310
+ </div>
311
+ </footer>
312
+
313
+ <!-- Floating Action Button -->
314
+ <button class="fixed bottom-6 right-6 w-14 h-14 rounded-full bg-gradient-to-r from-blue-500 to-purple-600 text-white flex items-center justify-center shadow-xl hover:shadow-2xl transition-all">
315
+ <i class="fas fa-plus text-xl"></i>
316
+ </button>
317
+
318
+ <script>
319
+ // Sample data for services (in a real app, this would come from an API)
320
+ const serviceCategories = {
321
+ icons: [
322
+ 'fa-code', 'fa-film', 'fa-music', 'fa-robot', 'fa-gamepad',
323
+ 'fa-paint-brush', 'fa-chart-line', 'fa-shopping-cart', 'fa-book', 'fa-globe'
324
+ ],
325
+ colors: [
326
+ 'bg-blue-900', 'bg-purple-900', 'bg-pink-900', 'bg-indigo-900', 'bg-green-900',
327
+ 'bg-yellow-900', 'bg-red-900', 'bg-teal-900', 'bg-orange-900', 'bg-cyan-900'
328
+ ],
329
+ textColors: [
330
+ 'text-blue-300', 'text-purple-300', 'text-pink-300', 'text-indigo-300', 'text-green-300',
331
+ 'text-yellow-300', 'text-red-300', 'text-teal-300', 'text-orange-300', 'text-cyan-300'
332
+ ],
333
+ buttonColors: [
334
+ 'bg-blue-600', 'bg-purple-600', 'bg-pink-600', 'bg-indigo-600', 'bg-green-600',
335
+ 'bg-yellow-600', 'bg-red-600', 'bg-teal-600', 'bg-orange-600', 'bg-cyan-600'
336
+ ],
337
+ hoverColors: [
338
+ 'hover:bg-blue-700', 'hover:bg-purple-700', 'hover:bg-pink-700', 'hover:bg-indigo-700', 'hover:bg-green-700',
339
+ 'hover:bg-yellow-700', 'hover:bg-red-700', 'hover:bg-teal-700', 'hover:bg-orange-700', 'hover:bg-cyan-700'
340
+ ]
341
+ };
342
+
343
+ const serviceTitles = [
344
+ "Générateur HTML5", "Assistant CSS", "JavaScript Avancé", "Framework React", "Vue.js Helper",
345
+ "Optimisation SEO", "Design Responsive", "Animation Web", "Base de Données", "API Manager",
346
+ "Streaming 4K", "Recommendation Films", "Séries Personnalisées", "Musique IA", "Podcast Organizer",
347
+ "Script Python", "Automatisation", "Bash Helper", "Scraping Web", "Analyse Données",
348
+ "Éditeur Photo", "Création Logo", "Design UI/UX", "Modèle 3D", "Vectorisation",
349
+ "Assistant Social", "Gestion Comptes", "Analyse Trends", "Content Creator", "Schedule Posts",
350
+ "Jeux PC", "Console Helper", "Optimisation FPS", "Recommendation Jeux", "Communauté Gaming",
351
+ "Productivité Max", "Gestion Temps", "Organisation", "Rapports Automatisés", "Email Smart",
352
+ "Traduction IA", "Assistant Écriture", "Correcteur Grammaire", "Résumé Documents", "Générateur Idées",
353
+ "VPN Intelligent", "Sécurité Web", "Cryptographie", "Protection Données", "Analyse Malware"
354
+ ];
355
+
356
+ const serviceDescriptions = [
357
+ "Créez des structures HTML5 parfaites en quelques clics",
358
+ "Générez du CSS moderne avec des effets avancés",
359
+ "Code JavaScript optimisé pour vos besoins spécifiques",
360
+ "Assistant complet pour le développement React",
361
+ "Outils et snippets pour accélérer le développement Vue.js",
362
+ "Optimisez votre site pour les moteurs de recherche",
363
+ "Concevez des interfaces qui s'adaptent à tous les appareils",
364
+ "Créez des animations fluides pour vos projets web",
365
+ "Gérez et optimisez vos bases de données facilement",
366
+ "Créez et documentez des API RESTful en quelques minutes",
367
+ "Accédez à du contenu streaming en qualité ultra HD",
368
+ "Recommandations personnalisées basées sur vos goûts",
369
+ "Découvrez des séries adaptées à vos préférences",
370
+ "Playlists intelligentes générées par IA",
371
+ "Organisez et découvrez des podcasts pertinents",
372
+ "Générez des scripts Python pour automatiser vos tâches",
373
+ "Automatisez vos workflows avec notre assistant intelligent",
374
+ "Aide à la création de scripts Bash complexes",
375
+ "Extrayez des données web avec des outils puissants",
376
+ "Analysez et visualisez vos données efficacement",
377
+ "Éditez et améliorez vos photos avec des outils IA",
378
+ "Créez des logos professionnels en quelques étapes",
379
+ "Concevez des interfaces utilisateur exceptionnelles",
380
+ "Générez des modèles 3D à partir de descriptions",
381
+ "Convertissez des images en vecteurs de haute qualité",
382
+ "Gérez tous vos réseaux sociaux depuis un seul endroit",
383
+ "Organisez et planifiez vos publications sociales",
384
+ "Analysez les tendances et performances de vos posts",
385
+ "Créez du contenu engageant avec l'aide de l'IA",
386
+ "Planifiez vos publications pour un impact maximum",
387
+ "Optimisez vos paramètres pour les jeux PC",
388
+ "Assistant pour les consoles de nouvelle génération",
389
+ "Augmentez vos FPS et fluidité de jeu",
390
+ "Découvrez des jeux adaptés à vos préférences",
391
+ "Rejoignez et gérez des communautés gaming",
392
+ "Boostez votre productivité avec des outils intelligents",
393
+ "Gérez votre temps efficacement avec des rappels IA",
394
+ "Organisez vos tâches et projets de manière optimale",
395
+ "Générez des rapports détaillés automatiquement",
396
+ "Gérez vos emails avec des réponses intelligentes",
397
+ "Traduisez du texte avec une précision naturelle",
398
+ "Assistant d'écriture avec suggestions contextuelles",
399
+ "Corrigez vos textes avec une précision grammaticale",
400
+ "Résumez des documents longs en points clés",
401
+ "Générez des idées créatives pour vos projets",
402
+ "Naviguez en toute sécurité avec un VPN intelligent",
403
+ "Protégez vos données et votre vie privée en ligne",
404
+ "Outils de cryptographie pour sécuriser vos communications",
405
+ "Solutions avancées pour la protection des données",
406
+ "Détectez et analysez les logiciels malveillants"
407
+ ];
408
+
409
+ // Generate random services
410
+ function generateRandomServices(count) {
411
+ const services = [];
412
+ for (let i = 0; i < count; i++) {
413
+ const randomCategory = Math.floor(Math.random() * serviceCategories.icons.length);
414
+ const randomTitle = serviceTitles[Math.floor(Math.random() * serviceTitles.length)];
415
+ const randomDesc = serviceDescriptions[Math.floor(Math.random() * serviceDescriptions.length)];
416
+
417
+ services.push({
418
+ icon: serviceCategories.icons[randomCategory],
419
+ color: serviceCategories.colors[randomCategory],
420
+ textColor: serviceCategories.textColors[randomCategory],
421
+ buttonColor: serviceCategories.buttonColors[randomCategory],
422
+ hoverColor: serviceCategories.hoverColors[randomCategory],
423
+ title: randomTitle,
424
+ description: randomDesc,
425
+ url: `https://example.com/service-${i}`
426
+ });
427
+ }
428
+ return services;
429
+ }
430
+
431
+ // Render services to the DOM
432
+ function renderServices(services) {
433
+ const container = document.getElementById('services-container');
434
+ container.innerHTML = '';
435
+
436
+ services.forEach(service => {
437
+ const serviceElement = document.createElement('div');
438
+ serviceElement.className = 'service-card rounded-xl p-5 gradient-border hover:border-blue-500';
439
+ serviceElement.innerHTML = `
440
+ <div class="flex items-center mb-3">
441
+ <div class="w-10 h-10 rounded-full ${service.color} flex items-center justify-center mr-3">
442
+ <i class="fas ${service.icon} ${service.textColor}"></i>
443
+ </div>
444
+ <h3 class="font-bold text-lg">${service.title}</h3>
445
+ </div>
446
+ <p class="text-slate-400 mb-4 text-sm">${service.description}</p>
447
+ <button onclick="window.open('${service.url}', '_blank')" class="w-full py-2 ${service.buttonColor} ${service.hoverColor} rounded-lg font-medium flex items-center justify-center">
448
+ <i class="fas fa-external-link-alt mr-2"></i> Ouvrir
449
+ </button>
450
+ `;
451
+
452
+ container.appendChild(serviceElement);
453
+ });
454
+ }
455
+
456
+ // Initialize the page with 20 random services
457
+ document.addEventListener('DOMContentLoaded', () => {
458
+ const randomServices = generateRandomServices(20);
459
+ renderServices(randomServices);
460
+
461
+ // Category tab functionality
462
+ const categoryTabs = document.querySelectorAll('.category-tab');
463
+ categoryTabs.forEach(tab => {
464
+ tab.addEventListener('click', () => {
465
+ categoryTabs.forEach(t => t.classList.remove('active'));
466
+ tab.classList.add('active');
467
+
468
+ // In a real app, we would filter services by category here
469
+ const filteredServices = generateRandomServices(20);
470
+ renderServices(filteredServices);
471
+ });
472
+ });
473
+
474
+ // Simulate loading more services when scrolling
475
+ window.addEventListener('scroll', () => {
476
+ if ((window.innerHeight + window.scrollY) >= document.body.offsetHeight - 500) {
477
+ // Load more services
478
+ const moreServices = generateRandomServices(20);
479
+ renderServices([...document.querySelectorAll('#services-container > div'), ...moreServices]);
480
+ }
481
+ });
482
+ });
483
+
484
+ // Function to simulate the 92,000 services (would be paginated in a real app)
485
+ function simulateAllServices() {
486
+ // This is just for demo - in a real app you would paginate or virtual scroll
487
+ console.log("92,000 services available - loading paginated results");
488
+ }
489
+ </script>
490
+ <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=docto41/hyper-assistant-ia" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
491
+ </html>
prompts.txt ADDED
@@ -0,0 +1 @@
 
 
1
+ je veut creer un hyper site de 92000 bouton de assistant IA de tout les code web , scrypt , streaming , movie etc... et toutes services en ouverture automatique dans une nouvel page avec une tres belle interface degrader de couleur