Bujurocks commited on
Commit
792d2c9
·
verified ·
1 Parent(s): e8ac40e

Add 3 files

Browse files
Files changed (3) hide show
  1. README.md +7 -5
  2. index.html +455 -19
  3. prompts.txt +5 -0
README.md CHANGED
@@ -1,10 +1,12 @@
1
  ---
2
- title: Hybe
3
- emoji: 🏢
4
- colorFrom: indigo
5
- colorTo: pink
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: hybe
3
+ emoji: 🐳
4
+ colorFrom: pink
5
+ colorTo: red
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,455 @@
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>HYBE | Genius</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=Inter:wght@300;400;500;600;700&display=swap');
11
+
12
+ body {
13
+ font-family: 'Inter', sans-serif;
14
+ background-color: #f8f8f8;
15
+ }
16
+
17
+ .gradient-bg {
18
+ background: linear-gradient(180deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0) 100%);
19
+ }
20
+
21
+ .artist-header {
22
+ background-size: cover;
23
+ background-position: center;
24
+ }
25
+
26
+ .song-item:hover {
27
+ background-color: rgba(0,0,0,0.05);
28
+ }
29
+
30
+ .tab-active {
31
+ border-bottom: 3px solid #ff2d55;
32
+ color: #ff2d55;
33
+ font-weight: 600;
34
+ }
35
+
36
+ .play-button {
37
+ background-color: #ff2d55;
38
+ transition: all 0.2s ease;
39
+ }
40
+
41
+ .play-button:hover {
42
+ transform: scale(1.05);
43
+ background-color: #e61e40;
44
+ }
45
+
46
+ .dropdown:hover .dropdown-menu {
47
+ display: block;
48
+ }
49
+
50
+ .sidebar-video {
51
+ position: sticky;
52
+ top: 100px;
53
+ }
54
+
55
+ @media (max-width: 1024px) {
56
+ .sidebar-video {
57
+ display: none;
58
+ }
59
+ }
60
+
61
+ .buju-card {
62
+ background: linear-gradient(135deg, #1e3a8a 0%, #7c3aed 100%);
63
+ color: white;
64
+ border-radius: 12px;
65
+ overflow: hidden;
66
+ transition: transform 0.3s ease;
67
+ }
68
+
69
+ .buju-card:hover {
70
+ transform: translateY(-5px);
71
+ }
72
+
73
+ .callnomore-card {
74
+ background: linear-gradient(135deg, #4338ca 0%, #7c3aed 100%);
75
+ color: white;
76
+ border-radius: 12px;
77
+ overflow: hidden;
78
+ transition: transform 0.3s ease;
79
+ }
80
+
81
+ .callnomore-card:hover {
82
+ transform: translateY(-5px);
83
+ }
84
+ </style>
85
+ </head>
86
+ <body class="text-gray-900">
87
+ <!-- Navigation -->
88
+ <nav class="bg-white shadow-sm sticky top-0 z-50">
89
+ <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
90
+ <div class="flex justify-between h-16">
91
+ <div class="flex items-center">
92
+ <a href="#" class="flex-shrink-0 flex items-center">
93
+ <img class="h-8 w-auto" src="https://assets.genius.com/images/apple-touch-icon.png" alt="Genius">
94
+ <span class="ml-2 text-xl font-bold">Genius</span>
95
+ </a>
96
+ <div class="hidden sm:ml-6 sm:flex sm:space-x-8">
97
+ <a href="#" class="border-transparent text-gray-500 hover:border-gray-300 hover:text-gray-700 inline-flex items-center px-1 pt-1 border-b-2 text-sm font-medium">Browse</a>
98
+ <a href="#" class="border-transparent text-gray-500 hover:border-gray-300 hover:text-gray-700 inline-flex items-center px-1 pt-1 border-b-2 text-sm font-medium">Community</a>
99
+ <a href="#" class="border-transparent text-gray-500 hover:border-gray-300 hover:text-gray-700 inline-flex items-center px-1 pt-1 border-b-2 text-sm font-medium">Features</a>
100
+ </div>
101
+ </div>
102
+ <div class="hidden sm:ml-6 sm:flex sm:items-center">
103
+ <div class="relative">
104
+ <input type="text" placeholder="Search lyrics & more" class="border border-gray-300 rounded-full py-1 px-4 focus:outline-none focus:ring-2 focus:ring-red-500 focus:border-transparent w-64">
105
+ <button class="absolute right-3 top-1/2 transform -translate-y-1/2 text-gray-400">
106
+ <i class="fas fa-search"></i>
107
+ </button>
108
+ </div>
109
+ <button class="ml-4 bg-gray-100 rounded-full p-2 text-gray-500 hover:text-gray-700">
110
+ <i class="fas fa-user"></i>
111
+ </button>
112
+ </div>
113
+ <div class="-mr-2 flex items-center sm:hidden">
114
+ <button type="button" class="inline-flex items-center justify-center p-2 rounded-md text-gray-400 hover:text-gray-500 hover:bg-gray-100 focus:outline-none focus:ring-2 focus:ring-inset focus:ring-red-500">
115
+ <span class="sr-only">Open main menu</span>
116
+ <i class="fas fa-bars"></i>
117
+ </button>
118
+ </div>
119
+ </div>
120
+ </div>
121
+ </nav>
122
+
123
+ <!-- Artist Header -->
124
+ <div class="artist-header bg-[url('https://images.genius.com/9c4c7c0c4b7a2a5e8e8e8e8e8e8e8e8.1000x1000x1.jpg')] h-96 relative">
125
+ <div class="gradient-bg absolute inset-0"></div>
126
+ <div class="relative z-10 max-w-7xl mx-auto px-4 sm:px-6 lg:px-8 h-full flex items-end pb-8">
127
+ <div class="flex items-end">
128
+ <div class="mr-6">
129
+ <div class="w-40 h-40 rounded-full bg-white shadow-lg overflow-hidden">
130
+ <img src="https://images.genius.com/9c4c7c0c4b7a2a5e8e8e8e8e8e8e8e8.1000x1000x1.jpg" alt="HYBE" class="w-full h-full object-cover">
131
+ </div>
132
+ </div>
133
+ <div class="text-white">
134
+ <h1 class="text-5xl font-bold mb-2">HYBE</h1>
135
+ <p class="text-lg mb-4">South Korean entertainment company</p>
136
+ <div class="flex items-center space-x-4">
137
+ <button class="play-button text-white rounded-full px-6 py-2 font-medium flex items-center">
138
+ <i class="fas fa-play mr-2"></i> Play All
139
+ </button>
140
+ <button class="bg-white bg-opacity-20 text-white rounded-full px-6 py-2 font-medium flex items-center border border-white border-opacity-30">
141
+ <i class="fas fa-heart mr-2"></i> Follow
142
+ </button>
143
+ </div>
144
+ </div>
145
+ </div>
146
+ </div>
147
+ </div>
148
+
149
+ <!-- Main Content with Sidebar -->
150
+ <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8 py-8 flex flex-col lg:flex-row gap-8">
151
+ <!-- Main Content Area -->
152
+ <div class="flex-1">
153
+ <!-- Tabs -->
154
+ <div class="border-b border-gray-200 mb-8">
155
+ <nav class="-mb-px flex space-x-8">
156
+ <a href="#" class="tab-active whitespace-nowrap py-4 px-1 border-b-2 font-medium text-sm">Songs</a>
157
+ <a href="#" class="border-transparent text-gray-500 hover:text-gray-700 hover:border-gray-300 whitespace-nowrap py-4 px-1 border-b-2 font-medium text-sm">Albums</a>
158
+ <a href="#" class="border-transparent text-gray-500 hover:text-gray-700 hover:border-gray-300 whitespace-nowrap py-4 px-1 border-b-2 font-medium text-sm">About</a>
159
+ <a href="#" class="border-transparent text-gray-500 hover:text-gray-700 hover:border-gray-300 whitespace-nowrap py-4 px-1 border-b-2 font-medium text-sm">News</a>
160
+ </nav>
161
+ </div>
162
+
163
+ <!-- Featured Links Section -->
164
+ <div class="bg-white rounded-lg shadow-sm p-6 mb-8">
165
+ <h2 class="text-xl font-bold mb-4">Featured Content</h2>
166
+ <div class="grid grid-cols-1 md:grid-cols-3 gap-6">
167
+ <a href="https://huggingface.co/spaces/Bujurocks/music" target="_blank" class="buju-card p-4 hover:bg-gray-200 transition-colors duration-200 flex items-center">
168
+ <div class="bg-white text-indigo-600 rounded-lg w-16 h-16 flex items-center justify-center mr-4">
169
+ <i class="fas fa-robot text-2xl"></i>
170
+ </div>
171
+ <div>
172
+ <h3 class="font-medium">BujuRocks AI</h3>
173
+ <p class="text-indigo-100 text-sm">Explore AI music generation</p>
174
+ </div>
175
+ </a>
176
+ <a href="https://youtu.be/1ZZtqDB9Fno?si=Koq_hI2Vo8knkZ4T" target="_blank" class="bg-gray-100 rounded-lg p-4 hover:bg-gray-200 transition-colors duration-200 flex items-center">
177
+ <div class="bg-blue-500 text-white rounded-lg w-16 h-16 flex items-center justify-center mr-4">
178
+ <i class="fab fa-youtube text-2xl"></i>
179
+ </div>
180
+ <div>
181
+ <h3 class="font-medium">HYBE Documentary</h3>
182
+ <p class="text-gray-600 text-sm">Watch the latest HYBE content</p>
183
+ </div>
184
+ </a>
185
+ <a href="https://huggingface.co/Bujurocks" target="_blank" class="bg-gray-100 rounded-lg p-4 hover:bg-gray-200 transition-colors duration-200 flex items-center">
186
+ <div class="bg-purple-500 text-white rounded-lg w-16 h-16 flex items-center justify-center mr-4">
187
+ <i class="fas fa-brain text-2xl"></i>
188
+ </div>
189
+ <div>
190
+ <h3 class="font-medium">BujuRocks HF</h3>
191
+ <p class="text-gray-600 text-sm">AI models by BujuRocks</p>
192
+ </div>
193
+ </a>
194
+ <!-- New CALLNOMORE Card -->
195
+ <a href="https://youtu.be/ZtvvvBnjOZI?si=XHstZLcNu_ahLntk" target="_blank" class="callnomore-card p-4 hover:bg-gray-200 transition-colors duration-200 flex items-center">
196
+ <div class="bg-white text-indigo-600 rounded-lg w-16 h-16 flex items-center justify-center mr-4">
197
+ <i class="fas fa-music text-2xl"></i>
198
+ </div>
199
+ <div>
200
+ <h3 class="font-medium">CALLNOMORE</h3>
201
+ <p class="text-indigo-100 text-sm">BujuRocks Music Video</p>
202
+ </div>
203
+ </a>
204
+ </div>
205
+ </div>
206
+
207
+ <!-- Songs List -->
208
+ <div class="bg-white rounded-lg shadow-sm overflow-hidden">
209
+ <div class="divide-y divide-gray-200">
210
+ <!-- Song Item -->
211
+ <div class="song-item p-4 hover:bg-gray-50 transition-colors duration-200 flex items-center">
212
+ <div class="w-10 text-center text-gray-500 mr-4">1</div>
213
+ <div class="flex-shrink-0 h-12 w-12 rounded bg-gray-200 overflow-hidden mr-4">
214
+ <img src="https://images.genius.com/9c4c7c0c4b7a2a5e8e8e8e8e8e8e8e8.1000x1000x1.jpg" alt="Album Cover" class="w-full h-full object-cover">
215
+ </div>
216
+ <div class="flex-grow">
217
+ <h3 class="font-medium">Dynamite</h3>
218
+ <p class="text-gray-600 text-sm">BTS</p>
219
+ </div>
220
+ <div class="text-gray-500 text-sm">3,456,789</div>
221
+ <div class="ml-6">
222
+ <button class="text-gray-400 hover:text-red-500">
223
+ <i class="fas fa-ellipsis-h"></i>
224
+ </button>
225
+ </div>
226
+ </div>
227
+
228
+ <!-- Song Item -->
229
+ <div class="song-item p-4 hover:bg-gray-50 transition-colors duration-200 flex items-center">
230
+ <div class="w-10 text-center text-gray-500 mr-4">2</div>
231
+ <div class="flex-shrink-0 h-12 w-12 rounded bg-gray-2B00 overflow-hidden mr-4">
232
+ <img src="https://images.genius.com/9c4c7c0c4b7a2a5e8e8e8e8e8e8e8e8.1000x1000x1.jpg" alt="Album Cover" class="w-full h-full object-cover">
233
+ </div>
234
+ <div class="flex-grow">
235
+ <h3 class="font-medium">Butter</h3>
236
+ <p class="text-gray-600 text-sm">BTS</p>
237
+ </div>
238
+ <div class="text-gray-500 text-sm">3,123,456</div>
239
+ <div class="ml-6">
240
+ <button class="text-gray-400 hover:text-red-500">
241
+ <i class="fas fa-ellipsis-h"></i>
242
+ </button>
243
+ </div>
244
+ </div>
245
+
246
+ <!-- Song Item -->
247
+ <div class="song-item p-4 hover:bg-gray-50 transition-colors duration-200 flex items-center">
248
+ <div class="w-10 text-center text-gray-500 mr-4">3</div>
249
+ <div class="flex-shrink-0 h-12 w-12 rounded bg-gray-200 overflow-hidden mr-4">
250
+ <img src="https://images.genius.com/9c4c7c0c4b7a2a5e8e8e8e8e8e8e8e8.1000x1000x1.jpg" alt="Album Cover" class="w-full h-full object-cover">
251
+ </div>
252
+ <div class="flex-grow">
253
+ <h3 class="font-medium">Permission to Dance</h3>
254
+ <p class="text-gray-600 text-sm">BTS</p>
255
+ </div>
256
+ <div class="text-gray-500 text-sm">2,987,654</div>
257
+ <div class="ml-6">
258
+ <button class="text-gray-400 hover:text-red-500">
259
+ <i class="fas fa-ellipsis-h"></i>
260
+ </button>
261
+ </div>
262
+ </div>
263
+
264
+ <!-- Song Item -->
265
+ <div class="song-item p-4 hover:bg-gray-50 transition-colors duration-200 flex items-center">
266
+ <div class="w-10 text-center text-gray-500 mr-4">4</div>
267
+ <div class="flex-shrink-0 h-12 w-12 rounded bg-gray-200 overflow-hidden mr-4">
268
+ <img src="https://images.genius.com/9c4c7c0c4b7a2a5e8e8e8e8e8e8e8e8.1000x1000x1.jpg" alt="Album Cover" class="w-full h-full object-cover">
269
+ </div>
270
+ <div class="flex-grow">
271
+ <h3 class="font-medium">Boy With Luv</h3>
272
+ <p class="text-gray-600 text-sm">BTS feat. Halsey</p>
273
+ </div>
274
+ <div class="text-gray-500 text-sm">2,876,543</div>
275
+ <div class="ml-6">
276
+ <button class="text-gray-400 hover:text-red-500">
277
+ <i class="fas fa-ellipsis-h"></i>
278
+ </button>
279
+ </div>
280
+ </div>
281
+
282
+ <!-- Song Item -->
283
+ <div class="song-item p-4 hover:bg-gray-50 transition-colors duration-200 flex items-center">
284
+ <div class="w-10 text-center text-gray-500 mr-4">5</div>
285
+ <div class="flex-shrink-0 h-12 w-12 rounded bg-gray-200 overflow-hidden mr-4">
286
+ <img src="https://images.genius.com/9c4c7c0c4b7a2a5e8e8e8e8e8e8e8e8.1000x1000x1.jpg" alt="Album Cover" class="w-full h-full object-cover">
287
+ </div>
288
+ <div class="flex-grow">
289
+ <h3 class="font-medium">Fake Love</h3>
290
+ <p class="text-gray-600 text-sm">BTS</p>
291
+ </div>
292
+ <div class="text-gray-500 text-sm">2,765,432</div>
293
+ <div class="ml-6">
294
+ <button class="text-gray-400 hover:text-red-500">
295
+ <i class="fas fa-ellipsis-h"></i>
296
+ </button>
297
+ </div>
298
+ </div>
299
+ </div>
300
+
301
+ <div class="px-4 py-3 bg-gray-50 text-right sm:px-6">
302
+ <button class="inline-flex items-center px-4 py-2 border border-transparent text-sm font-medium rounded-md text-white bg-red-600 hover:bg-red-700 focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-red-500">
303
+ View All Songs
304
+ </button>
305
+ </div>
306
+ </div>
307
+
308
+ <!-- About Section -->
309
+ <div class="mt-8 bg-white rounded-lg shadow-sm p-6">
310
+ <h2 class="text-xl font-bold mb-4">About HYBE & BujuRocks</h2>
311
+ <div class="prose max-w-none">
312
+ <p>HYBE (formerly Big Hit Entertainment) is a South Korean entertainment company established in 2005 by Bang Si-hyuk. The company operates as a record label, talent agency, music production company, event management company, and music publishing house.</p>
313
+ <p class="mt-4">BujuRocks is an innovative AI developer creating cutting-edge music generation models. Their work on platforms like Hugging Face demonstrates the future of AI in music creation and production.</p>
314
+ <p class="mt-4">In 2021, Big Hit Entertainment rebranded as HYBE Corporation, reflecting its evolution from a single-label company to a multi-label entertainment group. HYBE continues to innovate in the music industry with its artist-focused approach and global expansion strategies.</p>
315
+ </div>
316
+ </div>
317
+ </div>
318
+
319
+ <!-- Sidebar with YouTube Video -->
320
+ <div class="lg:w-80 flex-shrink-0">
321
+ <div class="sidebar-video bg-white rounded-lg shadow-sm p-4 mb-6">
322
+ <h3 class="font-bold text-lg mb-4">Featured Video</h3>
323
+ <div class="aspect-w-16 aspect-h-9">
324
+ <iframe
325
+ width="100%"
326
+ height="225"
327
+ src="https://www.youtube.com/embed/1ZZtqDB9Fno?si=Koq_hI2Vo8knkZ4T"
328
+ title="YouTube video player"
329
+ frameborder="0"
330
+ allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share"
331
+ referrerpolicy="strict-origin-when-cross-origin"
332
+ allowfullscreen>
333
+ </iframe>
334
+ </div>
335
+ <div class="mt-4">
336
+ <h4 class="font-medium">HYBE Documentary</h4>
337
+ <p class="text-gray-600 text-sm mt-1">An inside look at HYBE's journey and global impact</p>
338
+ <a href="https://youtu.be/1ZZtqDB9Fno?si=Koq_hI2Vo8knkZ4T" target="_blank" class="inline-block mt-3 text-red-500 hover:text-red-700 text-sm font-medium">
339
+ Watch on YouTube <i class="fas fa-external-link-alt ml-1"></i>
340
+ </a>
341
+ </div>
342
+ </div>
343
+
344
+ <div class="sidebar-video bg-white rounded-lg shadow-sm p-4">
345
+ <h3 class="font-bold text-lg mb-4">BujuRocks Projects</h3>
346
+ <div class="space-y-4">
347
+ <a href="https://huggingface.co/spaces/Bujurocks/music" target="_blank" class="block p-3 bg-indigo-50 rounded-lg hover:bg-indigo-100 transition-colors">
348
+ <div class="flex items-center">
349
+ <div class="bg-indigo-100 p-2 rounded-lg mr-3">
350
+ <i class="fas fa-music text-indigo-600"></i>
351
+ </div>
352
+ <div>
353
+ <h4 class="font-medium">Music AI Space</h4>
354
+ <p class="text-gray-600 text-xs">Explore AI music generation</p>
355
+ </div>
356
+ </div>
357
+ </a>
358
+ <a href="https://huggingface.co/Bujurocks" target="_blank" class="block p-3 bg-purple-50 rounded-lg hover:bg-purple-100 transition-colors">
359
+ <div class="flex items-center">
360
+ <div class="bg-purple-100 p-2 rounded-lg mr-3">
361
+ <i class="fas fa-robot text-purple-600"></i>
362
+ </div>
363
+ <div>
364
+ <h4 class="font-medium">AI Models</h4>
365
+ <p class="text-gray-600 text-xs">Collection of AI models</p>
366
+ </div>
367
+ </div>
368
+ </a>
369
+ <!-- New CALLNOMORE Sidebar Item -->
370
+ <a href="https://youtu.be/ZtvvvBnjOZI?si=XHstZLcNu_ahLntk" target="_blank" class="block p-3 bg-indigo-50 rounded-lg hover:bg-indigo-100 transition-colors">
371
+ <div class="flex items-center">
372
+ <div class="bg-indigo-100 p-2 rounded-lg mr-3">
373
+ <i class="fas fa-video text-indigo-600"></i>
374
+ </div>
375
+ <div>
376
+ <h4 class="font-medium">CALLNOMORE</h4>
377
+ <p class="text-gray-600 text-xs">BujuRocks Music Video</p>
378
+ </div>
379
+ </div>
380
+ </a>
381
+ </div>
382
+ </div>
383
+ </div>
384
+ </div>
385
+
386
+ <!-- Footer -->
387
+ <footer class="bg-gray-100 mt-12">
388
+ <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8 py-8">
389
+ <div class="mt-8 border-t border-gray-200 pt-8 md:flex md:items-center md:justify-between">
390
+ <div class="flex space-x-6 md:order-2">
391
+ <a href="#" class="text-gray-400 hover:text-gray-500">
392
+ <i class="fab fa-apple"></i>
393
+ </a>
394
+ <a href="#" class="text-gray-400 hover:text-gray-500">
395
+ <i class="fab fa-google-play"></i>
396
+ </a>
397
+ </div>
398
+ <p class="mt-8 text-base text-gray-400 md:mt-0 md:order-1">
399
+ &copy; 2023 Genius, Inc. All rights reserved.
400
+ </p>
401
+ </div>
402
+ </div>
403
+ </footer>
404
+
405
+ <script>
406
+ // Mobile menu toggle functionality
407
+ document.addEventListener('DOMContentLoaded', function() {
408
+ const mobileMenuButton = document.querySelector('.sm\\:hidden button');
409
+ const mobileMenu = document.querySelector('.sm\\:hidden');
410
+
411
+ mobileMenuButton.addEventListener('click', function() {
412
+ // This would toggle a mobile menu if implemented
413
+ console.log('Mobile menu button clicked');
414
+ });
415
+
416
+ // Play button animation
417
+ const playButton = document.querySelector('.play-button');
418
+ playButton.addEventListener('click', function() {
419
+ console.log('Play all songs');
420
+ });
421
+
422
+ // Tab switching functionality
423
+ const tabs = document.querySelectorAll('[role="tab"]');
424
+ tabs.forEach(tab => {
425
+ tab.addEventListener('click', function() {
426
+ tabs.forEach(t => t.classList.remove('tab-active'));
427
+ this.classList.add('tab-active');
428
+ });
429
+ });
430
+
431
+ // BujuRocks card animation
432
+ const bujuCards = document.querySelectorAll('.buju-card');
433
+ bujuCards.forEach(card => {
434
+ card.addEventListener('mouseenter', function() {
435
+ this.style.transform = 'translateY(-5px)';
436
+ });
437
+ card.addEventListener('mouseleave', function() {
438
+ this.style.transform = '';
439
+ });
440
+ });
441
+
442
+ // CALLNOMORE card animation
443
+ const callnomoreCards = document.querySelectorAll('.callnomore-card');
444
+ callnomoreCards.forEach(card => {
445
+ card.addEventListener('mouseenter', function() {
446
+ this.style.transform = 'translateY(-5px)';
447
+ });
448
+ card.addEventListener('mouseleave', function() {
449
+ this.style.transform = '';
450
+ });
451
+ });
452
+ });
453
+ </script>
454
+ <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=Bujurocks/hybe" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
455
+ </html>
prompts.txt ADDED
@@ -0,0 +1,5 @@
 
 
 
 
 
 
1
+ Copy this website https://genius.com/artists/Hybe and make a website similar to this page add link to https://huggingface.co/spaces/Bujurocks/musicand add this link on the page https://youtu.be/1ZZtqDB9Fno?si=Koq_hI2Vo8knkZ4T also make sure colors and graphics match make sure everything same as this website
2
+ Add this link to the side https://youtu.be/1ZZtqDB9Fno?si=Koq_hI2Vo8knkZ4T
3
+ Add BujuRocks and the link page https://youtu.be/1ZZtqDB9Fno?si=Koq_hI2Vo8knkZ4T
4
+ Delete the side company careers press resources and legal connect links
5
+ Add number 6 BujuRocks CALLNOMORE link to this website https://youtu.be/ZtvvvBnjOZI?si=XHstZLcNu_ahLntk