Bossmarc747 commited on
Commit
0dd97c3
Β·
verified Β·
1 Parent(s): e1251b5

Redesign my website

Browse files
Files changed (2) hide show
  1. README.md +8 -5
  2. index.html +481 -18
README.md CHANGED
@@ -1,10 +1,13 @@
1
  ---
2
- title: Grocerygrove Express
3
- emoji: πŸ“Š
4
- colorFrom: blue
5
- colorTo: indigo
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: GroceryGrove Express πŸ›’
3
+ colorFrom: red
4
+ colorTo: green
5
+ emoji: 🐳
6
  sdk: static
7
  pinned: false
8
+ tags:
9
+ - deepsite-v3
10
  ---
11
 
12
+ # Welcome to your new DeepSite project!
13
+ This project was created with [DeepSite](https://deepsite.hf.co).
index.html CHANGED
@@ -1,19 +1,482 @@
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>GroceryGrove Express - Fresh Groceries Delivered Fast</title>
7
+ <script src="https://cdn.tailwindcss.com"></script>
8
+ <script src="https://unpkg.com/feather-icons"></script>
9
+ <script src="https://cdn.jsdelivr.net/npm/feather-icons/dist/feather.min.js"></script>
10
+ <style>
11
+ @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');
12
+ body {
13
+ font-family: 'Poppins', sans-serif;
14
+ }
15
+ .hero-gradient {
16
+ background: linear-gradient(135deg, #f5f7fa 0%, #e4efe9 100%);
17
+ }
18
+ .deal-counter {
19
+ background: rgba(255,255,255,0.2);
20
+ backdrop-filter: blur(10px);
21
+ }
22
+ .category-card:hover {
23
+ transform: translateY(-5px);
24
+ box-shadow: 0 10px 25px rgba(0,0,0,0.1);
25
+ }
26
+ .product-card:hover .product-actions {
27
+ opacity: 1;
28
+ bottom: 15px;
29
+ }
30
+ </style>
31
+ </head>
32
+ <body class="bg-gray-50">
33
+ <!-- Top Bar -->
34
+ <div class="bg-green-600 text-white py-2 px-4 text-sm">
35
+ <div class="container mx-auto flex justify-between items-center">
36
+ <div class="flex space-x-4">
37
+ <span><i data-feather="phone" class="w-4 h-4 inline mr-1"></i> +00 123 456 789</span>
38
+ <span><i data-feather="mail" class="w-4 h-4 inline mr-1"></i> [email protected]</span>
39
+ </div>
40
+ <div class="flex space-x-4">
41
+ <span>English <i data-feather="chevron-down" class="w-4 h-4 inline"></i></span>
42
+ <span>USD <i data-feather="chevron-down" class="w-4 h-4 inline"></i></span>
43
+ </div>
44
+ </div>
45
+ </div>
46
+
47
+ <!-- Header -->
48
+ <header class="bg-white shadow-sm py-4 sticky top-0 z-50">
49
+ <div class="container mx-auto px-4 flex items-center justify-between">
50
+ <!-- Logo -->
51
+ <div class="flex items-center">
52
+ <img src="https://react.marketpro.wowtheme7.com/assets/images/logo/logo.png" alt="GroceryGrove Express" class="h-10">
53
+ </div>
54
+
55
+ <!-- Search -->
56
+ <div class="hidden md:flex flex-1 mx-8">
57
+ <div class="relative w-full">
58
+ <input type="text" placeholder="Search for products..."
59
+ class="w-full py-2 px-4 border border-gray-300 rounded-full focus:outline-none focus:ring-2 focus:ring-green-500">
60
+ <button class="absolute right-0 top-0 h-full px-4 bg-green-600 text-white rounded-r-full">
61
+ <i data-feather="search" class="w-5 h-5"></i>
62
+ </button>
63
+ </div>
64
+ </div>
65
+
66
+ <!-- User Actions -->
67
+ <div class="flex items-center space-x-4">
68
+ <a href="#" class="p-2 relative">
69
+ <i data-feather="user" class="w-6 h-6"></i>
70
+ </a>
71
+ <a href="#" class="p-2 relative">
72
+ <i data-feather="heart" class="w-6 h-6"></i>
73
+ <span class="absolute -top-1 -right-1 bg-green-600 text-white text-xs rounded-full w-5 h-5 flex items-center justify-center">2</span>
74
+ </a>
75
+ <a href="#" class="p-2 relative">
76
+ <i data-feather="shopping-cart" class="w-6 h-6"></i>
77
+ <span class="absolute -top-1 -right-1 bg-green-600 text-white text-xs rounded-full w-5 h-5 flex items-center justify-center">2</span>
78
+ </a>
79
+ </div>
80
+ </div>
81
+ </header>
82
+
83
+ <!-- Navigation -->
84
+ <nav class="bg-white shadow-sm border-t">
85
+ <div class="container mx-auto px-4">
86
+ <div class="flex items-center justify-between py-3">
87
+ <div class="flex items-center">
88
+ <button class="flex items-center bg-green-600 text-white px-4 py-2 rounded-md mr-4">
89
+ <i data-feather="menu" class="w-5 h-5 mr-2"></i>
90
+ <span>All Categories</span>
91
+ </button>
92
+ </div>
93
+
94
+ <div class="hidden lg:flex space-x-6">
95
+ <a href="#" class="font-medium text-gray-700 hover:text-green-600">Home</a>
96
+ <a href="#" class="font-medium text-gray-700 hover:text-green-600">Shop</a>
97
+ <a href="#" class="font-medium text-gray-700 hover:text-green-600">Pages</a>
98
+ <a href="#" class="font-medium text-gray-700 hover:text-green-600">Vendors</a>
99
+ <a href="#" class="font-medium text-gray-700 hover:text-green-600">Blog</a>
100
+ <a href="#" class="font-medium text-gray-700 hover:text-green-600">Contact</a>
101
+ </div>
102
+
103
+ <div class="hidden lg:flex items-center">
104
+ <div class="flex items-center">
105
+ <i data-feather="map-pin" class="w-5 h-5 text-green-600 mr-2"></i>
106
+ <div>
107
+ <p class="text-xs text-gray-500">Your Location</p>
108
+ <p class="text-sm font-medium">Alabama</p>
109
+ </div>
110
+ </div>
111
+ </div>
112
+ </div>
113
+ </div>
114
+ </nav>
115
+
116
+ <!-- Hero Slider -->
117
+ <section class="hero-gradient py-12">
118
+ <div class="container mx-auto px-4">
119
+ <div class="flex flex-col lg:flex-row items-center">
120
+ <div class="lg:w-1/2 mb-8 lg:mb-0">
121
+ <h1 class="text-4xl md:text-5xl font-bold text-gray-800 mb-4">Daily Grocery Order and Get Express Delivery</h1>
122
+ <p class="text-lg text-gray-600 mb-6">Fresh groceries delivered to your doorstep in under 2 hours</p>
123
+ <a href="#" class="inline-block bg-green-600 hover:bg-green-700 text-white px-8 py-3 rounded-md font-medium transition duration-300">Explore Shop</a>
124
+ </div>
125
+ <div class="lg:w-1/2 flex justify-center">
126
+ <img src="https://react.marketpro.wowtheme7.com/assets/images/thumbs/banner-img3.png" alt="Grocery Delivery" class="max-w-full h-auto">
127
+ </div>
128
+ </div>
129
+ </div>
130
+ </section>
131
+
132
+ <!-- Features -->
133
+ <section class="py-12 bg-white">
134
+ <div class="container mx-auto px-4">
135
+ <div class="grid grid-cols-2 md:grid-cols-3 lg:grid-cols-6 gap-4">
136
+ <div class="bg-white rounded-lg shadow-sm p-4 text-center hover:shadow-md transition duration-300">
137
+ <img src="https://react.marketpro.wowtheme7.com/assets/images/thumbs/feature-img1.png" alt="Vegetables" class="w-20 h-20 mx-auto mb-3">
138
+ <h3 class="font-medium text-gray-800">Vegetables</h3>
139
+ <p class="text-sm text-gray-500">125+ Products</p>
140
+ </div>
141
+ <div class="bg-white rounded-lg shadow-sm p-4 text-center hover:shadow-md transition duration-300">
142
+ <img src="https://react.marketpro.wowtheme7.com/assets/images/thumbs/feature-img2.png" alt="Fish & Meats" class="w-20 h-20 mx-auto mb-3">
143
+ <h3 class="font-medium text-gray-800">Fish & Meats</h3>
144
+ <p class="text-sm text-gray-500">125+ Products</p>
145
+ </div>
146
+ <div class="bg-white rounded-lg shadow-sm p-4 text-center hover:shadow-md transition duration-300">
147
+ <img src="https://react.marketpro.wowtheme7.com/assets/images/thumbs/feature-img3.png" alt="Desserts" class="w-20 h-20 mx-auto mb-3">
148
+ <h3 class="font-medium text-gray-800">Desserts</h3>
149
+ <p class="text-sm text-gray-500">125+ Products</p>
150
+ </div>
151
+ <div class="bg-white rounded-lg shadow-sm p-4 text-center hover:shadow-md transition duration-300">
152
+ <img src="https://react.marketpro.wowtheme7.com/assets/images/thumbs/feature-img4.png" alt="Drinks & Juice" class="w-20 h-20 mx-auto mb-3">
153
+ <h3 class="font-medium text-gray-800">Drinks & Juice</h3>
154
+ <p class="text-sm text-gray-500">125+ Products</p>
155
+ </div>
156
+ <div class="bg-white rounded-lg shadow-sm p-4 text-center hover:shadow-md transition duration-300">
157
+ <img src="https://react.marketpro.wowtheme7.com/assets/images/thumbs/feature-img5.png" alt="Animals Food" class="w-20 h-20 mx-auto mb-3">
158
+ <h3 class="font-medium text-gray-800">Animals Food</h3>
159
+ <p class="text-sm text-gray-500">125+ Products</p>
160
+ </div>
161
+ <div class="bg-white rounded-lg shadow-sm p-4 text-center hover:shadow-md transition duration-300">
162
+ <img src="https://react.marketpro.wowtheme7.com/assets/images/thumbs/feature-img6.png" alt="Fresh Fruits" class="w-20 h-20 mx-auto mb-3">
163
+ <h3 class="font-medium text-gray-800">Fresh Fruits</h3>
164
+ <p class="text-sm text-gray-500">125+ Products</p>
165
+ </div>
166
+ </div>
167
+ </div>
168
+ </section>
169
+
170
+ <!-- Promotion Banners -->
171
+ <section class="py-8 bg-gray-50">
172
+ <div class="container mx-auto px-4">
173
+ <div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-4 gap-6">
174
+ <div class="relative rounded-lg overflow-hidden">
175
+ <img src="https://react.marketpro.wowtheme7.com/assets/images/thumbs/promotional-banner-img1.png" alt="Everyday Fresh Meat" class="w-full h-full object-cover">
176
+ <div class="absolute bottom-0 left-0 p-6">
177
+ <h3 class="text-xl font-bold text-white mb-2">Everyday Fresh Meat</h3>
178
+ <a href="#" class="inline-block bg-white text-green-600 px-4 py-2 rounded-md font-medium text-sm">Shop Now</a>
179
+ </div>
180
+ </div>
181
+ <div class="relative rounded-lg overflow-hidden">
182
+ <img src="https://react.marketpro.wowtheme7.com/assets/images/thumbs/promotional-banner-img2.png" alt="Daily Fresh Vegetables" class="w-full h-full object-cover">
183
+ <div class="absolute bottom-0 left-0 p-6">
184
+ <h3 class="text-xl font-bold text-white mb-2">Daily Fresh Vegetables</h3>
185
+ <a href="#" class="inline-block bg-white text-green-600 px-4 py-2 rounded-md font-medium text-sm">Shop Now</a>
186
+ </div>
187
+ </div>
188
+ <div class="relative rounded-lg overflow-hidden">
189
+ <img src="https://react.marketpro.wowtheme7.com/assets/images/thumbs/promotional-banner-img3.png" alt="Everyday Fresh Milk" class="w-full h-full object-cover">
190
+ <div class="absolute bottom-0 left-0 p-6">
191
+ <h3 class="text-xl font-bold text-white mb-2">Everyday Fresh Milk</h3>
192
+ <a href="#" class="inline-block bg-white text-green-600 px-4 py-2 rounded-md font-medium text-sm">Shop Now</a>
193
+ </div>
194
+ </div>
195
+ <div class="relative rounded-lg overflow-hidden">
196
+ <img src="https://react.marketpro.wowtheme7.com/assets/images/thumbs/promotional-banner-img4.png" alt="Everyday Fresh Fruits" class="w-full h-full object-cover">
197
+ <div class="absolute bottom-0 left-0 p-6">
198
+ <h3 class="text-xl font-bold text-white mb-2">Everyday Fresh Fruits</h3>
199
+ <a href="#" class="inline-block bg-white text-green-600 px-4 py-2 rounded-md font-medium text-sm">Shop Now</a>
200
+ </div>
201
+ </div>
202
+ </div>
203
+ </div>
204
+ </section>
205
+
206
+ <!-- Flash Sale -->
207
+ <section class="py-12 bg-white">
208
+ <div class="container mx-auto px-4">
209
+ <div class="flex justify-between items-center mb-8">
210
+ <h2 class="text-2xl font-bold text-gray-800">Flash Sales Today</h2>
211
+ <a href="#" class="text-green-600 hover:text-green-700 font-medium">View All Deals</a>
212
+ </div>
213
+
214
+ <div class="grid grid-cols-1 sm:grid-cols-2 lg:grid-cols-4 gap-6">
215
+ <!-- Flash Sale Item -->
216
+ <div class="bg-white rounded-lg shadow-md overflow-hidden relative">
217
+ <div class="relative">
218
+ <img src="https://react.marketpro.wowtheme7.com/assets/images/bg/flash-sale-bg1.png" alt="Fresh Vegetables" class="w-full h-40 object-cover">
219
+ <div class="absolute bottom-0 left-0 right-0 bg-black bg-opacity-50 text-white p-3">
220
+ <h3 class="font-bold text-lg">Fresh Vegetables</h3>
221
+ <div class="flex justify-between mt-2">
222
+ <span class="text-xs">80 Days</span>
223
+ <span class="text-xs">18 Hours</span>
224
+ <span class="text-xs">19 Min</span>
225
+ <span class="text-xs">25 Sec</span>
226
+ </div>
227
+ </div>
228
+ </div>
229
+ <div class="p-4">
230
+ <div class="flex justify-between items-center mb-2">
231
+ <span class="text-green-600 font-bold">$14.99</span>
232
+ <span class="text-gray-400 line-through text-sm">$28.99</span>
233
+ </div>
234
+ <p class="text-gray-500 text-sm mb-3">By Lucky Supermarket</p>
235
+ <div class="w-full bg-gray-200 rounded-full h-2">
236
+ <div class="bg-green-600 h-2 rounded-full" style="width: 50%"></div>
237
+ </div>
238
+ <p class="text-xs text-gray-500 mt-1">Sold: 18/35</p>
239
+ <button class="w-full mt-4 bg-green-600 hover:bg-green-700 text-white py-2 rounded-md font-medium transition duration-300">Add To Cart</button>
240
+ </div>
241
+ </div>
242
+
243
+ <!-- Repeat similar structure for other items -->
244
+ <div class="bg-white rounded-lg shadow-md overflow-hidden relative">
245
+ <div class="relative">
246
+ <img src="https://react.marketpro.wowtheme7.com/assets/images/bg/flash-sale-bg2.png" alt="Daily Snacks" class="w-full h-40 object-cover">
247
+ <div class="absolute bottom-0 left-0 right-0 bg-black bg-opacity-50 text-white p-3">
248
+ <h3 class="font-bold text-lg">Daily Snacks</h3>
249
+ <div class="flex justify-between mt-2">
250
+ <span class="text-xs">80 Days</span>
251
+ <span class="text-xs">18 Hours</span>
252
+ <span class="text-xs">19 Min</span>
253
+ <span class="text-xs">25 Sec</span>
254
+ </div>
255
+ </div>
256
+ </div>
257
+ <div class="p-4">
258
+ <div class="flex justify-between items-center mb-2">
259
+ <span class="text-green-600 font-bold">$14.99</span>
260
+ <span class="text-gray-400 line-through text-sm">$28.99</span>
261
+ </div>
262
+ <p class="text-gray-500 text-sm mb-3">By Lucky Supermarket</p>
263
+ <div class="w-full bg-gray-200 rounded-full h-2">
264
+ <div class="bg-green-600 h-2 rounded-full" style="width: 50%"></div>
265
+ </div>
266
+ <p class="text-xs text-gray-500 mt-1">Sold: 18/35</p>
267
+ <button class="w-full mt-4 bg-green-600 hover:bg-green-700 text-white py-2 rounded-md font-medium transition duration-300">Add To Cart</button>
268
+ </div>
269
+ </div>
270
+ </div>
271
+ </div>
272
+ </section>
273
+
274
+ <!-- Featured Products -->
275
+ <section class="py-12 bg-gray-50">
276
+ <div class="container mx-auto px-4">
277
+ <div class="flex justify-between items-center mb-8">
278
+ <h2 class="text-2xl font-bold text-gray-800">Recommended for you</h2>
279
+ <div class="flex space-x-2">
280
+ <button class="px-4 py-2 bg-green-600 text-white rounded-md text-sm">All</button>
281
+ <button class="px-4 py-2 bg-white text-gray-700 rounded-md text-sm hover:bg-gray-100">Grocery</button>
282
+ <button class="px-4 py-2 bg-white text-gray-700 rounded-md text-sm hover:bg-gray-100">Fruits</button>
283
+ <button class="px-4 py-2 bg-white text-gray-700 rounded-md text-sm hover:bg-gray-100">Juices</button>
284
+ <button class="px-4 py-2 bg-white text-gray-700 rounded-md text-sm hover:bg-gray-100">Vegetables</button>
285
+ </div>
286
+ </div>
287
+
288
+ <div class="grid grid-cols-1 sm:grid-cols-2 md:grid-cols-3 lg:grid-cols-4 xl:grid-cols-5 gap-6">
289
+ <!-- Product Card -->
290
+ <div class="bg-white rounded-lg shadow-sm overflow-hidden relative group">
291
+ <div class="relative">
292
+ <img src="https://react.marketpro.wowtheme7.com/assets/images/thumbs/product-img1.png" alt="Taylor Farms Broccoli" class="w-full h-48 object-contain">
293
+ <div class="absolute top-2 right-2">
294
+ <span class="bg-green-100 text-green-800 text-xs font-medium px-2 py-1 rounded">Sale 50%</span>
295
+ </div>
296
+ </div>
297
+ <div class="p-4">
298
+ <h3 class="font-medium text-gray-800 mb-1">Taylor Farms Broccoli Florets Vegetables</h3>
299
+ <p class="text-gray-500 text-sm mb-2">By Lucky Supermarket</p>
300
+ <div class="flex justify-between items-center mb-2">
301
+ <span class="text-green-600 font-bold">$14.99</span>
302
+ <span class="text-gray-400 line-through text-sm">$28.99</span>
303
+ </div>
304
+ <div class="flex items-center mb-3">
305
+ <div class="flex text-yellow-400">
306
+ <i data-feather="star" class="w-4 h-4 fill-current"></i>
307
+ <i data-feather="star" class="w-4 h-4 fill-current"></i>
308
+ <i data-feather="star" class="w-4 h-4 fill-current"></i>
309
+ <i data-feather="star" class="w-4 h-4 fill-current"></i>
310
+ <i data-feather="star" class="w-4 h-4 fill-current"></i>
311
+ </div>
312
+ <span class="text-gray-500 text-sm ml-1">(17k)</span>
313
+ </div>
314
+ <button class="w-full bg-green-600 hover:bg-green-700 text-white py-2 rounded-md font-medium transition duration-300">Add To Cart</button>
315
+ </div>
316
+ </div>
317
+
318
+ <!-- Repeat similar structure for other products -->
319
+ <div class="bg-white rounded-lg shadow-sm overflow-hidden relative group">
320
+ <div class="relative">
321
+ <img src="https://react.marketpro.wowtheme7.com/assets/images/thumbs/product-img2.png" alt="Marcel's Modern Pantry" class="w-full h-48 object-contain">
322
+ <div class="absolute top-2 right-2">
323
+ <span class="bg-green-100 text-green-800 text-xs font-medium px-2 py-1 rounded">Sale 50%</span>
324
+ </div>
325
+ </div>
326
+ <div class="p-4">
327
+ <h3 class="font-medium text-gray-800 mb-1">Marcel's Modern Pantry Almond Unsweetened</h3>
328
+ <p class="text-gray-500 text-sm mb-2">By Lucky Supermarket</p>
329
+ <div class="flex justify-between items-center mb-2">
330
+ <span class="text-green-600 font-bold">$14.99</span>
331
+ <span class="text-gray-400 line-through text-sm">$28.99</span>
332
+ </div>
333
+ <div class="flex items-center mb-3">
334
+ <div class="flex text-yellow-400">
335
+ <i data-feather="star" class="w-4 h-4 fill-current"></i>
336
+ <i data-feather="star" class="w-4 h-4 fill-current"></i>
337
+ <i data-feather="star" class="w-4 h-4 fill-current"></i>
338
+ <i data-feather="star" class="w-4 h-4 fill-current"></i>
339
+ <i data-feather="star" class="w-4 h-4 fill-current"></i>
340
+ </div>
341
+ <span class="text-gray-500 text-sm ml-1">(17k)</span>
342
+ </div>
343
+ <button class="w-full bg-green-600 hover:bg-green-700 text-white py-2 rounded-md font-medium transition duration-300">Add To Cart</button>
344
+ </div>
345
+ </div>
346
+ </div>
347
+ </div>
348
+ </section>
349
+
350
+ <!-- Hot Deals -->
351
+ <section class="py-12 bg-white">
352
+ <div class="container mx-auto px-4">
353
+ <div class="flex justify-between items-center mb-8">
354
+ <h2 class="text-2xl font-bold text-gray-800">Hot Deals Today</h2>
355
+ <a href="#" class="text-green-600 hover:text-green-700 font-medium">View All Deals</a>
356
+ </div>
357
+
358
+ <div class="grid grid-cols-1 lg:grid-cols-2 gap-8">
359
+ <div class="relative rounded-lg overflow-hidden bg-gray-100 h-64">
360
+ <img src="https://react.marketpro.wowtheme7.com/assets/images/thumbs/hot-deals-img.png" alt="Fresh Vegetables" class="absolute right-0 top-0 h-full w-auto">
361
+ <div class="absolute top-0 left-0 p-8">
362
+ <h3 class="text-2xl font-bold text-gray-800 mb-2">Fresh Vegetables</h3>
363
+ <div class="flex space-x-4 mb-4">
364
+ <span class="bg-white px-3 py-1 rounded-md text-gray-800 font-medium">80 Days</span>
365
+ <span class="bg-white px-3 py-1 rounded-md text-gray-800 font-medium">18 Hours</span>
366
+ <span class="bg-white px-3 py-1 rounded-md text-gray-800 font-medium">19 Min</span>
367
+ <span class="bg-white px-3 py-1 rounded-md text-gray-800 font-medium">25 Sec</span>
368
+ </div>
369
+ <a href="#" class="inline-block bg-green-600 hover:bg-green-700 text-white px-6 py-2 rounded-md font-medium">Shop Now</a>
370
+ </div>
371
+ </div>
372
+
373
+ <div class="grid grid-cols-1 md:grid-cols-2 gap-4">
374
+ <div class="bg-white rounded-lg shadow-sm p-4 flex">
375
+ <img src="https://react.marketpro.wowtheme7.com/assets/images/thumbs/product-img18.png" alt="Tropicana Juice" class="w-20 h-20 object-contain">
376
+ <div class="ml-4">
377
+ <h4 class="font-medium text-gray-800">Tropicana 100% Juice, Orange</h4>
378
+ <div class="flex justify-between items-center mt-2">
379
+ <span class="text-green-600 font-bold">$14.99</span>
380
+ <span class="text-gray-400 line-through text-sm">$28.99</span>
381
+ </div>
382
+ <button class="mt-2 bg-green-600 hover:bg-green-700 text-white px-3 py-1 rounded-md text-sm">Add To Cart</button>
383
+ </div>
384
+ </div>
385
+ <div class="bg-white rounded-lg shadow-sm p-4 flex">
386
+ <img src="https://react.marketpro.wowtheme7.com/assets/images/thumbs/product-img9.png" alt="Organic Milk" class="w-20 h-20 object-contain">
387
+ <div class="ml-4">
388
+ <h4 class="font-medium text-gray-800">O Organics Milk, Whole</h4>
389
+ <div class="flex justify-between items-center mt-2">
390
+ <span class="text-green-600 font-bold">$14.99</span>
391
+ <span class="text-gray-400 line-through text-sm">$28.99</span>
392
+ </div>
393
+ <button class="mt-2 bg-green-600 hover:bg-green-700 text-white px-3 py-1 rounded-md text-sm">Add To Cart</button>
394
+ </div>
395
+ </div>
396
+ </div>
397
+ </div>
398
+ </div>
399
+ </section>
400
+
401
+ <!-- Delivery Section -->
402
+ <section class="py-12 bg-gray-100">
403
+ <div class="container mx-auto px-4">
404
+ <div class="bg-white rounded-lg shadow-sm overflow-hidden">
405
+ <div class="flex flex-col md:flex-row">
406
+ <div class="md:w-1/2 p-12">
407
+ <img src="https://react.marketpro.wowtheme7.com/assets/images/thumbs/delivery-man.png" alt="Delivery" class="w-full h-auto">
408
+ </div>
409
+ <div class="md:w-1/2 p-12 flex flex-col justify-center">
410
+ <h2 class="text-3xl font-bold text-gray-800 mb-4">We Delivery on Next Day from 10:00 AM to 08:00 PM</h2>
411
+ <p class="text-gray-600 mb-6">For Orders starts from $100</p>
412
+ <a href="#" class="inline-block bg-green-600 hover:bg-green-700 text-white px-8 py-3 rounded-md font-medium w-max">Shop Now</a>
413
+ </div>
414
+ </div>
415
+ </div>
416
+ </div>
417
+ </section>
418
+
419
+ <!-- Newsletter -->
420
+ <section class="py-12 bg-green-600 text-white">
421
+ <div class="container mx-auto px-4">
422
+ <div class="flex flex-col lg:flex-row items-center">
423
+ <div class="lg:w-1/2 mb-8 lg:mb-0">
424
+ <h2 class="text-3xl font-bold mb-4">Don't Miss Out on Grocery Deals</h2>
425
+ <p class="text-lg mb-6">SING UP FOR THE UPDATE NEWSLETTER</p>
426
+ <div class="flex">
427
+ <input type="email" placeholder="Your email address" class="px-4 py-3 w-full rounded-l-md focus:outline-none text-gray-800">
428
+ <button class="bg-gray-800 hover:bg-gray-900 px-6 rounded-r-md font-medium">Subscribe</button>
429
+ </div>
430
+ </div>
431
+ <div class="lg:w-1/2 flex justify-center">
432
+ <img src="https://react.marketpro.wowtheme7.com/assets/images/thumbs/newsletter-img.png" alt="Newsletter" class="max-w-full h-auto">
433
+ </div>
434
+ </div>
435
+ </div>
436
+ </section>
437
+
438
+ <!-- Footer -->
439
+ <footer class="bg-gray-900 text-white pt-12 pb-6">
440
+ <div class="container mx-auto px-4">
441
+ <div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-5 gap-8 mb-8">
442
+ <div class="lg:col-span-2">
443
+ <img src="https://react.marketpro.wowtheme7.com/assets/images/logo/logo.png" alt="GroceryGrove Express" class="h-10 mb-4">
444
+ <p class="text-gray-400 mb-4">We're GroceryGrove Express, an innovative team of food suppliers delivering fresh groceries to your doorstep.</p>
445
+ <p class="text-gray-400 mb-2">789 Inner Lane, Biyes park, California, USA</p>
446
+ <p class="text-gray-400 mb-2">+00 123 456 789 or +00 987 654 012</p>
447
+ <p class="text-gray-400">[email protected]</p>
448
+ </div>
449
+
450
+ <div>
451
+ <h3 class="text-lg font-bold mb-4">Information</h3>
452
+ <ul class="space-y-2">
453
+ <li><a href="#" class="text-gray-400 hover:text-white">Become a Vendor</a></li>
454
+ <li><a href="#" class="text-gray-400 hover:text-white">Affiliate Program</a></li>
455
+ <li><a href="#" class="text-gray-400 hover:text-white">Privacy Policy</a></li>
456
+ <li><a href="#" class="text-gray-400 hover:text-white">Our Suppliers</a></li>
457
+ <li><a href="#" class="text-gray-400 hover:text-white">Extended Plan</a></li>
458
+ </ul>
459
+ </div>
460
+
461
+ <!-- Repeat similar structure for other footer columns -->
462
+ </div>
463
+
464
+ <div class="border-t border-gray-800 pt-6">
465
+ <div class="flex flex-col md:flex-row justify-between items-center">
466
+ <p class="text-gray-400 mb-4 md:mb-0">GroceryGrove Express Β© 2024. All Rights Reserved</p>
467
+ <div class="flex space-x-4">
468
+ <a href="#" class="text-gray-400 hover:text-white"><i data-feather="facebook" class="w-5 h-5"></i></a>
469
+ <a href="#" class="text-gray-400 hover:text-white"><i data-feather="twitter" class="w-5 h-5"></i></a>
470
+ <a href="#" class="text-gray-400 hover:text-white"><i data-feather="instagram" class="w-5 h-5"></i></a>
471
+ <a href="#" class="text-gray-400 hover:text-white"><i data-feather="linkedin" class="w-5 h-5"></i></a>
472
+ </div>
473
+ </div>
474
+ </div>
475
+ </div>
476
+ </footer>
477
+
478
+ <script>
479
+ feather.replace();
480
+ </script>
481
+ </body>
482
  </html>