gamemaster7493 commited on
Commit
fdb14ed
·
verified ·
1 Parent(s): 1c362cd

Add 3 files

Browse files
Files changed (3) hide show
  1. README.md +6 -4
  2. index.html +431 -19
  3. prompts.txt +0 -0
README.md CHANGED
@@ -1,10 +1,12 @@
1
  ---
2
- title: Tech Heaven
3
- emoji: 🏢
4
  colorFrom: red
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: tech-heaven
3
+ emoji: 🐳
4
  colorFrom: red
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,431 @@
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>TechZone - Premium Tech at Best Prices</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
+ .gradient-bg {
11
+ background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
12
+ }
13
+ .dark .gradient-bg {
14
+ background: linear-gradient(135deg, #4b5563 0%, #1f2937 100%);
15
+ }
16
+ .product-card:hover {
17
+ transform: translateY(-5px);
18
+ box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
19
+ }
20
+ .dark .product-card:hover {
21
+ box-shadow: 0 20px 25px -5px rgba(255, 255, 255, 0.1), 0 10px 10px -5px rgba(255, 255, 255, 0.04);
22
+ }
23
+ .deal-badge {
24
+ position: absolute;
25
+ top: -10px;
26
+ right: -10px;
27
+ background-color: #ef4444;
28
+ color: white;
29
+ border-radius: 50%;
30
+ width: 50px;
31
+ height: 50px;
32
+ display: flex;
33
+ align-items: center;
34
+ justify-content: center;
35
+ font-weight: bold;
36
+ transform: rotate(15deg);
37
+ }
38
+ .nav-link:hover::after {
39
+ content: '';
40
+ display: block;
41
+ width: 100%;
42
+ height: 2px;
43
+ background: white;
44
+ margin-top: 2px;
45
+ }
46
+ .dropdown:hover .dropdown-menu {
47
+ display: block;
48
+ }
49
+ .monster-mode {
50
+ transition: all 0.3s ease;
51
+ }
52
+ .monster-mode.active {
53
+ transform: scale(1.05);
54
+ background-color: #1e40af;
55
+ box-shadow: 0 0 15px rgba(30, 64, 175, 0.7);
56
+ }
57
+ </style>
58
+ </head>
59
+ <body class="font-sans bg-gray-50 dark:bg-gray-900 dark:text-gray-100 transition-colors duration-300">
60
+ <!-- Header/Navigation -->
61
+ <header class="gradient-bg text-white sticky top-0 z-50 shadow-lg dark:shadow-gray-800">
62
+ <div class="container mx-auto px-4 py-3 flex justify-between items-center">
63
+ <div class="flex items-center space-x-2">
64
+ <i class="fas fa-laptop-code text-2xl"></i>
65
+ <h1 class="text-2xl font-bold">TechZone</h1>
66
+ </div>
67
+
68
+ <nav class="hidden md:flex space-x-8">
69
+ <a href="#home" class="nav-link font-medium">Home</a>
70
+ <div class="dropdown relative">
71
+ <button class="nav-link font-medium flex items-center">
72
+ Products <i class="fas fa-chevron-down ml-1 text-sm"></i>
73
+ </button>
74
+ <div class="dropdown-menu absolute hidden bg-white text-gray-800 rounded-md shadow-xl mt-2 py-2 w-48 dark:bg-gray-800 dark:text-gray-200">
75
+ <a href="#samsung-phones" class="block px-4 py-2 hover:bg-gray-100 dark:hover:bg-gray-700">Samsung Phones</a>
76
+ <a href="#samsung-tabs" class="block px-4 py-2 hover:bg-gray-100 dark:hover:bg-gray-700">Samsung Tablets</a>
77
+ <a href="#iphones" class="block px-4 py-2 hover:bg-gray-100 dark:hover:bg-gray-700">iPhones</a>
78
+ </div>
79
+ </div>
80
+ <a href="#deals" class="nav-link font-medium">Deals</a>
81
+ <a href="#about" class="nav-link font-medium">About</a>
82
+ <a href="#contact" class="nav-link font-medium">Contact</a>
83
+ </nav>
84
+
85
+ <div class="flex items-center space-x-4">
86
+ <button id="monsterModeToggle" class="monster-mode p-2 rounded-full hover:bg-white hover:bg-opacity-20 dark:hover:bg-gray-700">
87
+ <i class="fas fa-bolt"></i>
88
+ </button>
89
+ <button class="p-2 rounded-full hover:bg-white hover:bg-opacity-20 dark:hover:bg-gray-700">
90
+ <i class="fas fa-search"></i>
91
+ </button>
92
+ <button class="p-2 rounded-full hover:bg-white hover:bg-opacity-20 dark:hover:bg-gray-700">
93
+ <i class="fas fa-shopping-cart"></i>
94
+ </button>
95
+ <button class="md:hidden p-2 rounded-full hover:bg-white hover:bg-opacity-20 dark:hover:bg-gray-700">
96
+ <i class="fas fa-bars"></i>
97
+ </button>
98
+ </div>
99
+ </div>
100
+ </header>
101
+
102
+ <!-- Hero Section -->
103
+ <section id="home" class="gradient-bg text-white py-20">
104
+ <div class="container mx-auto px-4 flex flex-col md:flex-row items-center">
105
+ <div class="md:w-1/2 mb-10 md:mb-0">
106
+ <h2 class="text-4xl md:text-5xl font-bold mb-4">Premium Tech at Unbeatable Prices</h2>
107
+ <p class="text-xl mb-8">Discover the latest Samsung smartphones, tablets, and Apple iPhones with exclusive deals and discounts.</p>
108
+ <div class="flex space-x-4">
109
+ <button class="bg-white text-indigo-700 px-6 py-3 rounded-full font-bold hover:bg-gray-100 transition duration-300 dark:text-indigo-900">
110
+ Shop Now
111
+ </button>
112
+ <button class="border-2 border-white px-6 py-3 rounded-full font-bold hover:bg-white hover:bg-opacity-20 transition duration-300">
113
+ Learn More
114
+ </button>
115
+ </div>
116
+ </div>
117
+ <div class="md:w-1/2 flex justify-center">
118
+ <img src="https://images.unsplash.com/photo-1512941937669-90fbfc45f7e1?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80"
119
+ alt="Tech devices" class="rounded-lg shadow-2xl max-w-full h-auto">
120
+ </div>
121
+ </div>
122
+ </section>
123
+
124
+ <!-- Features Section -->
125
+ <section class="py-16 bg-white dark:bg-gray-800">
126
+ <div class="container mx-auto px-4">
127
+ <div class="text-center mb-12">
128
+ <h2 class="text-3xl font-bold text-gray-800 dark:text-white mb-4">Why Choose TechZone?</h2>
129
+ <p class="text-gray-600 dark:text-gray-300 max-w-2xl mx-auto">We provide the best tech products with exceptional customer service and competitive prices.</p>
130
+ </div>
131
+
132
+ <div class="grid grid-cols-1 md:grid-cols-3 gap-8">
133
+ <div class="bg-gray-50 dark:bg-gray-700 p-6 rounded-xl text-center">
134
+ <div class="bg-indigo-100 dark:bg-indigo-900 w-16 h-16 rounded-full flex items-center justify-center mx-auto mb-4">
135
+ <i class="fas fa-shield-alt text-indigo-600 dark:text-indigo-300 text-2xl"></i>
136
+ </div>
137
+ <h3 class="text-xl font-semibold mb-2 dark:text-white">1-Year Warranty</h3>
138
+ <p class="text-gray-600 dark:text-gray-300">All our products come with a full 1-year manufacturer warranty.</p>
139
+ </div>
140
+
141
+ <div class="bg-gray-50 dark:bg-gray-700 p-6 rounded-xl text-center">
142
+ <div class="bg-indigo-100 dark:bg-indigo-900 w-16 h-16 rounded-full flex items-center justify-center mx-auto mb-4">
143
+ <i class="fas fa-truck text-indigo-600 dark:text-indigo-300 text-2xl"></i>
144
+ </div>
145
+ <h3 class="text-xl font-semibold mb-2 dark:text-white">Free Shipping</h3>
146
+ <p class="text-gray-600 dark:text-gray-300">Free shipping on all orders over $50. Fast delivery guaranteed.</p>
147
+ </div>
148
+
149
+ <div class="bg-gray-50 dark:bg-gray-700 p-6 rounded-xl text-center">
150
+ <div class="bg-indigo-100 dark:bg-indigo-900 w-16 h-16 rounded-full flex items-center justify-center mx-auto mb-4">
151
+ <i class="fas fa-headset text-indigo-600 dark:text-indigo-300 text-2xl"></i>
152
+ </div>
153
+ <h3 class="text-xl font-semibold mb-2 dark:text-white">24/7 Support</h3>
154
+ <p class="text-gray-600 dark:text-gray-300">Our customer support team is available round the clock to assist you.</p>
155
+ </div>
156
+ </div>
157
+ </div>
158
+ </section>
159
+
160
+ <!-- Samsung Phones Section -->
161
+ <section id="samsung-phones" class="py-16 bg-gray-50 dark:bg-gray-900">
162
+ <div class="container mx-auto px-4">
163
+ <div class="flex justify-between items-center mb-8">
164
+ <h2 class="text-3xl font-bold text-gray-800 dark:text-white">Samsung Phones</h2>
165
+ <a href="#" class="text-indigo-600 dark:text-indigo-400 font-medium hover:underline">View All</a>
166
+ </div>
167
+
168
+ <div class="grid grid-cols-1 sm:grid-cols-2 lg:grid-cols-4 gap-6">
169
+ <!-- Product 1 -->
170
+ <div class="product-card bg-white dark:bg-gray-800 rounded-xl overflow-hidden shadow-md transition duration-300 relative">
171
+ <div class="deal-badge">-15%</div>
172
+ <img src="https://images.unsplash.com/photo-1610792516307-ea5acd9c3b00?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80"
173
+ alt="Samsung Galaxy S23 Ultra" class="w-full h-48 object-cover">
174
+ <div class="p-4">
175
+ <h3 class="font-bold text-lg mb-1 dark:text-white">Samsung Galaxy S23 Ultra</h3>
176
+ <div class="flex items-center mb-2">
177
+ <div class="flex text-yellow-400">
178
+ <i class="fas fa-star"></i>
179
+ <i class="fas fa-star"></i>
180
+ <i class="fas fa-star"></i>
181
+ <i class="fas fa-star"></i>
182
+ <i class="fas fa-star-half-alt"></i>
183
+ </div>
184
+ <span class="text-gray-600 dark:text-gray-300 text-sm ml-2">(128 reviews)</span>
185
+ </div>
186
+ <div class="flex items-center">
187
+ <span class="text-gray-500 dark:text-gray-400 line-through mr-2">$1,199.99</span>
188
+ <span class="text-xl font-bold text-indigo-600 dark:text-indigo-400">$1,019.99</span>
189
+ </div>
190
+ <button class="mt-4 w-full bg-indigo-600 text-white py-2 rounded-lg hover:bg-indigo-700 transition duration-300 dark:bg-indigo-700 dark:hover:bg-indigo-600">
191
+ Add to Cart
192
+ </button>
193
+ </div>
194
+ </div>
195
+
196
+ <!-- Product 2 -->
197
+ <div class="product-card bg-white dark:bg-gray-800 rounded-xl overflow-hidden shadow-md transition duration-300">
198
+ <img src="https://images.unsplash.com/photo-1677442135136-760c6d6affcc?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1374&q=80"
199
+ alt="Samsung Galaxy Z Fold 4" class="w-full h-48 object-cover">
200
+ <div class="p-4">
201
+ <h3 class="font-bold text-lg mb-1 dark:text-white">Samsung Galaxy Z Fold 4</h3>
202
+ <div class="flex items-center mb-2">
203
+ <div class="flex text-yellow-400">
204
+ <i class="fas fa-star"></i>
205
+ <i class="fas fa-star"></i>
206
+ <i class="fas fa-star"></i>
207
+ <i class="fas fa-star"></i>
208
+ <i class="far fa-star"></i>
209
+ </div>
210
+ <span class="text-gray-600 dark:text-gray-300 text-sm ml-2">(94 reviews)</span>
211
+ </div>
212
+ <div class="flex items-center">
213
+ <span class="text-xl font-bold text-indigo-600 dark:text-indigo-400">$1,599.99</span>
214
+ </div>
215
+ <button class="mt-4 w-full bg-indigo-600 text-white py-2 rounded-lg hover:bg-indigo-700 transition duration-300 dark:bg-indigo-700 dark:hover:bg-indigo-600">
216
+ Add to Cart
217
+ </button>
218
+ </div>
219
+ </div>
220
+
221
+ <!-- Product 3 -->
222
+ <div class="product-card bg-white dark:bg-gray-800 rounded-xl overflow-hidden shadow-md transition duration-300 relative">
223
+ <div class="deal-badge">-10%</div>
224
+ <img src="https://images.unsplash.com/photo-1677442136019-03f8b3da9a8e?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1374&q=80"
225
+ alt="Samsung Galaxy S22+" class="w-full h-48 object-cover">
226
+ <div class="p-4">
227
+ <h3 class="font-bold text-lg mb-1 dark:text-white">Samsung Galaxy S22+</h3>
228
+ <div class="flex items-center mb-2">
229
+ <div class="flex text-yellow-400">
230
+ <i class="fas fa-star"></i>
231
+ <i class="fas fa-star"></i>
232
+ <i class="fas fa-star"></i>
233
+ <i class="fas fa-star"></i>
234
+ <i class="fas fa-star"></i>
235
+ </div>
236
+ <span class="text-gray-600 dark:text-gray-300 text-sm ml-2">(215 reviews)</span>
237
+ </div>
238
+ <div class="flex items-center">
239
+ <span class="text-gray-500 dark:text-gray-400 line-through mr-2">$999.99</span>
240
+ <span class="text-xl font-bold text-indigo-600 dark:text-indigo-400">$899.99</span>
241
+ </div>
242
+ <button class="mt-4 w-full bg-indigo-600 text-white py-2 rounded-lg hover:bg-indigo-700 transition duration-300 dark:bg-indigo-700 dark:hover:bg-indigo-600">
243
+ Add to Cart
244
+ </button>
245
+ </div>
246
+ </div>
247
+
248
+ <!-- Product 4 -->
249
+ <div class="product-card bg-white dark:bg-gray-800 rounded-xl overflow-hidden shadow-md transition duration-300">
250
+ <img src="https://images.unsplash.com/photo-1677442135136-760c6d6affcc?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1374&q=80"
251
+ alt="Samsung Galaxy A54" class="w-full h-48 object-cover">
252
+ <div class="p-4">
253
+ <h3 class="font-bold text-lg mb-1 dark:text-white">Samsung Galaxy A54</h3>
254
+ <div class="flex items-center mb-2">
255
+ <div class="flex text-yellow-400">
256
+ <i class="fas fa-star"></i>
257
+ <i class="fas fa-star"></i>
258
+ <i class="fas fa-star"></i>
259
+ <i class="fas fa-star"></i>
260
+ <i class="fas fa-star-half-alt"></i>
261
+ </div>
262
+ <span class="text-gray-600 dark:text-gray-300 text-sm ml-2">(176 reviews)</span>
263
+ </div>
264
+ <div class="flex items-center">
265
+ <span class="text-xl font-bold text-indigo-600 dark:text-indigo-400">$449.99</span>
266
+ </div>
267
+ <button class="mt-4 w-full bg-indigo-600 text-white py-2 rounded-lg hover:bg-indigo-700 transition duration-300 dark:bg-indigo-700 dark:hover:bg-indigo-600">
268
+ Add to Cart
269
+ </button>
270
+ </div>
271
+ </div>
272
+ </div>
273
+ </div>
274
+ </section>
275
+
276
+ <!-- Samsung Tablets Section -->
277
+ <section id="samsung-tabs" class="py-16 bg-white dark:bg-gray-800">
278
+ <div class="container mx-auto px-4">
279
+ <div class="flex justify-between items-center mb-8">
280
+ <h2 class="text-3xl font-bold text-gray-800 dark:text-white">Samsung Tablets</h2>
281
+ <a href="#" class="text-indigo-600 dark:text-indigo-400 font-medium hover:underline">View All</a>
282
+ </div>
283
+
284
+ <div class="grid grid-cols-1 sm:grid-cols-2 lg:grid-cols-4 gap-6">
285
+ <!-- Product 1 -->
286
+ <div class="product-card bg-white dark:bg-gray-800 rounded-xl overflow-hidden shadow-md transition duration-300 relative">
287
+ <div class="deal-badge">-20%</div>
288
+ <img src="https://images.unsplash.com/photo-1623531499762-0e1f5e9e0a9d?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80"
289
+ alt="Samsung Galaxy Tab S8 Ultra" class="w-full h-48 object-cover">
290
+ <div class="p-4">
291
+ <h3 class="font-bold text-lg mb-1 dark:text-white">Galaxy Tab S8 Ultra</h3>
292
+ <div class="flex items-center mb-2">
293
+ <div class="flex text-yellow-400">
294
+ <i class="fas fa-star"></i>
295
+ <i class="fas fa-star"></i>
296
+ <i class="fas fa-star"></i>
297
+ <i class="fas fa-star"></i>
298
+ <i class="fas fa-star"></i>
299
+ </div>
300
+ <span class="text-gray-600 dark:text-gray-300 text-sm ml-2">(87 reviews)</span>
301
+ </div>
302
+ <div class="flex items-center">
303
+ <span class="text-gray-500 dark:text-gray-400 line-through mr-2">$1,099.99</span>
304
+ <span class="text-xl font-bold text-indigo-600 dark:text-indigo-400">$879.99</span>
305
+ </div>
306
+ <button class="mt-4 w-full bg-indigo-600 text-white py-2 rounded-lg hover:bg-indigo-700 transition duration-300 dark:bg-indigo-700 dark:hover:bg-indigo-600">
307
+ Add to Cart
308
+ </button>
309
+ </div>
310
+ </div>
311
+
312
+ <!-- Product 2 -->
313
+ <div class="product-card bg-white dark:bg-gray-800 rounded-xl overflow-hidden shadow-md transition duration-300">
314
+ <img src="https://images.unsplash.com/photo-1623531499762-0e1f5e9e0a9d?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80"
315
+ alt="Samsung Galaxy Tab S8+" class="w-full h-48 object-cover">
316
+ <div class="p-4">
317
+ <h3 class="font-bold text-lg mb-1 dark:text-white">Galaxy Tab S8+</h3>
318
+ <div class="flex items-center mb-2">
319
+ <div class="flex text-yellow-400">
320
+ <i class="fas fa-star"></i>
321
+ <i class="fas fa-star"></i>
322
+ <i class="fas fa-star"></i>
323
+ <i class="fas fa-star"></i>
324
+ <i class="fas fa-star-half-alt"></i>
325
+ </div>
326
+ <span class="text-gray-600 dark:text-gray-300 text-sm ml-2">(63 reviews)</span>
327
+ </div>
328
+ <div class="flex items-center">
329
+ <span class="text-xl font-bold text-indigo-600 dark:text-indigo-400">$899.99</span>
330
+ </div>
331
+ <button class="mt-4 w-full bg-indigo-600 text-white py-2 rounded-lg hover:bg-indigo-700 transition duration-300 dark:bg-indigo-700 dark:hover:bg-indigo-600">
332
+ Add to Cart
333
+ </button>
334
+ </div>
335
+ </div>
336
+
337
+ <!-- Product 3 -->
338
+ <div class="product-card bg-white dark:bg-gray-800 rounded-xl overflow-hidden shadow-md transition duration-300 relative">
339
+ <div class="deal-badge">-25%</div>
340
+ <img src="https://images.unsplash.com/photo-1623531499762-0e1f5e9e0a9d?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80"
341
+ alt="Samsung Galaxy Tab S7 FE" class="w-full h-48 object-cover">
342
+ <div class="p-4">
343
+ <h3 class="font-bold text-lg mb-1 dark:text-white">Galaxy Tab S7 FE</h3>
344
+ <div class="flex items-center mb-2">
345
+ <div class="flex text-yellow-400">
346
+ <i class="fas fa-star"></i>
347
+ <i class="fas fa-star"></i>
348
+ <i class="fas fa-star"></i>
349
+ <i class="fas fa-star"></i>
350
+ <i class="far fa-star"></i>
351
+ </div>
352
+ <span class="text-gray-600 dark:text-gray-300 text-sm ml-2">(142 reviews)</span>
353
+ </div>
354
+ <div class="flex items-center">
355
+ <span class="text-gray-500 dark:text-gray-400 line-through mr-2">$599.99</span>
356
+ <span class="text-xl font-bold text-indigo-600 dark:text-indigo-400">$449.99</span>
357
+ </div>
358
+ <button class="mt-4 w-full bg-indigo-600 text-white py-2 rounded-lg hover:bg-indigo-700 transition duration-300 dark:bg-indigo-700 dark:hover:bg-indigo-600">
359
+ Add to Cart
360
+ </button>
361
+ </div>
362
+ </div>
363
+
364
+ <!-- Product 4 -->
365
+ <div class="product-card bg-white dark:bg-gray-800 rounded-xl overflow-hidden shadow-md transition duration-300">
366
+ <img src="https://images.unsplash.com/photo-1623531499762-0e1f5e9e0a9d?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80"
367
+ alt="Samsung Galaxy Tab A8" class="w-full h-48 object-cover">
368
+ <div class="p-4">
369
+ <h3 class="font-bold text-lg mb-1 dark:text-white">Galaxy Tab A8</h3>
370
+ <div class="flex items-center mb-2">
371
+ <div class="flex text-yellow-400">
372
+ <i class="fas fa-star"></i>
373
+ <i class="fas fa-star"></i>
374
+ <i class="fas fa-star"></i>
375
+ <i class="fas fa-star-half-alt"></i>
376
+ <i class="far fa-star"></i>
377
+ </div>
378
+ <span class="text-gray-600 dark:text-gray-300 text-sm ml-2">(98 reviews)</span>
379
+ </div>
380
+ <div class="flex items-center">
381
+ <span class="text-xl font-bold text-indigo-600 dark:text-indigo-400">$229.99</span>
382
+ </div>
383
+ <button class="mt-4 w-full bg-indigo-600 text-white py-2 rounded-lg hover:bg-indigo-700 transition duration-300 dark:bg-indigo-700 dark:hover:bg-indigo-600">
384
+ Add to Cart
385
+ </button>
386
+ </div>
387
+ </div>
388
+ </div>
389
+ </div>
390
+ </section>
391
+
392
+ <!-- iPhone Deals Section -->
393
+ <section id="iphones" class="py-16 bg-gray-50 dark:bg-gray-900">
394
+ <div class="container mx-auto px-4">
395
+ <div class="flex justify-between items-center mb-8">
396
+ <h2 class="text-3xl font-bold text-gray-800 dark:text-white">iPhone Deals</h2>
397
+ <a href="#" class="text-indigo-600 dark:text-indigo-400 font-medium hover:underline">View All</a>
398
+ </div>
399
+
400
+ <div class="grid grid-cols-1 sm:grid-cols-2 lg:grid-cols-4 gap-6">
401
+ <!-- Product 1 -->
402
+ <div class="product-card bg-white dark:bg-gray-800 rounded-xl overflow-hidden shadow-md transition duration-300 relative">
403
+ <div class="deal-badge">-12%</div>
404
+ <img src="https://images.unsplash.com/photo-1634993764374-1a1c7a3a0d9a?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80"
405
+ alt="iPhone 14 Pro Max" class="w-full h-48 object-cover">
406
+ <div class="p-4">
407
+ <h3 class="font-bold text-lg mb-1 dark:text-white">iPhone 14 Pro Max</h3>
408
+ <div class="flex items-center mb-2">
409
+ <div class="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
+ <span class="text-gray-600 dark:text-gray-300 text-sm ml-2">(243 reviews)</span>
417
+ </div>
418
+ <div class="flex items-center">
419
+ <span class="text-gray-500 dark:text-gray-400 line-through mr-2">$1,099.99</span>
420
+ <span class="text-xl font-bold text-indigo-600 dark:text-indigo-400">$967.99</span>
421
+ </div>
422
+ <button class="mt-4 w-full bg-indigo-600 text-white py-2 rounded-lg hover:bg-indigo-700 transition duration-300 dark:bg-indigo-700 dark:hover:bg-indigo-600">
423
+ Add to Cart
424
+ </button>
425
+ </div>
426
+ </div>
427
+
428
+ <!-- Product 2 -->
429
+ <div class="product-card bg-white dark:bg-gray-800 rounded-xl overflow-hidden shadow-md transition duration-300">
430
+ <img src
431
+ </html>
prompts.txt ADDED
File without changes