ontoligent commited on
Commit
6e55050
·
verified ·
1 Parent(s): 1a241df

Add 3 files

Browse files
Files changed (3) hide show
  1. README.md +7 -5
  2. index.html +437 -19
  3. prompts.txt +1 -0
README.md CHANGED
@@ -1,10 +1,12 @@
1
  ---
2
- title: A24 Site
3
- emoji: 🐠
4
- colorFrom: blue
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: a24-site
3
+ emoji: 🐳
4
+ colorFrom: green
5
+ colorTo: yellow
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,437 @@
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>Film Freaks | A24 Movie Reviews</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=Space+Grotesk:wght@300;400;500;600;700&display=swap');
11
+
12
+ body {
13
+ font-family: 'Space Grotesk', sans-serif;
14
+ background-color: #0f0f0f;
15
+ color: #f5f5f5;
16
+ }
17
+
18
+ .gradient-text {
19
+ background: linear-gradient(90deg, #ff4d4d, #f9cb28);
20
+ -webkit-background-clip: text;
21
+ background-clip: text;
22
+ color: transparent;
23
+ }
24
+
25
+ .movie-card {
26
+ transition: all 0.3s ease;
27
+ transform-style: preserve-3d;
28
+ }
29
+
30
+ .movie-card:hover {
31
+ transform: translateY(-10px) scale(1.02);
32
+ box-shadow: 0 20px 25px -5px rgba(255, 255, 255, 0.1), 0 10px 10px -5px rgba(255, 255, 255, 0.04);
33
+ }
34
+
35
+ .rating-circle {
36
+ width: 50px;
37
+ height: 50px;
38
+ border-radius: 50%;
39
+ display: flex;
40
+ align-items: center;
41
+ justify-content: center;
42
+ font-weight: bold;
43
+ position: absolute;
44
+ top: -15px;
45
+ right: -15px;
46
+ z-index: 10;
47
+ }
48
+
49
+ .glow {
50
+ box-shadow: 0 0 15px rgba(249, 203, 40, 0.5);
51
+ }
52
+
53
+ .review-text {
54
+ display: -webkit-box;
55
+ -webkit-line-clamp: 3;
56
+ -webkit-box-orient: vertical;
57
+ overflow: hidden;
58
+ }
59
+
60
+ .nav-link {
61
+ position: relative;
62
+ }
63
+
64
+ .nav-link::after {
65
+ content: '';
66
+ position: absolute;
67
+ width: 0;
68
+ height: 2px;
69
+ bottom: -2px;
70
+ left: 0;
71
+ background: linear-gradient(90deg, #ff4d4d, #f9cb28);
72
+ transition: width 0.3s ease;
73
+ }
74
+
75
+ .nav-link:hover::after {
76
+ width: 100%;
77
+ }
78
+
79
+ .search-bar:focus {
80
+ outline: none;
81
+ box-shadow: 0 0 0 2px rgba(249, 203, 40, 0.5);
82
+ }
83
+ </style>
84
+ </head>
85
+ <body>
86
+ <!-- Header/Navbar -->
87
+ <header class="sticky top-0 z-50 bg-black bg-opacity-80 backdrop-blur-sm border-b border-gray-800">
88
+ <div class="container mx-auto px-4 py-3 flex items-center justify-between">
89
+ <div class="flex items-center space-x-2">
90
+ <div class="w-10 h-10 bg-gradient-to-r from-red-500 to-yellow-400 rounded-full flex items-center justify-center">
91
+ <i class="fas fa-film text-white text-xl"></i>
92
+ </div>
93
+ <h1 class="text-2xl font-bold gradient-text">FilmFreaks</h1>
94
+ </div>
95
+
96
+ <nav class="hidden md:flex space-x-8">
97
+ <a href="#" class="nav-link text-white hover:text-yellow-400 transition">Home</a>
98
+ <a href="#" class="nav-link text-white hover:text-yellow-400 transition">Reviews</a>
99
+ <a href="#" class="nav-link text-white hover:text-yellow-400 transition">Rankings</a>
100
+ <a href="#" class="nav-link text-white hover:text-yellow-400 transition">News</a>
101
+ <a href="#" class="nav-link text-white hover:text-yellow-400 transition">About</a>
102
+ </nav>
103
+
104
+ <div class="flex items-center space-x-4">
105
+ <div class="relative">
106
+ <input type="text" placeholder="Search A24 films..." class="search-bar bg-gray-800 text-white px-4 py-2 rounded-full w-40 md:w-64 focus:w-64 transition-all duration-300">
107
+ <i class="fas fa-search absolute right-3 top-2.5 text-gray-400"></i>
108
+ </div>
109
+ <button class="md:hidden text-white">
110
+ <i class="fas fa-bars text-xl"></i>
111
+ </button>
112
+ </div>
113
+ </div>
114
+ </header>
115
+
116
+ <!-- Hero Section -->
117
+ <section class="relative h-96 md:h-screen max-h-screen overflow-hidden">
118
+ <div class="absolute inset-0 bg-gradient-to-t from-black to-transparent z-10"></div>
119
+ <div class="absolute inset-0 bg-gradient-to-r from-black to-transparent z-10"></div>
120
+ <img src="https://images.unsplash.com/photo-1536440136628-849c177e76a1?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1920&q=80" alt="Movie theater" class="w-full h-full object-cover">
121
+
122
+ <div class="absolute bottom-0 left-0 z-20 p-8 md:p-16 w-full md:w-2/3">
123
+ <span class="bg-yellow-400 text-black px-3 py-1 rounded-full text-xs font-bold">TRENDING</span>
124
+ <h1 class="text-4xl md:text-6xl font-bold mt-4 mb-2">A24's Latest Masterpiece</h1>
125
+ <p class="text-lg md:text-xl mb-6">"This film will haunt you for weeks" - Our review of the newest A24 psychological thriller</p>
126
+ <div class="flex space-x-4">
127
+ <button class="bg-yellow-400 hover:bg-yellow-500 text-black font-bold px-6 py-2 rounded-full transition flex items-center">
128
+ <i class="fas fa-play mr-2"></i> Watch Trailer
129
+ </button>
130
+ <button class="border-2 border-white hover:border-yellow-400 text-white font-bold px-6 py-2 rounded-full transition hover:text-yellow-400">
131
+ Read Review
132
+ </button>
133
+ </div>
134
+ </div>
135
+ </section>
136
+
137
+ <!-- Featured Reviews -->
138
+ <section class="py-16 px-4 md:px-0">
139
+ <div class="container mx-auto">
140
+ <div class="flex items-center justify-between mb-12">
141
+ <h2 class="text-3xl font-bold">🔥 Hot Takes</h2>
142
+ <a href="#" class="text-yellow-400 hover:text-yellow-300 flex items-center">
143
+ See all <i class="fas fa-arrow-right ml-2"></i>
144
+ </a>
145
+ </div>
146
+
147
+ <div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-8">
148
+ <!-- Review Card 1 -->
149
+ <div class="movie-card bg-gray-900 rounded-xl overflow-hidden relative">
150
+ <div class="rating-circle bg-gradient-to-r from-red-500 to-yellow-400 text-white">
151
+ 9.2
152
+ </div>
153
+ <img src="https://images.unsplash.com/photo-1598899134739-24c8fa2745a8?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=800&q=80" alt="Movie poster" class="w-full h-64 object-cover">
154
+ <div class="p-6">
155
+ <div class="flex items-center mb-2">
156
+ <span class="bg-yellow-400 text-black text-xs px-2 py-1 rounded mr-2">NEW</span>
157
+ <span class="text-gray-400 text-sm">Horror • 2023</span>
158
+ </div>
159
+ <h3 class="text-xl font-bold mb-2">The Haunting of Hill House</h3>
160
+ <p class="text-gray-400 review-text mb-4">This psychological horror film redefines the genre with its slow-burn tension and mind-bending narrative that will leave you questioning reality.</p>
161
+ <div class="flex items-center">
162
+ <img src="https://randomuser.me/api/portraits/women/44.jpg" alt="Reviewer" class="w-8 h-8 rounded-full mr-2">
163
+ <span class="text-sm">@cinephile_amy</span>
164
+ </div>
165
+ </div>
166
+ </div>
167
+
168
+ <!-- Review Card 2 -->
169
+ <div class="movie-card bg-gray-900 rounded-xl overflow-hidden relative">
170
+ <div class="rating-circle bg-gradient-to-r from-red-500 to-yellow-400 text-white">
171
+ 8.7
172
+ </div>
173
+ <img src="https://images.unsplash.com/photo-1536440136628-849c177e76a1?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=800&q=80" alt="Movie poster" class="w-full h-64 object-cover">
174
+ <div class="p-6">
175
+ <div class="flex items-center mb-2">
176
+ <span class="bg-purple-500 text-white text-xs px-2 py-1 rounded mr-2">CULT</span>
177
+ <span class="text-gray-400 text-sm">Drama • 2022</span>
178
+ </div>
179
+ <h3 class="text-xl font-bold mb-2">Midnight in Paris</h3>
180
+ <p class="text-gray-400 review-text mb-4">A melancholic yet beautiful exploration of nostalgia and lost love, with cinematography that feels like a dream you don't want to wake up from.</p>
181
+ <div class="flex items-center">
182
+ <img src="https://randomuser.me/api/portraits/men/32.jpg" alt="Reviewer" class="w-8 h-8 rounded-full mr-2">
183
+ <span class="text-sm">@filmbro_99</span>
184
+ </div>
185
+ </div>
186
+ </div>
187
+
188
+ <!-- Review Card 3 -->
189
+ <div class="movie-card bg-gray-900 rounded-xl overflow-hidden relative">
190
+ <div class="rating-circle bg-gradient-to-r from-red-500 to-yellow-400 text-white">
191
+ 9.5
192
+ </div>
193
+ <img src="https://images.unsplash.com/photo-1543536448-d209d2d13a1c?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=800&q=80" alt="Movie poster" class="w-full h-64 object-cover">
194
+ <div class="p-6">
195
+ <div class="flex items-center mb-2">
196
+ <span class="bg-red-500 text-white text-xs px-2 py-1 rounded mr-2">HOT</span>
197
+ <span class="text-gray-400 text-sm">Sci-Fi • 2023</span>
198
+ </div>
199
+ <h3 class="text-xl font-bold mb-2">Cosmic Dreams</h3>
200
+ <p class="text-gray-400 review-text mb-4">A visually stunning sci-fi epic that asks profound questions about humanity's place in the universe while delivering heart-pounding action sequences.</p>
201
+ <div class="flex items-center">
202
+ <img src="https://randomuser.me/api/portraits/women/68.jpg" alt="Reviewer" class="w-8 h-8 rounded-full mr-2">
203
+ <span class="text-sm">@space_cinema</span>
204
+ </div>
205
+ </div>
206
+ </div>
207
+ </div>
208
+ </div>
209
+ </section>
210
+
211
+ <!-- A24 Spotlight -->
212
+ <section class="py-16 bg-gradient-to-r from-gray-900 to-black">
213
+ <div class="container mx-auto px-4 md:px-0">
214
+ <div class="text-center mb-12">
215
+ <h2 class="text-3xl font-bold mb-2">✨ A24 Spotlight</h2>
216
+ <p class="text-gray-400 max-w-2xl mx-auto">The films that defined a generation of cinema</p>
217
+ </div>
218
+
219
+ <div class="grid grid-cols-2 md:grid-cols-4 gap-6">
220
+ <!-- Spotlight Item 1 -->
221
+ <div class="group relative overflow-hidden rounded-lg">
222
+ <img src="https://images.unsplash.com/photo-1489599849927-2ee91cede3ba?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=800&q=80" alt="Movie" class="w-full h-64 object-cover group-hover:scale-105 transition duration-300">
223
+ <div class="absolute inset-0 bg-gradient-to-t from-black via-transparent to-transparent opacity-0 group-hover:opacity-100 transition duration-300 flex items-end p-4">
224
+ <div>
225
+ <h3 class="text-white font-bold">Hereditary</h3>
226
+ <p class="text-gray-300 text-sm">2018 • Horror</p>
227
+ </div>
228
+ </div>
229
+ </div>
230
+
231
+ <!-- Spotlight Item 2 -->
232
+ <div class="group relative overflow-hidden rounded-lg">
233
+ <img src="https://images.unsplash.com/photo-1535016120720-40c646be5580?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=800&q=80" alt="Movie" class="w-full h-64 object-cover group-hover:scale-105 transition duration-300">
234
+ <div class="absolute inset-0 bg-gradient-to-t from-black via-transparent to-transparent opacity-0 group-hover:opacity-100 transition duration-300 flex items-end p-4">
235
+ <div>
236
+ <h3 class="text-white font-bold">Moonlight</h3>
237
+ <p class="text-gray-300 text-sm">2016 • Drama</p>
238
+ </div>
239
+ </div>
240
+ </div>
241
+
242
+ <!-- Spotlight Item 3 -->
243
+ <div class="group relative overflow-hidden rounded-lg">
244
+ <img src="https://images.unsplash.com/photo-1534447677768-be436bb09401?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=800&q=80" alt="Movie" class="w-full h-64 object-cover group-hover:scale-105 transition duration-300">
245
+ <div class="absolute inset-0 bg-gradient-to-t from-black via-transparent to-transparent opacity-0 group-hover:opacity-100 transition duration-300 flex items-end p-4">
246
+ <div>
247
+ <h3 class="text-white font-bold">Everything Everywhere</h3>
248
+ <p class="text-gray-300 text-sm">2022 • Sci-Fi</p>
249
+ </div>
250
+ </div>
251
+ </div>
252
+
253
+ <!-- Spotlight Item 4 -->
254
+ <div class="group relative overflow-hidden rounded-lg">
255
+ <img src="https://images.unsplash.com/photo-1551522435-a13afa10f103?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=800&q=80" alt="Movie" class="w-full h-64 object-cover group-hover:scale-105 transition duration-300">
256
+ <div class="absolute inset-0 bg-gradient-to-t from-black via-transparent to-transparent opacity-0 group-hover:opacity-100 transition duration-300 flex items-end p-4">
257
+ <div>
258
+ <h3 class="text-white font-bold">The Lighthouse</h3>
259
+ <p class="text-gray-300 text-sm">2019 • Horror</p>
260
+ </div>
261
+ </div>
262
+ </div>
263
+ </div>
264
+ </div>
265
+ </section>
266
+
267
+ <!-- Community Section -->
268
+ <section class="py-16 px-4 md:px-0">
269
+ <div class="container mx-auto">
270
+ <div class="text-center mb-12">
271
+ <h2 class="text-3xl font-bold mb-2">💬 Film Freaks Community</h2>
272
+ <p class="text-gray-400 max-w-2xl mx-auto">What the community is buzzing about</p>
273
+ </div>
274
+
275
+ <div class="grid grid-cols-1 md:grid-cols-2 gap-8">
276
+ <!-- Discussion 1 -->
277
+ <div class="bg-gray-900 rounded-xl p-6">
278
+ <div class="flex items-start mb-4">
279
+ <img src="https://randomuser.me/api/portraits/women/12.jpg" alt="User" class="w-12 h-12 rounded-full mr-4">
280
+ <div>
281
+ <h3 class="font-bold">Which A24 film had the best cinematography?</h3>
282
+ <p class="text-gray-400 text-sm">Posted by @visual_queen</p>
283
+ </div>
284
+ </div>
285
+ <p class="mb-4">Just rewatched The Green Knight and I'm still blown away by the visuals. That color palette! What's your pick for best A24 cinematography?</p>
286
+ <div class="flex items-center justify-between">
287
+ <div class="flex space-x-4">
288
+ <span class="text-gray-400 text-sm flex items-center">
289
+ <i class="fas fa-heart mr-1"></i> 142
290
+ </span>
291
+ <span class="text-gray-400 text-sm flex items-center">
292
+ <i class="fas fa-comment mr-1"></i> 28
293
+ </span>
294
+ </div>
295
+ <span class="text-gray-400 text-sm">2h ago</span>
296
+ </div>
297
+ </div>
298
+
299
+ <!-- Discussion 2 -->
300
+ <div class="bg-gray-900 rounded-xl p-6">
301
+ <div class="flex items-start mb-4">
302
+ <img src="https://randomuser.me/api/portraits/men/45.jpg" alt="User" class="w-12 h-12 rounded-full mr-4">
303
+ <div>
304
+ <h3 class="font-bold">Underrated A24 gems?</h3>
305
+ <p class="text-gray-400 text-sm">Posted by @hidden_treasures</p>
306
+ </div>
307
+ </div>
308
+ <p class="mb-4">We all know the big hits, but what are some lesser-known A24 films that deserve more love? My pick: The Death of Dick Long. Wild ride!</p>
309
+ <div class="flex items-center justify-between">
310
+ <div class="flex space-x-4">
311
+ <span class="text-gray-400 text-sm flex items-center">
312
+ <i class="fas fa-heart mr-1"></i> 89
313
+ </span>
314
+ <span class="text-gray-400 text-sm flex items-center">
315
+ <i class="fas fa-comment mr-1"></i> 42
316
+ </span>
317
+ </div>
318
+ <span class="text-gray-400 text-sm">5h ago</span>
319
+ </div>
320
+ </div>
321
+ </div>
322
+
323
+ <div class="text-center mt-8">
324
+ <button class="border-2 border-yellow-400 text-yellow-400 hover:bg-yellow-400 hover:text-black font-bold px-6 py-2 rounded-full transition">
325
+ Join the Discussion
326
+ </button>
327
+ </div>
328
+ </div>
329
+ </section>
330
+
331
+ <!-- Newsletter -->
332
+ <section class="py-16 bg-gradient-to-br from-gray-900 to-black">
333
+ <div class="container mx-auto px-4 md:px-0 max-w-4xl">
334
+ <div class="bg-gray-800 rounded-xl p-8 md:p-12 text-center glow">
335
+ <h2 class="text-3xl font-bold mb-2">Get the Film Freaks Newsletter</h2>
336
+ <p class="text-gray-400 mb-8">Weekly A24 updates, exclusive reviews, and community highlights straight to your inbox</p>
337
+
338
+ <div class="flex flex-col md:flex-row gap-4 max-w-lg mx-auto">
339
+ <input type="email" placeholder="Your email address" class="flex-grow bg-gray-700 text-white px-4 py-3 rounded-lg focus:outline-none focus:ring-2 focus:ring-yellow-400">
340
+ <button class="bg-yellow-400 hover:bg-yellow-500 text-black font-bold px-6 py-3 rounded-lg transition">
341
+ Subscribe
342
+ </button>
343
+ </div>
344
+
345
+ <p class="text-gray-500 text-xs mt-4">We respect your privacy. Unsubscribe at any time.</p>
346
+ </div>
347
+ </div>
348
+ </section>
349
+
350
+ <!-- Footer -->
351
+ <footer class="bg-black py-12 px-4 md:px-0">
352
+ <div class="container mx-auto">
353
+ <div class="grid grid-cols-1 md:grid-cols-4 gap-8 mb-8">
354
+ <div>
355
+ <div class="flex items-center space-x-2 mb-4">
356
+ <div class="w-10 h-10 bg-gradient-to-r from-red-500 to-yellow-400 rounded-full flex items-center justify-center">
357
+ <i class="fas fa-film text-white text-xl"></i>
358
+ </div>
359
+ <h3 class="text-xl font-bold gradient-text">FilmFreaks</h3>
360
+ </div>
361
+ <p class="text-gray-400">Your go-to source for A24 film reviews, news, and community discussions.</p>
362
+ </div>
363
+
364
+ <div>
365
+ <h4 class="text-white font-bold mb-4">Explore</h4>
366
+ <ul class="space-y-2">
367
+ <li><a href="#" class="text-gray-400 hover:text-yellow-400 transition">Movies</a></li>
368
+ <li><a href="#" class="text-gray-400 hover:text-yellow-400 transition">Reviews</a></li>
369
+ <li><a href="#" class="text-gray-400 hover:text-yellow-400 transition">Rankings</a></li>
370
+ <li><a href="#" class="text-gray-400 hover:text-yellow-400 transition">News</a></li>
371
+ </ul>
372
+ </div>
373
+
374
+ <div>
375
+ <h4 class="text-white font-bold mb-4">Community</h4>
376
+ <ul class="space-y-2">
377
+ <li><a href="#" class="text-gray-400 hover:text-yellow-400 transition">Discussions</a></li>
378
+ <li><a href="#" class="text-gray-400 hover:text-yellow-400 transition">Events</a></li>
379
+ <li><a href="#" class="text-gray-400 hover:text-yellow-400 transition">Merch</a></li>
380
+ <li><a href="#" class="text-gray-400 hover:text-yellow-400 transition">Contribute</a></li>
381
+ </ul>
382
+ </div>
383
+
384
+ <div>
385
+ <h4 class="text-white font-bold mb-4">Connect</h4>
386
+ <div class="flex space-x-4 mb-4">
387
+ <a href="#" class="w-10 h-10 rounded-full bg-gray-800 flex items-center justify-center text-white hover:bg-yellow-400 hover:text-black transition">
388
+ <i class="fab fa-twitter"></i>
389
+ </a>
390
+ <a href="#" class="w-10 h-10 rounded-full bg-gray-800 flex items-center justify-center text-white hover:bg-yellow-400 hover:text-black transition">
391
+ <i class="fab fa-instagram"></i>
392
+ </a>
393
+ <a href="#" class="w-10 h-10 rounded-full bg-gray-800 flex items-center justify-center text-white hover:bg-yellow-400 hover:text-black transition">
394
+ <i class="fab fa-tiktok"></i>
395
+ </a>
396
+ <a href="#" class="w-10 h-10 rounded-full bg-gray-800 flex items-center justify-center text-white hover:bg-yellow-400 hover:text-black transition">
397
+ <i class="fab fa-discord"></i>
398
+ </a>
399
+ </div>
400
+ <p class="text-gray-400 text-sm">[email protected]</p>
401
+ </div>
402
+ </div>
403
+
404
+ <div class="border-t border-gray-800 pt-8 flex flex-col md:flex-row justify-between items-center">
405
+ <p class="text-gray-500 text-sm mb-4 md:mb-0">© 2023 FilmFreaks. All rights reserved.</p>
406
+ <div class="flex space-x-6">
407
+ <a href="#" class="text-gray-500 hover:text-white text-sm">Privacy Policy</a>
408
+ <a href="#" class="text-gray-500 hover:text-white text-sm">Terms of Service</a>
409
+ <a href="#" class="text-gray-500 hover:text-white text-sm">Cookies</a>
410
+ </div>
411
+ </div>
412
+ </div>
413
+ </footer>
414
+
415
+ <script>
416
+ // Simple script for mobile menu toggle (would be expanded in a real implementation)
417
+ document.addEventListener('DOMContentLoaded', function() {
418
+ const mobileMenuButton = document.querySelector('.md\\:hidden');
419
+ // In a real implementation, this would toggle a mobile menu
420
+ mobileMenuButton.addEventListener('click', function() {
421
+ alert('Mobile menu would open here in a full implementation');
422
+ });
423
+
424
+ // Search bar focus effect
425
+ const searchBar = document.querySelector('.search-bar');
426
+ searchBar.addEventListener('focus', function() {
427
+ this.classList.add('w-64');
428
+ });
429
+ searchBar.addEventListener('blur', function() {
430
+ if(this.value === '') {
431
+ this.classList.remove('w-64');
432
+ }
433
+ });
434
+ });
435
+ </script>
436
+ <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=ontoligent/a24-site" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
437
+ </html>
prompts.txt ADDED
@@ -0,0 +1 @@
 
 
1
+ I want a movie review website focused on A24 movies targeted toward gen z.