Denoria commited on
Commit
b48ca3d
·
verified ·
1 Parent(s): c19fb91

Add 3 files

Browse files
Files changed (3) hide show
  1. README.md +6 -4
  2. index.html +355 -19
  3. prompts.txt +1 -0
README.md CHANGED
@@ -1,10 +1,12 @@
1
  ---
2
- title: P Bp
3
- emoji: 🔥
4
  colorFrom: pink
5
- colorTo: green
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: p-bp
3
+ emoji: 🐳
4
  colorFrom: pink
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,355 @@
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="en">
3
+ <head>
4
+ <meta charset="UTF-8">
5
+ <meta name="viewport" content="width=device-width, initial-scale=1.0">
6
+ <title>Pokémon Battle Pass</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
+ /* Custom scrollbar */
11
+ .battle-pass-container::-webkit-scrollbar {
12
+ height: 8px;
13
+ }
14
+ .battle-pass-container::-webkit-scrollbar-track {
15
+ background: #f1f1f1;
16
+ border-radius: 10px;
17
+ }
18
+ .battle-pass-container::-webkit-scrollbar-thumb {
19
+ background: #888;
20
+ border-radius: 10px;
21
+ }
22
+ .battle-pass-container::-webkit-scrollbar-thumb:hover {
23
+ background: #555;
24
+ }
25
+
26
+ /* Pokeball animation */
27
+ @keyframes spin {
28
+ 0% { transform: rotate(0deg); }
29
+ 100% { transform: rotate(360deg); }
30
+ }
31
+
32
+ .pokeball-spin {
33
+ animation: spin 2s linear infinite;
34
+ }
35
+
36
+ /* Level glow */
37
+ .level-item.unlocked {
38
+ box-shadow: 0 0 15px rgba(255, 215, 0, 0.7);
39
+ }
40
+
41
+ .level-item.locked {
42
+ filter: grayscale(70%);
43
+ opacity: 0.7;
44
+ }
45
+
46
+ /* Type colors */
47
+ .type-fire { background-color: #F08030; }
48
+ .type-water { background-color: #6890F0; }
49
+ .type-grass { background-color: #78C850; }
50
+ .type-electric { background-color: #F8D030; }
51
+ .type-psychic { background-color: #F85888; }
52
+ .type-ice { background-color: #98D8D8; }
53
+ .type-dragon { background-color: #7038F8; }
54
+ .type-dark { background-color: #705848; }
55
+ .type-fairy { background-color: #EE99AC; }
56
+ .type-normal { background-color: #A8A878; }
57
+ .type-fighting { background-color: #C03028; }
58
+ .type-flying { background-color: #A890F0; }
59
+ .type-poison { background-color: #A040A0; }
60
+ .type-ground { background-color: #E0C068; }
61
+ .type-rock { background-color: #B8A038; }
62
+ .type-bug { background-color: #A8B820; }
63
+ .type-ghost { background-color: #705898; }
64
+ .type-steel { background-color: #B8B8D0; }
65
+ </style>
66
+ </head>
67
+ <body class="bg-gradient-to-b from-blue-900 to-blue-700 min-h-screen text-white">
68
+ <div class="container mx-auto px-4 py-8">
69
+ <!-- Header -->
70
+ <div class="flex justify-between items-center mb-8">
71
+ <div class="flex items-center">
72
+ <img src="https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/items/poke-ball.png"
73
+ alt="Pokeball" class="w-12 h-12 mr-3 pokeball-spin">
74
+ <h1 class="text-3xl font-bold text-yellow-300">Pokémon Battle Pass</h1>
75
+ </div>
76
+ <div class="flex items-center bg-red-600 px-4 py-2 rounded-full">
77
+ <i class="fas fa-bolt mr-2 text-yellow-300"></i>
78
+ <span class="font-bold">Season 1: Kanto Journey</span>
79
+ </div>
80
+ </div>
81
+
82
+ <!-- Progress Bar -->
83
+ <div class="mb-8">
84
+ <div class="flex justify-between mb-2">
85
+ <span class="font-bold">Level 5</span>
86
+ <span class="font-bold">XP: 1,250/2,000</span>
87
+ </div>
88
+ <div class="w-full bg-gray-700 rounded-full h-4">
89
+ <div class="bg-gradient-to-r from-yellow-400 to-yellow-600 h-4 rounded-full" style="width: 62.5%"></div>
90
+ </div>
91
+ </div>
92
+
93
+ <!-- Battle Pass Levels -->
94
+ <div class="relative">
95
+ <div class="battle-pass-container overflow-x-auto whitespace-nowrap py-4 px-2" style="scroll-snap-type: x mandatory;">
96
+ <!-- Level 1 -->
97
+ <div class="level-item unlocked inline-block w-48 h-64 mx-2 bg-gradient-to-b from-blue-800 to-blue-600 rounded-xl p-4 text-center border-2 border-yellow-400" style="scroll-snap-align: start;">
98
+ <div class="bg-white rounded-full w-16 h-16 mx-auto mb-2 flex items-center justify-center">
99
+ <span class="text-2xl font-bold text-blue-800">1</span>
100
+ </div>
101
+ <div class="bg-white rounded-lg p-2 mb-3">
102
+ <img src="https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/1.png"
103
+ alt="Bulbasaur" class="w-24 h-24 mx-auto">
104
+ </div>
105
+ <h3 class="font-bold text-lg mb-1">Bulbasaur</h3>
106
+ <span class="type-grass text-xs font-bold px-2 py-1 rounded-full">Grass</span>
107
+ <span class="type-poison text-xs font-bold px-2 py-1 rounded-full ml-1">Poison</span>
108
+ <div class="mt-2">
109
+ <span class="text-yellow-300"><i class="fas fa-check-circle"></i> Unlocked</span>
110
+ </div>
111
+ </div>
112
+
113
+ <!-- Level 2 -->
114
+ <div class="level-item unlocked inline-block w-48 h-64 mx-2 bg-gradient-to-b from-blue-800 to-blue-600 rounded-xl p-4 text-center border-2 border-yellow-400" style="scroll-snap-align: start;">
115
+ <div class="bg-white rounded-full w-16 h-16 mx-auto mb-2 flex items-center justify-center">
116
+ <span class="text-2xl font-bold text-blue-800">2</span>
117
+ </div>
118
+ <div class="bg-white rounded-lg p-2 mb-3">
119
+ <img src="https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/4.png"
120
+ alt="Charmander" class="w-24 h-24 mx-auto">
121
+ </div>
122
+ <h3 class="font-bold text-lg mb-1">Charmander</h3>
123
+ <span class="type-fire text-xs font-bold px-2 py-1 rounded-full">Fire</span>
124
+ <div class="mt-2">
125
+ <span class="text-yellow-300"><i class="fas fa-check-circle"></i> Unlocked</span>
126
+ </div>
127
+ </div>
128
+
129
+ <!-- Level 3 -->
130
+ <div class="level-item unlocked inline-block w-48 h-64 mx-2 bg-gradient-to-b from-blue-800 to-blue-600 rounded-xl p-4 text-center border-2 border-yellow-400" style="scroll-snap-align: start;">
131
+ <div class="bg-white rounded-full w-16 h-16 mx-auto mb-2 flex items-center justify-center">
132
+ <span class="text-2xl font-bold text-blue-800">3</span>
133
+ </div>
134
+ <div class="bg-white rounded-lg p-2 mb-3">
135
+ <img src="https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/7.png"
136
+ alt="Squirtle" class="w-24 h-24 mx-auto">
137
+ </div>
138
+ <h3 class="font-bold text-lg mb-1">Squirtle</h3>
139
+ <span class="type-water text-xs font-bold px-2 py-1 rounded-full">Water</span>
140
+ <div class="mt-2">
141
+ <span class="text-yellow-300"><i class="fas fa-check-circle"></i> Unlocked</span>
142
+ </div>
143
+ </div>
144
+
145
+ <!-- Level 4 -->
146
+ <div class="level-item unlocked inline-block w-48 h-64 mx-2 bg-gradient-to-b from-blue-800 to-blue-600 rounded-xl p-4 text-center border-2 border-yellow-400" style="scroll-snap-align: start;">
147
+ <div class="bg-white rounded-full w-16 h-16 mx-auto mb-2 flex items-center justify-center">
148
+ <span class="text-2xl font-bold text-blue-800">4</span>
149
+ </div>
150
+ <div class="bg-white rounded-lg p-2 mb-3">
151
+ <img src="https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/25.png"
152
+ alt="Pikachu" class="w-24 h-24 mx-auto">
153
+ </div>
154
+ <h3 class="font-bold text-lg mb-1">Pikachu</h3>
155
+ <span class="type-electric text-xs font-bold px-2 py-1 rounded-full">Electric</span>
156
+ <div class="mt-2">
157
+ <span class="text-yellow-300"><i class="fas fa-check-circle"></i> Unlocked</span>
158
+ </div>
159
+ </div>
160
+
161
+ <!-- Level 5 (Current Level) -->
162
+ <div class="level-item unlocked inline-block w-48 h-64 mx-2 bg-gradient-to-b from-blue-800 to-blue-600 rounded-xl p-4 text-center border-4 border-yellow-400" style="scroll-snap-align: start;">
163
+ <div class="bg-white rounded-full w-16 h-16 mx-auto mb-2 flex items-center justify-center">
164
+ <span class="text-2xl font-bold text-blue-800">5</span>
165
+ </div>
166
+ <div class="bg-white rounded-lg p-2 mb-3">
167
+ <img src="https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/133.png"
168
+ alt="Eevee" class="w-24 h-24 mx-auto">
169
+ </div>
170
+ <h3 class="font-bold text-lg mb-1">Eevee</h3>
171
+ <span class="type-normal text-xs font-bold px-2 py-1 rounded-full">Normal</span>
172
+ <div class="mt-2">
173
+ <span class="text-yellow-300"><i class="fas fa-check-circle"></i> Unlocked</span>
174
+ </div>
175
+ </div>
176
+
177
+ <!-- Level 6 (Locked) -->
178
+ <div class="level-item locked inline-block w-48 h-64 mx-2 bg-gradient-to-b from-gray-700 to-gray-600 rounded-xl p-4 text-center border-2 border-gray-500" style="scroll-snap-align: start;">
179
+ <div class="bg-gray-400 rounded-full w-16 h-16 mx-auto mb-2 flex items-center justify-center">
180
+ <span class="text-2xl font-bold text-gray-700">6</span>
181
+ </div>
182
+ <div class="bg-gray-300 rounded-lg p-2 mb-3 relative">
183
+ <img src="https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/147.png"
184
+ alt="Dratini" class="w-24 h-24 mx-auto">
185
+ <div class="absolute inset-0 bg-black bg-opacity-50 flex items-center justify-center">
186
+ <i class="fas fa-lock text-white text-2xl"></i>
187
+ </div>
188
+ </div>
189
+ <h3 class="font-bold text-lg mb-1">Dratini</h3>
190
+ <span class="type-dragon text-xs font-bold px-2 py-1 rounded-full">Dragon</span>
191
+ <div class="mt-2">
192
+ <span class="text-gray-400">1,750 XP needed</span>
193
+ </div>
194
+ </div>
195
+
196
+ <!-- Level 7 (Locked) -->
197
+ <div class="level-item locked inline-block w-48 h-64 mx-2 bg-gradient-to-b from-gray-700 to-gray-600 rounded-xl p-4 text-center border-2 border-gray-500" style="scroll-snap-align: start;">
198
+ <div class="bg-gray-400 rounded-full w-16 h-16 mx-auto mb-2 flex items-center justify-center">
199
+ <span class="text-2xl font-bold text-gray-700">7</span>
200
+ </div>
201
+ <div class="bg-gray-300 rounded-lg p-2 mb-3 relative">
202
+ <img src="https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/150.png"
203
+ alt="Mewtwo" class="w-24 h-24 mx-auto">
204
+ <div class="absolute inset-0 bg-black bg-opacity-50 flex items-center justify-center">
205
+ <i class="fas fa-lock text-white text-2xl"></i>
206
+ </div>
207
+ </div>
208
+ <h3 class="font-bold text-lg mb-1">Mewtwo</h3>
209
+ <span class="type-psychic text-xs font-bold px-2 py-1 rounded-full">Psychic</span>
210
+ <div class="mt-2">
211
+ <span class="text-gray-400">2,500 XP needed</span>
212
+ </div>
213
+ </div>
214
+
215
+ <!-- Level 8 (Locked) -->
216
+ <div class="level-item locked inline-block w-48 h-64 mx-2 bg-gradient-to-b from-gray-700 to-gray-600 rounded-xl p-4 text-center border-2 border-gray-500" style="scroll-snap-align: start;">
217
+ <div class="bg-gray-400 rounded-full w-16 h-16 mx-auto mb-2 flex items-center justify-center">
218
+ <span class="text-2xl font-bold text-gray-700">8</span>
219
+ </div>
220
+ <div class="bg-gray-300 rounded-lg p-2 mb-3 relative">
221
+ <img src="https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/151.png"
222
+ alt="Mew" class="w-24 h-24 mx-auto">
223
+ <div class="absolute inset-0 bg-black bg-opacity-50 flex items-center justify-center">
224
+ <i class="fas fa-lock text-white text-2xl"></i>
225
+ </div>
226
+ </div>
227
+ <h3 class="font-bold text-lg mb-1">Mew</h3>
228
+ <span class="type-psychic text-xs font-bold px-2 py-1 rounded-full">Psychic</span>
229
+ <div class="mt-2">
230
+ <span class="text-gray-400">3,500 XP needed</span>
231
+ </div>
232
+ </div>
233
+
234
+ <!-- Level 9 (Locked) -->
235
+ <div class="level-item locked inline-block w-48 h-64 mx-2 bg-gradient-to-b from-gray-700 to-gray-600 rounded-xl p-4 text-center border-2 border-gray-500" style="scroll-snap-align: start;">
236
+ <div class="bg-gray-400 rounded-full w-16 h-16 mx-auto mb-2 flex items-center justify-center">
237
+ <span class="text-2xl font-bold text-gray-700">9</span>
238
+ </div>
239
+ <div class="bg-gray-300 rounded-lg p-2 mb-3 relative">
240
+ <img src="https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/144.png"
241
+ alt="Articuno" class="w-24 h-24 mx-auto">
242
+ <div class="absolute inset-0 bg-black bg-opacity-50 flex items-center justify-center">
243
+ <i class="fas fa-lock text-white text-2xl"></i>
244
+ </div>
245
+ </div>
246
+ <h3 class="font-bold text-lg mb-1">Articuno</h3>
247
+ <span class="type-ice text-xs font-bold px-2 py-1 rounded-full">Ice</span>
248
+ <span class="type-flying text-xs font-bold px-2 py-1 rounded-full ml-1">Flying</span>
249
+ <div class="mt-2">
250
+ <span class="text-gray-400">5,000 XP needed</span>
251
+ </div>
252
+ </div>
253
+
254
+ <!-- Level 10 (Locked) -->
255
+ <div class="level-item locked inline-block w-48 h-64 mx-2 bg-gradient-to-b from-gray-700 to-gray-600 rounded-xl p-4 text-center border-2 border-gray-500" style="scroll-snap-align: start;">
256
+ <div class="bg-gray-400 rounded-full w-16 h-16 mx-auto mb-2 flex items-center justify-center">
257
+ <span class="text-2xl font-bold text-gray-700">10</span>
258
+ </div>
259
+ <div class="bg-gray-300 rounded-lg p-2 mb-3 relative">
260
+ <img src="https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/149.png"
261
+ alt="Dragonite" class="w-24 h-24 mx-auto">
262
+ <div class="absolute inset-0 bg-black bg-opacity-50 flex items-center justify-center">
263
+ <i class="fas fa-lock text-white text-2xl"></i>
264
+ </div>
265
+ </div>
266
+ <h3 class="font-bold text-lg mb-1">Dragonite</h3>
267
+ <span class="type-dragon text-xs font-bold px-2 py-1 rounded-full">Dragon</span>
268
+ <span class="type-flying text-xs font-bold px-2 py-1 rounded-full ml-1">Flying</span>
269
+ <div class="mt-2">
270
+ <span class="text-gray-400">7,500 XP needed</span>
271
+ </div>
272
+ </div>
273
+ </div>
274
+
275
+ <!-- Navigation Arrows -->
276
+ <button class="absolute left-0 top-1/2 transform -translate-y-1/2 bg-black bg-opacity-50 text-white p-3 rounded-full z-10">
277
+ <i class="fas fa-chevron-left"></i>
278
+ </button>
279
+ <button class="absolute right-0 top-1/2 transform -translate-y-1/2 bg-black bg-opacity-50 text-white p-3 rounded-full z-10">
280
+ <i class="fas fa-chevron-right"></i>
281
+ </button>
282
+ </div>
283
+
284
+ <!-- Premium Pass -->
285
+ <div class="mt-12 bg-gradient-to-r from-purple-800 to-indigo-800 rounded-xl p-6 shadow-lg">
286
+ <div class="flex justify-between items-center mb-4">
287
+ <h2 class="text-2xl font-bold text-yellow-300">Premium Battle Pass</h2>
288
+ <span class="bg-yellow-500 text-black px-3 py-1 rounded-full text-sm font-bold">Unlock Now</span>
289
+ </div>
290
+ <p class="mb-4">Upgrade to unlock exclusive Pokémon, items, and rewards at each level!</p>
291
+
292
+ <div class="grid grid-cols-3 gap-4">
293
+ <div class="bg-black bg-opacity-30 p-3 rounded-lg text-center">
294
+ <img src="https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/150.png"
295
+ alt="Mewtwo" class="w-16 h-16 mx-auto mb-2">
296
+ <p class="text-sm">Shiny Mewtwo</p>
297
+ </div>
298
+ <div class="bg-black bg-opacity-30 p-3 rounded-lg text-center">
299
+ <img src="https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/151.png"
300
+ alt="Mew" class="w-16 h-16 mx-auto mb-2">
301
+ <p class="text-sm">Shiny Mew</p>
302
+ </div>
303
+ <div class="bg-black bg-opacity-30 p-3 rounded-lg text-center">
304
+ <img src="https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/items/master-ball.png"
305
+ alt="Master Ball" class="w-16 h-16 mx-auto mb-2">
306
+ <p class="text-sm">5 Master Balls</p>
307
+ </div>
308
+ </div>
309
+ </div>
310
+
311
+ <!-- XP Boosters -->
312
+ <div class="mt-8">
313
+ <h2 class="text-xl font-bold mb-4">Earn XP Faster</h2>
314
+ <div class="grid grid-cols-3 gap-4">
315
+ <div class="bg-blue-800 bg-opacity-50 p-3 rounded-lg text-center">
316
+ <i class="fas fa-trophy text-yellow-400 text-3xl mb-2"></i>
317
+ <h3 class="font-bold">Win Battles</h3>
318
+ <p class="text-sm">+100 XP per win</p>
319
+ </div>
320
+ <div class="bg-blue-800 bg-opacity-50 p-3 rounded-lg text-center">
321
+ <i class="fas fa-flag text-green-400 text-3xl mb-2"></i>
322
+ <h3 class="font-bold">Daily Quests</h3>
323
+ <p class="text-sm">Complete for bonus XP</p>
324
+ </div>
325
+ <div class="bg-blue-800 bg-opacity-50 p-3 rounded-lg text-center">
326
+ <i class="fas fa-bolt text-red-400 text-3xl mb-2"></i>
327
+ <h3 class="font-bold">XP Boosts</h3>
328
+ <p class="text-sm">2x XP weekends</p>
329
+ </div>
330
+ </div>
331
+ </div>
332
+ </div>
333
+
334
+ <script>
335
+ // Simple horizontal scroll functionality
336
+ document.addEventListener('DOMContentLoaded', function() {
337
+ const container = document.querySelector('.battle-pass-container');
338
+ const leftBtn = document.querySelector('button:first-of-type');
339
+ const rightBtn = document.querySelector('button:last-of-type');
340
+
341
+ leftBtn.addEventListener('click', () => {
342
+ container.scrollBy({ left: -300, behavior: 'smooth' });
343
+ });
344
+
345
+ rightBtn.addEventListener('click', () => {
346
+ container.scrollBy({ left: 300, behavior: 'smooth' });
347
+ });
348
+
349
+ // Highlight current level (level 5 in this example)
350
+ const levels = document.querySelectorAll('.level-item');
351
+ levels[4].classList.add('ring-4', 'ring-yellow-400');
352
+ });
353
+ </script>
354
+ <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=Denoria/p-bp" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
355
+ </html>
prompts.txt ADDED
@@ -0,0 +1 @@
 
 
1
+ create a battle pass for me for a pokemon like game where you unlock new pokemon with each level. the battle pass should be scrollable horizontally and it should be pokemon themed.