Dagfinn1962 commited on
Commit
f3f1646
·
verified ·
1 Parent(s): 2489414

Continue to work on the site add more features - Initial Deployment

Browse files
Files changed (2) hide show
  1. README.md +7 -5
  2. index.html +473 -19
README.md CHANGED
@@ -1,10 +1,12 @@
1
  ---
2
- title: Wheeldealas
3
- emoji: 🦀
4
- colorFrom: blue
5
- colorTo: pink
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: wheeldealas
3
+ emoji: 🐳
4
+ colorFrom: gray
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,473 @@
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>WheelDeal - Premium Tires & Rims</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
+ .product-card:hover {
11
+ transform: translateY(-5px);
12
+ box-shadow: 0 10px 20px rgba(0,0,0,0.1);
13
+ }
14
+ .search-dropdown {
15
+ display: none;
16
+ }
17
+ .search-input:focus + .search-dropdown {
18
+ display: block;
19
+ }
20
+ .cart-notification {
21
+ animation: slideIn 0.3s ease-out;
22
+ }
23
+ @keyframes slideIn {
24
+ from { transform: translateX(100%); opacity: 0; }
25
+ to { transform: translateX(0); opacity: 1; }
26
+ }
27
+ .tire-size-selector {
28
+ background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6 8l4 4 4-4'/%3e%3c/svg%3e");
29
+ background-position: right 0.5rem center;
30
+ background-repeat: no-repeat;
31
+ background-size: 1.5em 1.5em;
32
+ }
33
+ </style>
34
+ </head>
35
+ <body class="bg-gray-50">
36
+ <!-- Navigation -->
37
+ <nav class="bg-gray-900 text-white shadow-lg">
38
+ <div class="container mx-auto px-4 py-3">
39
+ <div class="flex justify-between items-center">
40
+ <div class="flex items-center space-x-4">
41
+ <a href="#" class="flex items-center">
42
+ <i class="fas fa-tire text-yellow-400 text-2xl mr-2"></i>
43
+ <span class="font-bold text-xl">WheelDeal</span>
44
+ </a>
45
+ </div>
46
+
47
+ <div class="hidden md:flex items-center space-x-6">
48
+ <a href="#" class="hover:text-yellow-400 transition">Tires</a>
49
+ <a href="#" class="hover:text-yellow-400 transition">Rims</a>
50
+ <a href="#" class="hover:text-yellow-400 transition">Packages</a>
51
+ <a href="#" class="hover:text-yellow-400 transition">Services</a>
52
+ </div>
53
+
54
+ <div class="flex items-center space-x-4">
55
+ <div class="relative">
56
+ <input type="text" placeholder="Search..." class="search-input bg-gray-800 text-white px-4 py-2 rounded-full focus:outline-none focus:ring-2 focus:ring-yellow-400 w-40 md:w-64">
57
+ <div class="search-dropdown absolute top-full left-0 mt-1 w-full bg-white text-gray-800 rounded shadow-lg z-10">
58
+ <div class="p-2 border-b">Popular Searches</div>
59
+ <a href="#" class="block p-2 hover:bg-gray-100">All-Season Tires</a>
60
+ <a href="#" class="block p-2 hover:bg-gray-100">20" Rims</a>
61
+ <a href="#" class="block p-2 hover:bg-gray-100">Winter Tires</a>
62
+ </div>
63
+ </div>
64
+ <a href="#" class="relative">
65
+ <i class="fas fa-shopping-cart text-xl"></i>
66
+ <span class="cart-count absolute -top-2 -right-2 bg-yellow-400 text-gray-900 text-xs font-bold rounded-full h-5 w-5 flex items-center justify-center">0</span>
67
+ </a>
68
+ <a href="#" class="hidden md:block bg-yellow-400 text-gray-900 px-4 py-2 rounded-full font-medium hover:bg-yellow-300 transition">My Garage</a>
69
+ </div>
70
+
71
+ <button class="md:hidden text-xl focus:outline-none">
72
+ <i class="fas fa-bars"></i>
73
+ </button>
74
+ </div>
75
+ </div>
76
+ </nav>
77
+
78
+ <!-- Hero Section -->
79
+ <section class="bg-gradient-to-r from-gray-800 to-gray-900 text-white py-16">
80
+ <div class="container mx-auto px-4 flex flex-col md:flex-row items-center">
81
+ <div class="md:w-1/2 mb-8 md:mb-0">
82
+ <h1 class="text-4xl md:text-5xl font-bold mb-4">Premium Tires & Rims</h1>
83
+ <p class="text-xl mb-6">Find the perfect fit for your vehicle from our extensive database of premium products.</p>
84
+ <div class="flex flex-col sm:flex-row gap-4">
85
+ <select class="tire-size-selector bg-gray-700 text-white px-4 py-3 rounded-lg appearance-none pr-10 focus:outline-none focus:ring-2 focus:ring-yellow-400">
86
+ <option>Select Tire Size</option>
87
+ <option>205/55R16</option>
88
+ <option>225/45R17</option>
89
+ <option>235/40R18</option>
90
+ <option>245/35R19</option>
91
+ <option>255/30R20</option>
92
+ </select>
93
+ <button class="bg-yellow-400 text-gray-900 px-6 py-3 rounded-lg font-bold hover:bg-yellow-300 transition">Find Products</button>
94
+ </div>
95
+ </div>
96
+ <div class="md:w-1/2 flex justify-center">
97
+ <img src="https://images.unsplash.com/photo-1592921870789-0459590ec1e1?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80" alt="Premium Tires" class="rounded-lg shadow-2xl max-w-full h-auto">
98
+ </div>
99
+ </div>
100
+ </section>
101
+
102
+ <!-- Database Filter Section -->
103
+ <section class="bg-white py-8">
104
+ <div class="container mx-auto px-4">
105
+ <div class="bg-gray-100 rounded-xl p-6 shadow-sm">
106
+ <h2 class="text-2xl font-bold mb-6">Filter Products</h2>
107
+ <div class="grid grid-cols-1 md:grid-cols-4 gap-6">
108
+ <div>
109
+ <label class="block text-sm font-medium text-gray-700 mb-1">Category</label>
110
+ <select class="w-full bg-white border border-gray-300 rounded-md px-3 py-2 focus:outline-none focus:ring-2 focus:ring-yellow-400">
111
+ <option>All Categories</option>
112
+ <option>Tires</option>
113
+ <option>Rims</option>
114
+ <option>Tire & Rim Packages</option>
115
+ </select>
116
+ </div>
117
+ <div>
118
+ <label class="block text-sm font-medium text-gray-700 mb-1">Brand</label>
119
+ <select class="w-full bg-white border border-gray-300 rounded-md px-3 py-2 focus:outline-none focus:ring-2 focus:ring-yellow-400">
120
+ <option>All Brands</option>
121
+ <option>Michelin</option>
122
+ <option>Pirelli</option>
123
+ <option>Bridgestone</option>
124
+ <option>Goodyear</option>
125
+ <option>BBS</option>
126
+ <option>Enkei</option>
127
+ </select>
128
+ </div>
129
+ <div>
130
+ <label class="block text-sm font-medium text-gray-700 mb-1">Price Range</label>
131
+ <select class="w-full bg-white border border-gray-300 rounded-md px-3 py-2 focus:outline-none focus:ring-2 focus:ring-yellow-400">
132
+ <option>All Prices</option>
133
+ <option>Under $100</option>
134
+ <option>$100 - $200</option>
135
+ <option>$200 - $500</option>
136
+ <option>Over $500</option>
137
+ </select>
138
+ </div>
139
+ <div>
140
+ <label class="block text-sm font-medium text-gray-700 mb-1">Sort By</label>
141
+ <select class="w-full bg-white border border-gray-300 rounded-md px-3 py-2 focus:outline-none focus:ring-2 focus:ring-yellow-400">
142
+ <option>Featured</option>
143
+ <option>Price: Low to High</option>
144
+ <option>Price: High to Low</option>
145
+ <option>Customer Ratings</option>
146
+ </select>
147
+ </div>
148
+ </div>
149
+ <div class="mt-6">
150
+ <button class="bg-gray-900 text-white px-6 py-2 rounded-md font-medium hover:bg-gray-800 transition">Apply Filters</button>
151
+ <button class="ml-4 text-gray-700 hover:text-gray-900">Reset</button>
152
+ </div>
153
+ </div>
154
+ </div>
155
+ </section>
156
+
157
+ <!-- Products Grid (Simulating Database Results) -->
158
+ <section class="py-12 bg-gray-50">
159
+ <div class="container mx-auto px-4">
160
+ <h2 class="text-3xl font-bold mb-8">Featured Products</h2>
161
+
162
+ <div class="grid grid-cols-1 sm:grid-cols-2 lg:grid-cols-3 xl:grid-cols-4 gap-8">
163
+ <!-- Product 1 -->
164
+ <div class="product-card bg-white rounded-lg overflow-hidden shadow-md transition duration-300">
165
+ <div class="relative">
166
+ <img src="https://images.unsplash.com/photo-1602817538382-562a5b1b041b?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1374&q=80" alt="Michelin Pilot Sport 4S" class="w-full h-48 object-cover">
167
+ <span class="absolute top-2 right-2 bg-yellow-400 text-gray-900 text-xs font-bold px-2 py-1 rounded">BEST SELLER</span>
168
+ </div>
169
+ <div class="p-4">
170
+ <div class="flex justify-between items-start">
171
+ <div>
172
+ <h3 class="font-bold text-lg">Michelin Pilot Sport 4S</h3>
173
+ <p class="text-gray-600 text-sm">Summer Performance Tire</p>
174
+ </div>
175
+ <span class="text-yellow-400"><i class="fas fa-star"></i> 4.8</span>
176
+ </div>
177
+ <div class="mt-4">
178
+ <p class="text-gray-700 text-sm mb-2">Size: 245/35R19</p>
179
+ <p class="text-gray-700 text-sm">Load Index: 93Y</p>
180
+ </div>
181
+ <div class="mt-4 flex justify-between items-center">
182
+ <span class="font-bold text-lg">$289.99</span>
183
+ <button class="add-to-cart bg-gray-900 text-white px-3 py-1 rounded text-sm hover:bg-gray-800 transition" data-id="1" data-name="Michelin Pilot Sport 4S" data-price="289.99">
184
+ <i class="fas fa-cart-plus mr-1"></i> Add
185
+ </button>
186
+ </div>
187
+ </div>
188
+ </div>
189
+
190
+ <!-- Product 2 -->
191
+ <div class="product-card bg-white rounded-lg overflow-hidden shadow-md transition duration-300">
192
+ <div class="relative">
193
+ <img src="https://images.unsplash.com/photo-1601362840469-51e4d8d58785?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80" alt="BBS CH-R Wheels" class="w-full h-48 object-cover">
194
+ </div>
195
+ <div class="p-4">
196
+ <div class="flex justify-between items-start">
197
+ <div>
198
+ <h3 class="font-bold text-lg">BBS CH-R Wheels</h3>
199
+ <p class="text-gray-600 text-sm">19" Alloy Rims</p>
200
+ </div>
201
+ <span class="text-yellow-400"><i class="fas fa-star"></i> 4.7</span>
202
+ </div>
203
+ <div class="mt-4">
204
+ <p class="text-gray-700 text-sm mb-2">Size: 19x8.5</p>
205
+ <p class="text-gray-700 text-sm">Bolt Pattern: 5x112</p>
206
+ </div>
207
+ <div class="mt-4 flex justify-between items-center">
208
+ <span class="font-bold text-lg">$399.00</span>
209
+ <button class="add-to-cart bg-gray-900 text-white px-3 py-1 rounded text-sm hover:bg-gray-800 transition" data-id="2" data-name="BBS CH-R Wheels" data-price="399.00">
210
+ <i class="fas fa-cart-plus mr-1"></i> Add
211
+ </button>
212
+ </div>
213
+ </div>
214
+ </div>
215
+
216
+ <!-- Product 3 -->
217
+ <div class="product-card bg-white rounded-lg overflow-hidden shadow-md transition duration-300">
218
+ <div class="relative">
219
+ <img src="https://images.unsplash.com/photo-1618843479313-40f4afd4ec38?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80" alt="Pirelli Winter Sottozero" class="w-full h-48 object-cover">
220
+ <span class="absolute top-2 right-2 bg-blue-500 text-white text-xs font-bold px-2 py-1 rounded">WINTER</span>
221
+ </div>
222
+ <div class="p-4">
223
+ <div class="flex justify-between items-start">
224
+ <div>
225
+ <h3 class="font-bold text-lg">Pirelli Winter Sottozero</h3>
226
+ <p class="text-gray-600 text-sm">Winter Performance Tire</p>
227
+ </div>
228
+ <span class="text-yellow-400"><i class="fas fa-star"></i> 4.6</span>
229
+ </div>
230
+ <div class="mt-4">
231
+ <p class="text-gray-700 text-sm mb-2">Size: 225/45R18</p>
232
+ <p class="text-gray-700 text-sm">Load Index: 91H</p>
233
+ </div>
234
+ <div class="mt-4 flex justify-between items-center">
235
+ <span class="font-bold text-lg">$219.99</span>
236
+ <button class="add-to-cart bg-gray-900 text-white px-3 py-1 rounded text-sm hover:bg-gray-800 transition" data-id="3" data-name="Pirelli Winter Sottozero" data-price="219.99">
237
+ <i class="fas fa-cart-plus mr-1"></i> Add
238
+ </button>
239
+ </div>
240
+ </div>
241
+ </div>
242
+
243
+ <!-- Product 4 -->
244
+ <div class="product-card bg-white rounded-lg overflow-hidden shadow-md transition duration-300">
245
+ <div class="relative">
246
+ <img src="https://images.unsplash.com/photo-1558981806-ec527fa84c39?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80" alt="Enkei Tuning Wheels" class="w-full h-48 object-cover">
247
+ </div>
248
+ <div class="p-4">
249
+ <div class="flex justify-between items-start">
250
+ <div>
251
+ <h3 class="font-bold text-lg">Enkei Tuning Wheels</h3>
252
+ <p class="text-gray-600 text-sm">18" Alloy Rims</p>
253
+ </div>
254
+ <span class="text-yellow-400"><i class="fas fa-star"></i> 4.5</span>
255
+ </div>
256
+ <div class="mt-4">
257
+ <p class="text-gray-700 text-sm mb-2">Size: 18x8</p>
258
+ <p class="text-gray-700 text-sm">Bolt Pattern: 5x114.3</p>
259
+ </div>
260
+ <div class="mt-4 flex justify-between items-center">
261
+ <span class="font-bold text-lg">$279.00</span>
262
+ <button class="add-to-cart bg-gray-900 text-white px-3 py-1 rounded text-sm hover:bg-gray-800 transition" data-id="4" data-name="Enkei Tuning Wheels" data-price="279.00">
263
+ <i class="fas fa-cart-plus mr-1"></i> Add
264
+ </button>
265
+ </div>
266
+ </div>
267
+ </div>
268
+
269
+ <!-- Product 5 -->
270
+ <div class="product-card bg-white rounded-lg overflow-hidden shadow-md transition duration-300">
271
+ <div class="relative">
272
+ <img src="https://images.unsplash.com/photo-1601362840469-51e4d8d58785?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80" alt="Bridgestone Blizzak WS90" class="w-full h-48 object-cover">
273
+ <span class="absolute top-2 right-2 bg-blue-500 text-white text-xs font-bold px-2 py-1 rounded">WINTER</span>
274
+ </div>
275
+ <div class="p-4">
276
+ <div class="flex justify-between items-start">
277
+ <div>
278
+ <h3 class="font-bold text-lg">Bridgestone Blizzak WS90</h3>
279
+ <p class="text-gray-600 text-sm">Studless Ice & Snow</p>
280
+ </div>
281
+ <span class="text-yellow-400"><i class="fas fa-star"></i> 4.9</span>
282
+ </div>
283
+ <div class="mt-4">
284
+ <p class="text-gray-700 text-sm mb-2">Size: 235/55R19</p>
285
+ <p class="text-gray-700 text-sm">Load Index: 101T</p>
286
+ </div>
287
+ <div class="mt-4 flex justify-between items-center">
288
+ <span class="font-bold text-lg">$249.99</span>
289
+ <button class="add-to-cart bg-gray-900 text-white px-3 py-1 rounded text-sm hover:bg-gray-800 transition" data-id="5" data-name="Bridgestone Blizzak WS90" data-price="249.99">
290
+ <i class="fas fa-cart-plus mr-1"></i> Add
291
+ </button>
292
+ </div>
293
+ </div>
294
+ </div>
295
+
296
+ <!-- Product 6 -->
297
+ <div class="product-card bg-white rounded-lg overflow-hidden shadow-md transition duration-300">
298
+ <div class="relative">
299
+ <img src="https://images.unsplash.com/photo-1558981806-ec527fa84c39?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80" alt="Goodyear Eagle F1" class="w-full h-48 object-cover">
300
+ </div>
301
+ <div class="p-4">
302
+ <div class="flex justify-between items-start">
303
+ <div>
304
+ <h3 class="font-bold text-lg">Goodyear Eagle F1</h3>
305
+ <p class="text-gray-600 text-sm">Asymmetric Summer Tire</p>
306
+ </div>
307
+ <span class="text-yellow-400"><i class="fas fa-star"></i> 4.5</span>
308
+ </div>
309
+ <div class="mt-4">
310
+ <p class="text-gray-700 text-sm mb-2">Size: 255/40R18</p>
311
+ <p class="text-gray-700 text-sm">Load Index: 95Y</p>
312
+ </div>
313
+ <div class="mt-4 flex justify-between items-center">
314
+ <span class="font-bold text-lg">$199.99</span>
315
+ <button class="add-to-cart bg-gray-900 text-white px-3 py-1 rounded text-sm hover:bg-gray-800 transition" data-id="6" data-name="Goodyear Eagle F1" data-price="199.99">
316
+ <i class="fas fa-cart-plus mr-1"></i> Add
317
+ </button>
318
+ </div>
319
+ </div>
320
+ </div>
321
+ </div>
322
+ </div>
323
+ </section>
324
+
325
+ <!-- Newsletter Section -->
326
+ <section class="py-16 bg-gray-900 text-white">
327
+ <div class="container mx-auto px-4 text-center">
328
+ <h2 class="text-3xl font-bold mb-4">Stay Updated</h2>
329
+ <p class="text-xl mb-8 max-w-2xl mx-auto">Subscribe to our newsletter for exclusive deals, new arrivals, and tire maintenance tips.</p>
330
+ <div class="flex flex-col sm:flex-row justify-center max-w-md mx-auto">
331
+ <input type="email" placeholder="Your email address" class="px-4 py-3 rounded-l-lg text-gray-900 w-full sm:w-auto sm:flex-grow focus:outline-none">
332
+ <button class="bg-yellow-400 text-gray-900 px-6 py-3 rounded-r-lg font-bold hover:bg-yellow-300 transition mt-2 sm:mt-0 sm:ml-0">
333
+ Subscribe
334
+ </button>
335
+ </div>
336
+ </div>
337
+ </section>
338
+
339
+ <!-- Services Section -->
340
+ <section class="py-16 bg-white">
341
+ <div class="container mx-auto px-4">
342
+ <h2 class="text-3xl font-bold mb-12 text-center">Our Services</h2>
343
+ <div class="grid grid-cols-1 md:grid-cols-3 gap-8">
344
+ <div class="text-center p-6 rounded-lg bg-gray-50 hover:shadow-md transition">
345
+ <div class="text-4xl text-yellow-400 mb-4">
346
+ <i class="fas fa-tools"></i>
347
+ </div>
348
+ <h3 class="text-xl font-bold mb-2">Tire Installation</h3>
349
+ <p class="text-gray-600">Professional mounting and balancing services by certified technicians.</p>
350
+ </div>
351
+ <div class="text-center p-6 rounded-lg bg-gray-50 hover:shadow-md transition">
352
+ <div class="text-4xl text-yellow-400 mb-4">
353
+ <i class="fas fa-sync-alt"></i>
354
+ </div>
355
+ <h3 class="text-xl font-bold mb-2">Tire Rotation</h3>
356
+ <p class="text-gray-600">Extend your tire life with our regular rotation services.</p>
357
+ </div>
358
+ <div class="text-center p-6 rounded-lg bg-gray-50 hover:shadow-md transition">
359
+ <div class="text-4xl text-yellow-400 mb-4">
360
+ <i class="fas fa-car-crash"></i>
361
+ </div>
362
+ <h3 class="text-xl font-bold mb-2">Emergency Repair</h3>
363
+ <p class="text-gray-600">24/7 roadside assistance for flat tires and other emergencies.</p>
364
+ </div>
365
+ </div>
366
+ </div>
367
+ </section>
368
+
369
+ <!-- Footer -->
370
+ <footer class="bg-gray-800 text-white py-12">
371
+ <div class="container mx-auto px-4">
372
+ <div class="grid grid-cols-1 md:grid-cols-4 gap-8">
373
+ <div>
374
+ <h3 class="text-xl font-bold mb-4">WheelDeal</h3>
375
+ <p class="text-gray-400">Premium tires and rims for all vehicles. Quality products with expert installation services.</p>
376
+ </div>
377
+ <div>
378
+ <h3 class="text-lg font-bold mb-4">Quick Links</h3>
379
+ <ul class="space-y-2">
380
+ <li><a href="#" class="text-gray-400 hover:text-white transition">Home</a></li>
381
+ <li><a href="#" class="text-gray-400 hover:text-white transition">Shop</a></li>
382
+ <li><a href="#" class="text-gray-400 hover:text-white transition">Services</a></li>
383
+ <li><a href="#" class="text-gray-400 hover:text-white transition">About Us</a></li>
384
+ </ul>
385
+ </div>
386
+ <div>
387
+ <h3 class="text-lg font-bold mb-4">Contact</h3>
388
+ <ul class="space-y-2 text-gray-400">
389
+ <li><i class="fas fa-map-marker-alt mr-2"></i> 123 Tire Street, Auto City</li>
390
+ <li><i class="fas fa-phone mr-2"></i> (555) 123-4567</li>
391
+ <li><i class="fas fa-envelope mr-2"></i> info@wheeldeal.com</li>
392
+ </ul>
393
+ </div>
394
+ <div>
395
+ <h3 class="text-lg font-bold mb-4">Follow Us</h3>
396
+ <div class="flex space-x-4">
397
+ <a href="#" class="text-gray-400 hover:text-white transition text-xl"><i class="fab fa-facebook"></i></a>
398
+ <a href="#" class="text-gray-400 hover:text-white transition text-xl"><i class="fab fa-twitter"></i></a>
399
+ <a href="#" class="text-gray-400 hover:text-white transition text-xl"><i class="fab fa-instagram"></i></a>
400
+ <a href="#" class="text-gray-400 hover:text-white transition text-xl"><i class="fab fa-youtube"></i></a>
401
+ </div>
402
+ </div>
403
+ </div>
404
+ <div class="border-t border-gray-700 mt-8 pt-8 text-center text-gray-400">
405
+ <p>&copy; 2023 WheelDeal. All rights reserved.</p>
406
+ </div>
407
+ </div>
408
+ </footer>
409
+
410
+ <!-- Cart Notification (hidden by default) -->
411
+ <div class="cart-notification fixed bottom-4 right-4 bg-gray-900 text-white px-6 py-3 rounded-lg shadow-lg hidden">
412
+ <div class="flex items-center">
413
+ <i class="fas fa-check-circle text-green-400 mr-2"></i>
414
+ <span>Item added to cart!</span>
415
+ </div>
416
+ </div>
417
+
418
+ <!-- Mobile Menu (hidden by default) -->
419
+ <div class="mobile-menu hidden fixed inset-0 bg-gray-900 bg-opacity-90 z-50">
420
+ <div class="container mx-auto px-4 py-8">
421
+ <div class="flex justify-between items-center mb-8">
422
+ <a href="#" class="flex items-center">
423
+ <i class="fas fa-tire text-yellow-400 text-2xl mr-2"></i>
424
+ <span class="font-bold text-xl">WheelDeal</span>
425
+ </a>
426
+ <button class="close-menu text-white text-2xl">
427
+ <i class="fas fa-times"></i>
428
+ </button>
429
+ </div>
430
+ <nav class="space-y-6 text-xl">
431
+ <a href="#" class="block hover:text-yellow-400 transition">Tires</a>
432
+ <a href="#" class="block hover:text-yellow-400 transition">Rims</a>
433
+ <a href="#" class="block hover:text-yellow-400 transition">Packages</a>
434
+ <a href="#" class="block hover:text-yellow-400 transition">Services</a>
435
+ <a href="#" class="block hover:text-yellow-400 transition">My Garage</a>
436
+ </nav>
437
+ </div>
438
+ </div>
439
+
440
+ <script>
441
+ // Simple cart functionality
442
+ document.querySelectorAll('.add-to-cart').forEach(button => {
443
+ button.addEventListener('click', function() {
444
+ const notification = document.querySelector('.cart-notification');
445
+ const cartCount = document.querySelector('.cart-count');
446
+
447
+ // Update cart count
448
+ let count = parseInt(cartCount.textContent);
449
+ cartCount.textContent = count + 1;
450
+
451
+ // Show notification
452
+ notification.classList.remove('hidden');
453
+ setTimeout(() => {
454
+ notification.classList.add('hidden');
455
+ }, 3000);
456
+ });
457
+ });
458
+
459
+ // Mobile menu toggle
460
+ const menuButton = document.querySelector('button.md\\:hidden');
461
+ const mobileMenu = document.querySelector('.mobile-menu');
462
+ const closeMenu = document.querySelector('.close-menu');
463
+
464
+ menuButton.addEventListener('click', () => {
465
+ mobileMenu.classList.remove('hidden');
466
+ });
467
+
468
+ closeMenu.addEventListener('click', () => {
469
+ mobileMenu.classList.add('hidden');
470
+ });
471
+ </script>
472
+ <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=Dagfinn1962/wheeldealas" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
473
+ </html>