julius205 commited on
Commit
d520ace
·
verified ·
1 Parent(s): 5ee2cb1

Design a modern, dark-themed landing page for a social media app called TasteTrail, focused on sharing and discovering cooking recipes. The design should use a sleek dark UI with neon color accents (especially teal, magenta, or electric blue) for interactive elements and highlights. The landing page should include: A bold hero section with the tagline: “Follow the flavor.” An eye-catching call-to-action button like “Join the Trail” or “Share Your First Recipe” A section explaining core features: recipe feeds, likes, comments, following users, uploading photos A preview/mockup of the app interface (can be abstract or mobile screens) User testimonials or quotes from food creators A footer with links to About, Contact, Terms, and social media icons Use React components where possible and ensure the layout is responsive. Overall tone should be futuristic, appetizing, and community-driven. - Initial Deployment

Browse files
Files changed (2) hide show
  1. README.md +7 -5
  2. index.html +539 -19
README.md CHANGED
@@ -1,10 +1,12 @@
1
  ---
2
- title: Recipeapp
3
- emoji: 👁
4
- colorFrom: red
5
- colorTo: purple
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: recipeapp
3
+ emoji: 🐳
4
+ colorFrom: blue
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,539 @@
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>TasteTrail - Follow the Flavor</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
+ <script>
10
+ tailwind.config = {
11
+ theme: {
12
+ extend: {
13
+ colors: {
14
+ teal: {
15
+ 'neon': '#00F5FF',
16
+ 'dark': '#00A8B5'
17
+ },
18
+ magenta: {
19
+ 'neon': '#FF00FF',
20
+ 'dark': '#B500B5'
21
+ },
22
+ blue: {
23
+ 'neon': '#0066FF',
24
+ 'dark': '#0044AA'
25
+ }
26
+ },
27
+ fontFamily: {
28
+ 'sans': ['Inter', 'sans-serif'],
29
+ 'display': ['Poppins', 'sans-serif']
30
+ },
31
+ animation: {
32
+ 'pulse-slow': 'pulse 5s infinite',
33
+ 'float': 'float 6s ease-in-out infinite',
34
+ },
35
+ keyframes: {
36
+ float: {
37
+ '0%, 100%': { transform: 'translateY(0)' },
38
+ '50%': { transform: 'translateY(-20px)' },
39
+ }
40
+ }
41
+ }
42
+ }
43
+ }
44
+ </script>
45
+ <style>
46
+ @import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Poppins:wght@600;700;800&display=swap');
47
+
48
+ body {
49
+ background-color: #0a0a0a;
50
+ color: #f5f5f5;
51
+ font-family: 'Inter', sans-serif;
52
+ }
53
+
54
+ .neon-text-teal {
55
+ text-shadow: 0 0 5px rgba(0, 245, 255, 0.5);
56
+ }
57
+
58
+ .neon-text-magenta {
59
+ text-shadow: 0 0 5px rgba(255, 0, 255, 0.5);
60
+ }
61
+
62
+ .neon-glow-teal {
63
+ box-shadow: 0 0 15px rgba(0, 245, 255, 0.5);
64
+ }
65
+
66
+ .neon-glow-magenta {
67
+ box-shadow: 0 0 15px rgba(255, 0, 255, 0.5);
68
+ }
69
+
70
+ .neon-border-teal {
71
+ border: 2px solid rgba(0, 245, 255, 0.5);
72
+ box-shadow: 0 0 10px rgba(0, 245, 255, 0.3);
73
+ }
74
+
75
+ .app-screen {
76
+ border-radius: 30px;
77
+ background: linear-gradient(145deg, #1a1a1a, #0d0d0d);
78
+ box-shadow: 20px 20px 60px #080808, -20px -20px 60px #1c1c1c;
79
+ }
80
+
81
+ .feature-card {
82
+ transition: all 0.3s ease;
83
+ }
84
+
85
+ .feature-card:hover {
86
+ transform: translateY(-5px);
87
+ }
88
+
89
+ .testimonial-card {
90
+ background: linear-gradient(145deg, #1a1a1a, #0d0d0d);
91
+ }
92
+ </style>
93
+ </head>
94
+ <body class="min-h-screen">
95
+ <!-- Navigation -->
96
+ <nav class="bg-black bg-opacity-80 backdrop-blur-md fixed w-full z-50 border-b border-gray-800">
97
+ <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
98
+ <div class="flex justify-between h-16 items-center">
99
+ <div class="flex items-center">
100
+ <div class="flex-shrink-0 flex items-center">
101
+ <span class="text-2xl font-display font-bold bg-gradient-to-r from-teal-neon to-blue-neon bg-clip-text text-transparent">TasteTrail</span>
102
+ </div>
103
+ </div>
104
+ <div class="hidden md:block">
105
+ <div class="ml-10 flex items-baseline space-x-8">
106
+ <a href="#features" class="text-gray-300 hover:text-teal-neon px-3 py-2 rounded-md text-sm font-medium transition-colors">Features</a>
107
+ <a href="#community" class="text-gray-300 hover:text-magenta-neon px-3 py-2 rounded-md text-sm font-medium transition-colors">Community</a>
108
+ <a href="#testimonials" class="text-gray-300 hover:text-blue-neon px-3 py-2 rounded-md text-sm font-medium transition-colors">Testimonials</a>
109
+ </div>
110
+ </div>
111
+ <div class="hidden md:block">
112
+ <button class="ml-8 px-6 py-2 rounded-full font-medium bg-gradient-to-r from-teal-neon to-blue-neon text-black hover:opacity-90 transition-opacity">
113
+ Join the Trail
114
+ </button>
115
+ </div>
116
+ <div class="-mr-2 flex md:hidden">
117
+ <button type="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" aria-controls="mobile-menu" aria-expanded="false">
118
+ <span class="sr-only">Open main menu</span>
119
+ <svg class="block h-6 w-6" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor" aria-hidden="true">
120
+ <path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M4 6h16M4 12h16M4 18h16" />
121
+ </svg>
122
+ </button>
123
+ </div>
124
+ </div>
125
+ </div>
126
+ </nav>
127
+
128
+ <!-- Hero Section -->
129
+ <section class="pt-32 pb-20 px-4 sm:px-6 lg:px-8 max-w-7xl mx-auto">
130
+ <div class="flex flex-col md:flex-row items-center">
131
+ <div class="md:w-1/2 mb-12 md:mb-0">
132
+ <h1 class="text-5xl md:text-6xl lg:text-7xl font-display font-bold leading-tight mb-6">
133
+ <span class="neon-text-teal">Follow</span>
134
+ <span class="neon-text-magenta">the</span>
135
+ <span class="neon-text-teal">Flavor</span>
136
+ </h1>
137
+ <p class="text-xl text-gray-300 mb-8 max-w-lg">
138
+ Discover, create, and share culinary masterpieces with a global community of food enthusiasts. Your next favorite recipe is just a scroll away.
139
+ </p>
140
+ <div class="flex flex-col sm:flex-row space-y-4 sm:space-y-0 sm:space-x-4">
141
+ <button class="px-8 py-4 rounded-full font-bold bg-gradient-to-r from-teal-neon to-blue-neon text-black hover:opacity-90 transition-opacity neon-glow-teal">
142
+ Share Your First Recipe
143
+ </button>
144
+ <button class="px-8 py-4 rounded-full font-bold border-2 border-teal-neon text-teal-neon hover:bg-teal-neon hover:bg-opacity-10 transition-colors">
145
+ Learn More
146
+ </button>
147
+ </div>
148
+ </div>
149
+ <div class="md:w-1/2 relative">
150
+ <div class="app-screen w-80 mx-auto relative z-10 animation-float">
151
+ <div class="absolute -inset-1 bg-gradient-to-r from-teal-neon to-blue-neon rounded-3xl opacity-50 blur"></div>
152
+ <div class="relative bg-black rounded-3xl overflow-hidden h-full w-full">
153
+ <div class="h-8 flex items-center px-4 border-b border-gray-800">
154
+ <div class="w-3 h-3 rounded-full bg-red-500 mr-2"></div>
155
+ <div class="w-3 h-3 rounded-full bg-yellow-500 mr-2"></div>
156
+ <div class="w-3 h-3 rounded-full bg-green-500"></div>
157
+ </div>
158
+ <div class="p-4">
159
+ <div class="flex items-center mb-4">
160
+ <div class="w-10 h-10 rounded-full bg-gradient-to-r from-teal-neon to-blue-neon flex items-center justify-center">
161
+ <i class="fas fa-utensils text-black"></i>
162
+ </div>
163
+ <div class="ml-3">
164
+ <div class="font-bold">Chef_Maria</div>
165
+ <div class="text-xs text-gray-400">2 hours ago</div>
166
+ </div>
167
+ </div>
168
+ <div class="mb-3 text-sm">
169
+ Just made this amazing Thai Green Curry! Recipe in comments 👇
170
+ </div>
171
+ <div class="rounded-xl overflow-hidden mb-3 h-48 bg-gradient-to-br from-gray-800 to-gray-900 flex items-center justify-center">
172
+ <i class="fas fa-image text-gray-600 text-4xl"></i>
173
+ </div>
174
+ <div class="flex justify-between text-gray-400 text-sm">
175
+ <div class="flex items-center">
176
+ <i class="fas fa-heart text-magenta-neon mr-1"></i>
177
+ <span>248</span>
178
+ </div>
179
+ <div class="flex items-center">
180
+ <i class="fas fa-comment text-blue-neon mr-1"></i>
181
+ <span>42</span>
182
+ </div>
183
+ <div class="flex items-center">
184
+ <i class="fas fa-bookmark text-teal-neon mr-1"></i>
185
+ <span>Save</span>
186
+ </div>
187
+ </div>
188
+ </div>
189
+ </div>
190
+ </div>
191
+ <div class="absolute -bottom-10 -left-10 w-40 h-40 rounded-full bg-magenta-neon opacity-20 blur-3xl"></div>
192
+ <div class="absolute -top-10 -right-10 w-40 h-40 rounded-full bg-blue-neon opacity-20 blur-3xl"></div>
193
+ </div>
194
+ </div>
195
+ </section>
196
+
197
+ <!-- Features Section -->
198
+ <section id="features" class="py-20 px-4 sm:px-6 lg:px-8 max-w-7xl mx-auto">
199
+ <div class="text-center mb-16">
200
+ <h2 class="text-3xl md:text-4xl font-display font-bold mb-4">
201
+ <span class="neon-text-teal">Features</span>
202
+ <span class="neon-text-magenta">That</span>
203
+ <span class="neon-text-blue">Inspire</span>
204
+ </h2>
205
+ <p class="text-xl text-gray-400 max-w-3xl mx-auto">
206
+ TasteTrail is packed with features designed to help you discover, create, and share amazing recipes.
207
+ </p>
208
+ </div>
209
+
210
+ <div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-8">
211
+ <!-- Feature 1 -->
212
+ <div class="feature-card bg-gray-900 rounded-2xl p-8 neon-border-teal">
213
+ <div class="w-14 h-14 rounded-full bg-gradient-to-r from-teal-neon to-blue-neon flex items-center justify-center mb-6">
214
+ <i class="fas fa-compass text-black text-xl"></i>
215
+ </div>
216
+ <h3 class="text-xl font-bold mb-3">Discover Recipes</h3>
217
+ <p class="text-gray-400">
218
+ Explore a constantly updated feed of recipes from chefs and home cooks around the world. Filter by cuisine, dietary needs, or cooking time.
219
+ </p>
220
+ </div>
221
+
222
+ <!-- Feature 2 -->
223
+ <div class="feature-card bg-gray-900 rounded-2xl p-8 neon-border-teal">
224
+ <div class="w-14 h-14 rounded-full bg-gradient-to-r from-magenta-neon to-blue-neon flex items-center justify-center mb-6">
225
+ <i class="fas fa-camera text-black text-xl"></i>
226
+ </div>
227
+ <h3 class="text-xl font-bold mb-3">Share Your Creations</h3>
228
+ <p class="text-gray-400">
229
+ Upload photos of your dishes with step-by-step instructions. Get feedback and appreciation from the community.
230
+ </p>
231
+ </div>
232
+
233
+ <!-- Feature 3 -->
234
+ <div class="feature-card bg-gray-900 rounded-2xl p-8 neon-border-teal">
235
+ <div class="w-14 h-14 rounded-full bg-gradient-to-r from-blue-neon to-teal-neon flex items-center justify-center mb-6">
236
+ <i class="fas fa-users text-black text-xl"></i>
237
+ </div>
238
+ <h3 class="text-xl font-bold mb-3">Follow Food Creators</h3>
239
+ <p class="text-gray-400">
240
+ Build your network by following chefs, food bloggers, and fellow cooking enthusiasts. Get notified when they post new recipes.
241
+ </p>
242
+ </div>
243
+
244
+ <!-- Feature 4 -->
245
+ <div class="feature-card bg-gray-900 rounded-2xl p-8 neon-border-teal">
246
+ <div class="w-14 h-14 rounded-full bg-gradient-to-r from-teal-neon to-magenta-neon flex items-center justify-center mb-6">
247
+ <i class="fas fa-heart text-black text-xl"></i>
248
+ </div>
249
+ <h3 class="text-xl font-bold mb-3">Like & Comment</h3>
250
+ <p class="text-gray-400">
251
+ Show appreciation for recipes you love and leave helpful comments. Start conversations about cooking techniques and variations.
252
+ </p>
253
+ </div>
254
+
255
+ <!-- Feature 5 -->
256
+ <div class="feature-card bg-gray-900 rounded-2xl p-8 neon-border-teal">
257
+ <div class="w-14 h-14 rounded-full bg-gradient-to-r from-blue-neon to-magenta-neon flex items-center justify-center mb-6">
258
+ <i class="fas fa-bookmark text-black text-xl"></i>
259
+ </div>
260
+ <h3 class="text-xl font-bold mb-3">Save Recipes</h3>
261
+ <p class="text-gray-400">
262
+ Organize your favorite recipes into collections. Access them anytime, even offline, with our mobile app.
263
+ </p>
264
+ </div>
265
+
266
+ <!-- Feature 6 -->
267
+ <div class="feature-card bg-gray-900 rounded-2xl p-8 neon-border-teal">
268
+ <div class="w-14 h-14 rounded-full bg-gradient-to-r from-magenta-neon to-teal-neon flex items-center justify-center mb-6">
269
+ <i class="fas fa-shopping-basket text-black text-xl"></i>
270
+ </div>
271
+ <h3 class="text-xl font-bold mb-3">Shopping Lists</h3>
272
+ <p class="text-gray-400">
273
+ Automatically generate shopping lists from recipes you want to try. Share lists with family members or sync with grocery delivery apps.
274
+ </p>
275
+ </div>
276
+ </div>
277
+ </section>
278
+
279
+ <!-- Community Section -->
280
+ <section id="community" class="py-20 px-4 sm:px-6 lg:px-8 max-w-7xl mx-auto bg-gradient-to-br from-gray-900 to-black rounded-3xl my-12">
281
+ <div class="flex flex-col lg:flex-row items-center">
282
+ <div class="lg:w-1/2 mb-12 lg:mb-0 lg:pr-12">
283
+ <h2 class="text-3xl md:text-4xl font-display font-bold mb-6">
284
+ <span class="neon-text-magenta">Join</span>
285
+ <span class="neon-text-blue">Our</span>
286
+ <span class="neon-text-teal">Community</span>
287
+ </h2>
288
+ <p class="text-xl text-gray-400 mb-8">
289
+ TasteTrail is more than an app—it's a global community of food lovers. Connect with people who share your passion for cooking.
290
+ </p>
291
+ <div class="flex flex-wrap gap-4 mb-8">
292
+ <div class="flex items-center">
293
+ <div class="w-8 h-8 rounded-full bg-gradient-to-r from-teal-neon to-blue-neon flex items-center justify-center">
294
+ <i class="fas fa-check text-black text-xs"></i>
295
+ </div>
296
+ <span class="ml-2 font-medium">1M+ Recipes</span>
297
+ </div>
298
+ <div class="flex items-center">
299
+ <div class="w-8 h-8 rounded-full bg-gradient-to-r from-magenta-neon to-blue-neon flex items-center justify-center">
300
+ <i class="fas fa-check text-black text-xs"></i>
301
+ </div>
302
+ <span class="ml-2 font-medium">500K+ Chefs</span>
303
+ </div>
304
+ <div class="flex items-center">
305
+ <div class="w-8 h-8 rounded-full bg-gradient-to-r from-blue-neon to-teal-neon flex items-center justify-center">
306
+ <i class="fas fa-check text-black text-xs"></i>
307
+ </div>
308
+ <span class="ml-2 font-medium">100+ Cuisines</span>
309
+ </div>
310
+ </div>
311
+ <button class="px-8 py-3 rounded-full font-bold bg-gradient-to-r from-magenta-neon to-blue-neon text-black hover:opacity-90 transition-opacity neon-glow-magenta">
312
+ Join the Trail
313
+ </button>
314
+ </div>
315
+ <div class="lg:w-1/2 grid grid-cols-2 gap-4">
316
+ <div class="rounded-xl overflow-hidden h-48 bg-gray-800 flex items-center justify-center">
317
+ <i class="fas fa-pizza-slice text-teal-neon text-4xl"></i>
318
+ </div>
319
+ <div class="rounded-xl overflow-hidden h-48 bg-gray-800 flex items-center justify-center">
320
+ <i class="fas fa-ice-cream text-magenta-neon text-4xl"></i>
321
+ </div>
322
+ <div class="rounded-xl overflow-hidden h-48 bg-gray-800 flex items-center justify-center">
323
+ <i class="fas fa-drumstick-bite text-blue-neon text-4xl"></i>
324
+ </div>
325
+ <div class="rounded-xl overflow-hidden h-48 bg-gray-800 flex items-center justify-center">
326
+ <i class="fas fa-leaf text-teal-neon text-4xl"></i>
327
+ </div>
328
+ </div>
329
+ </div>
330
+ </section>
331
+
332
+ <!-- Testimonials Section -->
333
+ <section id="testimonials" class="py-20 px-4 sm:px-6 lg:px-8 max-w-7xl mx-auto">
334
+ <div class="text-center mb-16">
335
+ <h2 class="text-3xl md:text-4xl font-display font-bold mb-4">
336
+ <span class="neon-text-blue">What</span>
337
+ <span class="neon-text-magenta">Our</span>
338
+ <span class="neon-text-teal">Community Says</span>
339
+ </h2>
340
+ <p class="text-xl text-gray-400 max-w-3xl mx-auto">
341
+ Hear from food creators who've transformed their cooking journey with TasteTrail.
342
+ </p>
343
+ </div>
344
+
345
+ <div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-8">
346
+ <!-- Testimonial 1 -->
347
+ <div class="testimonial-card rounded-2xl p-8 relative overflow-hidden">
348
+ <div class="absolute -top-10 -right-10 w-32 h-32 rounded-full bg-teal-neon opacity-10 blur-3xl"></div>
349
+ <div class="flex items-center mb-6">
350
+ <div class="w-12 h-12 rounded-full bg-gradient-to-r from-teal-neon to-blue-neon flex items-center justify-center">
351
+ <i class="fas fa-user text-black"></i>
352
+ </div>
353
+ <div class="ml-4">
354
+ <h4 class="font-bold">Chef Marco</h4>
355
+ <p class="text-sm text-gray-400">Professional Chef</p>
356
+ </div>
357
+ </div>
358
+ <p class="text-gray-300 italic">
359
+ "TasteTrail has revolutionized how I share my recipes. The engagement from the community is incredible—I've gained so many new followers who appreciate authentic Italian cuisine."
360
+ </p>
361
+ <div class="mt-4 flex text-yellow-400">
362
+ <i class="fas fa-star"></i>
363
+ <i class="fas fa-star"></i>
364
+ <i class="fas fa-star"></i>
365
+ <i class="fas fa-star"></i>
366
+ <i class="fas fa-star"></i>
367
+ </div>
368
+ </div>
369
+
370
+ <!-- Testimonial 2 -->
371
+ <div class="testimonial-card rounded-2xl p-8 relative overflow-hidden">
372
+ <div class="absolute -top-10 -right-10 w-32 h-32 rounded-full bg-magenta-neon opacity-10 blur-3xl"></div>
373
+ <div class="flex items-center mb-6">
374
+ <div class="w-12 h-12 rounded-full bg-gradient-to-r from-magenta-neon to-blue-neon flex items-center justify-center">
375
+ <i class="fas fa-user text-black"></i>
376
+ </div>
377
+ <div class="ml-4">
378
+ <h4 class="font-bold">Sarah K.</h4>
379
+ <p class="text-sm text-gray-400">Home Cook</p>
380
+ </div>
381
+ </div>
382
+ <p class="text-gray-300 italic">
383
+ "As someone who just started cooking, TasteTrail has been a game-changer. The step-by-step photos and helpful comments make even complex recipes approachable."
384
+ </p>
385
+ <div class="mt-4 flex text-yellow-400">
386
+ <i class="fas fa-star"></i>
387
+ <i class="fas fa-star"></i>
388
+ <i class="fas fa-star"></i>
389
+ <i class="fas fa-star"></i>
390
+ <i class="fas fa-star"></i>
391
+ </div>
392
+ </div>
393
+
394
+ <!-- Testimonial 3 -->
395
+ <div class="testimonial-card rounded-2xl p-8 relative overflow-hidden">
396
+ <div class="absolute -top-10 -right-10 w-32 h-32 rounded-full bg-blue-neon opacity-10 blur-3xl"></div>
397
+ <div class="flex items-center mb-6">
398
+ <div class="w-12 h-12 rounded-full bg-gradient-to-r from-blue-neon to-teal-neon flex items-center justify-center">
399
+ <i class="fas fa-user text-black"></i>
400
+ </div>
401
+ <div class="ml-4">
402
+ <h4 class="font-bold">Priya M.</h4>
403
+ <p class="text-sm text-gray-400">Food Blogger</p>
404
+ </div>
405
+ </div>
406
+ <p class="text-gray-300 italic">
407
+ "My food blog traffic has doubled since I started cross-posting on TasteTrail. The algorithm really helps quality content get discovered by the right audience."
408
+ </p>
409
+ <div class="mt-4 flex text-yellow-400">
410
+ <i class="fas fa-star"></i>
411
+ <i class="fas fa-star"></i>
412
+ <i class="fas fa-star"></i>
413
+ <i class="fas fa-star"></i>
414
+ <i class="fas fa-star-half-alt"></i>
415
+ </div>
416
+ </div>
417
+ </div>
418
+ </section>
419
+
420
+ <!-- CTA Section -->
421
+ <section class="py-20 px-4 sm:px-6 lg:px-8 max-w-7xl mx-auto">
422
+ <div class="bg-gradient-to-r from-gray-900 to-black rounded-3xl p-12 text-center relative overflow-hidden">
423
+ <div class="absolute -top-20 -left-20 w-64 h-64 rounded-full bg-teal-neon opacity-10 blur-3xl"></div>
424
+ <div class="absolute -bottom-20 -right-20 w-64 h-64 rounded-full bg-magenta-neon opacity-10 blur-3xl"></div>
425
+ <h2 class="text-3xl md:text-4xl font-display font-bold mb-6">
426
+ <span class="neon-text-teal">Ready</span>
427
+ <span class="neon-text-magenta">to</span>
428
+ <span class="neon-text-blue">Join?</span>
429
+ </h2>
430
+ <p class="text-xl text-gray-400 max-w-2xl mx-auto mb-8">
431
+ Download TasteTrail today and start your culinary journey with millions of food enthusiasts worldwide.
432
+ </p>
433
+ <div class="flex flex-col sm:flex-row justify-center space-y-4 sm:space-y-0 sm:space-x-6">
434
+ <button class="px-8 py-4 rounded-full font-bold bg-gradient-to-r from-teal-neon to-blue-neon text-black hover:opacity-90 transition-opacity neon-glow-teal flex items-center justify-center">
435
+ <i class="fab fa-apple mr-3"></i>
436
+ <div>
437
+ <div class="text-xs">Download on the</div>
438
+ <div class="text-lg">App Store</div>
439
+ </div>
440
+ </button>
441
+ <button class="px-8 py-4 rounded-full font-bold bg-gradient-to-r from-magenta-neon to-blue-neon text-black hover:opacity-90 transition-opacity neon-glow-magenta flex items-center justify-center">
442
+ <i class="fab fa-google-play mr-3"></i>
443
+ <div>
444
+ <div class="text-xs">Get it on</div>
445
+ <div class="text-lg">Google Play</div>
446
+ </div>
447
+ </button>
448
+ </div>
449
+ </div>
450
+ </section>
451
+
452
+ <!-- Footer -->
453
+ <footer class="bg-black bg-opacity-50 py-12 px-4 sm:px-6 lg:px-8 border-t border-gray-800">
454
+ <div class="max-w-7xl mx-auto">
455
+ <div class="grid grid-cols-1 md:grid-cols-4 gap-8">
456
+ <div class="md:col-span-2">
457
+ <h3 class="text-2xl font-display font-bold mb-4 bg-gradient-to-r from-teal-neon to-blue-neon bg-clip-text text-transparent">TasteTrail</h3>
458
+ <p class="text-gray-400 mb-6">
459
+ Follow the flavor with TasteTrail—the ultimate platform for discovering and sharing culinary creations.
460
+ </p>
461
+ <div class="flex space-x-4">
462
+ <a href="#" class="w-10 h-10 rounded-full bg-gray-800 flex items-center justify-center text-teal-neon hover:bg-teal-neon hover:text-black transition-colors">
463
+ <i class="fab fa-instagram"></i>
464
+ </a>
465
+ <a href="#" class="w-10 h-10 rounded-full bg-gray-800 flex items-center justify-center text-magenta-neon hover:bg-magenta-neon hover:text-black transition-colors">
466
+ <i class="fab fa-tiktok"></i>
467
+ </a>
468
+ <a href="#" class="w-10 h-10 rounded-full bg-gray-800 flex items-center justify-center text-blue-neon hover:bg-blue-neon hover:text-black transition-colors">
469
+ <i class="fab fa-twitter"></i>
470
+ </a>
471
+ <a href="#" class="w-10 h-10 rounded-full bg-gray-800 flex items-center justify-center text-gray-400 hover:bg-gray-700 hover:text-white transition-colors">
472
+ <i class="fab fa-youtube"></i>
473
+ </a>
474
+ </div>
475
+ </div>
476
+ <div>
477
+ <h4 class="text-lg font-bold mb-4 text-gray-300">Company</h4>
478
+ <ul class="space-y-2">
479
+ <li><a href="#" class="text-gray-400 hover:text-teal-neon transition-colors">About Us</a></li>
480
+ <li><a href="#" class="text-gray-400 hover:text-magenta-neon transition-colors">Careers</a></li>
481
+ <li><a href="#" class="text-gray-400 hover:text-blue-neon transition-colors">Blog</a></li>
482
+ <li><a href="#" class="text-gray-400 hover:text-teal-neon transition-colors">Press</a></li>
483
+ </ul>
484
+ </div>
485
+ <div>
486
+ <h4 class="text-lg font-bold mb-4 text-gray-300">Support</h4>
487
+ <ul class="space-y-2">
488
+ <li><a href="#" class="text-gray-400 hover:text-magenta-neon transition-colors">Help Center</a></li>
489
+ <li><a href="#" class="text-gray-400 hover:text-blue-neon transition-colors">Community</a></li>
490
+ <li><a href="#" class="text-gray-400 hover:text-teal-neon transition-colors">Contact Us</a></li>
491
+ <li><a href="#" class="text-gray-400 hover:text-magenta-neon transition-colors">Privacy Policy</a></li>
492
+ </ul>
493
+ </div>
494
+ </div>
495
+ <div class="border-t border-gray-800 mt-12 pt-8 flex flex-col md:flex-row justify-between items-center">
496
+ <p class="text-gray-500 text-sm mb-4 md:mb-0">
497
+ © 2023 TasteTrail. All rights reserved.
498
+ </p>
499
+ <div class="flex space-x-6">
500
+ <a href="#" class="text-gray-500 hover:text-gray-300 text-sm transition-colors">Terms</a>
501
+ <a href="#" class="text-gray-500 hover:text-gray-300 text-sm transition-colors">Privacy</a>
502
+ <a href="#" class="text-gray-500 hover:text-gray-300 text-sm transition-colors">Cookies</a>
503
+ </div>
504
+ </div>
505
+ </div>
506
+ </footer>
507
+
508
+ <script>
509
+ // Simple mobile menu toggle functionality
510
+ document.addEventListener('DOMContentLoaded', function() {
511
+ const mobileMenuButton = document.querySelector('[aria-controls="mobile-menu"]');
512
+ mobileMenuButton.addEventListener('click', function() {
513
+ const expanded = this.getAttribute('aria-expanded') === 'true';
514
+ this.setAttribute('aria-expanded', !expanded);
515
+ // In a real implementation, you would toggle a mobile menu here
516
+ alert('Mobile menu would open here in a full implementation.');
517
+ });
518
+
519
+ // Add animation to feature cards on scroll
520
+ const featureCards = document.querySelectorAll('.feature-card');
521
+ const observer = new IntersectionObserver((entries) => {
522
+ entries.forEach(entry => {
523
+ if (entry.isIntersecting) {
524
+ entry.target.style.opacity = '1';
525
+ entry.target.style.transform = 'translateY(0)';
526
+ }
527
+ });
528
+ }, { threshold: 0.1 });
529
+
530
+ featureCards.forEach(card => {
531
+ card.style.opacity = '0';
532
+ card.style.transform = 'translateY(20px)';
533
+ card.style.transition = 'all 0.6s ease';
534
+ observer.observe(card);
535
+ });
536
+ });
537
+ </script>
538
+ <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=julius205/recipeapp" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
539
+ </html>