docto41 commited on
Commit
5fd071c
·
verified ·
1 Parent(s): 83eb7b1

Add 3 files

Browse files
Files changed (3) hide show
  1. README.md +7 -5
  2. index.html +557 -19
  3. prompts.txt +2 -0
README.md CHANGED
@@ -1,10 +1,12 @@
1
  ---
2
- title: Streamflow
3
- emoji: 🏆
4
- colorFrom: gray
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: streamflow
3
+ emoji: 🐳
4
+ colorFrom: pink
5
+ colorTo: green
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,557 @@
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>StreamFlow - Plateforme de Streaming Automatisée</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
+ <script>
10
+ tailwind.config = {
11
+ theme: {
12
+ extend: {
13
+ colors: {
14
+ primary: '#1a1a2e',
15
+ secondary: '#16213e',
16
+ accent: '#0f3460',
17
+ highlight: '#e94560',
18
+ }
19
+ }
20
+ }
21
+ }
22
+ </script>
23
+ <style>
24
+ .hero-gradient {
25
+ background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
26
+ }
27
+ .movie-card:hover {
28
+ transform: scale(1.03);
29
+ box-shadow: 0 10px 25px rgba(0,0,0,0.3);
30
+ }
31
+ .ad-container {
32
+ transition: all 0.3s ease;
33
+ }
34
+ .ad-container:hover {
35
+ transform: scale(1.02);
36
+ }
37
+ </style>
38
+ </head>
39
+ <body class="bg-primary text-white">
40
+ <!-- Header -->
41
+ <header class="bg-secondary shadow-lg sticky top-0 z-50">
42
+ <div class="container mx-auto px-4 py-3">
43
+ <div class="flex justify-between items-center">
44
+ <div class="flex items-center space-x-3">
45
+ <i class="fas fa-play-circle text-3xl text-highlight"></i>
46
+ <h1 class="text-2xl font-bold">StreamFlow</h1>
47
+ </div>
48
+ <nav class="hidden md:block">
49
+ <ul class="flex space-x-8">
50
+ <li><a href="#" class="hover:text-highlight transition">Accueil</a></li>
51
+ <li><a href="#" class="hover:text-highlight transition">Films</a></li>
52
+ <li><a href="#" class="hover:text-highlight transition">Séries</a></li>
53
+ <li><a href="#" class="hover:text-highlight transition">Tendances</a></li>
54
+ <li><a href="#" class="hover:text-highlight transition">Favoris</a></li>
55
+ </ul>
56
+ </nav>
57
+ <div class="flex items-center space-x-4">
58
+ <button class="bg-highlight hover:bg-opacity-90 px-4 py-2 rounded-full font-medium transition">
59
+ <i class="fas fa-crown mr-2"></i>Premium
60
+ </button>
61
+ <button class="md:hidden">
62
+ <i class="fas fa-bars text-xl"></i>
63
+ </button>
64
+ </div>
65
+ </div>
66
+ </div>
67
+ </header>
68
+
69
+ <!-- Hero Section -->
70
+ <section class="hero-gradient py-16">
71
+ <div class="container mx-auto px-4">
72
+ <div class="flex flex-col md:flex-row items-center">
73
+ <div class="md:w-1/2 mb-10 md:mb-0">
74
+ <h2 class="text-4xl md:text-5xl font-bold mb-4">Streaming Automatisé <span class="text-highlight">Sans Limites</span></h2>
75
+ <p class="text-lg text-gray-300 mb-6">Des milliers de films et séries disponibles en un clic. Notre système intelligent vous recommande le meilleur contenu.</p>
76
+ <div class="flex flex-col sm:flex-row space-y-3 sm:space-y-0 sm:space-x-4">
77
+ <button class="bg-highlight hover:bg-opacity-90 px-6 py-3 rounded-full font-bold transition flex items-center justify-center">
78
+ <i class="fas fa-play mr-2"></i> Commencer
79
+ </button>
80
+ <button class="bg-white bg-opacity-10 hover:bg-opacity-20 px-6 py-3 rounded-full font-bold transition flex items-center justify-center">
81
+ <i class="fas fa-info-circle mr-2"></i> En savoir plus
82
+ </button>
83
+ </div>
84
+ </div>
85
+ <div class="md:w-1/2 relative">
86
+ <img src="https://via.placeholder.com/600x400" alt="Hero Banner" class="rounded-lg shadow-2xl w-full">
87
+ <div class="absolute -bottom-5 -right-5 bg-highlight px-4 py-2 rounded-lg shadow-lg">
88
+ <span class="font-bold">Nouveauté</span>
89
+ </div>
90
+ </div>
91
+ </div>
92
+ </div>
93
+ </section>
94
+
95
+ <!-- Ad Banner 1 -->
96
+ <div class="container mx-auto px-4 py-6">
97
+ <div class="ad-container bg-gray-800 rounded-lg p-4 border border-gray-700 flex flex-col md:flex-row items-center justify-between">
98
+ <div class="flex items-center mb-4 md:mb-0">
99
+ <div class="bg-highlight rounded-full p-3 mr-4">
100
+ <i class="fas fa-ad text-white text-xl"></i>
101
+ </div>
102
+ <div>
103
+ <h3 class="font-bold">Publicité Sponsorisée</h3>
104
+ <p class="text-gray-400 text-sm">Découvrez notre partenaire premium</p>
105
+ </div>
106
+ </div>
107
+ <button class="bg-highlight hover:bg-opacity-90 px-6 py-2 rounded-full text-sm font-medium transition">
108
+ Voir l'offre <i class="fas fa-arrow-right ml-1"></i>
109
+ </button>
110
+ </div>
111
+ </div>
112
+
113
+ <!-- Trending Section -->
114
+ <section class="py-12">
115
+ <div class="container mx-auto px-4">
116
+ <div class="flex justify-between items-center mb-8">
117
+ <h2 class="text-2xl font-bold"><i class="fas fa-fire text-highlight mr-2"></i> Tendances du moment</h2>
118
+ <a href="#" class="text-gray-400 hover:text-highlight transition flex items-center">
119
+ Voir plus <i class="fas fa-chevron-right ml-1 text-sm"></i>
120
+ </a>
121
+ </div>
122
+
123
+ <div class="grid grid-cols-2 sm:grid-cols-3 md:grid-cols-4 lg:grid-cols-5 gap-6">
124
+ <!-- Movie Card 1 -->
125
+ <div class="movie-card bg-secondary rounded-lg overflow-hidden shadow-md transition duration-300 relative group">
126
+ <div class="relative pt-[150%] bg-gray-700">
127
+ <img src="https://via.placeholder.com/300x450" alt="Movie Poster" class="absolute top-0 left-0 w-full h-full object-cover">
128
+ <div class="absolute inset-0 bg-black bg-opacity-60 opacity-0 group-hover:opacity-100 transition flex items-center justify-center">
129
+ <button class="bg-highlight hover:bg-opacity-90 w-12 h-12 rounded-full flex items-center justify-center transition">
130
+ <i class="fas fa-play"></i>
131
+ </button>
132
+ </div>
133
+ <div class="absolute top-2 right-2 bg-black bg-opacity-70 px-2 py-1 rounded text-xs font-bold">
134
+ 4K
135
+ </div>
136
+ </div>
137
+ <div class="p-3">
138
+ <h3 class="font-semibold truncate">Titre du Film</h3>
139
+ <div class="flex justify-between items-center mt-1 text-sm text-gray-400">
140
+ <span>2023</span>
141
+ <div class="flex items-center text-yellow-400">
142
+ <i class="fas fa-star"></i>
143
+ <span class="ml-1">8.5</span>
144
+ </div>
145
+ </div>
146
+ </div>
147
+ </div>
148
+
149
+ <!-- Movie Card 2 -->
150
+ <div class="movie-card bg-secondary rounded-lg overflow-hidden shadow-md transition duration-300 relative group">
151
+ <div class="relative pt-[150%] bg-gray-700">
152
+ <img src="https://via.placeholder.com/300x450" alt="Movie Poster" class="absolute top-0 left-0 w-full h-full object-cover">
153
+ <div class="absolute inset-0 bg-black bg-opacity-60 opacity-0 group-hover:opacity-100 transition flex items-center justify-center">
154
+ <button class="bg-highlight hover:bg-opacity-90 w-12 h-12 rounded-full flex items-center justify-center transition">
155
+ <i class="fas fa-play"></i>
156
+ </button>
157
+ </div>
158
+ </div>
159
+ <div class="p-3">
160
+ <h3 class="font-semibold truncate">Série Populaire</h3>
161
+ <div class="flex justify-between items-center mt-1 text-sm text-gray-400">
162
+ <span>2022</span>
163
+ <div class="flex items-center text-yellow-400">
164
+ <i class="fas fa-star"></i>
165
+ <span class="ml-1">9.0</span>
166
+ </div>
167
+ </div>
168
+ </div>
169
+ </div>
170
+
171
+ <!-- Movie Card 3 -->
172
+ <div class="movie-card bg-secondary rounded-lg overflow-hidden shadow-md transition duration-300 relative group">
173
+ <div class="relative pt-[150%] bg-gray-700">
174
+ <img src="https://via.placeholder.com/300x450" alt="Movie Poster" class="absolute top-0 left-0 w-full h-full object-cover">
175
+ <div class="absolute inset-0 bg-black bg-opacity-60 opacity-0 group-hover:opacity-100 transition flex items-center justify-center">
176
+ <button class="bg-highlight hover:bg-opacity-90 w-12 h-12 rounded-full flex items-center justify-center transition">
177
+ <i class="fas fa-play"></i>
178
+ </button>
179
+ </div>
180
+ <div class="absolute top-2 right-2 bg-black bg-opacity-70 px-2 py-1 rounded text-xs font-bold">
181
+ HD
182
+ </div>
183
+ </div>
184
+ <div class="p-3">
185
+ <h3 class="font-semibold truncate">Documentaire Fascinant</h3>
186
+ <div class="flex justify-between items-center mt-1 text-sm text-gray-400">
187
+ <span>2023</span>
188
+ <div class="flex items-center text-yellow-400">
189
+ <i class="fas fa-star"></i>
190
+ <span class="ml-1">7.8</span>
191
+ </div>
192
+ </div>
193
+ </div>
194
+ </div>
195
+
196
+ <!-- Movie Card 4 -->
197
+ <div class="movie-card bg-secondary rounded-lg overflow-hidden shadow-md transition duration-300 relative group">
198
+ <div class="relative pt-[150%] bg-gray-700">
199
+ <img src="https://via.placeholder.com/300x450" alt="Movie Poster" class="absolute top-0 left-0 w-full h-full object-cover">
200
+ <div class="absolute inset-0 bg-black bg-opacity-60 opacity-0 group-hover:opacity-100 transition flex items-center justify-center">
201
+ <button class="bg-highlight hover:bg-opacity-90 w-12 h-12 rounded-full flex items-center justify-center transition">
202
+ <i class="fas fa-play"></i>
203
+ </button>
204
+ </div>
205
+ </div>
206
+ <div class="p-3">
207
+ <h3 class="font-semibold truncate">Animation Familiale</h3>
208
+ <div class="flex justify-between items-center mt-1 text-sm text-gray-400">
209
+ <span>2021</span>
210
+ <div class="flex items-center text-yellow-400">
211
+ <i class="fas fa-star"></i>
212
+ <span class="ml-1">8.2</span>
213
+ </div>
214
+ </div>
215
+ </div>
216
+ </div>
217
+
218
+ <!-- Movie Card 5 -->
219
+ <div class="movie-card bg-secondary rounded-lg overflow-hidden shadow-md transition duration-300 relative group">
220
+ <div class="relative pt-[150%] bg-gray-700">
221
+ <img src="https://via.placeholder.com/300x450" alt="Movie Poster" class="absolute top-0 left-0 w-full h-full object-cover">
222
+ <div class="absolute inset-0 bg-black bg-opacity-60 opacity-0 group-hover:opacity-100 transition flex items-center justify-center">
223
+ <button class="bg-highlight hover:bg-opacity-90 w-12 h-12 rounded-full flex items-center justify-center transition">
224
+ <i class="fas fa-play"></i>
225
+ </button>
226
+ </div>
227
+ <div class="absolute top-2 right-2 bg-black bg-opacity-70 px-2 py-1 rounded text-xs font-bold">
228
+ 4K
229
+ </div>
230
+ </div>
231
+ <div class="p-3">
232
+ <h3 class="font-semibold truncate">Thriller Intense</h3>
233
+ <div class="flex justify-between items-center mt-1 text-sm text-gray-400">
234
+ <span>2023</span>
235
+ <div class="flex items-center text-yellow-400">
236
+ <i class="fas fa-star"></i>
237
+ <span class="ml-1">8.9</span>
238
+ </div>
239
+ </div>
240
+ </div>
241
+ </div>
242
+ </div>
243
+ </div>
244
+ </section>
245
+
246
+ <!-- Ad Banner 2 -->
247
+ <div class="container mx-auto px-4 py-6">
248
+ <div class="ad-container bg-gradient-to-r from-accent to-secondary rounded-lg p-6 text-center">
249
+ <h3 class="text-xl font-bold mb-2">Publicité Premium</h3>
250
+ <p class="text-gray-300 mb-4">Profitez de notre offre spéciale pour un streaming sans publicités !</p>
251
+ <button class="bg-highlight hover:bg-opacity-90 px-8 py-3 rounded-full font-bold transition">
252
+ Essai Gratuit 30 Jours <i class="fas fa-gem ml-2"></i>
253
+ </button>
254
+ </div>
255
+ </div>
256
+
257
+ <!-- Categories Section -->
258
+ <section class="py-12">
259
+ <div class="container mx-auto px-4">
260
+ <div class="flex justify-between items-center mb-8">
261
+ <h2 class="text-2xl font-bold"><i class="fas fa-tags text-highlight mr-2"></i> Catégories Populaires</h2>
262
+ <a href="#" class="text-gray-400 hover:text-highlight transition flex items-center">
263
+ Toutes catégories <i class="fas fa-chevron-right ml-1 text-sm"></i>
264
+ </a>
265
+ </div>
266
+
267
+ <div class="grid grid-cols-2 sm:grid-cols-3 md:grid-cols-4 lg:grid-cols-6 gap-4">
268
+ <a href="#" class="bg-secondary hover:bg-accent rounded-lg p-4 text-center transition">
269
+ <i class="fas fa-heartbeat text-2xl text-highlight mb-2"></i>
270
+ <span class="font-medium">Romance</span>
271
+ </a>
272
+ <a href="#" class="bg-secondary hover:bg-accent rounded-lg p-4 text-center transition">
273
+ <i class="fas fa-bolt text-2xl text-highlight mb-2"></i>
274
+ <span class="font-medium">Action</span>
275
+ </a>
276
+ <a href="#" class="bg-secondary hover:bg-accent rounded-lg p-4 text-center transition">
277
+ <i class="fas fa-laugh-squint text-2xl text-highlight mb-2"></i>
278
+ <span class="font-medium">Comédie</span>
279
+ </a>
280
+ <a href="#" class="bg-secondary hover:bg-accent rounded-lg p-4 text-center transition">
281
+ <i class="fas fa-ghost text-2xl text-highlight mb-2"></i>
282
+ <span class="font-medium">Horreur</span>
283
+ </a>
284
+ <a href="#" class="bg-secondary hover:bg-accent rounded-lg p-4 text-center transition">
285
+ <i class="fas fa-rocket text-2xl text-highlight mb-2"></i>
286
+ <span class="font-medium">SF</span>
287
+ </a>
288
+ <a href="#" class="bg-secondary hover:bg-accent rounded-lg p-4 text-center transition">
289
+ <i class="fas fa-user-secret text-2xl text-highlight mb-2"></i>
290
+ <span class="font-medium">Thriller</span>
291
+ </a>
292
+ </div>
293
+ </div>
294
+ </section>
295
+
296
+ <!-- New Releases Section -->
297
+ <section class="py-12 bg-secondary">
298
+ <div class="container mx-auto px-4">
299
+ <div class="flex justify-between items-center mb-8">
300
+ <h2 class="text-2xl font-bold"><i class="fas fa-calendar-star text-highlight mr-2"></i> Nouveautés</h2>
301
+ <a href="#" class="text-gray-400 hover:text-highlight transition flex items-center">
302
+ Voir plus <i class="fas fa-chevron-right ml-1 text-sm"></i>
303
+ </a>
304
+ </div>
305
+
306
+ <div class="grid grid-cols-2 sm:grid-cols-3 md:grid-cols-4 lg:grid-cols-5 gap-6">
307
+ <!-- Movie Card 6 -->
308
+ <div class="movie-card bg-primary rounded-lg overflow-hidden shadow-md transition duration-300 relative group">
309
+ <div class="relative pt-[150%] bg-gray-700">
310
+ <img src="https://via.placeholder.com/300x450" alt="Movie Poster" class="absolute top-0 left-0 w-full h-full object-cover">
311
+ <div class="absolute inset-0 bg-black bg-opacity-60 opacity-0 group-hover:opacity-100 transition flex items-center justify-center">
312
+ <button class="bg-highlight hover:bg-opacity-90 w-12 h-12 rounded-full flex items-center justify-center transition">
313
+ <i class="fas fa-play"></i>
314
+ </button>
315
+ </div>
316
+ <div class="absolute top-2 left-2 bg-highlight px-2 py-1 rounded text-xs font-bold">
317
+ Nouveau
318
+ </div>
319
+ </div>
320
+ <div class="p-3">
321
+ <h3 class="font-semibold truncate">Dernier Blockbuster</h3>
322
+ <div class="flex justify-between items-center mt-1 text-sm text-gray-400">
323
+ <span>2023</span>
324
+ <div class="flex items-center text-yellow-400">
325
+ <i class="fas fa-star"></i>
326
+ <span class="ml-1">8.7</span>
327
+ </div>
328
+ </div>
329
+ </div>
330
+ </div>
331
+
332
+ <!-- Movie Card 7 -->
333
+ <div class="movie-card bg-primary rounded-lg overflow-hidden shadow-md transition duration-300 relative group">
334
+ <div class="relative pt-[150%] bg-gray-700">
335
+ <img src="https://via.placeholder.com/300x450" alt="Movie Poster" class="absolute top-0 left-0 w-full h-full object-cover">
336
+ <div class="absolute inset-0 bg-black bg-opacity-60 opacity-0 group-hover:opacity-100 transition flex items-center justify-center">
337
+ <button class="bg-highlight hover:bg-opacity-90 w-12 h-12 rounded-full flex items-center justify-center transition">
338
+ <i class="fas fa-play"></i>
339
+ </button>
340
+ </div>
341
+ </div>
342
+ <div class="p-3">
343
+ <h3 class="font-semibold truncate">Série Originale</h3>
344
+ <div class="flex justify-between items-center mt-1 text-sm text-gray-400">
345
+ <span>2023</span>
346
+ <div class="flex items-center text-yellow-400">
347
+ <i class="fas fa-star"></i>
348
+ <span class="ml-1">9.1</span>
349
+ </div>
350
+ </div>
351
+ </div>
352
+ </div>
353
+
354
+ <!-- Movie Card 8 -->
355
+ <div class="movie-card bg-primary rounded-lg overflow-hidden shadow-md transition duration-300 relative group">
356
+ <div class="relative pt-[150%] bg-gray-700">
357
+ <img src="https://via.placeholder.com/300x450" alt="Movie Poster" class="absolute top-0 left-0 w-full h-full object-cover">
358
+ <div class="absolute inset-0 bg-black bg-opacity-60 opacity-0 group-hover:opacity-100 transition flex items-center justify-center">
359
+ <button class="bg-highlight hover:bg-opacity-90 w-12 h-12 rounded-full flex items-center justify-center transition">
360
+ <i class="fas fa-play"></i>
361
+ </button>
362
+ </div>
363
+ <div class="absolute top-2 left-2 bg-highlight px-2 py-1 rounded text-xs font-bold">
364
+ Nouveau
365
+ </div>
366
+ </div>
367
+ <div class="p-3">
368
+ <h3 class="font-semibold truncate">Drame Puissant</h3>
369
+ <div class="flex justify-between items-center mt-1 text-sm text-gray-400">
370
+ <span>2023</span>
371
+ <div class="flex items-center text-yellow-400">
372
+ <i class="fas fa-star"></i>
373
+ <span class="ml-1">8.4</span>
374
+ </div>
375
+ </div>
376
+ </div>
377
+ </div>
378
+
379
+ <!-- Movie Card 9 -->
380
+ <div class="movie-card bg-primary rounded-lg overflow-hidden shadow-md transition duration-300 relative group">
381
+ <div class="relative pt-[150%] bg-gray-700">
382
+ <img src="https://via.placeholder.com/300x450" alt="Movie Poster" class="absolute top-0 left-0 w-full h-full object-cover">
383
+ <div class="absolute inset-0 bg-black bg-opacity-60 opacity-0 group-hover:opacity-100 transition flex items-center justify-center">
384
+ <button class="bg-highlight hover:bg-opacity-90 w-12 h-12 rounded-full flex items-center justify-center transition">
385
+ <i class="fas fa-play"></i>
386
+ </button>
387
+ </div>
388
+ </div>
389
+ <div class="p-3">
390
+ <h3 class="font-semibold truncate">Comédie Romantique</h3>
391
+ <div class="flex justify-between items-center mt-1 text-sm text-gray-400">
392
+ <span>2023</span>
393
+ <div class="flex items-center text-yellow-400">
394
+ <i class="fas fa-star"></i>
395
+ <span class="ml-1">7.9</span>
396
+ </div>
397
+ </div>
398
+ </div>
399
+ </div>
400
+
401
+ <!-- Movie Card 10 -->
402
+ <div class="movie-card bg-primary rounded-lg overflow-hidden shadow-md transition duration-300 relative group">
403
+ <div class="relative pt-[150%] bg-gray-700">
404
+ <img src="https://via.placeholder.com/300x450" alt="Movie Poster" class="absolute top-0 left-0 w-full h-full object-cover">
405
+ <div class="absolute inset-0 bg-black bg-opacity-60 opacity-0 group-hover:opacity-100 transition flex items-center justify-center">
406
+ <button class="bg-highlight hover:bg-opacity-90 w-12 h-12 rounded-full flex items-center justify-center transition">
407
+ <i class="fas fa-play"></i>
408
+ </button>
409
+ </div>
410
+ <div class="absolute top-2 left-2 bg-highlight px-2 py-1 rounded text-xs font-bold">
411
+ Nouveau
412
+ </div>
413
+ </div>
414
+ <div class="p-3">
415
+ <h3 class="font-semibold truncate">Documentaire Choc</h3>
416
+ <div class="flex justify-between items-center mt-1 text-sm text-gray-400">
417
+ <span>2023</span>
418
+ <div class="flex items-center text-yellow-400">
419
+ <i class="fas fa-star"></i>
420
+ <span class="ml-1">8.6</span>
421
+ </div>
422
+ </div>
423
+ </div>
424
+ </div>
425
+ </div>
426
+ </div>
427
+ </section>
428
+
429
+ <!-- Sidebar Ad -->
430
+ <div class="fixed right-0 top-1/2 transform -translate-y-1/2 hidden xl:block w-48 bg-secondary p-4 rounded-l-lg shadow-lg border-l-2 border-highlight">
431
+ <h4 class="font-bold text-sm mb-2">Publicité</h4>
432
+ <img src="https://via.placeholder.com/160x600" alt="Sidebar Ad" class="rounded mb-2">
433
+ <button class="bg-highlight hover:bg-opacity-90 w-full py-1 rounded text-xs font-medium transition">
434
+ Découvrir
435
+ </button>
436
+ </div>
437
+
438
+ <!-- Footer -->
439
+ <footer class="bg-primary border-t border-gray-800 py-12">
440
+ <div class="container mx-auto px-4">
441
+ <div class="grid grid-cols-1 md:grid-cols-4 gap-8">
442
+ <div>
443
+ <div class="flex items-center space-x-3 mb-4">
444
+ <i class="fas fa-play-circle text-3xl text-highlight"></i>
445
+ <h3 class="text-xl font-bold">StreamFlow</h3>
446
+ </div>
447
+ <p class="text-gray-400">La plateforme de streaming automatisée la plus avancée, offrant un contenu illimité et personnalisé.</p>
448
+ <div class="flex space-x-4 mt-4">
449
+ <a href="#" class="text-gray-400 hover:text-highlight transition"><i class="fab fa-facebook-f"></i></a>
450
+ <a href="#" class="text-gray-400 hover:text-highlight transition"><i class="fab fa-twitter"></i></a>
451
+ <a href="#" class="text-gray-400 hover:text-highlight transition"><i class="fab fa-instagram"></i></a>
452
+ <a href="#" class="text-gray-400 hover:text-highlight transition"><i class="fab fa-youtube"></i></a>
453
+ </div>
454
+ </div>
455
+ <div>
456
+ <h4 class="text-lg font-semibold mb-4">Navigation</h4>
457
+ <ul class="space-y-2">
458
+ <li><a href="#" class="text-gray-400 hover:text-highlight transition">Accueil</a></li>
459
+ <li><a href="#" class="text-gray-400 hover:text-highlight transition">Films</a></li>
460
+ <li><a href="#" class="text-gray-400 hover:text-highlight transition">Séries TV</a></li>
461
+ <li><a href="#" class="text-gray-400 hover:text-highlight transition">Nouveautés</a></li>
462
+ <li><a href="#" class="text-gray-400 hover:text-highlight transition">Populaire</a></li>
463
+ </ul>
464
+ </div>
465
+ <div>
466
+ <h4 class="text-lg font-semibold mb-4">Legal</h4>
467
+ <ul class="space-y-2">
468
+ <li><a href="#" class="text-gray-400 hover:text-highlight transition">Conditions d'utilisation</a></li>
469
+ <li><a href="#" class="text-gray-400 hover:text-highlight transition">Politique de confidentialité</a></li>
470
+ <li><a href="#" class="text-gray-400 hover:text-highlight transition">Cookies</a></li>
471
+ <li><a href="#" class="text-gray-400 hover:text-highlight transition">FAQ</a></li>
472
+ </ul>
473
+ </div>
474
+ <div>
475
+ <h4 class="text-lg font-semibold mb-4">Contact</h4>
476
+ <ul class="space-y-2">
477
+ <li class="text-gray-400"><i class="fas fa-envelope mr-2"></i> [email protected]</li>
478
+ <li class="text-gray-400"><i class="fas fa-phone mr-2"></i> +33 1 23 45 67 89</li>
479
+ <li class="text-gray-400"><i class="fas fa-map-marker-alt mr-2"></i> Paris, France</li>
480
+ </ul>
481
+ <div class="mt-4">
482
+ <h5 class="font-medium mb-2">Newsletter</h5>
483
+ <div class="flex">
484
+ <input type="email" placeholder="Votre email" class="px-3 py-2 w-full text-gray-800 text-sm rounded-l">
485
+ <button class="bg-highlight hover:bg-opacity-90 px-3 text-sm rounded-r transition">
486
+ <i class="fas fa-paper-plane"></i>
487
+ </button>
488
+ </div>
489
+ </div>
490
+ </div>
491
+ </div>
492
+ <div class="border-t border-gray-800 mt-12 pt-8 text-center text-gray-500">
493
+ <p>© 2023 StreamFlow. Tous droits réservés. Toutes les marques citées appartiennent à leurs propriétaires respectifs.</p>
494
+ <p class="mt-2 text-xs">Les films et séries sont disponibles via notre système automatisé de recommandation.</p>
495
+ </div>
496
+ </div>
497
+ </footer>
498
+
499
+ <!-- Ad Modal (hidden by default) -->
500
+ <div id="adModal" class="fixed inset-0 bg-black bg-opacity-75 z-50 hidden flex items-center justify-center p-4">
501
+ <div class="bg-secondary rounded-lg max-w-2xl w-full p-6 relative">
502
+ <button id="closeAd" class="absolute top-4 right-4 text-gray-400 hover:text-white">
503
+ <i class="fas fa-times text-xl"></i>
504
+ </button>
505
+ <h3 class="text-xl font-bold mb-4">Publicité Sponsorisée</h3>
506
+ <img src="https://via.placeholder.com/800x400" alt="Modal Ad" class="rounded mb-4 w-full">
507
+ <p class="text-gray-300 mb-6">Découvrez notre offre premium pour un streaming sans publicités et en qualité 4K !</p>
508
+ <div class="flex justify-between">
509
+ <button class="bg-gray-700 hover:bg-gray-600 px-6 py-2 rounded transition">
510
+ Plus tard
511
+ </button>
512
+ <button class="bg-highlight hover:bg-opacity-90 px-6 py-2 rounded font-medium transition">
513
+ Découvrir l'offre
514
+ </button>
515
+ </div>
516
+ </div>
517
+ </div>
518
+
519
+ <script>
520
+ // Simulate ad display after 5 seconds
521
+ document.addEventListener('DOMContentLoaded', function() {
522
+ // Show modal ad after delay
523
+ setTimeout(function() {
524
+ document.getElementById('adModal').classList.remove('hidden');
525
+ }, 5000);
526
+
527
+ // Close modal ad
528
+ document.getElementById('closeAd').addEventListener('click', function() {
529
+ document.getElementById('adModal').classList.add('hidden');
530
+ });
531
+
532
+ // Movie card hover effects
533
+ const movieCards = document.querySelectorAll('.movie-card');
534
+ movieCards.forEach(card => {
535
+ card.addEventListener('mouseenter', function() {
536
+ this.style.transition = 'transform 0.3s ease, box-shadow 0.3s ease';
537
+ });
538
+
539
+ card.addEventListener('mouseleave', function() {
540
+ this.style.transition = 'transform 0.3s ease, box-shadow 0.3s ease';
541
+ });
542
+ });
543
+
544
+ // Simulate ad rotation (change every 10 seconds)
545
+ const adContainers = document.querySelectorAll('.ad-container');
546
+ if (adContainers.length > 1) {
547
+ let currentAd = 0;
548
+ setInterval(() => {
549
+ adContainers[currentAd].classList.add('hidden');
550
+ currentAd = (currentAd + 1) % adContainers.length;
551
+ adContainers[currentAd].classList.remove('hidden');
552
+ }, 10000);
553
+ }
554
+ });
555
+ </script>
556
+ <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/streamflow" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
557
+ </html>
prompts.txt ADDED
@@ -0,0 +1,2 @@
 
 
 
1
+ je veux un hacker de code d'achat et de envao et codecanyon je veux avoir les code d'achat apartir de l'image du produit , et a partir du non du produit etc..
2
+ https://flixflow.xyz/ : creer se site en pilote automatique avec des publicité pour monetisé mon site