nkjoy commited on
Commit
67c69bf
Β·
verified Β·
1 Parent(s): 4151f6d

undefined - Initial Deployment

Browse files
Files changed (3) hide show
  1. README.md +7 -5
  2. index.html +535 -19
  3. prompts.txt +0 -0
README.md CHANGED
@@ -1,10 +1,12 @@
1
  ---
2
- title: Tvdian
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: tvdian
3
+ emoji: 🐳
4
+ colorFrom: pink
5
+ colorTo: purple
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,535 @@
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
+
2
+ <!DOCTYPE html>
3
+ <html lang="en">
4
+ <head>
5
+ <meta charset="UTF-8">
6
+ <meta name="viewport" content="width=device-width, initial-scale=1.0">
7
+ <title>μ‘°μ„ μ˜ν™”</title>
8
+ <script src="https://cdn.tailwindcss.com"></script>
9
+ <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
10
+ <style>
11
+ @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');
12
+
13
+ #movie-player {
14
+ transition: opacity 0.3s ease;
15
+ }
16
+
17
+ .aspect-w-16 {
18
+ position: relative;
19
+ padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
20
+ }
21
+
22
+ .aspect-h-9 {
23
+ position: absolute;
24
+ top: 0;
25
+ right: 0;
26
+ bottom: 0;
27
+ left: 0;
28
+ }
29
+
30
+ body {
31
+ font-family: 'Poppins', sans-serif;
32
+ background-color: #0f172a;
33
+ color: #f8fafc;
34
+ }
35
+
36
+ .hero {
37
+ background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
38
+ url('https://image.tmdb.org/t/p/original/wwemzKWzjKYJFfCeiB57q3r4Bcm.png');
39
+ background-size: cover;
40
+ background-position: center;
41
+ height: 80vh;
42
+ }
43
+
44
+ .movie-card {
45
+ transition: transform 0.3s ease;
46
+ }
47
+
48
+ .movie-card:hover {
49
+ transform: scale(1.05);
50
+ }
51
+
52
+ .movie-card:hover .play-icon {
53
+ opacity: 1;
54
+ }
55
+
56
+ .play-icon {
57
+ opacity: 0;
58
+ transition: opacity 0.3s ease;
59
+ }
60
+
61
+ .category-btn.active {
62
+ background-color: #3b82f6;
63
+ color: white;
64
+ }
65
+ </style>
66
+ </head>
67
+ <body>
68
+ <!-- Navigation -->
69
+ <nav class="bg-gray-900 bg-opacity-90 fixed w-full z-10">
70
+ <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
71
+ <div class="flex items-center justify-between h-16">
72
+ <div class="flex items-center">
73
+ <div class="flex-shrink-0">
74
+ <span class="text-blue-500 font-bold text-2xl">CineStream</span>
75
+ </div>
76
+ <div class="hidden md:block">
77
+ <div class="ml-10 flex items-baseline space-x-4">
78
+ <a href="index.html" class="text-gray-300 hover:text-white px-3 py-2 rounded-md text-sm font-medium">ν™ˆ</a>
79
+ <a href="#" class="text-gray-300 hover:text-white px-3 py-2 rounded-md text-sm font-medium">μ˜ν™”</a>
80
+ <a href="tv.html" class="text-white px-3 py-2 rounded-md text-sm font-medium">TV ν”„λ‘œκ·Έλž¨</a>
81
+ <a href="#" class="text-gray-300 hover:text-white px-3 py-2 rounded-md text-sm font-medium">μ΅œμ‹  κ°œλ΄‰μž‘</a>
82
+ <a href="mylist.html" class="text-gray-300 hover:text-white px-3 py-2 rounded-md text-sm font-medium">λ‚΄ λͺ©λ‘</a>
83
+ </div>
84
+ </div>
85
+ </div>
86
+ <div class="hidden md:block">
87
+ <div class="ml-4 flex items-center md:ml-6">
88
+ <div class="relative">
89
+ <input type="text" placeholder="Search movies..." class="bg-gray-800 text-white px-4 py-1 rounded-full text-sm focus:outline-none focus:ring-2 focus:ring-blue-500 w-64">
90
+ <button class="absolute right-3 top-1/2 transform -translate-y-1/2 text-gray-400">
91
+ <i class="fas fa-search"></i>
92
+ </button>
93
+ </div>
94
+ <button class="ml-4 bg-blue-600 hover:bg-blue-700 text-white px-4 py-1 rounded-full text-sm">
95
+ Sign In
96
+ </button>
97
+ </div>
98
+ </div>
99
+ <div class="-mr-2 flex md:hidden">
100
+ <button type="button" id="mobile-menu-button" class="inline-flex items-center justify-center p-2 rounded-md text-gray-400 hover:text-white hover:bg-gray-700 focus:outline-none">
101
+ <span class="sr-only">Open main menu</span>
102
+ <i class="fas fa-bars"></i>
103
+ </button>
104
+ </div>
105
+ </div>
106
+ </div>
107
+
108
+ <!-- Mobile menu -->
109
+ <div class="md:hidden hidden" id="mobile-menu">
110
+ <div class="px-2 pt-2 pb-3 space-y-1 sm:px-3">
111
+ <a href="#" class="text-white block px-3 py-2 rounded-md text-base font-medium">ν™ˆ </a>
112
+ <a href="#" class="text-gray-300 hover:text-white block px-3 py-2 rounded-md text-base font-medium">μ˜ˆμˆ μ˜ν™”</a>
113
+ <a href="#" class="text-gray-300 hover:text-white block px-3 py-2 rounded-md text-base font-medium">μ•„λ™μ˜ν™”</a>
114
+ <a href="#" class="text-gray-300 hover:text-white block px-3 py-2 rounded-md text-base font-medium">련속극</a>
115
+ <a href="#" class="text-gray-300 hover:text-white block px-3 py-2 rounded-md text-base font-medium">마이리슀트</a>
116
+ <div class="pt-4 pb-3 border-t border-gray-700">
117
+ <div class="flex items-center px-5">
118
+ <input type="text" placeholder="Search movies..." class="bg-gray-800 text-white px-4 py-1 rounded-full text-sm focus:outline-none focus:ring-2 focus:ring-blue-500 w-full">
119
+ <button class="ml-2 bg-blue-600 hover:bg-blue-700 text-white px-4 py-1 rounded-full text-sm">
120
+ <i class="fas fa-search"></i>
121
+ </button>
122
+ </div>
123
+ <div class="mt-3 px-2">
124
+ <button class="w-full bg-blue-600 hover:bg-blue-700 text-white px-4 py-2 rounded-md text-sm">
125
+ Sign In
126
+ </button>
127
+ </div>
128
+ </div>
129
+ </div>
130
+ </div>
131
+ </nav>
132
+
133
+ <!-- Hero Section -->
134
+ <section class="hero flex items-center justify-center text-center pt-16">
135
+ <div class="px-4 sm:px-6 lg:px-8 max-w-3xl">
136
+ <h1 class="text-4xl md:text-5xl font-bold mb-4">인기 TV ν”„λ‘œκ·Έλž¨κ³Ό μ‹œλ¦¬μ¦ˆ</h1>
137
+ <p class="text-lg mb-8">μ΅œμ‹  μ—ν”Όμ†Œλ“œλΆ€ν„° μ™„κ²° μ‹œλ¦¬μ¦ˆκΉŒμ§€ λͺ¨λ‘ 여기에</p>
138
+ <div class="flex flex-col sm:flex-row justify-center gap-4">
139
+ <button class="bg-blue-600 hover:bg-blue-700 text-white px-6 py-3 rounded-lg font-medium flex items-center justify-center">
140
+ <i class="fas fa-play mr-2"></i> 인기 μ‹œλ¦¬μ¦ˆ 보기
141
+ </button>
142
+ <button class="bg-gray-800 hover:bg-gray-700 text-white px-6 py-3 rounded-lg font-medium flex items-center justify-center">
143
+ <i class="fas fa-info-circle mr-2"></i> μ‹ κ·œ ν”„λ‘œκ·Έλž¨
144
+ </button>
145
+ </div>
146
+ </div>
147
+ </section>
148
+
149
+ <!-- Main Content -->
150
+ <main class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8 py-12">
151
+
152
+
153
+ <!-- Featured TV Shows -->
154
+ <div class="mb-12">
155
+ <div class="flex justify-between items-center mb-4">
156
+ <h2 class="text-2xl font-bold">μΆ”μ²œ μ˜ν™”</h2>
157
+ <a href="#" class="text-blue-500 hover:underline">λͺ¨λ“  ν”„λ‘œκ·Έλž¨ 보기</a>
158
+ </div>
159
+ <div class="grid grid-cols-2 sm:grid-cols-3 md:grid-cols-4 lg:grid-cols-5 gap-4">
160
+ <!-- Movie Card 1 -->
161
+ <div class="movie-card relative rounded-lg overflow-hidden bg-gray-800">
162
+ <img src="https://image.tmdb.org/t/p/w500/1pdfLvkbY9ohJlCjQH2CZjjYVvJ.jpg" alt="Movie Poster" class="w-full h-64 object-cover">
163
+ <div class="absolute inset-0 bg-black bg-opacity-50 flex items-center justify-center play-icon">
164
+ <button class="bg-blue-600 hover:bg-blue-700 text-white rounded-full w-12 h-12 flex items-center justify-center">
165
+ <i class="fas fa-play"></i>
166
+ </button>
167
+ </div>
168
+ <div class="p-3">
169
+ <h3 class="font-semibold truncate">Spider-Man: No Way Home</h3>
170
+ <div class="flex justify-between items-center text-sm text-gray-400 mt-1">
171
+ <span>2021</span>
172
+ <span class="flex items-center">
173
+ <i class="fas fa-star text-yellow-400 mr-1"></i> 8.2
174
+ </span>
175
+ </div>
176
+ </div>
177
+ </div>
178
+
179
+ <!-- Movie Card 2 -->
180
+ <div class="movie-card relative rounded-lg overflow-hidden bg-gray-800">
181
+ <img src="https://image.tmdb.org/t/p/w500/1g0dhYtq4irTY1GPXvft6k4YLjm.jpg" alt="Movie Poster" class="w-full h-64 object-cover">
182
+ <div class="absolute inset-0 bg-black bg-opacity-50 flex items-center justify-center play-icon">
183
+ <button class="bg-blue-600 hover:bg-blue-700 text-white rounded-full w-12 h-12 flex items-center justify-center">
184
+ <i class="fas fa-play"></i>
185
+ </button>
186
+ </div>
187
+ <div class="p-3">
188
+ <h3 class="font-semibold truncate">The Batman</h3>
189
+ <div class="flex justify-between items-center text-sm text-gray-400 mt-1">
190
+ <span>2022</span>
191
+ <span class="flex items-center">
192
+ <i class="fas fa-star text-yellow-400 mr-1"></i> 7.9
193
+ </span>
194
+ </div>
195
+ </div>
196
+ </div>
197
+
198
+ <!-- Movie Card 3 -->
199
+ <div class="movie-card relative rounded-lg overflow-hidden bg-gray-800">
200
+ <img src="https://image.tmdb.org/t/p/w500/6DrHO1jr3qVrViUO6s6kFiAGM7.jpg" alt="Movie Poster" class="w-full h-64 object-cover">
201
+ <div class="absolute inset-0 bg-black bg-opacity-50 flex items-center justify-center play-icon">
202
+ <button class="bg-blue-600 hover:bg-blue-700 text-white rounded-full w-12 h-12 flex items-center justify-center">
203
+ <i class="fas fa-play"></i>
204
+ </button>
205
+ </div>
206
+ <div class="p-3">
207
+ <h3 class="font-semibold truncate">Dune</h3>
208
+ <div class="flex justify-between items-center text-sm text-gray-400 mt-1">
209
+ <span>2021</span>
210
+ <span class="flex items-center">
211
+ <i class="fas fa-star text-yellow-400 mr-1"></i> 8.0
212
+ </span>
213
+ </div>
214
+ </div>
215
+ </div>
216
+
217
+ <!-- Movie Card 4 -->
218
+ <div class="movie-card relative rounded-lg overflow-hidden bg-gray-800">
219
+ <img src="https://image.tmdb.org/t/p/w500/8Y43POKjjKDGI9MH89NW0NAzzp8.jpg" alt="Movie Poster" class="w-full h-64 object-cover">
220
+ <div class="absolute inset-0 bg-black bg-opacity-50 flex items-center justify-center play-icon">
221
+ <button class="bg-blue-600 hover:bg-blue-700 text-white rounded-full w-12 h-12 flex items-center justify-center">
222
+ <i class="fas fa-play"></i>
223
+ </button>
224
+ </div>
225
+ <div class="p-3">
226
+ <h3 class="font-semibold truncate">Top Gun: Maverick</h3>
227
+ <div class="flex justify-between items-center text-sm text-gray-400 mt-1">
228
+ <span>2022</span>
229
+ <span class="flex items-center">
230
+ <i class="fas fa-star text-yellow-400 mr-1"></i> 8.3
231
+ </span>
232
+ </div>
233
+ </div>
234
+ </div>
235
+
236
+ <!-- Movie Card 5 -->
237
+ <div class="movie-card relative rounded-lg overflow-hidden bg-gray-800">
238
+ <img src="https://image.tmdb.org/t/p/w500/8Vt6mWEReuy4Of61Lnj5Xj704m8.jpg" alt="Movie Poster" class="w-full h-64 object-cover">
239
+ <div class="absolute inset-0 bg-black bg-opacity-50 flex items-center justify-center play-icon">
240
+ <button class="bg-blue-600 hover:bg-blue-700 text-white rounded-full w-12 h-12 flex items-center justify-center">
241
+ <i class="fas fa-play"></i>
242
+ </button>
243
+ </div>
244
+ <div class="p-3">
245
+ <h3 class="font-semibold truncate">Lightyear</h3>
246
+ <div class="flex justify-between items-center text-sm text-gray-400 mt-1">
247
+ <span>2022</span>
248
+ <span class="flex items-center">
249
+ <i class="fas fa-star text-yellow-400 mr-1"></i> 6.1
250
+ </span>
251
+ </div>
252
+ </div>
253
+ </div>
254
+ </div>
255
+ </div>
256
+
257
+ <!-- Popular TV Shows -->
258
+ <div class="mb-12">
259
+ <div class="flex justify-between items-center mb-4">
260
+ <h2 class="text-2xl font-bold">졜근 련속극 </h2>
261
+ <a href="#" class="text-blue-500 hover:underline">λͺ¨λ“  ν”„λ‘œκ·Έλž¨ 보기</a>
262
+ </div>
263
+ <div class="grid grid-cols-2 sm:grid-cols-3 md:grid-cols-4 lg:grid-cols-5 gap-4">
264
+ <!-- Movie Card 6 -->
265
+ <div class="movie-card relative rounded-lg overflow-hidden bg-gray-800">
266
+ <img src="https://image.tmdb.org/t/p/w500/odVv1sqVs0KxBXiA8bhIBlPgalx.jpg" alt="Movie Poster" class="w-full h-64 object-cover">
267
+ <div class="absolute inset-0 bg-black bg-opacity-50 flex items-center justify-center play-icon">
268
+ <button class="bg-blue-600 hover:bg-blue-700 text-white rounded-full w-12 h-12 flex items-center justify-center">
269
+ <i class="fas fa-play"></i>
270
+ </button>
271
+ </div>
272
+ <div class="p-3">
273
+ <h3 class="font-semibold truncate">Morbius</h3>
274
+ <div class="flex justify-between items-center text-sm text-gray-400 mt-1">
275
+ <span>2022</span>
276
+ <span class="flex items-center">
277
+ <i class="fas fa-star text-yellow-400 mr-1"></i> 6.4
278
+ </span>
279
+ </div>
280
+ </div>
281
+ </div>
282
+
283
+ <!-- Movie Card 7 -->
284
+ <div class="movie-card relative rounded-lg overflow-hidden bg-gray-800">
285
+ <img src="https://image.tmdb.org/t/p/w500/6zbKgwgaaCyyBXE4Sun4oWQfQmi.jpg" alt="Movie Poster" class="w-full h-64 object-cover">
286
+ <div class="absolute inset-0 bg-black bg-opacity-50 flex items-center justify-center play-icon">
287
+ <button class="bg-blue-600 hover:bg-blue-700 text-white rounded-full w-12 h-12 flex items-center justify-center">
288
+ <i class="fas fa-play"></i>
289
+ </button>
290
+ </div>
291
+ <div class="p-3">
292
+ <h3 class="font-semibold truncate">The Northman</h3>
293
+ <div class="flex justify-between items-center text-sm text-gray-400 mt-1">
294
+ <span>2022</span>
295
+ <span class="flex items-center">
296
+ <i class="fas fa-star text-yellow-400 mr-1"></i> 7.3
297
+ </span>
298
+ </div>
299
+ </div>
300
+ </div>
301
+
302
+ <!-- Movie Card 8 -->
303
+ <div class="movie-card relative rounded-lg overflow-hidden bg-gray-800">
304
+ <img src="https://image.tmdb.org/t/p/w500/rugyJdeoJm7cSJL1q4jBpTNbxyU.jpg" alt="Movie Poster" class="w-full h-64 object-cover">
305
+ <div class="absolute inset-0 bg-black bg-opacity-50 flex items-center justify-center play-icon">
306
+ <button class="bg-blue-600 hover:bg-blue-700 text-white rounded-full w-12 h-12 flex items-center justify-center">
307
+ <i class="fas fa-play"></i>
308
+ </button>
309
+ </div>
310
+ <div class="p-3">
311
+ <h3 class="font-semibold truncate">Doctor Strange 2</h3>
312
+ <div class="flex justify-between items-center text-sm text-gray-400 mt-1">
313
+ <span>2022</span>
314
+ <span class="flex items-center">
315
+ <i class="fas fa-star text-yellow-400 mr-1"></i> 7.5
316
+ </span>
317
+ </div>
318
+ </div>
319
+ </div>
320
+
321
+ <!-- Movie Card 9 -->
322
+ <div class="movie-card relative rounded-lg overflow-hidden bg-gray-800">
323
+ <img src="https://image.tmdb.org/t/p/w500/74xTEgt7R36Fpooo50r9T25onhq.jpg" alt="Movie Poster" class="w-full h-64 object-cover">
324
+ <div class="absolute inset-0 bg-black bg-opacity-50 flex items-center justify-center play-icon">
325
+ <button class="bg-blue-600 hover:bg-blue-700 text-white rounded-full w-12 h-12 flex items-center justify-center">
326
+ <i class="fas fa-play"></i>
327
+ </button>
328
+ </div>
329
+ <div class="p-3">
330
+ <h3 class="font-semibold truncate">The Batman</h3>
331
+ <div class="flex justify-between items-center text-sm text-gray-400 mt-1">
332
+ <span>2022</span>
333
+ <span class="flex items-center">
334
+ <i class="fas fa-star text-yellow-400 mr-1"></i> 7.9
335
+ </span>
336
+ </div>
337
+ </div>
338
+ </div>
339
+
340
+ <!-- Movie Card 10 -->
341
+ <div class="movie-card relative rounded-lg overflow-hidden bg-gray-800">
342
+ <img src="https://image.tmdb.org/t/p/w500/1BIoJGKbXjdFDAqUEiA2VHqkK1Z.jpg" alt="Movie Poster" class="w-full h-64 object-cover">
343
+ <div class="absolute inset-0 bg-black bg-opacity-50 flex items-center justify-center play-icon">
344
+ <button class="bg-blue-600 hover:bg-blue-700 text-white rounded-full w-12 h-12 flex items-center justify-center">
345
+ <i class="fas fa-play"></i>
346
+ </button>
347
+ </div>
348
+ <div class="p-3">
349
+ <h3 class="font-semibold truncate">Uncharted</h3>
350
+ <div class="flex justify-between items-center text-sm text-gray-400 mt-1">
351
+ <span>2022</span>
352
+ <span class="flex items-center">
353
+ <i class="fas fa-star text-yellow-400 mr-1"></i> 7.0
354
+ </span>
355
+ </div>
356
+ </div>
357
+ </div>
358
+ </div>
359
+ </div>
360
+ </main>
361
+
362
+ <!-- Movie Player Overlay -->
363
+ <div id="movie-player" class="fixed inset-0 bg-black bg-opacity-90 z-50 hidden flex-col items-center justify-center">
364
+ <div class="w-full max-w-4xl relative">
365
+ <button id="close-player" class="absolute -top-10 right-0 text-white text-2xl hover:text-gray-300">
366
+ <i class="fas fa-times"></i>
367
+ </button>
368
+ <div class="aspect-w-16 aspect-h-9">
369
+ <iframe id="player-iframe" class="w-full h-full" src="" frameborder="0" allowfullscreen></iframe>
370
+ </div>
371
+ <div class="bg-gray-900 p-4 text-white">
372
+ <h2 id="player-title" class="text-xl font-bold mb-2">μ˜ν™” 제λͺ©</h2>
373
+ <div class="flex items-center text-sm text-gray-400 mb-4">
374
+ <span id="player-year" class="mr-4">2022</span>
375
+ <span class="flex items-center">
376
+ <i class="fas fa-star text-yellow-400 mr-1"></i>
377
+ <span id="player-rating">8.0</span>
378
+ </span>
379
+ </div>
380
+ <p id="player-description" class="text-gray-300">
381
+ μ˜ν™” μ„€λͺ…이 여기에 ν‘œμ‹œλ©λ‹ˆλ‹€. μ˜ν™”μ˜ 쀄거리와 μ£Όμš” 정보λ₯Ό κ°„λž΅ν•˜κ²Œ μ†Œκ°œν•˜λŠ” λ‚΄μš©μž…λ‹ˆλ‹€.
382
+ </p>
383
+ </div>
384
+ </div>
385
+ </div>
386
+
387
+ <!-- Footer -->
388
+ <footer class="bg-gray-900 text-gray-400 py-12">
389
+ <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
390
+ <div class="grid grid-cols-2 md:grid-cols-4 gap-8">
391
+ <div>
392
+ <h3 class="text-white font-semibold mb-4">νšŒμ‚¬</h3>
393
+ <ul class="space-y-2">
394
+ <li><a href="#" class="hover:text-white">νšŒμ‚¬ μ†Œκ°œ</a></li>
395
+ <li><a href="#" class="hover:text-white">μ±„μš©</a></li>
396
+ <li><a href="#" class="hover:text-white">문의</a></li>
397
+ <li><a href="#" class="hover:text-white">보도 자료</a></li>
398
+ </ul>
399
+ </div>
400
+ <div>
401
+ <h3 class="text-white font-semibold mb-4">도움말</h3>
402
+ <ul class="space-y-2">
403
+ <li><a href="#" class="hover:text-white">자주 λ¬»λŠ” 질문</a></li>
404
+ <li><a href="#" class="hover:text-white">계정</a></li>
405
+ <li><a href="#" class="hover:text-white">κ°œμΈμ •λ³΄</a></li>
406
+ <li><a href="#" class="hover:text-white">이용 μ•½κ΄€</a></li>
407
+ </ul>
408
+ </div>
409
+ <div>
410
+ <h3 class="text-white font-semibold mb-4">λ‘˜λŸ¬λ³΄κΈ°</h3>
411
+ <ul class="space-y-2">
412
+ <li><a href="#" class="hover:text-white">μ‘°μ„ μŒμ•…</a></li>
413
+ <li><a href="#" class="hover:text-white">μ‘°μ„ λ…Έλž˜λ°©</a></li>
414
+ <li><a href="#" class="hover:text-white">쑰선쀑앙TV</a></li>
415
+ <li><a href="#" class="hover:text-white">ꡭ가별</a></li>
416
+ </ul>
417
+ </div>
418
+ <div>
419
+ <h3 class="text-white font-semibold mb-4">Connect</h3>
420
+ <div class="flex space-x-4">
421
+ <a href="#" class="hover:text-white"><i class="fab fa-facebook-f"></i></a>
422
+ <a href="#" class="hover:text-white"><i class="fab fa-twitter"></i></a>
423
+ <a href="#" class="hover:text-white"><i class="fab fa-instagram"></i></a>
424
+ <a href="#" class="hover:text-white"><i class="fab fa-youtube"></i></a>
425
+ </div>
426
+ <div class="mt-4">
427
+ <p>Download our app</p>
428
+ <div class="flex space-x-2 mt-2">
429
+ <button class="bg-black text-white px-3 py-1 rounded flex items-center">
430
+ <i class="fab fa-apple mr-1"></i> μ•± μŠ€ν† μ–΄
431
+ </button>
432
+ <button class="bg-black text-white px-3 py-1 rounded flex items-center">
433
+ <i class="fab fa-google-play mr-1"></i> ν”Œλ ˆμ΄ μŠ€ν† μ–΄
434
+ </button>
435
+ </div>
436
+ </div>
437
+ </div>
438
+ </div>
439
+ <div class="border-t border-gray-800 mt-8 pt-8 text-sm">
440
+ <p>Β© 2022 μ”¨λ„€μŠ€νŠΈλ¦Ό. λͺ¨λ“  ꢌ리 보유.</p>
441
+ </div>
442
+ </div>
443
+ </footer>
444
+
445
+ <script>
446
+ // Movie player functionality
447
+ const movieCards = document.querySelectorAll('.movie-card');
448
+ const moviePlayer = document.getElementById('movie-player');
449
+ const closePlayer = document.getElementById('close-player');
450
+ const playerIframe = document.getElementById('player-iframe');
451
+ const playerTitle = document.getElementById('player-title');
452
+ const playerYear = document.getElementById('player-year');
453
+ const playerRating = document.getElementById('player-rating');
454
+ const playerDescription = document.getElementById('player-description');
455
+
456
+ // Sample movie data (in a real app, this would come from an API)
457
+ const movieData = {
458
+ 'Spider-Man: No Way Home': {
459
+ year: '2021',
460
+ rating: '8.2',
461
+ description: 'μŠ€νŒŒμ΄λ”λ§¨μ˜ 정체가 λ“œλŸ¬λ‚˜λ©΄μ„œ 삢이 μ™„μ „νžˆ 뒀바뀐 ν”Όν„° 파컀. 문제λ₯Ό ν•΄κ²°ν•˜κΈ° μœ„ν•΄ λ‹₯ν„° μŠ€νŠΈλ ˆμΈμ§€λ₯Ό μ°Ύμ•„κ°€ 도움을 μ²­ν•˜μ§€λ§Œ, 주문이 잘λͺ»λ˜μ–΄ λ©€ν‹°λ²„μŠ€κ°€ μ—΄λ¦¬λ©΄μ„œ μœ„ν—˜ν•œ 적듀이 λ‚˜νƒ€λ‚œλ‹€.',
462
+ trailer: 'https://www.youtube.com/embed/JfVOs4VSpmA'
463
+ },
464
+ 'The Batman': {
465
+ year: '2022',
466
+ rating: '7.9',
467
+ description: 'κ³ λ‹΄ μ‹œμ˜ μ–΄λ‘  속을 λ°°νšŒν•˜λŠ” 배트맨. λΆ€μœ ν•œ 웨인 κ°€μ˜ ν›„κ³„μž 브루슀 웨인은 κ³ λ‹΄μ˜ λΆ€νŒ¨ν•œ 거리λ₯Ό μ •μ˜λ‘œ μ‹¬νŒν•œλ‹€. 수수께끼 같은 연쇄살인범 λ¦¬λ“€λŸ¬κ°€ λ‚˜νƒ€λ‚˜λ©΄μ„œ λ°°νŠΈλ§¨μ€ μƒˆλ‘œμš΄ 쑰사λ₯Ό μ‹œμž‘ν•œλ‹€.',
468
+ trailer: 'https://www.youtube.com/embed/mqqft2x_Aa4'
469
+ },
470
+ // Add data for other movies similarly...
471
+ };
472
+
473
+ // Open player when movie card is clicked
474
+ movieCards.forEach(card => {
475
+ card.addEventListener('click', function() {
476
+ const title = this.querySelector('h3').textContent;
477
+ const data = movieData[title] || {
478
+ year: this.querySelector('span:first-child').textContent,
479
+ rating: this.querySelector('span:last-child span').textContent,
480
+ description: '이 μ˜ν™”μ— λŒ€ν•œ μ„€λͺ…을 μ€€λΉ„ μ€‘μž…λ‹ˆλ‹€.',
481
+ trailer: 'https://www.youtube.com/embed/dQw4w9WgXcQ' // Default trailer
482
+ };
483
+
484
+ playerTitle.textContent = title;
485
+ playerYear.textContent = data.year;
486
+ playerRating.textContent = data.rating;
487
+ playerDescription.textContent = data.description;
488
+ playerIframe.src = data.trailer;
489
+
490
+ moviePlayer.classList.remove('hidden');
491
+ document.body.style.overflow = 'hidden';
492
+ });
493
+ });
494
+
495
+ // Close player
496
+ closePlayer.addEventListener('click', function() {
497
+ moviePlayer.classList.add('hidden');
498
+ playerIframe.src = '';
499
+ document.body.style.overflow = 'auto';
500
+ });
501
+
502
+ // Close player when clicking outside
503
+ moviePlayer.addEventListener('click', function(e) {
504
+ if (e.target === this) {
505
+ moviePlayer.classList.add('hidden');
506
+ playerIframe.src = '';
507
+ document.body.style.overflow = 'auto';
508
+ }
509
+ });
510
+
511
+ // Mobile menu toggle
512
+ document.getElementById('mobile-menu-button').addEventListener('click', function() {
513
+ const menu = document.getElementById('mobile-menu');
514
+ menu.classList.toggle('hidden');
515
+ });
516
+
517
+ // Category buttons active state
518
+ const categoryButtons = document.querySelectorAll('.category-btn');
519
+ categoryButtons.forEach(button => {
520
+ button.addEventListener('click', function() {
521
+ categoryButtons.forEach(btn => btn.classList.remove('active'));
522
+ this.classList.add('active');
523
+ });
524
+ });
525
+
526
+ // Simple search functionality
527
+ document.querySelector('input[type="text"]').addEventListener('keyup', function(e) {
528
+ if (e.key === 'Enter') {
529
+ alert('검색어: ' + this.value);
530
+ this.value = '';
531
+ }
532
+ });
533
+ </script>
534
+ </body>
535
+ </html>
prompts.txt ADDED
File without changes