docto41 commited on
Commit
b8cd91d
·
verified ·
1 Parent(s): 259c468

Add 3 files

Browse files
Files changed (3) hide show
  1. README.md +7 -5
  2. index.html +515 -19
  3. prompts.txt +0 -0
README.md CHANGED
@@ -1,10 +1,12 @@
1
  ---
2
- title: Stream Tv
3
- emoji: 📊
4
- colorFrom: yellow
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: stream-tv
3
+ emoji: 🐳
4
+ colorFrom: green
5
+ colorTo: green
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,515 @@
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>TV Streaming Platform</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
+ @keyframes fadeIn {
11
+ from { opacity: 0; }
12
+ to { opacity: 1; }
13
+ }
14
+ .channel-card:hover {
15
+ transform: translateY(-5px);
16
+ box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
17
+ }
18
+ .video-container {
19
+ aspect-ratio: 16/9;
20
+ }
21
+ .gradient-overlay {
22
+ background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0) 100%);
23
+ }
24
+ .scroll-hidden::-webkit-scrollbar {
25
+ display: none;
26
+ }
27
+ </style>
28
+ </head>
29
+ <body class="bg-gray-900 text-white">
30
+ <!-- Header -->
31
+ <header class="bg-black/80 backdrop-blur-md fixed w-full z-50 border-b border-gray-800">
32
+ <div class="container mx-auto px-4 py-3 flex justify-between items-center">
33
+ <div class="flex items-center space-x-4">
34
+ <div class="flex items-center">
35
+ <i class="fas fa-tv text-red-500 text-2xl mr-2"></i>
36
+ <h1 class="text-xl font-bold bg-gradient-to-r from-red-500 to-purple-500 bg-clip-text text-transparent">StreamTV</h1>
37
+ </div>
38
+ <nav class="hidden md:flex space-x-6">
39
+ <a href="#" class="hover:text-red-400 transition">Home</a>
40
+ <a href="#" class="hover:text-red-400 transition">Live</a>
41
+ <a href="#" class="hover:text-red-400 transition">Movies</a>
42
+ <a href="#" class="hover:text-red-400 transition">Series</a>
43
+ <a href="#" class="hover:text-red-400 transition">Sports</a>
44
+ </nav>
45
+ </div>
46
+ <div class="flex items-center space-x-4">
47
+ <div class="relative">
48
+ <input type="text" placeholder="Search..." class="bg-gray-800/50 rounded-full py-2 px-4 pl-10 text-sm focus:outline-none focus:ring-2 focus:ring-red-500 w-40 md:w-64">
49
+ <i class="fas fa-search absolute left-3 top-2.5 text-gray-400"></i>
50
+ </div>
51
+ <button class="bg-red-600 hover:bg-red-700 px-4 py-2 rounded-full text-sm font-medium transition">
52
+ <i class="fas fa-user mr-2"></i> Sign In
53
+ </button>
54
+ </div>
55
+ </div>
56
+ </header>
57
+
58
+ <!-- Main Content -->
59
+ <main class="pt-20 pb-16">
60
+ <!-- Hero Section -->
61
+ <section class="relative">
62
+ <div class="video-container w-full bg-black">
63
+ <div class="absolute inset-0 gradient-overlay flex items-end p-8 md:p-16">
64
+ <div class="max-w-3xl">
65
+ <span class="bg-red-600/80 text-white px-3 py-1 rounded-full text-xs font-bold mb-3 inline-block">LIVE NOW</span>
66
+ <h2 class="text-3xl md:text-5xl font-bold mb-3">Premier League: Manchester United vs Liverpool</h2>
67
+ <p class="text-gray-300 mb-4">Watch the biggest match of the season with exclusive commentary and analysis.</p>
68
+ <div class="flex space-x-4">
69
+ <button class="bg-red-600 hover:bg-red-700 px-6 py-2 rounded-full font-medium flex items-center">
70
+ <i class="fas fa-play mr-2"></i> Watch Now
71
+ </button>
72
+ <button class="bg-gray-800/70 hover:bg-gray-700/70 px-6 py-2 rounded-full font-medium flex items-center">
73
+ <i class="fas fa-plus mr-2"></i> Add to List
74
+ </button>
75
+ </div>
76
+ </div>
77
+ </div>
78
+ <video autoplay muted loop class="w-full h-full object-cover">
79
+ <source src="https://sample-videos.com/video123/mp4/720/big_buck_bunny_720p_1mb.mp4" type="video/mp4">
80
+ </video>
81
+ </div>
82
+ </section>
83
+
84
+ <!-- Channel Categories -->
85
+ <div class="container mx-auto px-4 py-8">
86
+ <!-- Live Channels -->
87
+ <section class="mb-12">
88
+ <div class="flex justify-between items-center mb-6">
89
+ <h3 class="text-2xl font-bold flex items-center">
90
+ <i class="fas fa-bolt text-red-500 mr-3"></i> Live Channels
91
+ </h3>
92
+ <a href="#" class="text-sm text-gray-400 hover:text-white flex items-center">
93
+ View All <i class="fas fa-chevron-right ml-1"></i>
94
+ </a>
95
+ </div>
96
+ <div class="grid grid-cols-2 sm:grid-cols-3 md:grid-cols-4 lg:grid-cols-5 xl:grid-cols-6 gap-4">
97
+ <!-- Channel Cards -->
98
+ <div class="channel-card bg-gray-800 rounded-lg overflow-hidden transition-all duration-300 cursor-pointer">
99
+ <div class="relative">
100
+ <img src="https://via.placeholder.com/300x180/1F2937/FFFFFF?text=ESPN" alt="ESPN" class="w-full h-auto">
101
+ <div class="absolute top-2 left-2 bg-red-600 text-white text-xs px-2 py-1 rounded">LIVE</div>
102
+ <div class="absolute bottom-2 right-2 bg-black/70 text-white text-xs px-2 py-0.5 rounded flex items-center">
103
+ <i class="fas fa-eye mr-1 text-xs"></i> 24.5K
104
+ </div>
105
+ </div>
106
+ <div class="p-3">
107
+ <h4 class="font-medium truncate">Premier League Live</h4>
108
+ <p class="text-gray-400 text-sm truncate">ESPN • Sports</p>
109
+ </div>
110
+ </div>
111
+
112
+ <div class="channel-card bg-gray-800 rounded-lg overflow-hidden transition-all duration-300 cursor-pointer">
113
+ <div class="relative">
114
+ <img src="https://via.placeholder.com/300x180/1F2937/FFFFFF?text=CNN" alt="CNN" class="w-full h-auto">
115
+ <div class="absolute top-2 left-2 bg-red-600 text-white text-xs px-2 py-1 rounded">LIVE</div>
116
+ <div class="absolute bottom-2 right-2 bg-black/70 text-white text-xs px-2 py-0.5 rounded flex items-center">
117
+ <i class="fas fa-eye mr-1 text-xs"></i> 18.2K
118
+ </div>
119
+ </div>
120
+ <div class="p-3">
121
+ <h4 class="font-medium truncate">Breaking News</h4>
122
+ <p class="text-gray-400 text-sm truncate">CNN • News</p>
123
+ </div>
124
+ </div>
125
+
126
+ <div class="channel-card bg-gray-800 rounded-lg overflow-hidden transition-all duration-300 cursor-pointer">
127
+ <div class="relative">
128
+ <img src="https://via.placeholder.com/300x180/1F2937/FFFFFF?text=HBO" alt="HBO" class="w-full h-auto">
129
+ <div class="absolute top-2 left-2 bg-red-600 text-white text-xs px-2 py-1 rounded">LIVE</div>
130
+ <div class="absolute bottom-2 right-2 bg-black/70 text-white text-xs px-2 py-0.5 rounded flex items-center">
131
+ <i class="fas fa-eye mr-1 text-xs"></i> 12.7K
132
+ </div>
133
+ </div>
134
+ <div class="p-3">
135
+ <h4 class="font-medium truncate">Movie Premiere</h4>
136
+ <p class="text-gray-400 text-sm truncate">HBO • Movies</p>
137
+ </div>
138
+ </div>
139
+
140
+ <div class="channel-card bg-gray-800 rounded-lg overflow-hidden transition-all duration-300 cursor-pointer">
141
+ <div class="relative">
142
+ <img src="https://via.placeholder.com/300x180/1F2937/FFFFFF?text=Discovery" alt="Discovery" class="w-full h-auto">
143
+ <div class="absolute top-2 left-2 bg-red-600 text-white text-xs px-2 py-1 rounded">LIVE</div>
144
+ <div class="absolute bottom-2 right-2 bg-black/70 text-white text-xs px-2 py-0.5 rounded flex items-center">
145
+ <i class="fas fa-eye mr-1 text-xs"></i> 8.3K
146
+ </div>
147
+ </div>
148
+ <div class="p-3">
149
+ <h4 class="font-medium truncate">Wildlife Documentary</h4>
150
+ <p class="text-gray-400 text-sm truncate">Discovery • Nature</p>
151
+ </div>
152
+ </div>
153
+
154
+ <div class="channel-card bg-gray-800 rounded-lg overflow-hidden transition-all duration-300 cursor-pointer">
155
+ <div class="relative">
156
+ <img src="https://via.placeholder.com/300x180/1F2937/FFFFFF?text=MTV" alt="MTV" class="w-full h-auto">
157
+ <div class="absolute top-2 left-2 bg-red-600 text-white text-xs px-2 py-1 rounded">LIVE</div>
158
+ <div class="absolute bottom-2 right-2 bg-black/70 text-white text-xs px-2 py-0.5 rounded flex items-center">
159
+ <i class="fas fa-eye mr-1 text-xs"></i> 15.1K
160
+ </div>
161
+ </div>
162
+ <div class="p-3">
163
+ <h4 class="font-medium truncate">Music Awards 2023</h4>
164
+ <p class="text-gray-400 text-sm truncate">MTV • Music</p>
165
+ </div>
166
+ </div>
167
+
168
+ <div class="channel-card bg-gray-800 rounded-lg overflow-hidden transition-all duration-300 cursor-pointer">
169
+ <div class="relative">
170
+ <img src="https://via.placeholder.com/300x180/1F2937/FFFFFF?text=Cartoon" alt="Cartoon Network" class="w-full h-auto">
171
+ <div class="absolute top-2 left-2 bg-red-600 text-white text-xs px-2 py-1 rounded">LIVE</div>
172
+ <div class="absolute bottom-2 right-2 bg-black/70 text-white text-xs px-2 py-0.5 rounded flex items-center">
173
+ <i class="fas fa-eye mr-1 text-xs"></i> 6.8K
174
+ </div>
175
+ </div>
176
+ <div class="p-3">
177
+ <h4 class="font-medium truncate">Kids Morning Show</h4>
178
+ <p class="text-gray-400 text-sm truncate">Cartoon Network • Kids</p>
179
+ </div>
180
+ </div>
181
+ </div>
182
+ </section>
183
+
184
+ <!-- Popular Shows -->
185
+ <section class="mb-12">
186
+ <div class="flex justify-between items-center mb-6">
187
+ <h3 class="text-2xl font-bold flex items-center">
188
+ <i class="fas fa-fire text-red-500 mr-3"></i> Popular Shows
189
+ </h3>
190
+ <a href="#" class="text-sm text-gray-400 hover:text-white flex items-center">
191
+ View All <i class="fas fa-chevron-right ml-1"></i>
192
+ </a>
193
+ </div>
194
+ <div class="relative">
195
+ <div class="flex overflow-x-auto pb-4 scroll-hidden space-x-4">
196
+ <!-- Show Cards -->
197
+ <div class="flex-shrink-0 w-64 bg-gray-800 rounded-lg overflow-hidden transition-all duration-300 cursor-pointer group">
198
+ <div class="relative">
199
+ <img src="https://via.placeholder.com/400x225/1F2937/FFFFFF?text=Stranger+Things" alt="Stranger Things" class="w-full h-auto group-hover:opacity-80 transition">
200
+ <div class="absolute inset-0 bg-gradient-to-t from-black/80 via-transparent to-transparent flex items-end p-4">
201
+ <div>
202
+ <span class="bg-red-600 text-white px-2 py-0.5 rounded-full text-xs font-bold">NEW</span>
203
+ </div>
204
+ </div>
205
+ </div>
206
+ <div class="p-3">
207
+ <h4 class="font-medium mb-1">Stranger Things</h4>
208
+ <div class="flex justify-between items-center text-sm">
209
+ <span class="text-gray-400">Season 4</span>
210
+ <div class="flex items-center text-yellow-400">
211
+ <i class="fas fa-star text-xs mr-1"></i>
212
+ <span>4.8</span>
213
+ </div>
214
+ </div>
215
+ </div>
216
+ </div>
217
+
218
+ <div class="flex-shrink-0 w-64 bg-gray-800 rounded-lg overflow-hidden transition-all duration-300 cursor-pointer group">
219
+ <div class="relative">
220
+ <img src="https://via.placeholder.com/400x225/1F2937/FFFFFF?text=The+Last+of+Us" alt="The Last of Us" class="w-full h-auto group-hover:opacity-80 transition">
221
+ <div class="absolute inset-0 bg-gradient-to-t from-black/80 via-transparent to-transparent flex items-end p-4">
222
+ <div>
223
+ <span class="bg-red-600 text-white px-2 py-0.5 rounded-full text-xs font-bold">TRENDING</span>
224
+ </div>
225
+ </div>
226
+ </div>
227
+ <div class="p-3">
228
+ <h4 class="font-medium mb-1">The Last of Us</h4>
229
+ <div class="flex justify-between items-center text-sm">
230
+ <span class="text-gray-400">Season 1</span>
231
+ <div class="flex items-center text-yellow-400">
232
+ <i class="fas fa-star text-xs mr-1"></i>
233
+ <span>4.9</span>
234
+ </div>
235
+ </div>
236
+ </div>
237
+ </div>
238
+
239
+ <div class="flex-shrink-0 w-64 bg-gray-800 rounded-lg overflow-hidden transition-all duration-300 cursor-pointer group">
240
+ <div class="relative">
241
+ <img src="https://via.placeholder.com/400x225/1F2937/FFFFFF?text=House+of+Dragons" alt="House of Dragons" class="w-full h-auto group-hover:opacity-80 transition">
242
+ <div class="absolute inset-0 bg-gradient-to-t from-black/80 via-transparent to-transparent flex items-end p-4">
243
+ <div>
244
+ <span class="bg-purple-600 text-white px-2 py-0.5 rounded-full text-xs font-bold">POPULAR</span>
245
+ </div>
246
+ </div>
247
+ </div>
248
+ <div class="p-3">
249
+ <h4 class="font-medium mb-1">House of Dragons</h4>
250
+ <div class="flex justify-between items-center text-sm">
251
+ <span class="text-gray-400">Season 1</span>
252
+ <div class="flex items-center text-yellow-400">
253
+ <i class="fas fa-star text-xs mr-1"></i>
254
+ <span>4.7</span>
255
+ </div>
256
+ </div>
257
+ </div>
258
+ </div>
259
+
260
+ <div class="flex-shrink-0 w-64 bg-gray-800 rounded-lg overflow-hidden transition-all duration-300 cursor-pointer group">
261
+ <div class="relative">
262
+ <img src="https://via.placeholder.com/400x225/1F2937/FFFFFF?text=Wednesday" alt="Wednesday" class="w-full h-auto group-hover:opacity-80 transition">
263
+ <div class="absolute inset-0 bg-gradient-to-t from-black/80 via-transparent to-transparent flex items-end p-4">
264
+ <div>
265
+ <span class="bg-blue-600 text-white px-2 py-0.5 rounded-full text-xs font-bold">HOT</span>
266
+ </div>
267
+ </div>
268
+ </div>
269
+ <div class="p-3">
270
+ <h4 class="font-medium mb-1">Wednesday</h4>
271
+ <div class="flex justify-between items-center text-sm">
272
+ <span class="text-gray-400">Season 1</span>
273
+ <div class="flex items-center text-yellow-400">
274
+ <i class="fas fa-star text-xs mr-1"></i>
275
+ <span>4.8</span>
276
+ </div>
277
+ </div>
278
+ </div>
279
+ </div>
280
+
281
+ <div class="flex-shrink-0 w-64 bg-gray-800 rounded-lg overflow-hidden transition-all duration-300 cursor-pointer group">
282
+ <div class="relative">
283
+ <img src="https://via.placeholder.com/400x225/1F2937/FFFFFF?text=The+Witcher" alt="The Witcher" class="w-full h-auto group-hover:opacity-80 transition">
284
+ <div class="absolute inset-0 bg-gradient-to-t from-black/80 via-transparent to-transparent flex items-end p-4">
285
+ <div>
286
+ <span class="bg-green-600 text-white px-2 py-0.5 rounded-full text-xs font-bold">NEW</span>
287
+ </div>
288
+ </div>
289
+ </div>
290
+ <div class="p-3">
291
+ <h4 class="font-medium mb-1">The Witcher</h4>
292
+ <div class="flex justify-between items-center text-sm">
293
+ <span class="text-gray-400">Season 3</span>
294
+ <div class="flex items-center text-yellow-400">
295
+ <i class="fas fa-star text-xs mr-1"></i>
296
+ <span>4.6</span>
297
+ </div>
298
+ </div>
299
+ </div>
300
+ </div>
301
+ </div>
302
+ </div>
303
+ </section>
304
+
305
+ <!-- Categories -->
306
+ <section class="mb-12">
307
+ <h3 class="text-2xl font-bold mb-6 flex items-center">
308
+ <i class="fas fa-tags text-red-500 mr-3"></i> Browse Categories
309
+ </h3>
310
+ <div class="grid grid-cols-2 sm:grid-cols-3 md:grid-cols-4 lg:grid-cols-5 gap-4">
311
+ <div class="bg-gray-800/50 hover:bg-gray-800 rounded-lg p-4 flex flex-col items-center cursor-pointer transition border border-gray-700 hover:border-red-500/50">
312
+ <div class="w-12 h-12 bg-red-600/20 rounded-full flex items-center justify-center mb-3">
313
+ <i class="fas fa-futbol text-red-500"></i>
314
+ </div>
315
+ <span class="font-medium">Sports</span>
316
+ </div>
317
+
318
+ <div class="bg-gray-800/50 hover:bg-gray-800 rounded-lg p-4 flex flex-col items-center cursor-pointer transition border border-gray-700 hover:border-blue-500/50">
319
+ <div class="w-12 h-12 bg-blue-600/20 rounded-full flex items-center justify-center mb-3">
320
+ <i class="fas fa-film text-blue-500"></i>
321
+ </div>
322
+ <span class="font-medium">Movies</span>
323
+ </div>
324
+
325
+ <div class="bg-gray-800/50 hover:bg-gray-800 rounded-lg p-4 flex flex-col items-center cursor-pointer transition border border-gray-700 hover:border-purple-500/50">
326
+ <div class="w-12 h-12 bg-purple-600/20 rounded-full flex items-center justify-center mb-3">
327
+ <i class="fas fa-tv text-purple-500"></i>
328
+ </div>
329
+ <span class="font-medium">TV Shows</span>
330
+ </div>
331
+
332
+ <div class="bg-gray-800/50 hover:bg-gray-800 rounded-lg p-4 flex flex-col items-center cursor-pointer transition border border-gray-700 hover:border-green-500/50">
333
+ <div class="w-12 h-12 bg-green-600/20 rounded-full flex items-center justify-center mb-3">
334
+ <i class="fas fa-newspaper text-green-500"></i>
335
+ </div>
336
+ <span class="font-medium">News</span>
337
+ </div>
338
+
339
+ <div class="bg-gray-800/50 hover:bg-gray-800 rounded-lg p-4 flex flex-col items-center cursor-pointer transition border border-gray-700 hover:border-yellow-500/50">
340
+ <div class="w-12 h-12 bg-yellow-600/20 rounded-full flex items-center justify-center mb-3">
341
+ <i class="fas fa-music text-yellow-500"></i>
342
+ </div>
343
+ <span class="font-medium">Music</span>
344
+ </div>
345
+
346
+ <div class="bg-gray-800/50 hover:bg-gray-800 rounded-lg p-4 flex flex-col items-center cursor-pointer transition border border-gray-700 hover:border-pink-500/50">
347
+ <div class="w-12 h-12 bg-pink-600/20 rounded-full flex items-center justify-center mb-3">
348
+ <i class="fas fa-child text-pink-500"></i>
349
+ </div>
350
+ <span class="font-medium">Kids</span>
351
+ </div>
352
+
353
+ <div class="bg-gray-800/50 hover:bg-gray-800 rounded-lg p-4 flex flex-col items-center cursor-pointer transition border border-gray-700 hover:border-indigo-500/50">
354
+ <div class="w-12 h-12 bg-indigo-600/20 rounded-full flex items-center justify-center mb-3">
355
+ <i class="fas fa-globe text-indigo-500"></i>
356
+ </div>
357
+ <span class="font-medium">Documentary</span>
358
+ </div>
359
+
360
+ <div class="bg-gray-800/50 hover:bg-gray-800 rounded-lg p-4 flex flex-col items-center cursor-pointer transition border border-gray-700 hover:border-orange-500/50">
361
+ <div class="w-12 h-12 bg-orange-600/20 rounded-full flex items-center justify-center mb-3">
362
+ <i class="fas fa-gamepad text-orange-500"></i>
363
+ </div>
364
+ <span class="font-medium">Gaming</span>
365
+ </div>
366
+ </div>
367
+ </section>
368
+ </div>
369
+ </main>
370
+
371
+ <!-- Footer -->
372
+ <footer class="bg-black/80 backdrop-blur-md border-t border-gray-800 py-8">
373
+ <div class="container mx-auto px-4">
374
+ <div class="grid grid-cols-1 md:grid-cols-4 gap-8">
375
+ <div>
376
+ <div class="flex items-center mb-4">
377
+ <i class="fas fa-tv text-red-500 text-2xl mr-2"></i>
378
+ <h2 class="text-xl font-bold">StreamTV</h2>
379
+ </div>
380
+ <p class="text-gray-400 text-sm mb-4">The ultimate streaming platform for live TV, movies, and series.</p>
381
+ <div class="flex space-x-4">
382
+ <a href="#" class="text-gray-400 hover:text-white transition">
383
+ <i class="fab fa-facebook-f"></i>
384
+ </a>
385
+ <a href="#" class="text-gray-400 hover:text-white transition">
386
+ <i class="fab fa-twitter"></i>
387
+ </a>
388
+ <a href="#" class="text-gray-400 hover:text-white transition">
389
+ <i class="fab fa-instagram"></i>
390
+ </a>
391
+ <a href="#" class="text-gray-400 hover:text-white transition">
392
+ <i class="fab fa-youtube"></i>
393
+ </a>
394
+ </div>
395
+ </div>
396
+
397
+ <div>
398
+ <h3 class="text-lg font-medium mb-4">Navigation</h3>
399
+ <ul class="space-y-2">
400
+ <li><a href="#" class="text-gray-400 hover:text-white transition text-sm">Home</a></li>
401
+ <li><a href="#" class="text-gray-400 hover:text-white transition text-sm">Live TV</a></li>
402
+ <li><a href="#" class="text-gray-400 hover:text-white transition text-sm">Movies</a></li>
403
+ <li><a href="#" class="text-gray-400 hover:text-white transition text-sm">TV Shows</a></li>
404
+ <li><a href="#" class="text-gray-400 hover:text-white transition text-sm">Sports</a></li>
405
+ </ul>
406
+ </div>
407
+
408
+ <div>
409
+ <h3 class="text-lg font-medium mb-4">Legal</h3>
410
+ <ul class="space-y-2">
411
+ <li><a href="#" class="text-gray-400 hover:text-white transition text-sm">Terms of Service</a></li>
412
+ <li><a href="#" class="text-gray-400 hover:text-white transition text-sm">Privacy Policy</a></li>
413
+ <li><a href="#" class="text-gray-400 hover:text-white transition text-sm">Cookie Policy</a></li>
414
+ <li><a href="#" class="text-gray-400 hover:text-white transition text-sm">DMCA</a></li>
415
+ </ul>
416
+ </div>
417
+
418
+ <div>
419
+ <h3 class="text-lg font-medium mb-4">Subscribe</h3>
420
+ <p class="text-gray-400 text-sm mb-4">Get the latest updates and offers.</p>
421
+ <div class="flex">
422
+ <input type="email" placeholder="Your email" class="bg-gray-700 text-white px-4 py-2 rounded-l focus:outline-none focus:ring-1 focus:ring-red-500 text-sm w-full">
423
+ <button class="bg-red-600 hover:bg-red-700 px-4 py-2 rounded-r text-sm">
424
+ <i class="fas fa-paper-plane"></i>
425
+ </button>
426
+ </div>
427
+ </div>
428
+ </div>
429
+
430
+ <div class="border-t border-gray-800 mt-8 pt-8 flex flex-col md:flex-row justify-between items-center">
431
+ <p class="text-gray-500 text-sm mb-4 md:mb-0">© 2023 StreamTV. All rights reserved.</p>
432
+ <div class="flex space-x-6">
433
+ <a href="#" class="text-gray-500 hover:text-white transition text-sm">Help Center</a>
434
+ <a href="#" class="text-gray-500 hover:text-white transition text-sm">Contact Us</a>
435
+ <a href="#" class="text-gray-500 hover:text-white transition text-sm">FAQ</a>
436
+ </div>
437
+ </div>
438
+ </div>
439
+ </footer>
440
+
441
+ <!-- Player Controls (Fixed Bottom) -->
442
+ <div class="fixed bottom-0 left-0 right-0 bg-gray-900/90 backdrop-blur-md border-t border-gray-800 py-2 px-4 hidden" id="player-controls">
443
+ <div class="container mx-auto flex items-center justify-between">
444
+ <div class="flex items-center space-x-4">
445
+ <img src="https://via.placeholder.com/60x34/1F2937/FFFFFF?text=PREVIEW" alt="Now Playing" class="w-15 h-9 rounded">
446
+ <div>
447
+ <h4 class="text-sm font-medium">Manchester United vs Liverpool</h4>
448
+ <p class="text-xs text-gray-400">ESPN • Premier League</p>
449
+ </div>
450
+ </div>
451
+
452
+ <div class="flex items-center space-x-4">
453
+ <button class="text-gray-300 hover:text-white">
454
+ <i class="fas fa-step-backward"></i>
455
+ </button>
456
+ <button class="text-gray-300 hover:text-white">
457
+ <i class="fas fa-pause"></i>
458
+ </button>
459
+ <button class="text-gray-300 hover:text-white">
460
+ <i class="fas fa-step-forward"></i>
461
+ </button>
462
+ <div class="flex items-center space-x-2 ml-4">
463
+ <i class="fas fa-volume-up text-gray-300 text-sm"></i>
464
+ <div class="w-24 bg-gray-700 rounded-full h-1">
465
+ <div class="bg-red-500 h-1 rounded-full" style="width: 70%"></div>
466
+ </div>
467
+ </div>
468
+ </div>
469
+
470
+ <div class="flex items-center space-x-4">
471
+ <button class="text-gray-300 hover:text-white">
472
+ <i class="fas fa-expand"></i>
473
+ </button>
474
+ <button class="text-gray-300 hover:text-white">
475
+ <i class="fas fa-cog"></i>
476
+ </button>
477
+ <button class="text-gray-300 hover:text-white">
478
+ <i class="fas fa-times"></i>
479
+ </button>
480
+ </div>
481
+ </div>
482
+ </div>
483
+
484
+ <script>
485
+ // Show player controls when scrolling down
486
+ window.addEventListener('scroll', function() {
487
+ const playerControls = document.getElementById('player-controls');
488
+ if (window.scrollY > 300) {
489
+ playerControls.classList.remove('hidden');
490
+ playerControls.classList.add('animate__fadeInUp');
491
+ } else {
492
+ playerControls.classList.add('hidden');
493
+ }
494
+ });
495
+
496
+ // Simulate channel click
497
+ document.querySelectorAll('.channel-card').forEach(card => {
498
+ card.addEventListener('click', function() {
499
+ // In a real app, this would load the channel stream
500
+ const channelName = this.querySelector('h4').textContent;
501
+ alert(`Loading channel: ${channelName}`);
502
+ });
503
+ });
504
+
505
+ // Simulate show click
506
+ document.querySelectorAll('.group').forEach(show => {
507
+ show.addEventListener('click', function() {
508
+ // In a real app, this would load the show details
509
+ const showName = this.querySelector('h4').textContent;
510
+ alert(`Loading show: ${showName}`);
511
+ });
512
+ });
513
+ </script>
514
+ <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/stream-tv" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
515
+ </html>
prompts.txt ADDED
File without changes