tongxiaojun commited on
Commit
0616a13
·
verified ·
1 Parent(s): 7c0ae8f

Add 3 files

Browse files
Files changed (3) hide show
  1. README.md +7 -5
  2. index.html +499 -19
  3. prompts.txt +1 -0
README.md CHANGED
@@ -1,10 +1,12 @@
1
  ---
2
- title: Mume
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: mume
3
+ emoji: 🐳
4
+ colorFrom: purple
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,499 @@
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>Mume - Where Memes Meet Music</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
+ @import url('https://fonts.googleapis.com/css2?family=Comic+Neue:wght@400;700&family=Poppins:wght@300;600;900&display=swap');
11
+
12
+ body {
13
+ font-family: 'Poppins', sans-serif;
14
+ background-color: #f0f9ff;
15
+ color: #0c4a6e;
16
+ }
17
+
18
+ .comic-font {
19
+ font-family: 'Comic Neue', cursive;
20
+ }
21
+
22
+ .gradient-bg {
23
+ background: linear-gradient(135deg, #38bdf8 0%, #0ea5e9 50%, #0284c7 100%);
24
+ }
25
+
26
+ .meme-card:hover {
27
+ transform: rotate(2deg) scale(1.03);
28
+ box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
29
+ }
30
+
31
+ .music-wave {
32
+ height: 40px;
33
+ display: flex;
34
+ align-items: center;
35
+ justify-content: space-around;
36
+ }
37
+
38
+ .music-wave div {
39
+ width: 3px;
40
+ height: 10px;
41
+ background: #0ea5e9;
42
+ animation: wave 1s linear infinite;
43
+ border-radius: 20px;
44
+ }
45
+
46
+ .music-wave div:nth-child(2) {
47
+ animation-delay: 0.1s;
48
+ }
49
+
50
+ .music-wave div:nth-child(3) {
51
+ animation-delay: 0.2s;
52
+ }
53
+
54
+ .music-wave div:nth-child(4) {
55
+ animation-delay: 0.3s;
56
+ }
57
+
58
+ .music-wave div:nth-child(5) {
59
+ animation-delay: 0.4s;
60
+ }
61
+
62
+ @keyframes wave {
63
+ 0% {
64
+ height: 10px;
65
+ }
66
+ 50% {
67
+ height: 30px;
68
+ }
69
+ 100% {
70
+ height: 10px;
71
+ }
72
+ }
73
+
74
+ .pulse {
75
+ animation: pulse 2s infinite;
76
+ }
77
+
78
+ @keyframes pulse {
79
+ 0% {
80
+ transform: scale(1);
81
+ }
82
+ 50% {
83
+ transform: scale(1.05);
84
+ }
85
+ 100% {
86
+ transform: scale(1);
87
+ }
88
+ }
89
+ </style>
90
+ </head>
91
+ <body>
92
+ <!-- Navigation -->
93
+ <nav class="gradient-bg text-white shadow-lg">
94
+ <div class="container mx-auto px-6 py-4">
95
+ <div class="flex items-center justify-between">
96
+ <div class="flex items-center space-x-4">
97
+ <i class="fas fa-music text-2xl"></i>
98
+ <h1 class="text-2xl font-bold comic-font">Mume</h1>
99
+ </div>
100
+ <div class="hidden md:flex items-center space-x-8">
101
+ <a href="#" class="hover:text-blue-200 transition">Home</a>
102
+ <a href="#" class="hover:text-blue-200 transition">Trending</a>
103
+ <a href="#" class="hover:text-blue-200 transition">Create</a>
104
+ <a href="#" class="hover:text-blue-200 transition">About</a>
105
+ </div>
106
+ <div class="md:hidden">
107
+ <button class="text-white focus:outline-none">
108
+ <i class="fas fa-bars text-2xl"></i>
109
+ </button>
110
+ </div>
111
+ </div>
112
+ </div>
113
+ </nav>
114
+
115
+ <!-- Hero Section -->
116
+ <section class="gradient-bg text-white py-20">
117
+ <div class="container mx-auto px-6 text-center">
118
+ <h1 class="text-5xl md:text-6xl font-bold mb-6 comic-font">Welcome to Mume</h1>
119
+ <p class="text-xl md:text-2xl mb-8">Where every meme comes with its own unique soundtrack!</p>
120
+ <div class="max-w-2xl mx-auto bg-white bg-opacity-20 rounded-full p-1 mb-8">
121
+ <div class="flex items-center justify-between px-4">
122
+ <span class="text-sm truncate">8yBMUjuf2B5pKcLXwr2NBDMnoc8voRkh3XFW8eoYWWiZ</span>
123
+ <button class="bg-white text-blue-600 px-4 py-2 rounded-full text-sm font-bold ml-2 hover:bg-blue-100 transition">
124
+ <i class="fas fa-copy mr-1"></i> Copy
125
+ </button>
126
+ </div>
127
+ </div>
128
+ <div class="flex flex-col md:flex-row justify-center items-center space-y-4 md:space-y-0 md:space-x-4">
129
+ <button class="bg-white text-blue-600 px-8 py-3 rounded-full font-bold hover:bg-blue-100 transition flex items-center pulse">
130
+ <i class="fas fa-plus-circle mr-2"></i> Create Mume
131
+ </button>
132
+ <button class="bg-transparent border-2 border-white text-white px-8 py-3 rounded-full font-bold hover:bg-white hover:text-blue-600 transition flex items-center">
133
+ <i class="fas fa-headphones mr-2"></i> Explore
134
+ </button>
135
+ </div>
136
+ </div>
137
+ </section>
138
+
139
+ <!-- How It Works -->
140
+ <section class="py-16 bg-white">
141
+ <div class="container mx-auto px-6">
142
+ <h2 class="text-3xl font-bold text-center mb-12">How Mume Works</h2>
143
+ <div class="grid grid-cols-1 md:grid-cols-3 gap-8">
144
+ <div class="bg-blue-50 p-6 rounded-xl text-center">
145
+ <div class="bg-blue-100 w-16 h-16 mx-auto rounded-full flex items-center justify-center mb-4">
146
+ <i class="fas fa-image text-blue-600 text-2xl"></i>
147
+ </div>
148
+ <h3 class="text-xl font-bold mb-2">1. Upload Your Meme</h3>
149
+ <p class="text-gray-600">Share your funniest, weirdest, or most relatable meme image or video.</p>
150
+ </div>
151
+ <div class="bg-blue-50 p-6 rounded-xl text-center">
152
+ <div class="bg-blue-100 w-16 h-16 mx-auto rounded-full flex items-center justify-center mb-4">
153
+ <i class="fas fa-music text-blue-600 text-2xl"></i>
154
+ </div>
155
+ <h3 class="text-xl font-bold mb-2">2. Create Matching Music</h3>
156
+ <p class="text-gray-600">Our AI generates a unique soundtrack that perfectly matches your meme's vibe.</p>
157
+ </div>
158
+ <div class="bg-blue-50 p-6 rounded-xl text-center">
159
+ <div class="bg-blue-100 w-16 h-16 mx-auto rounded-full flex items-center justify-center mb-4">
160
+ <i class="fas fa-share-alt text-blue-600 text-2xl"></i>
161
+ </div>
162
+ <h3 class="text-xl font-bold mb-2">3. Share & Earn</h3>
163
+ <p class="text-gray-600">Share your Mume creation and earn cryptocurrency when it goes viral!</p>
164
+ </div>
165
+ </div>
166
+ </div>
167
+ </section>
168
+
169
+ <!-- Trending Mumies -->
170
+ <section class="py-16 bg-blue-50">
171
+ <div class="container mx-auto px-6">
172
+ <h2 class="text-3xl font-bold text-center mb-4">Trending Mumies</h2>
173
+ <p class="text-center text-gray-600 mb-12">The hottest meme+music combos right now</p>
174
+
175
+ <div class="grid grid-cols-1 sm:grid-cols-2 lg:grid-cols-3 gap-8">
176
+ <!-- Mume Card 1 -->
177
+ <div class="bg-white rounded-xl overflow-hidden shadow-md transition duration-300 meme-card">
178
+ <div class="relative">
179
+ <img src="https://i.imgflip.com/7q3rko.jpg" alt="Distracted Boyfriend Meme" class="w-full h-64 object-cover">
180
+ <div class="absolute bottom-0 left-0 right-0 bg-gradient-to-t from-black to-transparent p-4">
181
+ <div class="music-wave">
182
+ <div></div>
183
+ <div></div>
184
+ <div></div>
185
+ <div></div>
186
+ <div></div>
187
+ </div>
188
+ </div>
189
+ </div>
190
+ <div class="p-6">
191
+ <h3 class="text-xl font-bold mb-2">Distracted Groove</h3>
192
+ <p class="text-gray-600 mb-4">That moment when the music hits just right</p>
193
+ <div class="flex justify-between items-center">
194
+ <div class="flex items-center space-x-2">
195
+ <i class="fas fa-heart text-red-500"></i>
196
+ <span>12.4K</span>
197
+ </div>
198
+ <button class="bg-blue-100 text-blue-600 px-4 py-2 rounded-full text-sm font-bold hover:bg-blue-200 transition">
199
+ <i class="fas fa-play mr-1"></i> Play
200
+ </button>
201
+ </div>
202
+ </div>
203
+ </div>
204
+
205
+ <!-- Mume Card 2 -->
206
+ <div class="bg-white rounded-xl overflow-hidden shadow-md transition duration-300 meme-card">
207
+ <div class="relative">
208
+ <img src="https://i.imgflip.com/4/1bij.jpg" alt="One Does Not Simply Meme" class="w-full h-64 object-cover">
209
+ <div class="absolute bottom-0 left-0 right-0 bg-gradient-to-t from-black to-transparent p-4">
210
+ <div class="music-wave">
211
+ <div></div>
212
+ <div></div>
213
+ <div></div>
214
+ <div></div>
215
+ <div></div>
216
+ </div>
217
+ </div>
218
+ </div>
219
+ <div class="p-6">
220
+ <h3 class="text-xl font-bold mb-2">Epic Walk</h3>
221
+ <p class="text-gray-600 mb-4">When you enter the room with confidence</p>
222
+ <div class="flex justify-between items-center">
223
+ <div class="flex items-center space-x-2">
224
+ <i class="fas fa-heart text-red-500"></i>
225
+ <span>9.7K</span>
226
+ </div>
227
+ <button class="bg-blue-100 text-blue-600 px-4 py-2 rounded-full text-sm font-bold hover:bg-blue-200 transition">
228
+ <i class="fas fa-play mr-1"></i> Play
229
+ </button>
230
+ </div>
231
+ </div>
232
+ </div>
233
+
234
+ <!-- Mume Card 3 -->
235
+ <div class="bg-white rounded-xl overflow-hidden shadow-md transition duration-300 meme-card">
236
+ <div class="relative">
237
+ <img src="https://i.imgflip.com/4/1g8my.jpg" alt="Doge Meme" class="w-full h-64 object-cover">
238
+ <div class="absolute bottom-0 left-0 right-0 bg-gradient-to-t from-black to-transparent p-4">
239
+ <div class="music-wave">
240
+ <div></div>
241
+ <div></div>
242
+ <div></div>
243
+ <div></div>
244
+ <div></div>
245
+ </div>
246
+ </div>
247
+ </div>
248
+ <div class="p-6">
249
+ <h3 class="text-xl font-bold mb-2">Doge Beats</h3>
250
+ <p class="text-gray-600 mb-4">Such music. Very wow. Much vibe.</p>
251
+ <div class="flex justify-between items-center">
252
+ <div class="flex items-center space-x-2">
253
+ <i class="fas fa-heart text-red-500"></i>
254
+ <span>15.2K</span>
255
+ </div>
256
+ <button class="bg-blue-100 text-blue-600 px-4 py-2 rounded-full text-sm font-bold hover:bg-blue-200 transition">
257
+ <i class="fas fa-play mr-1"></i> Play
258
+ </button>
259
+ </div>
260
+ </div>
261
+ </div>
262
+ </div>
263
+
264
+ <div class="text-center mt-12">
265
+ <button class="bg-blue-600 text-white px-8 py-3 rounded-full font-bold hover:bg-blue-700 transition">
266
+ Load More Mumies <i class="fas fa-arrow-down ml-2"></i>
267
+ </button>
268
+ </div>
269
+ </div>
270
+ </section>
271
+
272
+ <!-- Create Section -->
273
+ <section class="py-16 bg-white">
274
+ <div class="container mx-auto px-6">
275
+ <div class="flex flex-col md:flex-row items-center">
276
+ <div class="md:w-1/2 mb-8 md:mb-0 md:pr-8">
277
+ <h2 class="text-3xl font-bold mb-4">Create Your Own Mume</h2>
278
+ <p class="text-gray-600 mb-6">Turn your favorite memes into musical masterpieces with our easy-to-use creator tool.</p>
279
+ <ul class="space-y-3 mb-8">
280
+ <li class="flex items-start">
281
+ <i class="fas fa-check-circle text-green-500 mt-1 mr-2"></i>
282
+ <span>AI-powered music generation</span>
283
+ </li>
284
+ <li class="flex items-start">
285
+ <i class="fas fa-check-circle text-green-500 mt-1 mr-2"></i>
286
+ <span>Customizable beats and styles</span>
287
+ </li>
288
+ <li class="flex items-start">
289
+ <i class="fas fa-check-circle text-green-500 mt-1 mr-2"></i>
290
+ <span>Earn cryptocurrency for viral creations</span>
291
+ </li>
292
+ </ul>
293
+ <button class="bg-blue-600 text-white px-8 py-3 rounded-full font-bold hover:bg-blue-700 transition flex items-center">
294
+ <i class="fas fa-magic mr-2"></i> Start Creating
295
+ </button>
296
+ </div>
297
+ <div class="md:w-1/2">
298
+ <div class="bg-blue-50 rounded-xl p-6 border-2 border-dashed border-blue-200 text-center">
299
+ <i class="fas fa-cloud-upload-alt text-blue-400 text-5xl mb-4"></i>
300
+ <h3 class="text-xl font-bold mb-2">Drop your meme here</h3>
301
+ <p class="text-gray-600 mb-4">Or click to browse your files</p>
302
+ <div class="bg-white p-4 rounded-lg mb-4">
303
+ <div class="flex justify-between items-center mb-2">
304
+ <span class="text-sm font-medium">Music Style</span>
305
+ <div class="relative">
306
+ <select class="bg-blue-50 border border-blue-200 text-blue-700 text-sm rounded-lg px-3 py-1 focus:ring-blue-500 focus:border-blue-500">
307
+ <option>Auto-detect</option>
308
+ <option>Epic</option>
309
+ <option>Funky</option>
310
+ <option>Chill</option>
311
+ <option>Hype</option>
312
+ </select>
313
+ </div>
314
+ </div>
315
+ <div class="h-2 bg-blue-200 rounded-full overflow-hidden">
316
+ <div class="h-full bg-blue-500 rounded-full" style="width: 70%"></div>
317
+ </div>
318
+ <div class="text-xs text-gray-500 mt-1">Matching intensity: 85%</div>
319
+ </div>
320
+ <button class="bg-blue-100 text-blue-600 px-6 py-2 rounded-full text-sm font-bold hover:bg-blue-200 transition">
321
+ <i class="fas fa-music mr-1"></i> Preview Music
322
+ </button>
323
+ </div>
324
+ </div>
325
+ </div>
326
+ </div>
327
+ </section>
328
+
329
+ <!-- About Section -->
330
+ <section class="py-16 bg-blue-900 text-white">
331
+ <div class="container mx-auto px-6">
332
+ <div class="flex flex-col md:flex-row">
333
+ <div class="md:w-1/2 mb-8 md:mb-0">
334
+ <h2 class="text-3xl font-bold mb-4">About Mume</h2>
335
+ <p class="mb-4">Mume is revolutionizing meme culture by combining visual humor with personalized soundtracks. We believe every meme has its own unique rhythm and vibe.</p>
336
+ <p>Our platform uses advanced AI to analyze your meme's content, context, and emotional tone to generate the perfect accompanying music.</p>
337
+ </div>
338
+ <div class="md:w-1/2 md:pl-12">
339
+ <h3 class="text-xl font-bold mb-4">Crypto Integration</h3>
340
+ <div class="bg-blue-800 p-6 rounded-lg mb-4">
341
+ <div class="flex items-center mb-2">
342
+ <i class="fas fa-wallet text-blue-300 mr-2"></i>
343
+ <span class="font-medium">Wallet Address:</span>
344
+ </div>
345
+ <div class="bg-blue-900 p-3 rounded text-sm font-mono break-all mb-3">
346
+ 8yBMUjuf2B5pKcLXwr2NBDMnoc8voRkh3XFW8eoYWWiZ
347
+ </div>
348
+ <p class="text-sm text-blue-200">Use this address to receive payments for your viral Mume creations or to support your favorite creators.</p>
349
+ </div>
350
+ <div class="flex space-x-4">
351
+ <button class="bg-white text-blue-900 px-4 py-2 rounded-full text-sm font-bold hover:bg-blue-100 transition flex items-center">
352
+ <i class="fab fa-bitcoin mr-1"></i> Buy Crypto
353
+ </button>
354
+ <button class="bg-transparent border border-white text-white px-4 py-2 rounded-full text-sm font-bold hover:bg-white hover:text-blue-900 transition flex items-center">
355
+ <i class="fas fa-qrcode mr-1"></i> Show QR
356
+ </button>
357
+ </div>
358
+ </div>
359
+ </div>
360
+ </div>
361
+ </section>
362
+
363
+ <!-- Footer -->
364
+ <footer class="bg-gray-900 text-white py-12">
365
+ <div class="container mx-auto px-6">
366
+ <div class="grid grid-cols-1 md:grid-cols-4 gap-8">
367
+ <div>
368
+ <h3 class="text-xl font-bold mb-4 flex items-center">
369
+ <i class="fas fa-music mr-2"></i> Mume
370
+ </h3>
371
+ <p class="text-gray-400">Where memes meet music in perfect harmony.</p>
372
+ </div>
373
+ <div>
374
+ <h4 class="font-bold mb-4">Explore</h4>
375
+ <ul class="space-y-2">
376
+ <li><a href="#" class="text-gray-400 hover:text-white transition">Trending</a></li>
377
+ <li><a href="#" class="text-gray-400 hover:text-white transition">Categories</a></li>
378
+ <li><a href="#" class="text-gray-400 hover:text-white transition">Artists</a></li>
379
+ <li><a href="#" class="text-gray-400 hover:text-white transition">Challenges</a></li>
380
+ </ul>
381
+ </div>
382
+ <div>
383
+ <h4 class="font-bold mb-4">Company</h4>
384
+ <ul class="space-y-2">
385
+ <li><a href="#" class="text-gray-400 hover:text-white transition">About</a></li>
386
+ <li><a href="#" class="text-gray-400 hover:text-white transition">Careers</a></li>
387
+ <li><a href="#" class="text-gray-400 hover:text-white transition">Press</a></li>
388
+ <li><a href="#" class="text-gray-400 hover:text-white transition">Contact</a></li>
389
+ </ul>
390
+ </div>
391
+ <div>
392
+ <h4 class="font-bold mb-4">Connect</h4>
393
+ <div class="flex space-x-4 mb-4">
394
+ <a href="#" class="bg-gray-800 w-10 h-10 rounded-full flex items-center justify-center hover:bg-blue-600 transition">
395
+ <i class="fab fa-twitter"></i>
396
+ </a>
397
+ <a href="#" class="bg-gray-800 w-10 h-10 rounded-full flex items-center justify-center hover:bg-pink-600 transition">
398
+ <i class="fab fa-instagram"></i>
399
+ </a>
400
+ <a href="#" class="bg-gray-800 w-10 h-10 rounded-full flex items-center justify-center hover:bg-red-600 transition">
401
+ <i class="fab fa-youtube"></i>
402
+ </a>
403
+ <a href="#" class="bg-gray-800 w-10 h-10 rounded-full flex items-center justify-center hover:bg-blue-400 transition">
404
+ <i class="fab fa-discord"></i>
405
+ </a>
406
+ </div>
407
+ <p class="text-gray-400 text-sm">Subscribe to our newsletter</p>
408
+ <div class="flex mt-2">
409
+ <input type="email" placeholder="Your email" class="bg-gray-800 text-white px-4 py-2 rounded-l-full focus:outline-none w-full">
410
+ <button class="bg-blue-600 px-4 py-2 rounded-r-full hover:bg-blue-700 transition">
411
+ <i class="fas fa-paper-plane"></i>
412
+ </button>
413
+ </div>
414
+ </div>
415
+ </div>
416
+ <div class="border-t border-gray-800 mt-12 pt-8 flex flex-col md:flex-row justify-between items-center">
417
+ <p class="text-gray-500 text-sm mb-4 md:mb-0">© 2023 Mume. All rights reserved.</p>
418
+ <div class="flex space-x-6">
419
+ <a href="#" class="text-gray-500 hover:text-white transition text-sm">Terms</a>
420
+ <a href="#" class="text-gray-500 hover:text-white transition text-sm">Privacy</a>
421
+ <a href="#" class="text-gray-500 hover:text-white transition text-sm">Cookies</a>
422
+ </div>
423
+ </div>
424
+ </div>
425
+ </footer>
426
+
427
+ <!-- Audio Player (fixed at bottom) -->
428
+ <div class="fixed bottom-0 left-0 right-0 bg-white shadow-lg border-t border-gray-200 p-4 hidden" id="audioPlayer">
429
+ <div class="container mx-auto flex items-center justify-between">
430
+ <div class="flex items-center space-x-4 w-1/4">
431
+ <img src="https://i.imgflip.com/7q3rko.jpg" alt="Now Playing" class="w-12 h-12 rounded object-cover">
432
+ <div>
433
+ <h4 class="font-bold text-sm">Distracted Groove</h4>
434
+ <p class="text-gray-600 text-xs">@mumecreator</p>
435
+ </div>
436
+ </div>
437
+ <div class="flex items-center space-x-6 w-2/4 justify-center">
438
+ <button class="text-gray-700 hover:text-blue-600">
439
+ <i class="fas fa-step-backward"></i>
440
+ </button>
441
+ <button class="bg-blue-600 text-white w-10 h-10 rounded-full flex items-center justify-center hover:bg-blue-700">
442
+ <i class="fas fa-play"></i>
443
+ </button>
444
+ <button class="text-gray-700 hover:text-blue-600">
445
+ <i class="fas fa-step-forward"></i>
446
+ </button>
447
+ </div>
448
+ <div class="flex items-center space-x-4 w-1/4 justify-end">
449
+ <div class="music-wave">
450
+ <div></div>
451
+ <div></div>
452
+ <div></div>
453
+ <div></div>
454
+ <div></div>
455
+ </div>
456
+ <span class="text-gray-600 text-sm">1:24 / 3:45</span>
457
+ <button class="text-gray-700 hover:text-blue-600">
458
+ <i class="fas fa-volume-up"></i>
459
+ </button>
460
+ </div>
461
+ </div>
462
+ </div>
463
+
464
+ <script>
465
+ // Simple script to show the audio player when a play button is clicked
466
+ document.addEventListener('DOMContentLoaded', function() {
467
+ const playButtons = document.querySelectorAll('button:has(.fa-play)');
468
+ const audioPlayer = document.getElementById('audioPlayer');
469
+
470
+ playButtons.forEach(button => {
471
+ button.addEventListener('click', function() {
472
+ audioPlayer.classList.remove('hidden');
473
+
474
+ // Scroll to bottom to show the player
475
+ window.scrollTo({
476
+ top: document.body.scrollHeight,
477
+ behavior: 'smooth'
478
+ });
479
+ });
480
+ });
481
+
482
+ // Copy wallet address functionality
483
+ const copyButton = document.querySelector('button:has(.fa-copy)');
484
+ if(copyButton) {
485
+ copyButton.addEventListener('click', function() {
486
+ const walletAddress = '8yBMUjuf2B5pKcLXwr2NBDMnoc8voRkh3XFW8eoYWWiZ';
487
+ navigator.clipboard.writeText(walletAddress).then(() => {
488
+ const originalText = copyButton.innerHTML;
489
+ copyButton.innerHTML = '<i class="fas fa-check mr-1"></i> Copied!';
490
+ setTimeout(() => {
491
+ copyButton.innerHTML = originalText;
492
+ }, 2000);
493
+ });
494
+ });
495
+ }
496
+ });
497
+ </script>
498
+ <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=tongxiaojun/mume" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
499
+ </html>
prompts.txt ADDED
@@ -0,0 +1 @@
 
 
1
+ 创建一个MEME网站,Meme代号Mume,地址: 8yBMUjuf2B5pKcLXwr2NBDMnoc8voRkh3XFW8eoYWWiZ , 意思是每个Meme都需要创建一个Music。