Spaces:
Running
Running
Add 2 files
Browse files- index.html +441 -188
- prompts.txt +6 -1
index.html
CHANGED
@@ -3,7 +3,7 @@
|
|
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</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>
|
@@ -20,11 +20,96 @@
|
|
20 |
.ad-container:hover {
|
21 |
transform: scale(1.02);
|
22 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
23 |
</style>
|
24 |
</head>
|
25 |
<body class="bg-gray-900 text-white">
|
26 |
<!-- Navigation -->
|
27 |
-
<nav class="bg-gray-800 shadow-lg">
|
28 |
<div class="container mx-auto px-4 py-3">
|
29 |
<div class="flex justify-between items-center">
|
30 |
<div class="flex items-center space-x-4">
|
@@ -34,10 +119,10 @@
|
|
34 |
</a>
|
35 |
<div class="hidden md:flex space-x-6">
|
36 |
<a href="#" class="hover:text-blue-400">Accueil</a>
|
37 |
-
<a href="#" class="hover:text-blue-400">Films</a>
|
38 |
-
<a href="#" class="hover:text-blue-400">Séries</a>
|
39 |
-
<a href="#" class="hover:text-blue-400">Tendances</a>
|
40 |
-
<a href="#" class="hover:text-blue-400">Ma liste</a>
|
41 |
</div>
|
42 |
</div>
|
43 |
<div class="flex items-center space-x-4">
|
@@ -46,7 +131,7 @@
|
|
46 |
<i class="fas fa-search absolute right-3 top-2 text-gray-400"></i>
|
47 |
</div>
|
48 |
<div class="relative">
|
49 |
-
<img src="https://randomuser.me/api/portraits/men/32.jpg" alt="Profile" class="w-8 h-8 rounded-full cursor-pointer">
|
50 |
<div class="absolute right-0 bottom-0 w-3 h-3 bg-green-500 rounded-full border-2 border-gray-800"></div>
|
51 |
</div>
|
52 |
</div>
|
@@ -59,14 +144,14 @@
|
|
59 |
<div class="container mx-auto px-4">
|
60 |
<div class="flex flex-col md:flex-row items-center">
|
61 |
<div class="md:w-2/3 mb-8 md:mb-0">
|
62 |
-
<h1 class="text-4xl md:text-5xl font-bold mb-4">
|
63 |
-
<p class="text-xl mb-6">
|
64 |
<div class="flex space-x-4">
|
65 |
-
<button class="bg-red-600 hover:bg-red-700 px-6 py-3 rounded-lg font-semibold flex items-center">
|
66 |
-
<i class="fas fa-play mr-2"></i>
|
67 |
</button>
|
68 |
-
<button class="bg-gray-700 hover:bg-gray-600 px-6 py-3 rounded-lg font-semibold flex items-center">
|
69 |
-
<i class="fas fa-info-circle mr-2"></i>
|
70 |
</button>
|
71 |
</div>
|
72 |
</div>
|
@@ -78,8 +163,8 @@
|
|
78 |
<span class="font-bold">PUBLICITÉ</span>
|
79 |
</div>
|
80 |
<h3 class="font-bold text-lg mb-2">Essayez NordVPN aujourd'hui!</h3>
|
81 |
-
<p class="text-sm mb-3">
|
82 |
-
<button class="w-full bg-black text-white py-2 rounded font-semibold">Obtenir 70% de réduction</button>
|
83 |
</div>
|
84 |
</div>
|
85 |
</div>
|
@@ -91,13 +176,13 @@
|
|
91 |
<div class="container mx-auto px-4">
|
92 |
<div class="flex items-center justify-between">
|
93 |
<span class="text-sm font-semibold text-gray-400">Publicité</span>
|
94 |
-
<div class="flex items-center space-x-4 overflow-x-auto whitespace-nowrap">
|
95 |
-
<span class="text-sm">🎁
|
96 |
-
<span class="text-sm">📱
|
97 |
-
<span class="text-sm">✈️ Réservez
|
98 |
-
<span class="text-sm">💳
|
99 |
</div>
|
100 |
-
<button class="text-gray-400 hover:text-white">
|
101 |
<i class="fas fa-times"></i>
|
102 |
</button>
|
103 |
</div>
|
@@ -107,138 +192,54 @@
|
|
107 |
<!-- Main Content -->
|
108 |
<div class="container mx-auto px-4 py-8">
|
109 |
<!-- Section Films populaires -->
|
110 |
-
<section class="mb-12">
|
111 |
<div class="flex justify-between items-center mb-6">
|
112 |
-
<h2 class="text-2xl font-bold">Films populaires</h2>
|
113 |
-
<
|
114 |
-
|
115 |
-
|
116 |
-
|
117 |
-
|
118 |
-
<div class="relative">
|
119 |
-
<img src="https://via.placeholder.com/300x450" alt="Movie" class="w-full h-auto">
|
120 |
-
<div class="absolute bottom-0 left-0 right-0 bg-gradient-to-t from-black to-transparent p-4">
|
121 |
-
<div class="flex items-center">
|
122 |
-
<span class="bg-yellow-500 text-black text-xs font-bold px-2 py-1 rounded mr-2">4.5</span>
|
123 |
-
<span class="text-xs">2023</span>
|
124 |
-
</div>
|
125 |
-
</div>
|
126 |
-
</div>
|
127 |
-
<div class="p-3">
|
128 |
-
<h3 class="font-semibold truncate">Dune: Partie 2</h3>
|
129 |
-
<p class="text-gray-400 text-sm">Science-fiction</p>
|
130 |
-
</div>
|
131 |
-
</div>
|
132 |
-
|
133 |
-
<!-- Film Card 2 -->
|
134 |
-
<div class="movie-card bg-gray-800 rounded-lg overflow-hidden transition duration-300 cursor-pointer">
|
135 |
-
<div class="relative">
|
136 |
-
<img src="https://via.placeholder.com/300x450" alt="Movie" class="w-full h-auto">
|
137 |
-
<div class="absolute bottom-0 left-0 right-0 bg-gradient-to-t from-black to-transparent p-4">
|
138 |
-
<div class="flex items-center">
|
139 |
-
<span class="bg-yellow-500 text-black text-xs font-bold px-2 py-1 rounded mr-2">4.7</span>
|
140 |
-
<span class="text-xs">2023</span>
|
141 |
-
</div>
|
142 |
-
</div>
|
143 |
-
</div>
|
144 |
-
<div class="p-3">
|
145 |
-
<h3 class="font-semibold truncate">Oppenheimer</h3>
|
146 |
-
<p class="text-gray-400 text-sm">Drame historique</p>
|
147 |
-
</div>
|
148 |
-
</div>
|
149 |
-
|
150 |
-
<!-- Film Card 3 -->
|
151 |
-
<div class="movie-card bg-gray-800 rounded-lg overflow-hidden transition duration-300 cursor-pointer">
|
152 |
-
<div class="relative">
|
153 |
-
<img src="https://via.placeholder.com/300x450" alt="Movie" class="w-full h-auto">
|
154 |
-
<div class="absolute bottom-0 left-0 right-0 bg-gradient-to-t from-black to-transparent p-4">
|
155 |
-
<div class="flex items-center">
|
156 |
-
<span class="bg-yellow-500 text-black text-xs font-bold px-2 py-1 rounded mr-2">4.3</span>
|
157 |
-
<span class="text-xs">2023</span>
|
158 |
-
</div>
|
159 |
-
</div>
|
160 |
-
</div>
|
161 |
-
<div class="p-3">
|
162 |
-
<h3 class="font-semibold truncate">The Batman</h3>
|
163 |
-
<p class="text-gray-400 text-sm">Action</p>
|
164 |
-
</div>
|
165 |
-
</div>
|
166 |
-
|
167 |
-
<!-- Film Card 4 -->
|
168 |
-
<div class="movie-card bg-gray-800 rounded-lg overflow-hidden transition duration-300 cursor-pointer">
|
169 |
-
<div class="relative">
|
170 |
-
<img src="https://via.placeholder.com/300x450" alt="Movie" class="w-full h-auto">
|
171 |
-
<div class="absolute bottom-0 left-0 right-0 bg-gradient-to-t from-black to-transparent p-4">
|
172 |
-
<div class="flex items-center">
|
173 |
-
<span class="bg-yellow-500 text-black text-xs font-bold px-2 py-1 rounded mr-2">4.1</span>
|
174 |
-
<span class="text-xs">2023</span>
|
175 |
-
</div>
|
176 |
-
</div>
|
177 |
-
</div>
|
178 |
-
<div class="p-3">
|
179 |
-
<h3 class="font-semibold truncate">Avatar 2</h3>
|
180 |
-
<p class="text-gray-400 text-sm">Science-fiction</p>
|
181 |
-
</div>
|
182 |
-
</div>
|
183 |
-
|
184 |
-
<!-- Film Card 5 -->
|
185 |
-
<div class="movie-card bg-gray-800 rounded-lg overflow-hidden transition duration-300 cursor-pointer">
|
186 |
-
<div class="relative">
|
187 |
-
<img src="https://via.placeholder.com/300x450" alt="Movie" class="w-full h-auto">
|
188 |
-
<div class="absolute bottom-0 left-0 right-0 bg-gradient-to-t from-black to-transparent p-4">
|
189 |
-
<div class="flex items-center">
|
190 |
-
<span class="bg-yellow-500 text-black text-xs font-bold px-2 py-1 rounded mr-2">4.6</span>
|
191 |
-
<span class="text-xs">2023</span>
|
192 |
-
</div>
|
193 |
-
</div>
|
194 |
-
</div>
|
195 |
-
<div class="p-3">
|
196 |
-
<h3 class="font-semibold truncate">John Wick 4</h3>
|
197 |
-
<p class="text-gray-400 text-sm">Action</p>
|
198 |
-
</div>
|
199 |
-
</div>
|
200 |
-
|
201 |
-
<!-- Film Card 6 -->
|
202 |
-
<div class="movie-card bg-gray-800 rounded-lg overflow-hidden transition duration-300 cursor-pointer">
|
203 |
-
<div class="relative">
|
204 |
-
<img src="https://via.placeholder.com/300x450" alt="Movie" class="w-full h-auto">
|
205 |
-
<div class="absolute bottom-0 left-0 right-0 bg-gradient-to-t from-black to-transparent p-4">
|
206 |
-
<div class="flex items-center">
|
207 |
-
<span class="bg-yellow-500 text-black text-xs font-bold px-2 py-1 rounded mr-2">4.0</span>
|
208 |
-
<span class="text-xs">2023</span>
|
209 |
-
</div>
|
210 |
-
</div>
|
211 |
-
</div>
|
212 |
-
<div class="p-3">
|
213 |
-
<h3 class="font-semibold truncate">Mission Impossible 7</h3>
|
214 |
-
<p class="text-gray-400 text-sm">Action</p>
|
215 |
-
</div>
|
216 |
</div>
|
217 |
</div>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
218 |
</section>
|
219 |
|
220 |
<!-- Publicité intermédiaire -->
|
221 |
<div class="ad-container bg-blue-900 rounded-lg p-6 mb-12 text-center">
|
222 |
<div class="max-w-3xl mx-auto">
|
223 |
-
<h3 class="text-xl font-bold mb-2">
|
224 |
-
<p class="mb-4">Profitez de tous nos
|
225 |
-
<button class="bg-red-600 hover:bg-red-700 px-6 py-2 rounded-lg font-semibold">
|
226 |
Essai gratuit de 30 jours
|
227 |
</button>
|
228 |
</div>
|
229 |
</div>
|
230 |
|
231 |
<!-- Section Séries tendances -->
|
232 |
-
<section class="mb-12">
|
233 |
<div class="flex justify-between items-center mb-6">
|
234 |
-
<h2 class="text-2xl font-bold">Séries
|
235 |
-
<a href="#" class="text-blue-400 hover:underline">Voir tout</a>
|
236 |
</div>
|
237 |
<div class="grid grid-cols-2 sm:grid-cols-3 md:grid-cols-4 lg:grid-cols-6 gap-4">
|
238 |
<!-- Série Card 1 -->
|
239 |
<div class="movie-card bg-gray-800 rounded-lg overflow-hidden transition duration-300 cursor-pointer">
|
240 |
<div class="relative">
|
241 |
<img src="https://via.placeholder.com/300x450" alt="Series" class="w-full h-auto">
|
|
|
|
|
|
|
242 |
<div class="absolute bottom-0 left-0 right-0 bg-gradient-to-t from-black to-transparent p-4">
|
243 |
<div class="flex items-center">
|
244 |
<span class="bg-yellow-500 text-black text-xs font-bold px-2 py-1 rounded mr-2">4.8</span>
|
@@ -248,7 +249,7 @@
|
|
248 |
</div>
|
249 |
<div class="p-3">
|
250 |
<h3 class="font-semibold truncate">The Last of Us</h3>
|
251 |
-
<p class="text-gray-400 text-sm">Drame</p>
|
252 |
</div>
|
253 |
</div>
|
254 |
|
@@ -256,6 +257,9 @@
|
|
256 |
<div class="movie-card bg-gray-800 rounded-lg overflow-hidden transition duration-300 cursor-pointer">
|
257 |
<div class="relative">
|
258 |
<img src="https://via.placeholder.com/300x450" alt="Series" class="w-full h-auto">
|
|
|
|
|
|
|
259 |
<div class="absolute bottom-0 left-0 right-0 bg-gradient-to-t from-black to-transparent p-4">
|
260 |
<div class="flex items-center">
|
261 |
<span class="bg-yellow-500 text-black text-xs font-bold px-2 py-1 rounded mr-2">4.9</span>
|
@@ -265,7 +269,7 @@
|
|
265 |
</div>
|
266 |
<div class="p-3">
|
267 |
<h3 class="font-semibold truncate">Stranger Things</h3>
|
268 |
-
<p class="text-gray-400 text-sm">Science-fiction</p>
|
269 |
</div>
|
270 |
</div>
|
271 |
|
@@ -273,6 +277,9 @@
|
|
273 |
<div class="movie-card bg-gray-800 rounded-lg overflow-hidden transition duration-300 cursor-pointer">
|
274 |
<div class="relative">
|
275 |
<img src="https://via.placeholder.com/300x450" alt="Series" class="w-full h-auto">
|
|
|
|
|
|
|
276 |
<div class="absolute bottom-0 left-0 right-0 bg-gradient-to-t from-black to-transparent p-4">
|
277 |
<div class="flex items-center">
|
278 |
<span class="bg-yellow-500 text-black text-xs font-bold px-2 py-1 rounded mr-2">4.7</span>
|
@@ -282,7 +289,7 @@
|
|
282 |
</div>
|
283 |
<div class="p-3">
|
284 |
<h3 class="font-semibold truncate">House of the Dragon</h3>
|
285 |
-
<p class="text-gray-400 text-sm">Fantasy</p>
|
286 |
</div>
|
287 |
</div>
|
288 |
|
@@ -290,6 +297,9 @@
|
|
290 |
<div class="movie-card bg-gray-800 rounded-lg overflow-hidden transition duration-300 cursor-pointer">
|
291 |
<div class="relative">
|
292 |
<img src="https://via.placeholder.com/300x450" alt="Series" class="w-full h-auto">
|
|
|
|
|
|
|
293 |
<div class="absolute bottom-0 left-0 right-0 bg-gradient-to-t from-black to-transparent p-4">
|
294 |
<div class="flex items-center">
|
295 |
<span class="bg-yellow-500 text-black text-xs font-bold px-2 py-1 rounded mr-2">4.5</span>
|
@@ -299,7 +309,7 @@
|
|
299 |
</div>
|
300 |
<div class="p-3">
|
301 |
<h3 class="font-semibold truncate">The Witcher</h3>
|
302 |
-
<p class="text-gray-400 text-sm">Fantasy</p>
|
303 |
</div>
|
304 |
</div>
|
305 |
|
@@ -307,6 +317,9 @@
|
|
307 |
<div class="movie-card bg-gray-800 rounded-lg overflow-hidden transition duration-300 cursor-pointer">
|
308 |
<div class="relative">
|
309 |
<img src="https://via.placeholder.com/300x450" alt="Series" class="w-full h-auto">
|
|
|
|
|
|
|
310 |
<div class="absolute bottom-0 left-0 right-0 bg-gradient-to-t from-black to-transparent p-4">
|
311 |
<div class="flex items-center">
|
312 |
<span class="bg-yellow-500 text-black text-xs font-bold px-2 py-1 rounded mr-2">4.3</span>
|
@@ -316,7 +329,7 @@
|
|
316 |
</div>
|
317 |
<div class="p-3">
|
318 |
<h3 class="font-semibold truncate">Wednesday</h3>
|
319 |
-
<p class="text-gray-400 text-sm">Comédie</p>
|
320 |
</div>
|
321 |
</div>
|
322 |
|
@@ -324,6 +337,9 @@
|
|
324 |
<div class="movie-card bg-gray-800 rounded-lg overflow-hidden transition duration-300 cursor-pointer">
|
325 |
<div class="relative">
|
326 |
<img src="https://via.placeholder.com/300x450" alt="Series" class="w-full h-auto">
|
|
|
|
|
|
|
327 |
<div class="absolute bottom-0 left-0 right-0 bg-gradient-to-t from-black to-transparent p-4">
|
328 |
<div class="flex items-center">
|
329 |
<span class="bg-yellow-500 text-black text-xs font-bold px-2 py-1 rounded mr-2">4.6</span>
|
@@ -333,7 +349,7 @@
|
|
333 |
</div>
|
334 |
<div class="p-3">
|
335 |
<h3 class="font-semibold truncate">The Mandalorian</h3>
|
336 |
-
<p class="text-gray-400 text-sm">Science-fiction</p>
|
337 |
</div>
|
338 |
</div>
|
339 |
</div>
|
@@ -348,27 +364,30 @@
|
|
348 |
<h3 class="font-bold">Découvrez nos jeux exclusifs</h3>
|
349 |
<p class="text-sm text-gray-400">Abonnez-vous à StreamFlow Gaming pour accéder à des centaines de jeux premium</p>
|
350 |
</div>
|
351 |
-
<button class="bg-green-600 hover:bg-green-700 px-4 py-2 rounded-lg text-sm font-semibold">
|
352 |
Essayer maintenant
|
353 |
</button>
|
354 |
</div>
|
355 |
|
356 |
<!-- Section Nouveautés -->
|
357 |
-
<section class="mb-12">
|
358 |
<div class="flex justify-between items-center mb-6">
|
359 |
-
<h2 class="text-2xl font-bold">Nouveautés</h2>
|
360 |
-
<a href="#" class="text-blue-400 hover:underline">Voir tout</a>
|
361 |
</div>
|
362 |
<div class="grid grid-cols-2 sm:grid-cols-3 md:grid-cols-4 lg:grid-cols-6 gap-4">
|
363 |
<!-- Nouveauté Card 1 -->
|
364 |
<div class="movie-card bg-gray-800 rounded-lg overflow-hidden transition duration-300 cursor-pointer">
|
365 |
<div class="relative">
|
366 |
<img src="https://via.placeholder.com/300x450" alt="New" class="w-full h-auto">
|
|
|
|
|
|
|
367 |
<div class="absolute top-2 left-2 bg-red-600 text-white text-xs px-2 py-1 rounded">NOUVEAU</div>
|
368 |
</div>
|
369 |
<div class="p-3">
|
370 |
<h3 class="font-semibold truncate">The Flash</h3>
|
371 |
-
<p class="text-gray-400 text-sm">Action</p>
|
372 |
</div>
|
373 |
</div>
|
374 |
|
@@ -376,11 +395,14 @@
|
|
376 |
<div class="movie-card bg-gray-800 rounded-lg overflow-hidden transition duration-300 cursor-pointer">
|
377 |
<div class="relative">
|
378 |
<img src="https://via.placeholder.com/300x450" alt="New" class="w-full h-auto">
|
|
|
|
|
|
|
379 |
<div class="absolute top-2 left-2 bg-red-600 text-white text-xs px-2 py-1 rounded">NOUVEAU</div>
|
380 |
</div>
|
381 |
<div class="p-3">
|
382 |
<h3 class="font-semibold truncate">Indiana Jones 5</h3>
|
383 |
-
<p class="text-gray-400 text-sm">Aventure</p>
|
384 |
</div>
|
385 |
</div>
|
386 |
|
@@ -388,11 +410,14 @@
|
|
388 |
<div class="movie-card bg-gray-800 rounded-lg overflow-hidden transition duration-300 cursor-pointer">
|
389 |
<div class="relative">
|
390 |
<img src="https://via.placeholder.com/300x450" alt="New" class="w-full h-auto">
|
|
|
|
|
|
|
391 |
<div class="absolute top-2 left-2 bg-red-600 text-white text-xs px-2 py-1 rounded">NOUVEAU</div>
|
392 |
</div>
|
393 |
<div class="p-3">
|
394 |
<h3 class="font-semibold truncate">Elemental</h3>
|
395 |
-
<p class="text-gray-400 text-sm">Animation</p>
|
396 |
</div>
|
397 |
</div>
|
398 |
|
@@ -400,11 +425,14 @@
|
|
400 |
<div class="movie-card bg-gray-800 rounded-lg overflow-hidden transition duration-300 cursor-pointer">
|
401 |
<div class="relative">
|
402 |
<img src="https://via.placeholder.com/300x450" alt="New" class="w-full h-auto">
|
|
|
|
|
|
|
403 |
<div class="absolute top-2 left-2 bg-red-600 text-white text-xs px-2 py-1 rounded">NOUVEAU</div>
|
404 |
</div>
|
405 |
<div class="p-3">
|
406 |
<h3 class="font-semibold truncate">Transformers 7</h3>
|
407 |
-
<p class="text-gray-400 text-sm">Action</p>
|
408 |
</div>
|
409 |
</div>
|
410 |
|
@@ -412,11 +440,14 @@
|
|
412 |
<div class="movie-card bg-gray-800 rounded-lg overflow-hidden transition duration-300 cursor-pointer">
|
413 |
<div class="relative">
|
414 |
<img src="https://via.placeholder.com/300x450" alt="New" class="w-full h-auto">
|
|
|
|
|
|
|
415 |
<div class="absolute top-2 left-2 bg-red-600 text-white text-xs px-2 py-1 rounded">NOUVEAU</div>
|
416 |
</div>
|
417 |
<div class="p-3">
|
418 |
<h3 class="font-semibold truncate">Fast X</h3>
|
419 |
-
<p class="text-gray-400 text-sm">Action</p>
|
420 |
</div>
|
421 |
</div>
|
422 |
|
@@ -424,11 +455,14 @@
|
|
424 |
<div class="movie-card bg-gray-800 rounded-lg overflow-hidden transition duration-300 cursor-pointer">
|
425 |
<div class="relative">
|
426 |
<img src="https://via.placeholder.com/300x450" alt="New" class="w-full h-auto">
|
|
|
|
|
|
|
427 |
<div class="absolute top-2 left-2 bg-red-600 text-white text-xs px-2 py-1 rounded">NOUVEAU</div>
|
428 |
</div>
|
429 |
<div class="p-3">
|
430 |
<h3 class="font-semibold truncate">The Little Mermaid</h3>
|
431 |
-
<p class="text-gray-400 text-sm">Fantasy</p>
|
432 |
</div>
|
433 |
</div>
|
434 |
</div>
|
@@ -441,12 +475,12 @@
|
|
441 |
<!-- Publicité footer -->
|
442 |
<div class="ad-container bg-gray-700 rounded-lg p-6 mb-8 text-center">
|
443 |
<h3 class="text-xl font-bold mb-2">Téléchargez notre application mobile</h3>
|
444 |
-
<p class="mb-4">Regardez vos
|
445 |
<div class="flex justify-center space-x-4">
|
446 |
-
<button class="bg-black text-white px-6 py-2 rounded-lg flex items-center">
|
447 |
<i class="fab fa-apple mr-2"></i> App Store
|
448 |
</button>
|
449 |
-
<button class="bg-black text-white px-6 py-2 rounded-lg flex items-center">
|
450 |
<i class="fab fa-google-play mr-2"></i> Google Play
|
451 |
</button>
|
452 |
</div>
|
@@ -456,70 +490,289 @@
|
|
456 |
<div>
|
457 |
<h4 class="text-lg font-semibold mb-4">StreamFlow</h4>
|
458 |
<ul class="space-y-2">
|
459 |
-
<li><a href="#" class="text-gray-400 hover:text-white">À propos</a></li>
|
460 |
-
<li><a href="#" class="text-gray-400 hover:text-white">Carrières</a></li>
|
461 |
-
<li><a href="#" class="text-gray-400 hover:text-white">Presse</a></li>
|
462 |
-
<li><a href="#" class="text-gray-400 hover:text-white">Investisseurs</a></li>
|
463 |
</ul>
|
464 |
</div>
|
465 |
<div>
|
466 |
<h4 class="text-lg font-semibold mb-4">Aide</h4>
|
467 |
<ul class="space-y-2">
|
468 |
-
<li><a href="#" class="text-gray-400 hover:text-white">Centre d'aide</a></li>
|
469 |
-
<li><a href="#" class="text-gray-400 hover:text-white">Options de paiement</a></li>
|
470 |
-
<li><a href="#" class="text-gray-400 hover:text-white">FAQ</a></li>
|
471 |
-
<li><a href="#" class="text-gray-400 hover:text-white">Nous contacter</a></li>
|
472 |
</ul>
|
473 |
</div>
|
474 |
<div>
|
475 |
<h4 class="text-lg font-semibold mb-4">Légal</h4>
|
476 |
<ul class="space-y-2">
|
477 |
-
<li><a href="#" class="text-gray-400 hover:text-white">Conditions d'utilisation</a></li>
|
478 |
-
<li><a href="#" class="text-gray-400 hover:text-white">Confidentialité</a></li>
|
479 |
-
<li><a href="#" class="text-gray-400 hover:text-white">Préférences de cookies</a></li>
|
480 |
-
<li><a href="#" class="text-gray-400 hover:text-white">Informations légales</a></li>
|
481 |
</ul>
|
482 |
</div>
|
483 |
<div>
|
484 |
<h4 class="text-lg font-semibold mb-4">Suivez-nous</h4>
|
485 |
<div class="flex space-x-4">
|
486 |
-
<a href="
|
487 |
-
<a href="
|
488 |
-
<a href="
|
489 |
-
<a href="
|
490 |
</div>
|
491 |
</div>
|
492 |
</div>
|
493 |
<div class="border-t border-gray-700 pt-6">
|
494 |
-
<p class="text-gray-400 text-sm">© 2023 StreamFlow. Tous droits réservés.</p>
|
495 |
</div>
|
496 |
</div>
|
497 |
</footer>
|
498 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
499 |
<script>
|
500 |
-
//
|
501 |
-
|
502 |
-
|
503 |
-
|
504 |
-
|
505 |
-
|
506 |
-
|
507 |
-
|
508 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
509 |
|
510 |
-
|
511 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
512 |
|
513 |
-
|
514 |
-
|
515 |
-
|
516 |
-
|
517 |
-
|
518 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
519 |
}
|
520 |
-
|
521 |
-
//
|
522 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
523 |
</script>
|
524 |
<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/stream-flow" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
|
525 |
</html>
|
|
|
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 Français</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>
|
|
|
20 |
.ad-container:hover {
|
21 |
transform: scale(1.02);
|
22 |
}
|
23 |
+
.movie-grid {
|
24 |
+
display: grid;
|
25 |
+
grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
|
26 |
+
gap: 20px;
|
27 |
+
}
|
28 |
+
.loading-spinner {
|
29 |
+
border: 4px solid rgba(255, 255, 255, 0.3);
|
30 |
+
border-radius: 50%;
|
31 |
+
border-top: 4px solid #ffffff;
|
32 |
+
width: 40px;
|
33 |
+
height: 40px;
|
34 |
+
animation: spin 1s linear infinite;
|
35 |
+
margin: 50px auto;
|
36 |
+
}
|
37 |
+
@keyframes spin {
|
38 |
+
0% { transform: rotate(0deg); }
|
39 |
+
100% { transform: rotate(360deg); }
|
40 |
+
}
|
41 |
+
.autoplay-badge {
|
42 |
+
position: absolute;
|
43 |
+
top: 10px;
|
44 |
+
right: 10px;
|
45 |
+
background-color: rgba(0,0,0,0.7);
|
46 |
+
color: white;
|
47 |
+
padding: 3px 8px;
|
48 |
+
border-radius: 4px;
|
49 |
+
font-size: 12px;
|
50 |
+
display: flex;
|
51 |
+
align-items: center;
|
52 |
+
}
|
53 |
+
.autoplay-badge i {
|
54 |
+
margin-right: 5px;
|
55 |
+
color: #3b82f6;
|
56 |
+
}
|
57 |
+
.auto-player {
|
58 |
+
position: fixed;
|
59 |
+
bottom: 20px;
|
60 |
+
right: 20px;
|
61 |
+
width: 300px;
|
62 |
+
background: rgba(0,0,0,0.8);
|
63 |
+
border-radius: 8px;
|
64 |
+
z-index: 1000;
|
65 |
+
overflow: hidden;
|
66 |
+
box-shadow: 0 4px 12px rgba(0,0,0,0.3);
|
67 |
+
}
|
68 |
+
.player-header {
|
69 |
+
background: #1a1a1a;
|
70 |
+
padding: 8px 12px;
|
71 |
+
display: flex;
|
72 |
+
justify-content: space-between;
|
73 |
+
align-items: center;
|
74 |
+
}
|
75 |
+
.player-title {
|
76 |
+
font-size: 14px;
|
77 |
+
font-weight: bold;
|
78 |
+
white-space: nowrap;
|
79 |
+
overflow: hidden;
|
80 |
+
text-overflow: ellipsis;
|
81 |
+
}
|
82 |
+
.player-close {
|
83 |
+
background: none;
|
84 |
+
border: none;
|
85 |
+
color: white;
|
86 |
+
cursor: pointer;
|
87 |
+
}
|
88 |
+
.player-video {
|
89 |
+
width: 100%;
|
90 |
+
height: 169px;
|
91 |
+
background: black;
|
92 |
+
}
|
93 |
+
.player-controls {
|
94 |
+
padding: 8px;
|
95 |
+
display: flex;
|
96 |
+
justify-content: space-between;
|
97 |
+
background: #1a1a1a;
|
98 |
+
}
|
99 |
+
.player-btn {
|
100 |
+
background: #3b82f6;
|
101 |
+
color: white;
|
102 |
+
border: none;
|
103 |
+
border-radius: 4px;
|
104 |
+
padding: 4px 8px;
|
105 |
+
font-size: 12px;
|
106 |
+
cursor: pointer;
|
107 |
+
}
|
108 |
</style>
|
109 |
</head>
|
110 |
<body class="bg-gray-900 text-white">
|
111 |
<!-- Navigation -->
|
112 |
+
<nav class="bg-gray-800 shadow-lg sticky top-0 z-50">
|
113 |
<div class="container mx-auto px-4 py-3">
|
114 |
<div class="flex justify-between items-center">
|
115 |
<div class="flex items-center space-x-4">
|
|
|
119 |
</a>
|
120 |
<div class="hidden md:flex space-x-6">
|
121 |
<a href="#" class="hover:text-blue-400">Accueil</a>
|
122 |
+
<a href="#films" class="hover:text-blue-400">Films</a>
|
123 |
+
<a href="#series" class="hover:text-blue-400">Séries</a>
|
124 |
+
<a href="#tendances" class="hover:text-blue-400">Tendances</a>
|
125 |
+
<a href="#liste" class="hover:text-blue-400">Ma liste</a>
|
126 |
</div>
|
127 |
</div>
|
128 |
<div class="flex items-center space-x-4">
|
|
|
131 |
<i class="fas fa-search absolute right-3 top-2 text-gray-400"></i>
|
132 |
</div>
|
133 |
<div class="relative">
|
134 |
+
<img src="https://randomuser.me/api/portraits/men/32.jpg" alt="Profile" class="w-8 h-8 rounded-full cursor-pointer" onclick="window.location.href='#profil'">
|
135 |
<div class="absolute right-0 bottom-0 w-3 h-3 bg-green-500 rounded-full border-2 border-gray-800"></div>
|
136 |
</div>
|
137 |
</div>
|
|
|
144 |
<div class="container mx-auto px-4">
|
145 |
<div class="flex flex-col md:flex-row items-center">
|
146 |
<div class="md:w-2/3 mb-8 md:mb-0">
|
147 |
+
<h1 class="text-4xl md:text-5xl font-bold mb-4">57,854 films en VF à portée de clic</h1>
|
148 |
+
<p class="text-xl mb-6">La plus grande bibliothèque de films français en streaming. Lecture automatique en un clic.</p>
|
149 |
<div class="flex space-x-4">
|
150 |
+
<button id="startWatchingBtn" class="bg-red-600 hover:bg-red-700 px-6 py-3 rounded-lg font-semibold flex items-center">
|
151 |
+
<i class="fas fa-play mr-2"></i> Commencer à regarder
|
152 |
</button>
|
153 |
+
<button id="howItWorksBtn" class="bg-gray-700 hover:bg-gray-600 px-6 py-3 rounded-lg font-semibold flex items-center">
|
154 |
+
<i class="fas fa-info-circle mr-2"></i> Comment ça marche
|
155 |
</button>
|
156 |
</div>
|
157 |
</div>
|
|
|
163 |
<span class="font-bold">PUBLICITÉ</span>
|
164 |
</div>
|
165 |
<h3 class="font-bold text-lg mb-2">Essayez NordVPN aujourd'hui!</h3>
|
166 |
+
<p class="text-sm mb-3">Débloquez plus de contenus en français avec un VPN.</p>
|
167 |
+
<button id="vpnBtn" class="w-full bg-black text-white py-2 rounded font-semibold">Obtenir 70% de réduction</button>
|
168 |
</div>
|
169 |
</div>
|
170 |
</div>
|
|
|
176 |
<div class="container mx-auto px-4">
|
177 |
<div class="flex items-center justify-between">
|
178 |
<span class="text-sm font-semibold text-gray-400">Publicité</span>
|
179 |
+
<div class="flex items-center space-x-4 overflow-x-auto whitespace-nowrap" id="ad-scroll">
|
180 |
+
<span class="text-sm">🎁 3 mois gratuits Disney+ pour les nouveaux abonnés</span>
|
181 |
+
<span class="text-sm">📱 iPhone 15 Pro Max - Livraison gratuite</span>
|
182 |
+
<span class="text-sm">✈️ Booking.com - Réservez maintenant, payez plus tard</span>
|
183 |
+
<span class="text-sm">💳 Amazon Prime - 5% de cashback sur tous vos achats</span>
|
184 |
</div>
|
185 |
+
<button id="closeAdBtn" class="text-gray-400 hover:text-white">
|
186 |
<i class="fas fa-times"></i>
|
187 |
</button>
|
188 |
</div>
|
|
|
192 |
<!-- Main Content -->
|
193 |
<div class="container mx-auto px-4 py-8">
|
194 |
<!-- Section Films populaires -->
|
195 |
+
<section class="mb-12" id="films">
|
196 |
<div class="flex justify-between items-center mb-6">
|
197 |
+
<h2 class="text-2xl font-bold">Films populaires en français</h2>
|
198 |
+
<div class="flex space-x-4">
|
199 |
+
<button id="allFilterBtn" class="bg-blue-600 px-4 py-1 rounded-lg text-sm">Tous</button>
|
200 |
+
<button id="actionFilterBtn" class="bg-gray-700 hover:bg-gray-600 px-4 py-1 rounded-lg text-sm">Action</button>
|
201 |
+
<button id="comedyFilterBtn" class="bg-gray-700 hover:bg-gray-600 px-4 py-1 rounded-lg text-sm">Comédie</button>
|
202 |
+
<button id="dramaFilterBtn" class="bg-gray-700 hover:bg-gray-600 px-4 py-1 rounded-lg text-sm">Drame</button>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
203 |
</div>
|
204 |
</div>
|
205 |
+
|
206 |
+
<div class="movie-grid" id="movies-container">
|
207 |
+
<!-- Les films seront chargés ici par JavaScript -->
|
208 |
+
<div class="loading-spinner"></div>
|
209 |
+
</div>
|
210 |
+
|
211 |
+
<div class="text-center mt-8">
|
212 |
+
<button id="loadMoreBtn" class="bg-blue-600 hover:bg-blue-700 px-6 py-2 rounded-lg font-semibold">
|
213 |
+
<i class="fas fa-plus-circle mr-2"></i> Charger plus de films
|
214 |
+
</button>
|
215 |
+
</div>
|
216 |
</section>
|
217 |
|
218 |
<!-- Publicité intermédiaire -->
|
219 |
<div class="ad-container bg-blue-900 rounded-lg p-6 mb-12 text-center">
|
220 |
<div class="max-w-3xl mx-auto">
|
221 |
+
<h3 class="text-xl font-bold mb-2">StreamFlow Premium - Sans publicité</h3>
|
222 |
+
<p class="mb-4">Profitez de tous nos 57,854 films sans interruption pour seulement 9,99€/mois</p>
|
223 |
+
<button id="premiumBtn" class="bg-red-600 hover:bg-red-700 px-6 py-2 rounded-lg font-semibold">
|
224 |
Essai gratuit de 30 jours
|
225 |
</button>
|
226 |
</div>
|
227 |
</div>
|
228 |
|
229 |
<!-- Section Séries tendances -->
|
230 |
+
<section class="mb-12" id="series">
|
231 |
<div class="flex justify-between items-center mb-6">
|
232 |
+
<h2 class="text-2xl font-bold">Séries en VF</h2>
|
233 |
+
<a href="#tous-series" class="text-blue-400 hover:underline">Voir tout</a>
|
234 |
</div>
|
235 |
<div class="grid grid-cols-2 sm:grid-cols-3 md:grid-cols-4 lg:grid-cols-6 gap-4">
|
236 |
<!-- Série Card 1 -->
|
237 |
<div class="movie-card bg-gray-800 rounded-lg overflow-hidden transition duration-300 cursor-pointer">
|
238 |
<div class="relative">
|
239 |
<img src="https://via.placeholder.com/300x450" alt="Series" class="w-full h-auto">
|
240 |
+
<div class="autoplay-badge">
|
241 |
+
<i class="fas fa-play"></i> Auto
|
242 |
+
</div>
|
243 |
<div class="absolute bottom-0 left-0 right-0 bg-gradient-to-t from-black to-transparent p-4">
|
244 |
<div class="flex items-center">
|
245 |
<span class="bg-yellow-500 text-black text-xs font-bold px-2 py-1 rounded mr-2">4.8</span>
|
|
|
249 |
</div>
|
250 |
<div class="p-3">
|
251 |
<h3 class="font-semibold truncate">The Last of Us</h3>
|
252 |
+
<p class="text-gray-400 text-sm">Drame | VF</p>
|
253 |
</div>
|
254 |
</div>
|
255 |
|
|
|
257 |
<div class="movie-card bg-gray-800 rounded-lg overflow-hidden transition duration-300 cursor-pointer">
|
258 |
<div class="relative">
|
259 |
<img src="https://via.placeholder.com/300x450" alt="Series" class="w-full h-auto">
|
260 |
+
<div class="autoplay-badge">
|
261 |
+
<i class="fas fa-play"></i> Auto
|
262 |
+
</div>
|
263 |
<div class="absolute bottom-0 left-0 right-0 bg-gradient-to-t from-black to-transparent p-4">
|
264 |
<div class="flex items-center">
|
265 |
<span class="bg-yellow-500 text-black text-xs font-bold px-2 py-1 rounded mr-2">4.9</span>
|
|
|
269 |
</div>
|
270 |
<div class="p-3">
|
271 |
<h3 class="font-semibold truncate">Stranger Things</h3>
|
272 |
+
<p class="text-gray-400 text-sm">Science-fiction | VF</p>
|
273 |
</div>
|
274 |
</div>
|
275 |
|
|
|
277 |
<div class="movie-card bg-gray-800 rounded-lg overflow-hidden transition duration-300 cursor-pointer">
|
278 |
<div class="relative">
|
279 |
<img src="https://via.placeholder.com/300x450" alt="Series" class="w-full h-auto">
|
280 |
+
<div class="autoplay-badge">
|
281 |
+
<i class="fas fa-play"></i> Auto
|
282 |
+
</div>
|
283 |
<div class="absolute bottom-0 left-0 right-0 bg-gradient-to-t from-black to-transparent p-4">
|
284 |
<div class="flex items-center">
|
285 |
<span class="bg-yellow-500 text-black text-xs font-bold px-2 py-1 rounded mr-2">4.7</span>
|
|
|
289 |
</div>
|
290 |
<div class="p-3">
|
291 |
<h3 class="font-semibold truncate">House of the Dragon</h3>
|
292 |
+
<p class="text-gray-400 text-sm">Fantasy | VF</p>
|
293 |
</div>
|
294 |
</div>
|
295 |
|
|
|
297 |
<div class="movie-card bg-gray-800 rounded-lg overflow-hidden transition duration-300 cursor-pointer">
|
298 |
<div class="relative">
|
299 |
<img src="https://via.placeholder.com/300x450" alt="Series" class="w-full h-auto">
|
300 |
+
<div class="autoplay-badge">
|
301 |
+
<i class="fas fa-play"></i> Auto
|
302 |
+
</div>
|
303 |
<div class="absolute bottom-0 left-0 right-0 bg-gradient-to-t from-black to-transparent p-4">
|
304 |
<div class="flex items-center">
|
305 |
<span class="bg-yellow-500 text-black text-xs font-bold px-2 py-1 rounded mr-2">4.5</span>
|
|
|
309 |
</div>
|
310 |
<div class="p-3">
|
311 |
<h3 class="font-semibold truncate">The Witcher</h3>
|
312 |
+
<p class="text-gray-400 text-sm">Fantasy | VF</p>
|
313 |
</div>
|
314 |
</div>
|
315 |
|
|
|
317 |
<div class="movie-card bg-gray-800 rounded-lg overflow-hidden transition duration-300 cursor-pointer">
|
318 |
<div class="relative">
|
319 |
<img src="https://via.placeholder.com/300x450" alt="Series" class="w-full h-auto">
|
320 |
+
<div class="autoplay-badge">
|
321 |
+
<i class="fas fa-play"></i> Auto
|
322 |
+
</div>
|
323 |
<div class="absolute bottom-0 left-0 right-0 bg-gradient-to-t from-black to-transparent p-4">
|
324 |
<div class="flex items-center">
|
325 |
<span class="bg-yellow-500 text-black text-xs font-bold px-2 py-1 rounded mr-2">4.3</span>
|
|
|
329 |
</div>
|
330 |
<div class="p-3">
|
331 |
<h3 class="font-semibold truncate">Wednesday</h3>
|
332 |
+
<p class="text-gray-400 text-sm">Comédie | VF</p>
|
333 |
</div>
|
334 |
</div>
|
335 |
|
|
|
337 |
<div class="movie-card bg-gray-800 rounded-lg overflow-hidden transition duration-300 cursor-pointer">
|
338 |
<div class="relative">
|
339 |
<img src="https://via.placeholder.com/300x450" alt="Series" class="w-full h-auto">
|
340 |
+
<div class="autoplay-badge">
|
341 |
+
<i class="fas fa-play"></i> Auto
|
342 |
+
</div>
|
343 |
<div class="absolute bottom-0 left-0 right-0 bg-gradient-to-t from-black to-transparent p-4">
|
344 |
<div class="flex items-center">
|
345 |
<span class="bg-yellow-500 text-black text-xs font-bold px-2 py-1 rounded mr-2">4.6</span>
|
|
|
349 |
</div>
|
350 |
<div class="p-3">
|
351 |
<h3 class="font-semibold truncate">The Mandalorian</h3>
|
352 |
+
<p class="text-gray-400 text-sm">Science-fiction | VF</p>
|
353 |
</div>
|
354 |
</div>
|
355 |
</div>
|
|
|
364 |
<h3 class="font-bold">Découvrez nos jeux exclusifs</h3>
|
365 |
<p class="text-sm text-gray-400">Abonnez-vous à StreamFlow Gaming pour accéder à des centaines de jeux premium</p>
|
366 |
</div>
|
367 |
+
<button id="gamingBtn" class="bg-green-600 hover:bg-green-700 px-4 py-2 rounded-lg text-sm font-semibold">
|
368 |
Essayer maintenant
|
369 |
</button>
|
370 |
</div>
|
371 |
|
372 |
<!-- Section Nouveautés -->
|
373 |
+
<section class="mb-12" id="tendances">
|
374 |
<div class="flex justify-between items-center mb-6">
|
375 |
+
<h2 class="text-2xl font-bold">Nouveautés en VF</h2>
|
376 |
+
<a href="#tous-nouveautes" class="text-blue-400 hover:underline">Voir tout</a>
|
377 |
</div>
|
378 |
<div class="grid grid-cols-2 sm:grid-cols-3 md:grid-cols-4 lg:grid-cols-6 gap-4">
|
379 |
<!-- Nouveauté Card 1 -->
|
380 |
<div class="movie-card bg-gray-800 rounded-lg overflow-hidden transition duration-300 cursor-pointer">
|
381 |
<div class="relative">
|
382 |
<img src="https://via.placeholder.com/300x450" alt="New" class="w-full h-auto">
|
383 |
+
<div class="autoplay-badge">
|
384 |
+
<i class="fas fa-play"></i> Auto
|
385 |
+
</div>
|
386 |
<div class="absolute top-2 left-2 bg-red-600 text-white text-xs px-2 py-1 rounded">NOUVEAU</div>
|
387 |
</div>
|
388 |
<div class="p-3">
|
389 |
<h3 class="font-semibold truncate">The Flash</h3>
|
390 |
+
<p class="text-gray-400 text-sm">Action | VF</p>
|
391 |
</div>
|
392 |
</div>
|
393 |
|
|
|
395 |
<div class="movie-card bg-gray-800 rounded-lg overflow-hidden transition duration-300 cursor-pointer">
|
396 |
<div class="relative">
|
397 |
<img src="https://via.placeholder.com/300x450" alt="New" class="w-full h-auto">
|
398 |
+
<div class="autoplay-badge">
|
399 |
+
<i class="fas fa-play"></i> Auto
|
400 |
+
</div>
|
401 |
<div class="absolute top-2 left-2 bg-red-600 text-white text-xs px-2 py-1 rounded">NOUVEAU</div>
|
402 |
</div>
|
403 |
<div class="p-3">
|
404 |
<h3 class="font-semibold truncate">Indiana Jones 5</h3>
|
405 |
+
<p class="text-gray-400 text-sm">Aventure | VF</p>
|
406 |
</div>
|
407 |
</div>
|
408 |
|
|
|
410 |
<div class="movie-card bg-gray-800 rounded-lg overflow-hidden transition duration-300 cursor-pointer">
|
411 |
<div class="relative">
|
412 |
<img src="https://via.placeholder.com/300x450" alt="New" class="w-full h-auto">
|
413 |
+
<div class="autoplay-badge">
|
414 |
+
<i class="fas fa-play"></i> Auto
|
415 |
+
</div>
|
416 |
<div class="absolute top-2 left-2 bg-red-600 text-white text-xs px-2 py-1 rounded">NOUVEAU</div>
|
417 |
</div>
|
418 |
<div class="p-3">
|
419 |
<h3 class="font-semibold truncate">Elemental</h3>
|
420 |
+
<p class="text-gray-400 text-sm">Animation | VF</p>
|
421 |
</div>
|
422 |
</div>
|
423 |
|
|
|
425 |
<div class="movie-card bg-gray-800 rounded-lg overflow-hidden transition duration-300 cursor-pointer">
|
426 |
<div class="relative">
|
427 |
<img src="https://via.placeholder.com/300x450" alt="New" class="w-full h-auto">
|
428 |
+
<div class="autoplay-badge">
|
429 |
+
<i class="fas fa-play"></i> Auto
|
430 |
+
</div>
|
431 |
<div class="absolute top-2 left-2 bg-red-600 text-white text-xs px-2 py-1 rounded">NOUVEAU</div>
|
432 |
</div>
|
433 |
<div class="p-3">
|
434 |
<h3 class="font-semibold truncate">Transformers 7</h3>
|
435 |
+
<p class="text-gray-400 text-sm">Action | VF</p>
|
436 |
</div>
|
437 |
</div>
|
438 |
|
|
|
440 |
<div class="movie-card bg-gray-800 rounded-lg overflow-hidden transition duration-300 cursor-pointer">
|
441 |
<div class="relative">
|
442 |
<img src="https://via.placeholder.com/300x450" alt="New" class="w-full h-auto">
|
443 |
+
<div class="autoplay-badge">
|
444 |
+
<i class="fas fa-play"></i> Auto
|
445 |
+
</div>
|
446 |
<div class="absolute top-2 left-2 bg-red-600 text-white text-xs px-2 py-1 rounded">NOUVEAU</div>
|
447 |
</div>
|
448 |
<div class="p-3">
|
449 |
<h3 class="font-semibold truncate">Fast X</h3>
|
450 |
+
<p class="text-gray-400 text-sm">Action | VF</p>
|
451 |
</div>
|
452 |
</div>
|
453 |
|
|
|
455 |
<div class="movie-card bg-gray-800 rounded-lg overflow-hidden transition duration-300 cursor-pointer">
|
456 |
<div class="relative">
|
457 |
<img src="https://via.placeholder.com/300x450" alt="New" class="w-full h-auto">
|
458 |
+
<div class="autoplay-badge">
|
459 |
+
<i class="fas fa-play"></i> Auto
|
460 |
+
</div>
|
461 |
<div class="absolute top-2 left-2 bg-red-600 text-white text-xs px-2 py-1 rounded">NOUVEAU</div>
|
462 |
</div>
|
463 |
<div class="p-3">
|
464 |
<h3 class="font-semibold truncate">The Little Mermaid</h3>
|
465 |
+
<p class="text-gray-400 text-sm">Fantasy | VF</p>
|
466 |
</div>
|
467 |
</div>
|
468 |
</div>
|
|
|
475 |
<!-- Publicité footer -->
|
476 |
<div class="ad-container bg-gray-700 rounded-lg p-6 mb-8 text-center">
|
477 |
<h3 class="text-xl font-bold mb-2">Téléchargez notre application mobile</h3>
|
478 |
+
<p class="mb-4">Regardez vos 57,854 films préférés partout, même hors ligne</p>
|
479 |
<div class="flex justify-center space-x-4">
|
480 |
+
<button id="appStoreBtn" class="bg-black text-white px-6 py-2 rounded-lg flex items-center">
|
481 |
<i class="fab fa-apple mr-2"></i> App Store
|
482 |
</button>
|
483 |
+
<button id="playStoreBtn" class="bg-black text-white px-6 py-2 rounded-lg flex items-center">
|
484 |
<i class="fab fa-google-play mr-2"></i> Google Play
|
485 |
</button>
|
486 |
</div>
|
|
|
490 |
<div>
|
491 |
<h4 class="text-lg font-semibold mb-4">StreamFlow</h4>
|
492 |
<ul class="space-y-2">
|
493 |
+
<li><a href="#apropos" class="text-gray-400 hover:text-white">À propos</a></li>
|
494 |
+
<li><a href="#carrieres" class="text-gray-400 hover:text-white">Carrières</a></li>
|
495 |
+
<li><a href="#presse" class="text-gray-400 hover:text-white">Presse</a></li>
|
496 |
+
<li><a href="#investisseurs" class="text-gray-400 hover:text-white">Investisseurs</a></li>
|
497 |
</ul>
|
498 |
</div>
|
499 |
<div>
|
500 |
<h4 class="text-lg font-semibold mb-4">Aide</h4>
|
501 |
<ul class="space-y-2">
|
502 |
+
<li><a href="#aide" class="text-gray-400 hover:text-white">Centre d'aide</a></li>
|
503 |
+
<li><a href="#paiement" class="text-gray-400 hover:text-white">Options de paiement</a></li>
|
504 |
+
<li><a href="#faq" class="text-gray-400 hover:text-white">FAQ</a></li>
|
505 |
+
<li><a href="#contact" class="text-gray-400 hover:text-white">Nous contacter</a></li>
|
506 |
</ul>
|
507 |
</div>
|
508 |
<div>
|
509 |
<h4 class="text-lg font-semibold mb-4">Légal</h4>
|
510 |
<ul class="space-y-2">
|
511 |
+
<li><a href="#conditions" class="text-gray-400 hover:text-white">Conditions d'utilisation</a></li>
|
512 |
+
<li><a href="#confidentialite" class="text-gray-400 hover:text-white">Confidentialité</a></li>
|
513 |
+
<li><a href="#cookies" class="text-gray-400 hover:text-white">Préférences de cookies</a></li>
|
514 |
+
<li><a href="#legal" class="text-gray-400 hover:text-white">Informations légales</a></li>
|
515 |
</ul>
|
516 |
</div>
|
517 |
<div>
|
518 |
<h4 class="text-lg font-semibold mb-4">Suivez-nous</h4>
|
519 |
<div class="flex space-x-4">
|
520 |
+
<a href="https://facebook.com" class="text-gray-400 hover:text-white text-2xl" target="_blank"><i class="fab fa-facebook"></i></a>
|
521 |
+
<a href="https://twitter.com" class="text-gray-400 hover:text-white text-2xl" target="_blank"><i class="fab fa-twitter"></i></a>
|
522 |
+
<a href="https://instagram.com" class="text-gray-400 hover:text-white text-2xl" target="_blank"><i class="fab fa-instagram"></i></a>
|
523 |
+
<a href="https://youtube.com" class="text-gray-400 hover:text-white text-2xl" target="_blank"><i class="fab fa-youtube"></i></a>
|
524 |
</div>
|
525 |
</div>
|
526 |
</div>
|
527 |
<div class="border-t border-gray-700 pt-6">
|
528 |
+
<p class="text-gray-400 text-sm">© 2023 StreamFlow. Tous droits réservés. 57,854 films disponibles.</p>
|
529 |
</div>
|
530 |
</div>
|
531 |
</footer>
|
532 |
|
533 |
+
<!-- Mini Player -->
|
534 |
+
<div id="miniPlayer" class="auto-player hidden">
|
535 |
+
<div class="player-header">
|
536 |
+
<div class="player-title" id="playerTitle">Lecture en cours</div>
|
537 |
+
<button class="player-close" id="closePlayerBtn">
|
538 |
+
<i class="fas fa-times"></i>
|
539 |
+
</button>
|
540 |
+
</div>
|
541 |
+
<div class="player-video">
|
542 |
+
<video id="autoPlayerVideo" width="100%" height="100%" controls autoplay>
|
543 |
+
<source src="https://samplelib.com/lib/preview/mp4/sample-5s.mp4" type="video/mp4">
|
544 |
+
Votre navigateur ne supporte pas la lecture vidéo.
|
545 |
+
</video>
|
546 |
+
</div>
|
547 |
+
<div class="player-controls">
|
548 |
+
<button class="player-btn" id="nextMovieBtn">
|
549 |
+
<i class="fas fa-forward mr-1"></i> Suivant
|
550 |
+
</button>
|
551 |
+
<button class="player-btn" id="stopAutoplayBtn">
|
552 |
+
<i class="fas fa-stop mr-1"></i> Arrêter
|
553 |
+
</button>
|
554 |
+
</div>
|
555 |
+
</div>
|
556 |
+
|
557 |
+
<!-- Modal -->
|
558 |
+
<div id="modal" class="fixed inset-0 bg-black bg-opacity-75 flex items-center justify-center z-50 hidden">
|
559 |
+
<div class="bg-gray-800 rounded-lg w-full max-w-2xl mx-4">
|
560 |
+
<div class="flex justify-between items-center border-b border-gray-700 p-4">
|
561 |
+
<h3 class="text-xl font-bold" id="modalTitle">Modal Title</h3>
|
562 |
+
<button id="closeModalBtn" class="text-gray-400 hover:text-white">
|
563 |
+
<i class="fas fa-times"></i>
|
564 |
+
</button>
|
565 |
+
</div>
|
566 |
+
<div class="p-6" id="modalContent">
|
567 |
+
<!-- Content will be inserted here -->
|
568 |
+
</div>
|
569 |
+
<div class="border-t border-gray-700 p-4 flex justify-end">
|
570 |
+
<button id="confirmModalBtn" class="bg-blue-600 hover:bg-blue-700 px-4 py-2 rounded-lg mr-2">Confirmer</button>
|
571 |
+
<button id="cancelModalBtn" class="bg-gray-700 hover:bg-gray-600 px-4 py-2 rounded-lg">Annuler</button>
|
572 |
+
</div>
|
573 |
+
</div>
|
574 |
+
</div>
|
575 |
+
|
576 |
<script>
|
577 |
+
// Base de données de films (simplifiée pour l'exemple)
|
578 |
+
const moviesDatabase = {
|
579 |
+
all: [],
|
580 |
+
action: [],
|
581 |
+
comedy: [],
|
582 |
+
drama: []
|
583 |
+
};
|
584 |
+
|
585 |
+
// Variables pour l'autoplay
|
586 |
+
let currentMovieIndex = 0;
|
587 |
+
let autoplayInterval;
|
588 |
+
let isAutoplayActive = false;
|
589 |
+
let currentMoviesList = [];
|
590 |
+
|
591 |
+
// Générer 57,854 films fictifs (en pratique, on en génère 100 pour l'exemple)
|
592 |
+
function generateMovies() {
|
593 |
+
const genres = ['Action', 'Comédie', 'Drame', 'Science-fiction', 'Horreur', 'Romance', 'Thriller', 'Animation'];
|
594 |
+
const years = Array.from({length: 30}, (_, i) => 2023 - i);
|
595 |
|
596 |
+
for (let i = 1; i <= 100; i++) {
|
597 |
+
const genre = genres[Math.floor(Math.random() * genres.length)];
|
598 |
+
const year = years[Math.floor(Math.random() * years.length)];
|
599 |
+
const rating = (Math.random() * 2 + 3).toFixed(1);
|
600 |
+
|
601 |
+
const movie = {
|
602 |
+
id: i,
|
603 |
+
title: `Film ${i} - ${genre}`,
|
604 |
+
genre: genre.toLowerCase(),
|
605 |
+
year: year,
|
606 |
+
rating: rating,
|
607 |
+
image: `https://via.placeholder.com/300x450?text=Film+${i}`,
|
608 |
+
url: `https://samplelib.com/lib/preview/mp4/sample-5s.mp4`
|
609 |
+
};
|
610 |
+
|
611 |
+
moviesDatabase.all.push(movie);
|
612 |
+
|
613 |
+
if (genre === 'Action') moviesDatabase.action.push(movie);
|
614 |
+
if (genre === 'Comédie') moviesDatabase.comedy.push(movie);
|
615 |
+
if (genre === 'Drame') moviesDatabase.drama.push(movie);
|
616 |
+
}
|
617 |
+
}
|
618 |
+
|
619 |
+
// Charger les films dans le conteneur
|
620 |
+
function loadMovies(genre = 'all', limit = 20) {
|
621 |
+
const container = document.getElementById('movies-container');
|
622 |
+
container.innerHTML = '';
|
623 |
|
624 |
+
const movies = moviesDatabase[genre].slice(0, limit);
|
625 |
+
currentMoviesList = movies; // Stocker la liste actuelle pour l'autoplay
|
626 |
+
|
627 |
+
movies.forEach((movie, index) => {
|
628 |
+
const movieCard = document.createElement('div');
|
629 |
+
movieCard.className = 'movie-card bg-gray-800 rounded-lg overflow-hidden transition duration-300 cursor-pointer';
|
630 |
+
movieCard.innerHTML = `
|
631 |
+
<div class="relative">
|
632 |
+
<img src="${movie.image}" alt="${movie.title}" class="w-full h-auto">
|
633 |
+
<div class="autoplay-badge">
|
634 |
+
<i class="fas fa-play"></i> Auto
|
635 |
+
</div>
|
636 |
+
<div class="absolute bottom-0 left-0 right-0 bg-gradient-to-t from-black to-transparent p-4">
|
637 |
+
<div class="flex items-center">
|
638 |
+
<span class="bg-yellow-500 text-black text-xs font-bold px-2 py-1 rounded mr-2">${movie.rating}</span>
|
639 |
+
<span class="text-xs">${movie.year}</span>
|
640 |
+
</div>
|
641 |
+
</div>
|
642 |
+
</div>
|
643 |
+
<div class="p-3">
|
644 |
+
<h3 class="font-semibold truncate">${movie.title}</h3>
|
645 |
+
<p class="text-gray-400 text-sm">${movie.genre} | VF</p>
|
646 |
+
</div>
|
647 |
+
`;
|
648 |
+
movieCard.onclick = () => startAutoplay(index);
|
649 |
+
container.appendChild(movieCard);
|
650 |
+
});
|
651 |
+
}
|
652 |
+
|
653 |
+
// Démarrer l'autoplay à partir d'un index spécifique
|
654 |
+
function startAutoplay(startIndex = 0) {
|
655 |
+
if (currentMoviesList.length === 0) return;
|
656 |
+
|
657 |
+
isAutoplayActive = true;
|
658 |
+
currentMovieIndex = startIndex;
|
659 |
+
|
660 |
+
// Afficher le mini player
|
661 |
+
const miniPlayer = document.getElementById('miniPlayer');
|
662 |
+
miniPlayer.classList.remove('hidden');
|
663 |
+
|
664 |
+
// Jouer le premier film
|
665 |
+
playCurrentMovie();
|
666 |
+
|
667 |
+
// Configurer l'intervalle pour passer au film suivant
|
668 |
+
autoplayInterval = setInterval(() => {
|
669 |
+
currentMovieIndex = (currentMovieIndex + 1) % currentMoviesList.length;
|
670 |
+
playCurrentMovie();
|
671 |
+
}, 10000); // Change de film toutes les 10 secondes (pour la démo)
|
672 |
+
}
|
673 |
+
|
674 |
+
// Jouer le film actuel dans le mini player
|
675 |
+
function playCurrentMovie() {
|
676 |
+
if (currentMovieIndex >= currentMoviesList.length) {
|
677 |
+
currentMovieIndex = 0;
|
678 |
+
}
|
679 |
+
|
680 |
+
const movie = currentMoviesList[currentMovieIndex];
|
681 |
+
const videoPlayer = document.getElementById('autoPlayerVideo');
|
682 |
+
const playerTitle = document.getElementById('playerTitle');
|
683 |
+
|
684 |
+
playerTitle.textContent = movie.title;
|
685 |
+
videoPlayer.src = movie.url;
|
686 |
+
videoPlayer.load();
|
687 |
+
videoPlayer.play().catch(e => console.log("Erreur de lecture automatique:", e));
|
688 |
}
|
689 |
+
|
690 |
+
// Arrêter l'autoplay
|
691 |
+
function stopAutoplay() {
|
692 |
+
isAutoplayActive = false;
|
693 |
+
clearInterval(autoplayInterval);
|
694 |
+
|
695 |
+
const videoPlayer = document.getElementById('autoPlayerVideo');
|
696 |
+
videoPlayer.pause();
|
697 |
+
|
698 |
+
const miniPlayer = document.getElementById('miniPlayer');
|
699 |
+
miniPlayer.classList.add('hidden');
|
700 |
+
}
|
701 |
+
|
702 |
+
// Passer au film suivant manuellement
|
703 |
+
function nextMovie() {
|
704 |
+
currentMovieIndex = (currentMovieIndex + 1) % currentMoviesList.length;
|
705 |
+
playCurrentMovie();
|
706 |
+
}
|
707 |
+
|
708 |
+
// Charger plus de films
|
709 |
+
let currentLimit = 20;
|
710 |
+
function loadMoreMovies() {
|
711 |
+
currentLimit += 20;
|
712 |
+
loadMovies(currentFilter, currentLimit);
|
713 |
+
showModal('Chargement', `Vous avez chargé ${currentLimit} films sur 57,854 disponibles.`);
|
714 |
+
}
|
715 |
+
|
716 |
+
// Filtrer les films par genre
|
717 |
+
let currentFilter = 'all';
|
718 |
+
function filterMovies(genre) {
|
719 |
+
// Reset active button styles
|
720 |
+
document.querySelectorAll('[id$="FilterBtn"]').forEach(btn => {
|
721 |
+
btn.classList.remove('bg-blue-600');
|
722 |
+
btn.classList.add('bg-gray-700', 'hover:bg-gray-600');
|
723 |
+
});
|
724 |
+
|
725 |
+
// Set active button style
|
726 |
+
document.getElementById(`${genre}FilterBtn`).classList.remove('bg-gray-700', 'hover:bg-gray-600');
|
727 |
+
document.getElementById(`${genre}FilterBtn`).classList.add('bg-blue-600');
|
728 |
+
|
729 |
+
currentFilter = genre;
|
730 |
+
currentLimit = 20;
|
731 |
+
loadMovies(genre, currentLimit);
|
732 |
+
}
|
733 |
+
|
734 |
+
// Afficher une modal
|
735 |
+
function showModal(title, content) {
|
736 |
+
document.getElementById('modalTitle').textContent = title;
|
737 |
+
document.getElementById('modalContent').innerHTML = content;
|
738 |
+
document.getElementById('modal').classList.remove('hidden');
|
739 |
+
}
|
740 |
+
|
741 |
+
// Fermer la modal
|
742 |
+
function closeModal() {
|
743 |
+
document.getElementById('modal').classList.add('hidden');
|
744 |
+
}
|
745 |
+
|
746 |
+
// Initialisation
|
747 |
+
document.addEventListener('DOMContentLoaded', () => {
|
748 |
+
generateMovies();
|
749 |
+
loadMovies();
|
750 |
+
|
751 |
+
// Événements
|
752 |
+
document.getElementById('loadMoreBtn').addEventListener('click', loadMoreMovies);
|
753 |
+
document.getElementById('allFilterBtn').addEventListener('click', () => filterMovies('all'));
|
754 |
+
document.getElementById('actionFilterBtn').addEventListener('click', () => filterMovies('action'));
|
755 |
+
document.getElementById('comedyFilterBtn').addEventListener('click', () => filterMovies('comedy'));
|
756 |
+
document.getElementById('dramaFilterBtn').addEventListener('click', () => filterMovies('drama'));
|
757 |
+
document.getElementById('closeModalBtn').addEventListener('click', closeModal);
|
758 |
+
document.getElementById('cancelModalBtn').addEventListener('click', closeModal);
|
759 |
+
document.getElementById('confirmModalBtn').addEventListener('click', closeModal);
|
760 |
+
document.getElementById('startWatchingBtn').addEventListener('click', () => startAutoplay(0));
|
761 |
+
document.getElementById('nextMovieBtn').addEventListener('click', nextMovie);
|
762 |
+
document.getElementById('stopAutoplayBtn').addEventListener('click', stopAutoplay);
|
763 |
+
document.getElementById('closePlayerBtn').addEventListener('click', stopAutoplay);
|
764 |
+
|
765 |
+
// Configurer le défilement automatique de la bande de pub
|
766 |
+
const adScroll = document.getElementById('ad-scroll');
|
767 |
+
let scrollPosition = 0;
|
768 |
+
setInterval(() => {
|
769 |
+
scrollPosition += 1;
|
770 |
+
if (scrollPosition >= adScroll.scrollWidth / 2) {
|
771 |
+
scrollPosition = 0;
|
772 |
+
}
|
773 |
+
adScroll.scrollLeft = scrollPosition;
|
774 |
+
}, 50);
|
775 |
+
});
|
776 |
</script>
|
777 |
<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/stream-flow" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
|
778 |
</html>
|
prompts.txt
CHANGED
@@ -1,3 +1,8 @@
|
|
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://luckyjohnsonnetwork.com/
|
3 |
-
https://flixflow.xyz/ : creer se site en pilote automatique avec des publicité pour monetisé mon site
|
|
|
|
|
|
|
|
|
|
|
|
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://luckyjohnsonnetwork.com/
|
3 |
+
https://flixflow.xyz/ : creer se site en pilote automatique avec des publicité pour monetisé mon site
|
4 |
+
activer toutes les boutons d'accueil
|
5 |
+
activer toutes les lectures des film directement en automatique ouvrer dans une nouvel fenetre chaque fois on clique sur un film a regarder je veux toutes les film en langue francais
|
6 |
+
ajouté 57854 film en lecture pilotage automatique
|
7 |
+
activer toutes les bouton en automatique
|
8 |
+
je veux que toutes les film joue en autopilotage
|