Shakif commited on
Commit
e28d5c2
·
verified ·
1 Parent(s): e196325

Add 3 files

Browse files
Files changed (3) hide show
  1. README.md +7 -5
  2. index.html +531 -19
  3. prompts.txt +0 -0
README.md CHANGED
@@ -1,10 +1,12 @@
1
  ---
2
- title: Design Flix
3
- emoji: 📚
4
- colorFrom: purple
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: design-flix
3
+ emoji: 🐳
4
+ colorFrom: yellow
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,531 @@
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>Chai & Chill - Authentic Indian Flavors</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=Poppins:wght@300;400;500;600;700&display=swap');
11
+
12
+ body {
13
+ font-family: 'Poppins', sans-serif;
14
+ background-color: #FFF9F0;
15
+ }
16
+
17
+ .hero-gradient {
18
+ background: linear-gradient(135deg, #FFD166 0%, #FF9A3C 100%);
19
+ }
20
+
21
+ .menu-item:hover {
22
+ transform: translateY(-5px);
23
+ box-shadow: 0 10px 20px rgba(255, 154, 60, 0.2);
24
+ }
25
+
26
+ .chai-icon {
27
+ animation: float 3s ease-in-out infinite;
28
+ }
29
+
30
+ @keyframes float {
31
+ 0% { transform: translateY(0px); }
32
+ 50% { transform: translateY(-10px); }
33
+ 100% { transform: translateY(0px); }
34
+ }
35
+
36
+ .testimonial-card {
37
+ background: rgba(255, 255, 255, 0.8);
38
+ backdrop-filter: blur(10px);
39
+ }
40
+ </style>
41
+ </head>
42
+ <body>
43
+ <!-- Navigation -->
44
+ <nav class="bg-white shadow-sm sticky top-0 z-50">
45
+ <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
46
+ <div class="flex justify-between h-16">
47
+ <div class="flex items-center">
48
+ <div class="flex-shrink-0 flex items-center">
49
+ <i class="fas fa-mug-hot text-2xl text-amber-500 mr-2"></i>
50
+ <span class="text-xl font-bold text-gray-800">Chai & Chill</span>
51
+ </div>
52
+ </div>
53
+ <div class="hidden md:ml-6 md:flex md:items-center md:space-x-8">
54
+ <a href="#home" class="text-gray-900 hover:text-amber-600 px-3 py-2 text-sm font-medium">Home</a>
55
+ <a href="#menu" class="text-gray-900 hover:text-amber-600 px-3 py-2 text-sm font-medium">Menu</a>
56
+ <a href="#about" class="text-gray-900 hover:text-amber-600 px-3 py-2 text-sm font-medium">About</a>
57
+ <a href="#testimonials" class="text-gray-900 hover:text-amber-600 px-3 py-2 text-sm font-medium">Reviews</a>
58
+ <a href="#contact" class="text-gray-900 hover:text-amber-600 px-3 py-2 text-sm font-medium">Contact</a>
59
+ <button class="bg-amber-500 hover:bg-amber-600 text-white px-4 py-2 rounded-full text-sm font-medium transition duration-300">
60
+ Order Now
61
+ </button>
62
+ </div>
63
+ <div class="-mr-2 flex items-center md:hidden">
64
+ <button type="button" class="inline-flex items-center justify-center p-2 rounded-md text-gray-700 hover:text-amber-600 focus:outline-none" aria-controls="mobile-menu" aria-expanded="false">
65
+ <span class="sr-only">Open main menu</span>
66
+ <i class="fas fa-bars"></i>
67
+ </button>
68
+ </div>
69
+ </div>
70
+ </div>
71
+
72
+ <!-- Mobile menu -->
73
+ <div class="md:hidden hidden" id="mobile-menu">
74
+ <div class="px-2 pt-2 pb-3 space-y-1 sm:px-3 bg-white">
75
+ <a href="#home" class="text-gray-900 hover:text-amber-600 block px-3 py-2 text-base font-medium">Home</a>
76
+ <a href="#menu" class="text-gray-900 hover:text-amber-600 block px-3 py-2 text-base font-medium">Menu</a>
77
+ <a href="#about" class="text-gray-900 hover:text-amber-600 block px-3 py-2 text-base font-medium">About</a>
78
+ <a href="#testimonials" class="text-gray-900 hover:text-amber-600 block px-3 py-2 text-base font-medium">Reviews</a>
79
+ <a href="#contact" class="text-gray-900 hover:text-amber-600 block px-3 py-2 text-base font-medium">Contact</a>
80
+ <button class="w-full bg-amber-500 hover:bg-amber-600 text-white px-4 py-2 rounded-full text-sm font-medium mt-2 transition duration-300">
81
+ Order Now
82
+ </button>
83
+ </div>
84
+ </div>
85
+ </nav>
86
+
87
+ <!-- Hero Section -->
88
+ <section id="home" class="hero-gradient py-20">
89
+ <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
90
+ <div class="flex flex-col md:flex-row items-center">
91
+ <div class="md:w-1/2 mb-10 md:mb-0">
92
+ <h1 class="text-4xl md:text-5xl font-bold text-white mb-4">Authentic Indian Flavors</h1>
93
+ <p class="text-lg text-white mb-8">Experience the warmth of traditional Indian chai and snacks, crafted with love and served with a modern twist.</p>
94
+ <div class="flex space-x-4">
95
+ <button class="bg-white text-amber-600 hover:bg-gray-100 px-6 py-3 rounded-full font-medium transition duration-300">
96
+ Order Now
97
+ </button>
98
+ <button class="border-2 border-white text-white hover:bg-white hover:text-amber-600 px-6 py-3 rounded-full font-medium transition duration-300">
99
+ View Menu
100
+ </button>
101
+ </div>
102
+ </div>
103
+ <div class="md:w-1/2 flex justify-center">
104
+ <div class="relative">
105
+ <div class="chai-icon">
106
+ <img src="https://images.unsplash.com/photo-1567515004621-7e5a7fe3f0a2?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=687&q=80" alt="Chai" class="rounded-full w-64 h-64 object-cover shadow-xl border-4 border-white">
107
+ </div>
108
+ <div class="absolute -bottom-5 -right-5 bg-white p-4 rounded-full shadow-lg">
109
+ <div class="flex items-center">
110
+ <div class="bg-amber-100 p-2 rounded-full mr-2">
111
+ <i class="fas fa-star text-amber-500"></i>
112
+ </div>
113
+ <div>
114
+ <p class="text-xs text-gray-500">Rated</p>
115
+ <p class="font-bold text-amber-600">4.9/5</p>
116
+ </div>
117
+ </div>
118
+ </div>
119
+ </div>
120
+ </div>
121
+ </div>
122
+ </div>
123
+ </section>
124
+
125
+ <!-- Featured Items -->
126
+ <section class="py-16 bg-white">
127
+ <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
128
+ <h2 class="text-3xl font-bold text-center text-gray-800 mb-12">Our Specialties</h2>
129
+ <div class="grid grid-cols-1 md:grid-cols-3 gap-8">
130
+ <div class="bg-amber-50 rounded-xl p-6 text-center transition duration-300 hover:shadow-lg">
131
+ <div class="bg-white p-4 rounded-full w-20 h-20 flex items-center justify-center mx-auto mb-4">
132
+ <i class="fas fa-mug-hot text-3xl text-amber-500"></i>
133
+ </div>
134
+ <h3 class="text-xl font-semibold mb-2">Masala Chai</h3>
135
+ <p class="text-gray-600 mb-4">Aromatic blend of tea leaves, spices, milk and sweetness.</p>
136
+ <button class="text-amber-600 font-medium hover:text-amber-700">View Details</button>
137
+ </div>
138
+ <div class="bg-amber-50 rounded-xl p-6 text-center transition duration-300 hover:shadow-lg">
139
+ <div class="bg-white p-4 rounded-full w-20 h-20 flex items-center justify-center mx-auto mb-4">
140
+ <i class="fas fa-cookie-bite text-3xl text-amber-500"></i>
141
+ </div>
142
+ <h3 class="text-xl font-semibold mb-2">Samosa</h3>
143
+ <p class="text-gray-600 mb-4">Crispy pastry filled with spiced potatoes and peas.</p>
144
+ <button class="text-amber-600 font-medium hover:text-amber-700">View Details</button>
145
+ </div>
146
+ <div class="bg-amber-50 rounded-xl p-6 text-center transition duration-300 hover:shadow-lg">
147
+ <div class="bg-white p-4 rounded-full w-20 h-20 flex items-center justify-center mx-auto mb-4">
148
+ <i class="fas fa-bread-slice text-3xl text-amber-500"></i>
149
+ </div>
150
+ <h3 class="text-xl font-semibold mb-2">Pav Bhaji</h3>
151
+ <p class="text-gray-600 mb-4">Spiced vegetable mash served with buttered bread rolls.</p>
152
+ <button class="text-amber-600 font-medium hover:text-amber-700">View Details</button>
153
+ </div>
154
+ </div>
155
+ </div>
156
+ </section>
157
+
158
+ <!-- Menu Section -->
159
+ <section id="menu" class="py-16 bg-amber-50">
160
+ <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
161
+ <div class="text-center mb-12">
162
+ <h2 class="text-3xl font-bold text-gray-800 mb-2">Our Menu</h2>
163
+ <p class="text-gray-600 max-w-2xl mx-auto">From traditional favorites to modern interpretations, our menu celebrates the diversity of Indian flavors.</p>
164
+ </div>
165
+
166
+ <div class="grid grid-cols-1 md:grid-cols-2 gap-8">
167
+ <!-- Beverages -->
168
+ <div class="bg-white rounded-xl p-6 shadow-sm">
169
+ <div class="flex items-center mb-6">
170
+ <i class="fas fa-mug-hot text-2xl text-amber-500 mr-3"></i>
171
+ <h3 class="text-xl font-semibold">Beverages</h3>
172
+ </div>
173
+ <div class="space-y-6">
174
+ <div class="flex justify-between items-center pb-4 border-b border-gray-100">
175
+ <div>
176
+ <h4 class="font-medium">Masala Chai</h4>
177
+ <p class="text-sm text-gray-500">Spiced Indian tea with milk</p>
178
+ </div>
179
+ <span class="font-medium text-amber-600">₹50</span>
180
+ </div>
181
+ <div class="flex justify-between items-center pb-4 border-b border-gray-100">
182
+ <div>
183
+ <h4 class="font-medium">Kadak Chai</h4>
184
+ <p class="text-sm text-gray-500">Strong Indian tea with milk</p>
185
+ </div>
186
+ <span class="font-medium text-amber-600">₹45</span>
187
+ </div>
188
+ <div class="flex justify-between items-center pb-4 border-b border-gray-100">
189
+ <div>
190
+ <h4 class="font-medium">Adrak Chai</h4>
191
+ <p class="text-sm text-gray-500">Ginger infused tea with milk</p>
192
+ </div>
193
+ <span class="font-medium text-amber-600">₹55</span>
194
+ </div>
195
+ <div class="flex justify-between items-center">
196
+ <div>
197
+ <h4 class="font-medium">Cold Coffee</h4>
198
+ <p class="text-sm text-gray-500">Iced coffee with milk and sugar</p>
199
+ </div>
200
+ <span class="font-medium text-amber-600">₹80</span>
201
+ </div>
202
+ </div>
203
+ </div>
204
+
205
+ <!-- Snacks -->
206
+ <div class="bg-white rounded-xl p-6 shadow-sm">
207
+ <div class="flex items-center mb-6">
208
+ <i class="fas fa-utensils text-2xl text-amber-500 mr-3"></i>
209
+ <h3 class="text-xl font-semibold">Snacks</h3>
210
+ </div>
211
+ <div class="space-y-6">
212
+ <div class="flex justify-between items-center pb-4 border-b border-gray-100">
213
+ <div>
214
+ <h4 class="font-medium">Samosa</h4>
215
+ <p class="text-sm text-gray-500">Spiced potato filled pastry</p>
216
+ </div>
217
+ <span class="font-medium text-amber-600">₹30</span>
218
+ </div>
219
+ <div class="flex justify-between items-center pb-4 border-b border-gray-100">
220
+ <div>
221
+ <h4 class="font-medium">Vada Pav</h4>
222
+ <p class="text-sm text-gray-500">Spicy potato fritter in bun</p>
223
+ </div>
224
+ <span class="font-medium text-amber-600">₹40</span>
225
+ </div>
226
+ <div class="flex justify-between items-center pb-4 border-b border-gray-100">
227
+ <div>
228
+ <h4 class="font-medium">Pav Bhaji</h4>
229
+ <p class="text-sm text-gray-500">Spiced vegetable mash with bread</p>
230
+ </div>
231
+ <span class="font-medium text-amber-600">₹120</span>
232
+ </div>
233
+ <div class="flex justify-between items-center">
234
+ <div>
235
+ <h4 class="font-medium">Sandwich</h4>
236
+ <p class="text-sm text-gray-500">Grilled vegetable sandwich</p>
237
+ </div>
238
+ <span class="font-medium text-amber-600">₹90</span>
239
+ </div>
240
+ </div>
241
+ </div>
242
+ </div>
243
+
244
+ <div class="text-center mt-10">
245
+ <button class="bg-amber-500 hover:bg-amber-600 text-white px-8 py-3 rounded-full font-medium transition duration-300">
246
+ View Full Menu
247
+ </button>
248
+ </div>
249
+ </div>
250
+ </section>
251
+
252
+ <!-- About Section -->
253
+ <section id="about" class="py-16 bg-white">
254
+ <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
255
+ <div class="flex flex-col md:flex-row items-center">
256
+ <div class="md:w-1/2 mb-10 md:mb-0 md:pr-10">
257
+ <img src="https://images.unsplash.com/photo-1601050690597-df0568f70950?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80" alt="About Chai & Chill" class="rounded-xl shadow-lg w-full h-auto">
258
+ </div>
259
+ <div class="md:w-1/2">
260
+ <h2 class="text-3xl font-bold text-gray-800 mb-6">Our Story</h2>
261
+ <p class="text-gray-600 mb-4">Founded in 2018, Chai & Chill began as a small roadside stall with a simple mission: to serve authentic Indian chai and snacks that remind people of home.</p>
262
+ <p class="text-gray-600 mb-6">Today, we've grown into a beloved brand with multiple locations, but we've never lost sight of our roots. Every cup of chai is still brewed with the same care and attention to detail that we started with.</p>
263
+ <div class="flex items-center">
264
+ <div class="bg-amber-100 p-3 rounded-full mr-4">
265
+ <i class="fas fa-leaf text-amber-600"></i>
266
+ </div>
267
+ <div>
268
+ <h4 class="font-medium text-gray-800">Fresh Ingredients</h4>
269
+ <p class="text-sm text-gray-500">We source only the finest spices and ingredients</p>
270
+ </div>
271
+ </div>
272
+ <div class="flex items-center mt-4">
273
+ <div class="bg-amber-100 p-3 rounded-full mr-4">
274
+ <i class="fas fa-heart text-amber-600"></i>
275
+ </div>
276
+ <div>
277
+ <h4 class="font-medium text-gray-800">Made with Love</h4>
278
+ <p class="text-sm text-gray-500">Every item is prepared with care and tradition</p>
279
+ </div>
280
+ </div>
281
+ </div>
282
+ </div>
283
+ </div>
284
+ </section>
285
+
286
+ <!-- Testimonials -->
287
+ <section id="testimonials" class="py-16 bg-amber-50">
288
+ <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
289
+ <h2 class="text-3xl font-bold text-center text-gray-800 mb-12">What Our Customers Say</h2>
290
+ <div class="grid grid-cols-1 md:grid-cols-3 gap-8">
291
+ <div class="testimonial-card p-6 rounded-xl shadow-sm">
292
+ <div class="flex items-center mb-4">
293
+ <div class="w-10 h-10 rounded-full bg-amber-200 flex items-center justify-center mr-3">
294
+ <i class="fas fa-user text-amber-600"></i>
295
+ </div>
296
+ <div>
297
+ <h4 class="font-medium">Rahul Sharma</h4>
298
+ <div class="flex">
299
+ <i class="fas fa-star text-amber-400"></i>
300
+ <i class="fas fa-star text-amber-400"></i>
301
+ <i class="fas fa-star text-amber-400"></i>
302
+ <i class="fas fa-star text-amber-400"></i>
303
+ <i class="fas fa-star text-amber-400"></i>
304
+ </div>
305
+ </div>
306
+ </div>
307
+ <p class="text-gray-600">"The masala chai here reminds me of my grandmother's recipe. Perfect balance of spices and sweetness. I come here every morning!"</p>
308
+ </div>
309
+ <div class="testimonial-card p-6 rounded-xl shadow-sm">
310
+ <div class="flex items-center mb-4">
311
+ <div class="w-10 h-10 rounded-full bg-amber-200 flex items-center justify-center mr-3">
312
+ <i class="fas fa-user text-amber-600"></i>
313
+ </div>
314
+ <div>
315
+ <h4 class="font-medium">Priya Patel</h4>
316
+ <div class="flex">
317
+ <i class="fas fa-star text-amber-400"></i>
318
+ <i class="fas fa-star text-amber-400"></i>
319
+ <i class="fas fa-star text-amber-400"></i>
320
+ <i class="fas fa-star text-amber-400"></i>
321
+ <i class="fas fa-star text-amber-400"></i>
322
+ </div>
323
+ </div>
324
+ </div>
325
+ <p class="text-gray-600">"Best vada pav in the city! The chutney is perfectly spicy and the pav is always fresh. My go-to snack when I'm craving something delicious."</p>
326
+ </div>
327
+ <div class="testimonial-card p-6 rounded-xl shadow-sm">
328
+ <div class="flex items-center mb-4">
329
+ <div class="w-10 h-10 rounded-full bg-amber-200 flex items-center justify-center mr-3">
330
+ <i class="fas fa-user text-amber-600"></i>
331
+ </div>
332
+ <div>
333
+ <h4 class="font-medium">Amit Joshi</h4>
334
+ <div class="flex">
335
+ <i class="fas fa-star text-amber-400"></i>
336
+ <i class="fas fa-star text-amber-400"></i>
337
+ <i class="fas fa-star text-amber-400"></i>
338
+ <i class="fas fa-star text-amber-400"></i>
339
+ <i class="fas fa-star-half-alt text-amber-400"></i>
340
+ </div>
341
+ </div>
342
+ </div>
343
+ <p class="text-gray-600">"The ambiance is so relaxing and the chai is consistently excellent. Perfect place to unwind after a long day at work."</p>
344
+ </div>
345
+ </div>
346
+ </div>
347
+ </section>
348
+
349
+ <!-- CTA Section -->
350
+ <section class="py-16 bg-amber-500 text-white">
351
+ <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8 text-center">
352
+ <h2 class="text-3xl font-bold mb-6">Ready to Experience Authentic Indian Chai?</h2>
353
+ <p class="text-xl mb-8 max-w-3xl mx-auto">Download our app for exclusive offers and faster ordering.</p>
354
+ <div class="flex flex-col sm:flex-row justify-center space-y-4 sm:space-y-0 sm:space-x-4">
355
+ <button class="bg-black hover:bg-gray-800 text-white px-8 py-3 rounded-full font-medium flex items-center justify-center transition duration-300">
356
+ <i class="fab fa-apple text-xl mr-2"></i>
357
+ <div>
358
+ <p class="text-xs">Download on the</p>
359
+ <p class="text-lg">App Store</p>
360
+ </div>
361
+ </button>
362
+ <button class="bg-black hover:bg-gray-800 text-white px-8 py-3 rounded-full font-medium flex items-center justify-center transition duration-300">
363
+ <i class="fab fa-google-play text-xl mr-2"></i>
364
+ <div>
365
+ <p class="text-xs">Get it on</p>
366
+ <p class="text-lg">Google Play</p>
367
+ </div>
368
+ </button>
369
+ </div>
370
+ </div>
371
+ </section>
372
+
373
+ <!-- Contact Section -->
374
+ <section id="contact" class="py-16 bg-white">
375
+ <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
376
+ <div class="flex flex-col md:flex-row">
377
+ <div class="md:w-1/2 mb-10 md:mb-0 md:pr-10">
378
+ <h2 class="text-3xl font-bold text-gray-800 mb-6">Contact Us</h2>
379
+ <p class="text-gray-600 mb-6">Have questions or feedback? We'd love to hear from you!</p>
380
+
381
+ <div class="flex items-start mb-6">
382
+ <div class="bg-amber-100 p-3 rounded-full mr-4">
383
+ <i class="fas fa-map-marker-alt text-amber-600"></i>
384
+ </div>
385
+ <div>
386
+ <h4 class="font-medium text-gray-800">Our Locations</h4>
387
+ <p class="text-gray-600">123 Chai Street, Mumbai</p>
388
+ <p class="text-gray-600">456 Spice Lane, Delhi</p>
389
+ </div>
390
+ </div>
391
+
392
+ <div class="flex items-start mb-6">
393
+ <div class="bg-amber-100 p-3 rounded-full mr-4">
394
+ <i class="fas fa-phone-alt text-amber-600"></i>
395
+ </div>
396
+ <div>
397
+ <h4 class="font-medium text-gray-800">Call Us</h4>
398
+ <p class="text-gray-600">+91 98765 43210</p>
399
+ </div>
400
+ </div>
401
+
402
+ <div class="flex items-start">
403
+ <div class="bg-amber-100 p-3 rounded-full mr-4">
404
+ <i class="fas fa-envelope text-amber-600"></i>
405
+ </div>
406
+ <div>
407
+ <h4 class="font-medium text-gray-800">Email Us</h4>
408
+ <p class="text-gray-600">[email protected]</p>
409
+ </div>
410
+ </div>
411
+ </div>
412
+
413
+ <div class="md:w-1/2">
414
+ <div class="bg-amber-50 rounded-xl p-8 shadow-sm">
415
+ <h3 class="text-xl font-semibold mb-6">Send us a message</h3>
416
+ <form>
417
+ <div class="mb-4">
418
+ <label for="name" class="block text-gray-700 text-sm font-medium mb-2">Name</label>
419
+ <input type="text" id="name" class="w-full px-4 py-2 border border-gray-300 rounded-lg focus:ring-2 focus:ring-amber-500 focus:border-amber-500 outline-none transition duration-300">
420
+ </div>
421
+ <div class="mb-4">
422
+ <label for="email" class="block text-gray-700 text-sm font-medium mb-2">Email</label>
423
+ <input type="email" id="email" class="w-full px-4 py-2 border border-gray-300 rounded-lg focus:ring-2 focus:ring-amber-500 focus:border-amber-500 outline-none transition duration-300">
424
+ </div>
425
+ <div class="mb-4">
426
+ <label for="message" class="block text-gray-700 text-sm font-medium mb-2">Message</label>
427
+ <textarea id="message" rows="4" class="w-full px-4 py-2 border border-gray-300 rounded-lg focus:ring-2 focus:ring-amber-500 focus:border-amber-500 outline-none transition duration-300"></textarea>
428
+ </div>
429
+ <button type="submit" class="w-full bg-amber-500 hover:bg-amber-600 text-white py-3 rounded-full font-medium transition duration-300">
430
+ Send Message
431
+ </button>
432
+ </form>
433
+ </div>
434
+ </div>
435
+ </div>
436
+ </div>
437
+ </section>
438
+
439
+ <!-- Footer -->
440
+ <footer class="bg-gray-900 text-white py-12">
441
+ <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
442
+ <div class="grid grid-cols-1 md:grid-cols-4 gap-8">
443
+ <div>
444
+ <div class="flex items-center mb-4">
445
+ <i class="fas fa-mug-hot text-2xl text-amber-500 mr-2"></i>
446
+ <span class="text-xl font-bold">Chai & Chill</span>
447
+ </div>
448
+ <p class="text-gray-400 mb-4">Authentic Indian flavors served with warmth and tradition.</p>
449
+ <div class="flex space-x-4">
450
+ <a href="#" class="text-gray-400 hover:text-amber-500 transition duration-300">
451
+ <i class="fab fa-facebook-f"></i>
452
+ </a>
453
+ <a href="#" class="text-gray-400 hover:text-amber-500 transition duration-300">
454
+ <i class="fab fa-instagram"></i>
455
+ </a>
456
+ <a href="#" class="text-gray-400 hover:text-amber-500 transition duration-300">
457
+ <i class="fab fa-twitter"></i>
458
+ </a>
459
+ </div>
460
+ </div>
461
+ <div>
462
+ <h4 class="text-lg font-semibold mb-4">Quick Links</h4>
463
+ <ul class="space-y-2">
464
+ <li><a href="#home" class="text-gray-400 hover:text-amber-500 transition duration-300">Home</a></li>
465
+ <li><a href="#menu" class="text-gray-400 hover:text-amber-500 transition duration-300">Menu</a></li>
466
+ <li><a href="#about" class="text-gray-400 hover:text-amber-500 transition duration-300">About Us</a></li>
467
+ <li><a href="#testimonials" class="text-gray-400 hover:text-amber-500 transition duration-300">Testimonials</a></li>
468
+ <li><a href="#contact" class="text-gray-400 hover:text-amber-500 transition duration-300">Contact</a></li>
469
+ </ul>
470
+ </div>
471
+ <div>
472
+ <h4 class="text-lg font-semibold mb-4">Opening Hours</h4>
473
+ <ul class="space-y-2 text-gray-400">
474
+ <li class="flex justify-between">
475
+ <span>Monday - Friday</span>
476
+ <span>7AM - 10PM</span>
477
+ </li>
478
+ <li class="flex justify-between">
479
+ <span>Saturday</span>
480
+ <span>8AM - 11PM</span>
481
+ </li>
482
+ <li class="flex justify-between">
483
+ <span>Sunday</span>
484
+ <span>8AM - 9PM</span>
485
+ </li>
486
+ </ul>
487
+ </div>
488
+ <div>
489
+ <h4 class="text-lg font-semibold mb-4">Newsletter</h4>
490
+ <p class="text-gray-400 mb-4">Subscribe to our newsletter for the latest updates and offers.</p>
491
+ <form class="flex">
492
+ <input type="email" placeholder="Your email" class="px-4 py-2 rounded-l-lg focus:outline-none text-gray-900 w-full">
493
+ <button type="submit" class="bg-amber-500 hover:bg-amber-600 px-4 py-2 rounded-r-lg transition duration-300">
494
+ <i class="fas fa-paper-plane"></i>
495
+ </button>
496
+ </form>
497
+ </div>
498
+ </div>
499
+ <div class="border-t border-gray-800 mt-10 pt-6 text-center text-gray-400">
500
+ <p>&copy; 2023 Chai & Chill. All rights reserved.</p>
501
+ </div>
502
+ </div>
503
+ </footer>
504
+
505
+ <script>
506
+ // Mobile menu toggle
507
+ const mobileMenuButton = document.querySelector('[aria-controls="mobile-menu"]');
508
+ const mobileMenu = document.getElementById('mobile-menu');
509
+
510
+ mobileMenuButton.addEventListener('click', function() {
511
+ mobileMenu.classList.toggle('hidden');
512
+ });
513
+
514
+ // Smooth scrolling for anchor links
515
+ document.querySelectorAll('a[href^="#"]').forEach(anchor => {
516
+ anchor.addEventListener('click', function (e) {
517
+ e.preventDefault();
518
+
519
+ document.querySelector(this.getAttribute('href')).scrollIntoView({
520
+ behavior: 'smooth'
521
+ });
522
+
523
+ // Close mobile menu if open
524
+ if (!mobileMenu.classList.contains('hidden')) {
525
+ mobileMenu.classList.add('hidden');
526
+ }
527
+ });
528
+ });
529
+ </script>
530
+ <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=Shakif/design-flix" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
531
+ </html>
prompts.txt ADDED
File without changes