dogfacegame commited on
Commit
a49575d
·
verified ·
1 Parent(s): 81bfbde

Add 3 files

Browse files
Files changed (3) hide show
  1. README.md +6 -4
  2. index.html +426 -19
  3. prompts.txt +0 -0
README.md CHANGED
@@ -1,10 +1,12 @@
1
  ---
2
- title: Clothing Store
3
- emoji: 🌖
4
  colorFrom: yellow
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: clothing-store
3
+ emoji: 🐳
4
  colorFrom: yellow
5
+ colorTo: pink
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,426 @@
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>Elevate | Premium Streetwear</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=Montserrat:wght@300;400;600;700;900&display=swap');
11
+
12
+ body {
13
+ font-family: 'Montserrat', sans-serif;
14
+ scroll-behavior: smooth;
15
+ }
16
+
17
+ .gradient-bg {
18
+ background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
19
+ }
20
+
21
+ .product-card:hover .product-overlay {
22
+ opacity: 1;
23
+ transform: translateY(0);
24
+ }
25
+
26
+ .nav-link::after {
27
+ content: '';
28
+ display: block;
29
+ width: 0;
30
+ height: 2px;
31
+ background: #000;
32
+ transition: width .3s;
33
+ }
34
+
35
+ .nav-link:hover::after {
36
+ width: 100%;
37
+ }
38
+
39
+ .parallax {
40
+ background-attachment: fixed;
41
+ background-position: center;
42
+ background-repeat: no-repeat;
43
+ background-size: cover;
44
+ }
45
+ </style>
46
+ </head>
47
+ <body class="bg-white text-gray-900">
48
+ <!-- Navigation -->
49
+ <nav class="fixed w-full bg-white/90 backdrop-blur-sm z-50 shadow-sm">
50
+ <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
51
+ <div class="flex justify-between h-16 items-center">
52
+ <div class="flex-shrink-0 flex items-center">
53
+ <span class="text-2xl font-black tracking-tighter">ELEVATE</span>
54
+ </div>
55
+ <div class="hidden md:block">
56
+ <div class="ml-10 flex items-center space-x-8">
57
+ <a href="#home" class="nav-link px-3 py-2 text-sm font-medium">Home</a>
58
+ <a href="#shop" class="nav-link px-3 py-2 text-sm font-medium">Shop</a>
59
+ <a href="#about" class="nav-link px-3 py-2 text-sm font-medium">About</a>
60
+ <a href="#contact" class="nav-link px-3 py-2 text-sm font-medium">Contact</a>
61
+ <a href="#" class="px-4 py-2 bg-black text-white text-sm font-medium rounded-full hover:bg-gray-800 transition">Lookbook</a>
62
+ </div>
63
+ </div>
64
+ <div class="flex items-center space-x-4">
65
+ <button class="p-2 rounded-full hover:bg-gray-100">
66
+ <i class="fas fa-search text-gray-600"></i>
67
+ </button>
68
+ <button class="p-2 rounded-full hover:bg-gray-100">
69
+ <i class="fas fa-shopping-bag text-gray-600"></i>
70
+ </button>
71
+ <button class="md:hidden p-2 rounded-full hover:bg-gray-100">
72
+ <i class="fas fa-bars text-gray-600"></i>
73
+ </button>
74
+ </div>
75
+ </div>
76
+ </div>
77
+ </nav>
78
+
79
+ <!-- Hero Section -->
80
+ <section id="home" class="gradient-bg pt-24 pb-16 md:pt-32 md:pb-24">
81
+ <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
82
+ <div class="md:flex items-center justify-between">
83
+ <div class="md:w-1/2 mb-12 md:mb-0">
84
+ <h1 class="text-4xl md:text-6xl font-black leading-tight mb-6">Elevate Your <span class="text-indigo-600">Streetwear</span> Game</h1>
85
+ <p class="text-lg text-gray-600 mb-8 max-w-lg">Premium quality, sustainable materials, and designs that stand out from the crowd. Join the movement.</p>
86
+ <div class="flex space-x-4">
87
+ <a href="#shop" class="px-8 py-3 bg-black text-white font-medium rounded-full hover:bg-gray-800 transition">Shop Now</a>
88
+ <a href="#" class="px-8 py-3 border-2 border-black font-medium rounded-full hover:bg-gray-100 transition">Explore</a>
89
+ </div>
90
+ </div>
91
+ <div class="md:w-1/2 relative">
92
+ <div class="relative">
93
+ <img src="https://images.unsplash.com/photo-1591047139829-d91aecb6caea?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1476&q=80" alt="Elevate Streetwear" class="rounded-xl shadow-2xl w-full">
94
+ <div class="absolute -bottom-6 -right-6 bg-white p-4 rounded-xl shadow-lg">
95
+ <p class="text-xs text-gray-500">Featured Collection</p>
96
+ <p class="font-bold">Summer '23</p>
97
+ </div>
98
+ </div>
99
+ </div>
100
+ </div>
101
+ </div>
102
+ </section>
103
+
104
+ <!-- Featured Products -->
105
+ <section id="shop" class="py-16 bg-white">
106
+ <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
107
+ <div class="text-center mb-16">
108
+ <h2 class="text-3xl font-black mb-4">Featured Collections</h2>
109
+ <p class="text-gray-500 max-w-2xl mx-auto">Discover our latest drops and timeless essentials</p>
110
+ </div>
111
+
112
+ <div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-8">
113
+ <!-- Product 1 -->
114
+ <div class="product-card group relative overflow-hidden rounded-xl">
115
+ <div class="aspect-w-1 aspect-h-1 w-full overflow-hidden rounded-xl bg-gray-200">
116
+ <img src="https://images.unsplash.com/photo-1529374255404-311a2a4f1fd9?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80" alt="Urban Hoodie" class="h-full w-full object-cover object-center transition duration-300 group-hover:scale-105">
117
+ </div>
118
+ <div class="product-overlay absolute inset-0 bg-black/70 flex flex-col justify-center items-center opacity-0 transform translate-y-4 transition duration-300">
119
+ <h3 class="text-white text-xl font-bold mb-2">Urban Hoodie</h3>
120
+ <p class="text-gray-300 mb-4">$89.99</p>
121
+ <button class="px-6 py-2 bg-white text-black rounded-full font-medium hover:bg-gray-200 transition">Add to Cart</button>
122
+ </div>
123
+ <div class="mt-4">
124
+ <h3 class="text-lg font-semibold">Urban Hoodie</h3>
125
+ <p class="text-gray-600">$89.99</p>
126
+ </div>
127
+ </div>
128
+
129
+ <!-- Product 2 -->
130
+ <div class="product-card group relative overflow-hidden rounded-xl">
131
+ <div class="aspect-w-1 aspect-h-1 w-full overflow-hidden rounded-xl bg-gray-200">
132
+ <img src="https://images.unsplash.com/photo-1527719327859-c6ce80353573?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1476&q=80" alt="Classic Tee" class="h-full w-full object-cover object-center transition duration-300 group-hover:scale-105">
133
+ </div>
134
+ <div class="product-overlay absolute inset-0 bg-black/70 flex flex-col justify-center items-center opacity-0 transform translate-y-4 transition duration-300">
135
+ <h3 class="text-white text-xl font-bold mb-2">Classic Tee</h3>
136
+ <p class="text-gray-300 mb-4">$39.99</p>
137
+ <button class="px-6 py-2 bg-white text-black rounded-full font-medium hover:bg-gray-200 transition">Add to Cart</button>
138
+ </div>
139
+ <div class="mt-4">
140
+ <h3 class="text-lg font-semibold">Classic Tee</h3>
141
+ <p class="text-gray-600">$39.99</p>
142
+ </div>
143
+ </div>
144
+
145
+ <!-- Product 3 -->
146
+ <div class="product-card group relative overflow-hidden rounded-xl">
147
+ <div class="aspect-w-1 aspect-h-1 w-full overflow-hidden rounded-xl bg-gray-200">
148
+ <img src="https://images.unsplash.com/photo-1595950653106-6c9ebd614d3a?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1374&q=80" alt="Cargo Pants" class="h-full w-full object-cover object-center transition duration-300 group-hover:scale-105">
149
+ </div>
150
+ <div class="product-overlay absolute inset-0 bg-black/70 flex flex-col justify-center items-center opacity-0 transform translate-y-4 transition duration-300">
151
+ <h3 class="text-white text-xl font-bold mb-2">Cargo Pants</h3>
152
+ <p class="text-gray-300 mb-4">$69.99</p>
153
+ <button class="px-6 py-2 bg-white text-black rounded-full font-medium hover:bg-gray-200 transition">Add to Cart</button>
154
+ </div>
155
+ <div class="mt-4">
156
+ <h3 class="text-lg font-semibold">Cargo Pants</h3>
157
+ <p class="text-gray-600">$69.99</p>
158
+ </div>
159
+ </div>
160
+ </div>
161
+
162
+ <div class="text-center mt-16">
163
+ <a href="#" class="px-8 py-3 border-2 border-black font-medium rounded-full hover:bg-gray-100 transition">View All Products</a>
164
+ </div>
165
+ </div>
166
+ </section>
167
+
168
+ <!-- Parallax Banner -->
169
+ <section class="parallax h-96 flex items-center justify-center" style="background-image: url('https://images.unsplash.com/photo-1483985988355-763728e1935b?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80');">
170
+ <div class="text-center bg-white/80 p-8 rounded-xl max-w-2xl mx-4">
171
+ <h2 class="text-3xl font-black mb-4">Sustainable Fashion</h2>
172
+ <p class="text-gray-700 mb-6">We're committed to ethical production and sustainable materials. Every piece tells a story of craftsmanship and responsibility.</p>
173
+ <a href="#" class="px-6 py-2 bg-black text-white rounded-full font-medium hover:bg-gray-800 transition">Our Process</a>
174
+ </div>
175
+ </section>
176
+
177
+ <!-- About Section -->
178
+ <section id="about" class="py-16 bg-gray-50">
179
+ <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
180
+ <div class="md:flex items-center">
181
+ <div class="md:w-1/2 mb-12 md:mb-0 md:pr-12">
182
+ <h2 class="text-3xl font-black mb-6">Our Story</h2>
183
+ <p class="text-gray-600 mb-4">Founded in 2018, Elevate began as a small passion project between three friends who shared a love for streetwear and sustainable fashion.</p>
184
+ <p class="text-gray-600 mb-6">Today, we've grown into a recognized brand that stays true to our roots - creating high-quality, limited-run pieces that stand the test of time.</p>
185
+ <div class="flex space-x-4">
186
+ <div class="text-center">
187
+ <p class="text-3xl font-black text-indigo-600">5K+</p>
188
+ <p class="text-gray-500">Happy Customers</p>
189
+ </div>
190
+ <div class="text-center">
191
+ <p class="text-3xl font-black text-indigo-600">100%</p>
192
+ <p class="text-gray-500">Ethically Sourced</p>
193
+ </div>
194
+ </div>
195
+ </div>
196
+ <div class="md:w-1/2 grid grid-cols-2 gap-4">
197
+ <img src="https://images.unsplash.com/photo-1607082348824-0a96f2a4b9da?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80" alt="Our Team" class="rounded-lg shadow-md h-64 w-full object-cover">
198
+ <img src="https://images.unsplash.com/photo-1605000797499-95a51c5269ae?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1471&q=80" alt="Our Materials" class="rounded-lg shadow-md h-64 w-full object-cover mt-8">
199
+ </div>
200
+ </div>
201
+ </div>
202
+ </section>
203
+
204
+ <!-- Testimonials -->
205
+ <section class="py-16 bg-white">
206
+ <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
207
+ <div class="text-center mb-12">
208
+ <h2 class="text-3xl font-black mb-4">What Our Community Says</h2>
209
+ <p class="text-gray-500 max-w-2xl mx-auto">Join thousands of satisfied customers worldwide</p>
210
+ </div>
211
+
212
+ <div class="grid grid-cols-1 md:grid-cols-3 gap-8">
213
+ <div class="bg-gray-50 p-8 rounded-xl">
214
+ <div class="flex items-center mb-4">
215
+ <div class="text-yellow-400 flex">
216
+ <i class="fas fa-star"></i>
217
+ <i class="fas fa-star"></i>
218
+ <i class="fas fa-star"></i>
219
+ <i class="fas fa-star"></i>
220
+ <i class="fas fa-star"></i>
221
+ </div>
222
+ </div>
223
+ <p class="text-gray-600 mb-6">"The quality is unmatched. I've had my Elevate hoodie for over a year and it still looks brand new."</p>
224
+ <div class="flex items-center">
225
+ <img src="https://randomuser.me/api/portraits/women/43.jpg" alt="Sarah J." class="w-10 h-10 rounded-full mr-4">
226
+ <div>
227
+ <p class="font-medium">Sarah J.</p>
228
+ <p class="text-sm text-gray-500">Verified Customer</p>
229
+ </div>
230
+ </div>
231
+ </div>
232
+
233
+ <div class="bg-gray-50 p-8 rounded-xl">
234
+ <div class="flex items-center mb-4">
235
+ <div class="text-yellow-400 flex">
236
+ <i class="fas fa-star"></i>
237
+ <i class="fas fa-star"></i>
238
+ <i class="fas fa-star"></i>
239
+ <i class="fas fa-star"></i>
240
+ <i class="fas fa-star"></i>
241
+ </div>
242
+ </div>
243
+ <p class="text-gray-600 mb-6">"Finally a brand that cares about both style and sustainability. Worth every penny."</p>
244
+ <div class="flex items-center">
245
+ <img src="https://randomuser.me/api/portraits/men/32.jpg" alt="Marcus T." class="w-10 h-10 rounded-full mr-4">
246
+ <div>
247
+ <p class="font-medium">Marcus T.</p>
248
+ <p class="text-sm text-gray-500">Verified Customer</p>
249
+ </div>
250
+ </div>
251
+ </div>
252
+
253
+ <div class="bg-gray-50 p-8 rounded-xl">
254
+ <div class="flex items-center mb-4">
255
+ <div class="text-yellow-400 flex">
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"></i>
261
+ </div>
262
+ </div>
263
+ <p class="text-gray-600 mb-6">"The fit is perfect and the designs are unique. I always get compliments when I wear Elevate."</p>
264
+ <div class="flex items-center">
265
+ <img src="https://randomuser.me/api/portraits/women/65.jpg" alt="Jamie L." class="w-10 h-10 rounded-full mr-4">
266
+ <div>
267
+ <p class="font-medium">Jamie L.</p>
268
+ <p class="text-sm text-gray-500">Verified Customer</p>
269
+ </div>
270
+ </div>
271
+ </div>
272
+ </div>
273
+ </div>
274
+ </section>
275
+
276
+ <!-- Contact Section -->
277
+ <section id="contact" class="py-16 bg-gray-900 text-white">
278
+ <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
279
+ <div class="md:flex">
280
+ <div class="md:w-1/2 mb-12 md:mb-0 md:pr-12">
281
+ <h2 class="text-3xl font-black mb-6">Get In Touch</h2>
282
+ <p class="text-gray-300 mb-6">Have questions about our products or process? Reach out to our team - we're happy to help.</p>
283
+
284
+ <div class="mb-8">
285
+ <h3 class="font-bold mb-2">Customer Support</h3>
286
+ <p class="text-gray-300">support@elevatestreetwear.com</p>
287
+ <p class="text-gray-300">+1 (555) 123-4567</p>
288
+ </div>
289
+
290
+ <div class="mb-8">
291
+ <h3 class="font-bold mb-2">Visit Our Store</h3>
292
+ <p class="text-gray-300">123 Fashion Ave</p>
293
+ <p class="text-gray-300">New York, NY 10001</p>
294
+ </div>
295
+
296
+ <div class="flex space-x-4">
297
+ <a href="#" class="w-10 h-10 rounded-full bg-gray-800 flex items-center justify-center hover:bg-gray-700 transition">
298
+ <i class="fab fa-instagram"></i>
299
+ </a>
300
+ <a href="#" class="w-10 h-10 rounded-full bg-gray-800 flex items-center justify-center hover:bg-gray-700 transition">
301
+ <i class="fab fa-twitter"></i>
302
+ </a>
303
+ <a href="#" class="w-10 h-10 rounded-full bg-gray-800 flex items-center justify-center hover:bg-gray-700 transition">
304
+ <i class="fab fa-facebook-f"></i>
305
+ </a>
306
+ </div>
307
+ </div>
308
+
309
+ <div class="md:w-1/2">
310
+ <form class="bg-gray-800 p-8 rounded-xl">
311
+ <div class="mb-6">
312
+ <label for="name" class="block text-sm font-medium mb-2">Full Name</label>
313
+ <input type="text" id="name" class="w-full px-4 py-3 bg-gray-700 border border-gray-600 rounded-lg focus:outline-none focus:ring-2 focus:ring-indigo-500">
314
+ </div>
315
+
316
+ <div class="mb-6">
317
+ <label for="email" class="block text-sm font-medium mb-2">Email Address</label>
318
+ <input type="email" id="email" class="w-full px-4 py-3 bg-gray-700 border border-gray-600 rounded-lg focus:outline-none focus:ring-2 focus:ring-indigo-500">
319
+ </div>
320
+
321
+ <div class="mb-6">
322
+ <label for="message" class="block text-sm font-medium mb-2">Message</label>
323
+ <textarea id="message" rows="4" class="w-full px-4 py-3 bg-gray-700 border border-gray-600 rounded-lg focus:outline-none focus:ring-2 focus:ring-indigo-500"></textarea>
324
+ </div>
325
+
326
+ <button type="submit" class="w-full py-3 bg-indigo-600 text-white font-medium rounded-lg hover:bg-indigo-700 transition">Send Message</button>
327
+ </form>
328
+ </div>
329
+ </div>
330
+ </div>
331
+ </section>
332
+
333
+ <!-- Newsletter -->
334
+ <section class="py-12 bg-indigo-600 text-white">
335
+ <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8 text-center">
336
+ <h2 class="text-2xl font-black mb-4">Join Our Community</h2>
337
+ <p class="max-w-2xl mx-auto mb-6">Subscribe to our newsletter for exclusive drops, early access, and 10% off your first order.</p>
338
+
339
+ <div class="max-w-md mx-auto flex">
340
+ <input type="email" placeholder="Your email address" class="flex-grow px-4 py-3 rounded-l-lg focus:outline-none text-gray-900">
341
+ <button class="px-6 py-3 bg-black text-white font-medium rounded-r-lg hover:bg-gray-900 transition">Subscribe</button>
342
+ </div>
343
+ </div>
344
+ </section>
345
+
346
+ <!-- Footer -->
347
+ <footer class="bg-black text-white py-12">
348
+ <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
349
+ <div class="grid grid-cols-1 md:grid-cols-4 gap-8">
350
+ <div>
351
+ <h3 class="text-xl font-black mb-4">ELEVATE</h3>
352
+ <p class="text-gray-400">Redefining streetwear with sustainable fashion that makes a statement.</p>
353
+ </div>
354
+
355
+ <div>
356
+ <h4 class="font-bold mb-4">Shop</h4>
357
+ <ul class="space-y-2">
358
+ <li><a href="#" class="text-gray-400 hover:text-white transition">New Arrivals</a></li>
359
+ <li><a href="#" class="text-gray-400 hover:text-white transition">Best Sellers</a></li>
360
+ <li><a href="#" class="text-gray-400 hover:text-white transition">Accessories</a></li>
361
+ <li><a href="#" class="text-gray-400 hover:text-white transition">Sale</a></li>
362
+ </ul>
363
+ </div>
364
+
365
+ <div>
366
+ <h4 class="font-bold mb-4">Company</h4>
367
+ <ul class="space-y-2">
368
+ <li><a href="#" class="text-gray-400 hover:text-white transition">About Us</a></li>
369
+ <li><a href="#" class="text-gray-400 hover:text-white transition">Sustainability</a></li>
370
+ <li><a href="#" class="text-gray-400 hover:text-white transition">Careers</a></li>
371
+ <li><a href="#" class="text-gray-400 hover:text-white transition">Press</a></li>
372
+ </ul>
373
+ </div>
374
+
375
+ <div>
376
+ <h4 class="font-bold mb-4">Help</h4>
377
+ <ul class="space-y-2">
378
+ <li><a href="#" class="text-gray-400 hover:text-white transition">Contact Us</a></li>
379
+ <li><a href="#" class="text-gray-400 hover:text-white transition">FAQs</a></li>
380
+ <li><a href="#" class="text-gray-400 hover:text-white transition">Shipping & Returns</a></li>
381
+ <li><a href="#" class="text-gray-400 hover:text-white transition">Size Guide</a></li>
382
+ </ul>
383
+ </div>
384
+ </div>
385
+
386
+ <div class="border-t border-gray-800 mt-12 pt-8 flex flex-col md:flex-row justify-between items-center">
387
+ <p class="text-gray-400 mb-4 md:mb-0">© 2023 Elevate Streetwear. All rights reserved.</p>
388
+ <div class="flex space-x-6">
389
+ <a href="#" class="text-gray-400 hover:text-white transition">Privacy Policy</a>
390
+ <a href="#" class="text-gray-400 hover:text-white transition">Terms of Service</a>
391
+ <a href="#" class="text-gray-400 hover:text-white transition">Cookie Policy</a>
392
+ </div>
393
+ </div>
394
+ </div>
395
+ </footer>
396
+
397
+ <script>
398
+ // Simple JavaScript for mobile menu toggle (would be expanded in a real implementation)
399
+ document.addEventListener('DOMContentLoaded', function() {
400
+ const mobileMenuButton = document.querySelector('.md\\:hidden');
401
+ // In a real implementation, this would toggle a mobile menu
402
+ mobileMenuButton.addEventListener('click', function() {
403
+ alert('Mobile menu would open here in a full implementation');
404
+ });
405
+
406
+ // Smooth scrolling for anchor links
407
+ document.querySelectorAll('a[href^="#"]').forEach(anchor => {
408
+ anchor.addEventListener('click', function (e) {
409
+ e.preventDefault();
410
+
411
+ const targetId = this.getAttribute('href');
412
+ if (targetId === '#') return;
413
+
414
+ const targetElement = document.querySelector(targetId);
415
+ if (targetElement) {
416
+ window.scrollTo({
417
+ top: targetElement.offsetTop - 80,
418
+ behavior: 'smooth'
419
+ });
420
+ }
421
+ });
422
+ });
423
+ });
424
+ </script>
425
+ <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=dogfacegame/clothing-store" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
426
+ </html>
prompts.txt ADDED
File without changes