-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathentertainment.html
More file actions
310 lines (288 loc) · 15.2 KB
/
entertainment.html
File metadata and controls
310 lines (288 loc) · 15.2 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Entertainment | Football Insights</title>
<script src="https://cdn.tailwindcss.com"></script>
<script>
tailwind.config = {
darkMode: 'class',
theme: {
extend: {
colors: {
dark: {
800: '#1e293b',
900: '#0f172a',
}
}
}
}
}
</script>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css">
<script src="https://cdn.jsdelivr.net/npm/chart.js"></script>
<style>
.collapsed {
width: 4rem;
background-color: #1e293b;
/* Ensure background color remains */
}
.collapsed .nav-text {
display: none;
}
.transition-all {
transition: all 0.3s ease;
}
.video-card:hover {
transform: translateY(-2px);
box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}
.video-thumbnail::after {
content: "";
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: rgba(0, 0, 0, 0.3);
transition: all 0.3s ease;
}
.video-thumbnail:hover::after {
background: rgba(0, 0, 0, 0.1);
}
</style>
</head>
<body class="bg-dark-900 text-gray-100 flex h-screen">
<!-- Sidebar -->
<div id="sidebar" class="bg-dark-800 text-white w-64 h-full flex flex-col border-r border-gray-700">
<div class="p-4 flex items-center justify-between border-b border-gray-700">
<div class="flex items-center space-x-2">
<i class="fas fa-futbol text-2xl"></i>
<span class="font-bold text-xl">Football Insights</span>
</div>
</div>
<nav class="flex-1 overflow-y-auto">
<div class="p-2">
<a href="index.html" class="flex items-center space-x-3 p-3 rounded hover:bg-gray-700 text-white">
<i class="fas fa-home w-6 text-center"></i>
<span>Homepage</span>
</a>
<a href="news.html" class="flex items-center space-x-3 p-3 rounded hover:bg-gray-700 text-white">
<i class="fas fa-newspaper w-6 text-center"></i>
<span>News</span>
</a>
<a href="entertainment.html" class="flex items-center space-x-3 p-3 rounded bg-gray-700 text-white">
<i class="fas fa-video w-6 text-center"></i>
<span>Entertainment</span>
</a>
<a href="stats.html" class="flex items-center space-x-3 p-3 rounded hover:bg-gray-700 text-white">
<i class="fas fa-table w-6 text-center"></i>
<span>Stats</span>
</a>
<a href="video.html" class="flex items-center space-x-3 p-3 rounded hover:bg-gray-700 text-white">
<i class="fas fa-upload w-6 text-center"></i>
<span>Video Analysis</span>
</a>
<a href="analysis.html" class="flex items-center space-x-3 p-3 rounded hover:bg-gray-700 text-white">
<i class="fas fa-chart-bar w-6 text-center"></i>
<span>Comparision</span>
</a>
<a href="fixtures.html" class="flex items-center space-x-3 p-3 rounded hover:bg-gray-700 text-white">
<i class="fas fa-calendar-alt w-6 text-center"></i>
<span>Fixtures</span>
</a>
<a href="features.html" class="flex items-center space-x-3 p-3 rounded hover:bg-gray-700 text-white">
<i class="fas fa-list w-6 text-center"></i>
<span>Features</span>
</a>
</div>
</nav>
<div class="p-4 border-t border-gray-700">
<a href="login.html" class="flex items-center space-x-3 p-3 rounded hover:bg-gray-700 text-white">
<i class="fas fa-sign-in-alt w-6 text-center"></i>
<span class="nav-text">Login</span>
</a>
</div>
</div>
<!-- Main Content -->
<div class="flex-1 overflow-y-auto p-8">
<h1 class="text-3xl font-bold text-white mb-6">Entertainment Section</h1>
<!-- European Competitions -->
<div class="bg-dark-800 p-6 rounded-lg shadow-lg mb-6">
<h2 class="text-2xl font-semibold text-white mb-4">European Competitions</h2>
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-6">
<!-- UEFA Champions League -->
<div class="video-card bg-dark-800 rounded-lg overflow-hidden shadow-lg">
<div class="relative video-thumbnail">
<img src="ucl-logo.png" alt="UCL Logo" class="w-full h-48 object-cover">
<a href="#" class="absolute inset-0 flex items-center justify-center text-white text-2xl">
<i class="fas fa-play-circle"></i>
</a>
</div>
<div class="p-4">
<h3 class="text-lg font-semibold text-white">UCL Match Highlights</h3>
<p class="text-gray-300">Watch the best moments from the UEFA Champions League.</p>
</div>
</div>
<!-- UEFA Europa League -->
<div class="video-card bg-dark-800 rounded-lg overflow-hidden shadow-lg">
<div class="relative video-thumbnail">
<img src="uel-logo.png" alt="UEL Logo" class="w-full h-48 object-cover">
<a href="#" class="absolute inset-0 flex items-center justify-center text-white text-2xl">
<i class="fas fa-play-circle"></i>
</a>
</div>
<div class="p-4">
<h3 class="text-lg font-semibold text-white">UEL Match Highlights</h3>
<p class="text-gray-300">Watch the best moments from the UEFA Europa League.</p>
</div>
</div>
<!-- UEFA Europa Conference League -->
<div class="video-card bg-dark-800 rounded-lg overflow-hidden shadow-lg">
<div class="relative video-thumbnail">
<img src="uecl-logo.png" alt="UECL Logo" class="w-full h-48 object-cover">
<a href="#" class="absolute inset-0 flex items-center justify-center text-white text-2xl">
<i class="fas fa-play-circle"></i>
</a>
</div>
<div class="p-4">
<h3 class="text-lg font-semibold text-white">UECL Match Highlights</h3>
<p class="text-gray-300">Watch the best moments from the UEFA Europa Conference League.</p>
</div>
</div>
</div>
</div>
<!-- Domestic Competitions -->
<div class="bg-dark-800 p-6 rounded-lg shadow-lg mb-6">
<h2 class="text-2xl font-semibold text-white mb-4">Domestic Competitions</h2>
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-6">
<!-- FA Cup -->
<div class="video-card bg-dark-800 rounded-lg overflow-hidden shadow-lg">
<div class="relative video-thumbnail">
<img src="fa-cup-logo.png" alt="FA Cup Logo" class="w-full h-48 object-cover">
<a href="#" class="absolute inset-0 flex items-center justify-center text-white text-2xl">
<i class="fas fa-play-circle"></i>
</a>
</div>
<div class="p-4">
<h3 class="text-lg font-semibold text-white">FA Cup Match Highlights</h3>
<p class="text-gray-300">Watch the best moments from the FA Cup.</p>
</div>
</div>
<!-- Copa del Rey -->
<div class="video-card bg-dark-800 rounded-lg overflow-hidden shadow-lg">
<div class="relative video-thumbnail">
<img src="copa-del-rey-logo.png" alt="Copa del Rey Logo" class="w-full h-48 object-cover">
<a href="#" class="absolute inset-0 flex items-center justify-center text-white text-2xl">
<i class="fas fa-play-circle"></i>
</a>
</div>
<div class="p-4">
<h3 class="text-lg font-semibold text-white">Copa del Rey Match Highlights</h3>
<p class="text-gray-300">Watch the best moments from the Copa del Rey.</p>
</div>
</div>
<!-- DFB-Pokal -->
<div class="video-card bg-dark-800 rounded-lg overflow-hidden shadow-lg">
<div class="relative video-thumbnail">
<img src="dfb-pokal-logo.png" alt="DFB-Pokal Logo" class="w-full h-48 object-cover">
<a href="#" class="absolute inset-0 flex items-center justify-center text-white text-2xl">
<i class="fas fa-play-circle"></i>
</a>
</div>
<div class="p-4">
<h3 class="text-lg font-semibold text-white">DFB-Pokal Match Highlights</h3>
<p class="text-gray-300">Watch the best moments from the DFB-Pokal.</p>
</div>
</div>
<!-- Coupe de France -->
<div class="video-card bg-dark-800 rounded-lg overflow-hidden shadow-lg">
<div class="relative video-thumbnail">
<img src="coupe-de-france-logo.png" alt="Coupe de France Logo" class="w-full h-48 object-cover">
<a href="#" class="absolute inset-0 flex items-center justify-center text-white text-2xl">
<i class="fas fa-play-circle"></i>
</a>
</div>
<div class="p-4">
<h3 class="text-lg font-semibold text-white">Coupe de France Match Highlights</h3>
<p class="text-gray-300">Watch the best moments from the Coupe de France.</p>
</div>
</div>
<!-- Coppa Italia -->
<div class="video-card bg-dark-800 rounded-lg overflow-hidden shadow-lg">
<div class="relative video-thumbnail">
<img src="coppa-italia-logo.png" alt="Coppa Italia Logo" class="w-full h-48 object-cover">
<a href="#" class="absolute inset-0 flex items-center justify-center text-white text-2xl">
<i class="fas fa-play-circle"></i>
</a>
</div>
<div class="p-4">
<h3 class="text-lg font-semibold text-white">Coppa Italia Match Highlights</h3>
<p class="text-gray-300">Watch the best moments from the Coppa Italia.</p>
</div>
</div>
<!-- KNVB Cup -->
<div class="video-card bg-dark-800 rounded-lg overflow-hidden shadow-lg">
<div class="relative video-thumbnail">
<img src="knvb-cup-logo.png" alt="KNVB Cup Logo" class="w-full h-48 object-cover">
<a href="#" class="absolute inset-0 flex items-center justify-center text-white text-2xl">
<i class="fas fa-play-circle"></i>
</a>
</div>
<div class="p-4">
<h3 class="text-lg font-semibold text-white">KNVB Cup Match Highlights</h3>
<p class="text-gray-300">Watch the best moments from the KNVB Cup.</p>
</div>
</div>
</div>
</div>
<!-- International Features -->
<div class="bg-dark-800 p-6 rounded-lg shadow-lg mb-6">
<h2 class="text-2xl font-semibold text-white mb-4">International Features</h2>
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-6">
<!-- FIFA World Cup -->
<div class="video-card bg-dark-800 rounded-lg overflow-hidden shadow-lg">
<div class="relative video-thumbnail">
<img src="fifa-world-cup-logo.png" alt="FIFA World Cup Logo" class="w-full h-48 object-cover">
<a href="#" class="absolute inset-0 flex items-center justify-center text-white text-2xl">
<i class="fas fa-play-circle"></i>
</a>
</div>
<div class="p-4">
<h3 class="text-lg font-semibold text-white">FIFA World Cup Highlights</h3>
<p class="text-gray-300">Watch the best moments from the FIFA World Cup.</p>
</div>
</div>
<!-- UEFA European Championship -->
<div class="video-card bg-dark-800 rounded-lg overflow-hidden shadow-lg">
<div class="relative video-thumbnail">
<img src="uefa-european-championship-logo.png" alt="UEFA Euro Logo"
class="w-full h-48 object-cover">
<a href="#" class="absolute inset-0 flex items-center justify-center text-white text-2xl">
<i class="fas fa-play-circle"></i>
</a>
</div>
<div class="p-4">
<h3 class="text-lg font-semibold text-white">UEFA Euros Highlights</h3>
<p class="text-gray-300">Watch the best moments from the UEFA European Championship.</p>
</div>
</div>
<!-- Copa America -->
<div class="video-card bg-dark-800 rounded-lg overflow-hidden shadow-lg">
<div class="relative video-thumbnail">
<img src="copa-america-logo.png" alt="Copa America Logo" class="w-full h-48 object-cover">
<a href="#" class="absolute inset-0 flex items-center justify-center text-white text-2xl">
<i class="fas fa-play-circle"></i>
</a>
</div>
<div class="p-4">
<h3 class="text-lg font-semibold text-white">Copa America Highlights</h3>
<p class="text-gray-300">Watch the best moments from the Copa America.</p>
</div>
</div>
</div>
</div>
</div>
</body>
</html>