docto41 commited on
Commit
f409261
·
verified ·
1 Parent(s): 2740c38

Add 3 files

Browse files
Files changed (3) hide show
  1. README.md +6 -4
  2. index.html +323 -19
  3. prompts.txt +4 -0
README.md CHANGED
@@ -1,10 +1,12 @@
1
  ---
2
- title: Megagamehub
3
- emoji: 😻
4
  colorFrom: gray
5
- colorTo: red
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: megagamehub
3
+ emoji: 🐳
4
  colorFrom: gray
5
+ colorTo: blue
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,323 @@
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>MegaGameHub - 9,696,987,456,321 Jeux!</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
+ /* Animation pour les boutons */
11
+ @keyframes rainbow {
12
+ 0% { background-color: #ff0000; }
13
+ 14% { background-color: #ff7f00; }
14
+ 28% { background-color: #ffff00; }
15
+ 42% { background-color: #00ff00; }
16
+ 57% { background-color: #0000ff; }
17
+ 71% { background-color: #4b0082; }
18
+ 85% { background-color: #9400d3; }
19
+ 100% { background-color: #ff0000; }
20
+ }
21
+
22
+ .rainbow-btn {
23
+ animation: rainbow 10s infinite;
24
+ background-size: 200% 200%;
25
+ color: white;
26
+ font-weight: bold;
27
+ border: none;
28
+ transition: all 0.3s ease;
29
+ }
30
+
31
+ .rainbow-btn:hover {
32
+ transform: scale(1.05);
33
+ box-shadow: 0 0 15px rgba(255,255,255,0.7);
34
+ }
35
+
36
+ /* Effet de particules */
37
+ .particles {
38
+ position: fixed;
39
+ top: 0;
40
+ left: 0;
41
+ width: 100%;
42
+ height: 100%;
43
+ pointer-events: none;
44
+ z-index: -1;
45
+ }
46
+
47
+ /* Animation pour le compteur */
48
+ @keyframes count-up {
49
+ from { transform: translateY(20px); opacity: 0; }
50
+ to { transform: translateY(0); opacity: 1; }
51
+ }
52
+
53
+ .count-up {
54
+ animation: count-up 1s ease-out forwards;
55
+ }
56
+ </style>
57
+ </head>
58
+ <body class="bg-black text-white overflow-x-hidden">
59
+ <!-- Effet de particules -->
60
+ <canvas id="particles" class="particles"></canvas>
61
+
62
+ <!-- En-tête -->
63
+ <header class="bg-gradient-to-b from-purple-900 to-black py-10 px-5 text-center">
64
+ <div class="max-w-6xl mx-auto">
65
+ <h1 class="text-5xl md:text-7xl font-bold mb-6">
66
+ <span class="bg-clip-text text-transparent bg-gradient-to-r from-red-500 via-yellow-500 to-blue-500">
67
+ MegaGameHub
68
+ </span>
69
+ </h1>
70
+ <p class="text-xl md:text-2xl text-gray-300 mb-8">
71
+ La plateforme avec <span id="gameCounter" class="text-yellow-400 font-bold">9,696,987,456,321</span> jeux uniques!
72
+ </p>
73
+ <div class="flex justify-center space-x-4 mb-10">
74
+ <button id="autoOpenBtn" class="rainbow-btn px-8 py-4 rounded-full text-lg">
75
+ <i class="fas fa-bolt mr-2"></i> Activer l'ouverture automatique
76
+ </button>
77
+ <button id="stopAutoBtn" class="bg-gray-800 hover:bg-gray-700 px-8 py-4 rounded-full text-lg border border-gray-600">
78
+ <i class="fas fa-stop-circle mr-2"></i> Arrêter
79
+ </button>
80
+ </div>
81
+ <div class="bg-gray-900 bg-opacity-50 rounded-lg p-4 mb-8">
82
+ <p class="text-yellow-300">
83
+ <i class="fas fa-exclamation-triangle mr-2"></i>
84
+ Attention: Cette page va ouvrir des milliers de fenêtres! Utilisez avec prudence.
85
+ </p>
86
+ </div>
87
+ </div>
88
+ </header>
89
+
90
+ <!-- Section principale avec les boutons -->
91
+ <main class="py-10 px-5">
92
+ <div class="max-w-6xl mx-auto">
93
+ <div class="grid grid-cols-2 sm:grid-cols-3 md:grid-cols-4 lg:grid-cols-6 gap-4" id="gameButtonsContainer">
94
+ <!-- Les boutons seront générés dynamiquement -->
95
+ </div>
96
+
97
+ <div class="text-center mt-10">
98
+ <button id="loadMoreBtn" class="rainbow-btn px-6 py-3 rounded-full">
99
+ <i class="fas fa-plus-circle mr-2"></i> Charger plus de jeux
100
+ </button>
101
+ </div>
102
+ </div>
103
+ </main>
104
+
105
+ <!-- Pied de page -->
106
+ <footer class="bg-gray-900 py-8 px-5 text-center">
107
+ <div class="max-w-6xl mx-auto">
108
+ <p class="text-gray-400 mb-4">
109
+ © 2023 MegaGameHub - Tous droits réservés à personne
110
+ </p>
111
+ <p class="text-gray-500 text-sm">
112
+ <i class="fas fa-shield-alt mr-1"></i> Sécurité: Aucune |
113
+ <i class="fas fa-cookie mr-1"></i> Cookies: Tous |
114
+ <i class="fas fa-battery-three-quarters mr-1"></i> Batterie: 42%
115
+ </p>
116
+ </div>
117
+ </footer>
118
+
119
+ <script>
120
+ // Configuration
121
+ const TOTAL_GAMES = 9696987456321; // 9,696,987,456,321 jeux!
122
+ const BATCH_SIZE = 100; // Nombre de boutons à charger à chaque fois
123
+ let autoOpenInterval = null;
124
+ let openedWindows = [];
125
+
126
+ // Initialiser les particules
127
+ function initParticles() {
128
+ const canvas = document.getElementById('particles');
129
+ const ctx = canvas.getContext('2d');
130
+ canvas.width = window.innerWidth;
131
+ canvas.height = window.innerHeight;
132
+
133
+ const particles = [];
134
+ const particleCount = Math.floor(window.innerWidth / 10);
135
+
136
+ for (let i = 0; i < particleCount; i++) {
137
+ particles.push({
138
+ x: Math.random() * canvas.width,
139
+ y: Math.random() * canvas.height,
140
+ size: Math.random() * 3 + 1,
141
+ speedX: Math.random() * 2 - 1,
142
+ speedY: Math.random() * 2 - 1,
143
+ color: `hsl(${Math.random() * 360}, 100%, 50%)`
144
+ });
145
+ }
146
+
147
+ function animate() {
148
+ ctx.clearRect(0, 0, canvas.width, canvas.height);
149
+
150
+ particles.forEach(particle => {
151
+ ctx.beginPath();
152
+ ctx.arc(particle.x, particle.y, particle.size, 0, Math.PI * 2);
153
+ ctx.fillStyle = particle.color;
154
+ ctx.fill();
155
+
156
+ particle.x += particle.speedX;
157
+ particle.y += particle.speedY;
158
+
159
+ if (particle.x < 0 || particle.x > canvas.width) particle.speedX *= -1;
160
+ if (particle.y < 0 || particle.y > canvas.height) particle.speedY *= -1;
161
+ });
162
+
163
+ requestAnimationFrame(animate);
164
+ }
165
+
166
+ animate();
167
+
168
+ window.addEventListener('resize', () => {
169
+ canvas.width = window.innerWidth;
170
+ canvas.height = window.innerHeight;
171
+ });
172
+ }
173
+
174
+ // Générer des noms de jeux aléatoires
175
+ function generateGameName(index) {
176
+ const prefixes = ['Super', 'Mega', 'Ultra', 'Hyper', 'Extreme', 'Epic', 'Legendary', 'Fantasy', 'Galactic', 'Quantum'];
177
+ const types = ['Adventure', 'Quest', 'Battle', 'Race', 'Puzzle', 'Shooter', 'Strategy', 'Simulator', 'Tycoon', 'Survival'];
178
+ const suffixes = ['Pro', 'Deluxe', 'Unlimited', 'Infinite', 'Reborn', 'Legacy', 'Evolution', 'Revolution', 'X', 'Zero'];
179
+
180
+ const prefix = prefixes[Math.floor(Math.random() * prefixes.length)];
181
+ const type = types[Math.floor(Math.random() * types.length)];
182
+ const suffix = Math.random() > 0.7 ? suffixes[Math.floor(Math.random() * suffixes.length)] : '';
183
+
184
+ return `${prefix} ${type} ${suffix} ${index}`.trim();
185
+ }
186
+
187
+ // Générer des URL de jeux aléatoires
188
+ function generateGameUrl() {
189
+ const domains = ['gamehub', 'playnow', 'funzone', 'gamingworld', 'playfree', 'gamersparadise'];
190
+ const tlds = ['.com', '.io', '.gg', '.fun', '.games', '.xyz'];
191
+
192
+ const domain = domains[Math.floor(Math.random() * domains.length)];
193
+ const tld = tlds[Math.floor(Math.random() * tlds.length)];
194
+ const path = Math.random() > 0.5 ? `/game/${Math.floor(Math.random() * 1000000)}` : '';
195
+
196
+ return `https://${domain}${tld}${path}`;
197
+ }
198
+
199
+ // Créer un bouton de jeu
200
+ function createGameButton(index) {
201
+ const button = document.createElement('button');
202
+ button.className = 'rainbow-btn w-full py-3 rounded-lg text-sm md:text-base';
203
+ button.innerHTML = `
204
+ <i class="fas fa-gamepad mr-2"></i>
205
+ ${generateGameName(index)}
206
+ `;
207
+ button.dataset.index = index;
208
+
209
+ button.addEventListener('click', function(e) {
210
+ e.preventDefault();
211
+ const url = generateGameUrl();
212
+ const newWindow = window.open(url, '_blank', 'width=800,height=600');
213
+
214
+ if (newWindow) {
215
+ openedWindows.push(newWindow);
216
+ updateCounter();
217
+ }
218
+ });
219
+
220
+ return button;
221
+ }
222
+
223
+ // Charger une série de boutons
224
+ function loadGameButtons(startIndex, count) {
225
+ const container = document.getElementById('gameButtonsContainer');
226
+
227
+ for (let i = startIndex; i < startIndex + count && i < TOTAL_GAMES; i++) {
228
+ container.appendChild(createGameButton(i + 1));
229
+ }
230
+
231
+ // Animer le compteur
232
+ animateCounter();
233
+ }
234
+
235
+ // Animer le compteur
236
+ function animateCounter() {
237
+ const counter = document.getElementById('gameCounter');
238
+ counter.classList.remove('count-up');
239
+ void counter.offsetWidth; // Trigger reflow
240
+ counter.classList.add('count-up');
241
+ }
242
+
243
+ // Mettre à jour le compteur de fenêtres ouvertes
244
+ function updateCounter() {
245
+ const counter = document.getElementById('gameCounter');
246
+ counter.textContent = openedWindows.length.toLocaleString();
247
+ }
248
+
249
+ // Ouvrir automatiquement des jeux
250
+ function startAutoOpen() {
251
+ if (autoOpenInterval) return;
252
+
253
+ autoOpenInterval = setInterval(() => {
254
+ const buttons = document.querySelectorAll('#gameButtonsContainer button');
255
+ if (buttons.length === 0) return;
256
+
257
+ const randomIndex = Math.floor(Math.random() * buttons.length);
258
+ const randomButton = buttons[randomIndex];
259
+
260
+ // Simuler un clic
261
+ randomButton.click();
262
+
263
+ // Faire défiler pour voir le bouton cliqué
264
+ randomButton.scrollIntoView({ behavior: 'smooth', block: 'center' });
265
+
266
+ // Ajouter un effet visuel
267
+ randomButton.classList.add('ring-4', 'ring-white');
268
+ setTimeout(() => {
269
+ randomButton.classList.remove('ring-4', 'ring-white');
270
+ }, 500);
271
+
272
+ }, 1000); // Toutes les secondes
273
+ }
274
+
275
+ // Arrêter l'ouverture automatique
276
+ function stopAutoOpen() {
277
+ if (autoOpenInterval) {
278
+ clearInterval(autoOpenInterval);
279
+ autoOpenInterval = null;
280
+ }
281
+ }
282
+
283
+ // Fermer toutes les fenêtres ouvertes
284
+ function closeAllWindows() {
285
+ openedWindows.forEach(win => {
286
+ try {
287
+ if (win && !win.closed) {
288
+ win.close();
289
+ }
290
+ } catch (e) {
291
+ console.log("Impossible de fermer une fenêtre:", e);
292
+ }
293
+ });
294
+ openedWindows = [];
295
+ updateCounter();
296
+ }
297
+
298
+ // Initialisation
299
+ document.addEventListener('DOMContentLoaded', function() {
300
+ initParticles();
301
+ loadGameButtons(0, BATCH_SIZE);
302
+
303
+ // Bouton pour charger plus de jeux
304
+ document.getElementById('loadMoreBtn').addEventListener('click', function() {
305
+ const currentCount = document.querySelectorAll('#gameButtonsContainer button').length;
306
+ loadGameButtons(currentCount, BATCH_SIZE);
307
+ });
308
+
309
+ // Bouton d'ouverture automatique
310
+ document.getElementById('autoOpenBtn').addEventListener('click', startAutoOpen);
311
+
312
+ // Bouton d'arrêt
313
+ document.getElementById('stopAutoBtn').addEventListener('click', stopAutoOpen);
314
+
315
+ // Fermer toutes les fenêtres quand on quitte la page
316
+ window.addEventListener('beforeunload', closeAllWindows);
317
+
318
+ // Avertissement
319
+ alert("ATTENTION: Ce site va ouvrir des milliers de fenêtres de jeux! Êtes-vous sûr de vouloir continuer?");
320
+ });
321
+ </script>
322
+ <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/megagamehub" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
323
+ </html>
prompts.txt ADDED
@@ -0,0 +1,4 @@
 
 
 
 
 
1
+ je veux le plus enormes et gisquantestque de jeux de réseau en ligne avec plus de 569444 jeux les plus récents avec un tableau de bord personnel pour entrer mes information de paiement paypal , stripe etc.. pour etre payer je veux que moi seul a acces a se tableau be bors , acces interdit au autres il devront payer un abonnement il auront un autre tableau de bord pour eux , mais pas les memess,, le toutes géérer en automatique
2
+ activer toutes les boutons en automatique
3
+ ouvert toutesles jeux en automatique
4
+ je veux un site unique au monde avec 9696987456321 boutons activé en automatique avec ouverture dans une nouvelle fenetre chaque fois qu'on clique sur les bouton