aazzrrooddeell commited on
Commit
065ec26
·
verified ·
1 Parent(s): ccfacd6

Add 3 files

Browse files
Files changed (3) hide show
  1. README.md +7 -5
  2. index.html +420 -19
  3. prompts.txt +1 -0
README.md CHANGED
@@ -1,10 +1,12 @@
1
  ---
2
- title: Website
3
- emoji: 📉
4
- colorFrom: yellow
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: website
3
+ emoji: 🐳
4
+ colorFrom: green
5
+ colorTo: blue
6
  sdk: static
7
  pinned: false
8
+ tags:
9
+ - genesis
10
  ---
11
 
12
+ Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
index.html CHANGED
@@ -1,19 +1,420 @@
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>AutoArt - Custom Metal Car Posters</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
+ <script>
10
+ tailwind.config = {
11
+ theme: {
12
+ extend: {
13
+ colors: {
14
+ deepblue: '#0a192f',
15
+ silver: '#c0c0c0',
16
+ lightblue: '#172a45',
17
+ accent: '#64ffda',
18
+ }
19
+ }
20
+ }
21
+ }
22
+ </script>
23
+ <style>
24
+ .custom-file-input::-webkit-file-upload-button {
25
+ visibility: hidden;
26
+ }
27
+ .custom-file-input::before {
28
+ content: 'Upload Your Car Photo';
29
+ display: inline-block;
30
+ background: linear-gradient(to bottom, #f9f9f9, #e3e3e3);
31
+ border: 1px solid #999;
32
+ border-radius: 3px;
33
+ padding: 8px 16px;
34
+ outline: none;
35
+ white-space: nowrap;
36
+ cursor: pointer;
37
+ font-weight: 500;
38
+ font-size: 14px;
39
+ color: #0a192f;
40
+ }
41
+ .custom-file-input:hover::before {
42
+ border-color: black;
43
+ }
44
+ .custom-file-input:active::before {
45
+ background: -webkit-linear-gradient(top, #e3e3e3, #f9f9f9);
46
+ }
47
+
48
+ .metal-texture {
49
+ background: linear-gradient(135deg, #c0c0c0 0%, #e0e0e0 50%, #c0c0c0 100%);
50
+ background-size: 200% 200%;
51
+ animation: shimmer 3s ease infinite;
52
+ }
53
+
54
+ @keyframes shimmer {
55
+ 0% { background-position: 0% 50%; }
56
+ 50% { background-position: 100% 50%; }
57
+ 100% { background-position: 0% 50%; }
58
+ }
59
+
60
+ .floating {
61
+ animation: floating 6s ease-in-out infinite;
62
+ }
63
+
64
+ @keyframes floating {
65
+ 0% { transform: translateY(0px); }
66
+ 50% { transform: translateY(-15px); }
67
+ 100% { transform: translateY(0px); }
68
+ }
69
+ </style>
70
+ </head>
71
+ <body class="bg-deepblue text-silver font-sans">
72
+ <!-- Navigation -->
73
+ <nav class="bg-lightblue/80 backdrop-blur-md sticky top-0 z-50 shadow-lg">
74
+ <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
75
+ <div class="flex items-center justify-between h-16">
76
+ <div class="flex items-center">
77
+ <div class="flex-shrink-0 flex items-center">
78
+ <i class="fas fa-car text-accent text-2xl mr-2"></i>
79
+ <span class="text-xl font-bold text-white">Auto<span class="text-accent">Art</span></span>
80
+ </div>
81
+ </div>
82
+ <div class="hidden md:block">
83
+ <div class="ml-10 flex items-baseline space-x-4">
84
+ <a href="#" class="text-white px-3 py-2 rounded-md text-sm font-medium">Home</a>
85
+ <a href="#" class="text-silver hover:text-white px-3 py-2 rounded-md text-sm font-medium">Gallery</a>
86
+ <a href="#" class="text-silver hover:text-white px-3 py-2 rounded-md text-sm font-medium">Create</a>
87
+ <a href="#" class="text-silver hover:text-white px-3 py-2 rounded-md text-sm font-medium">About</a>
88
+ <a href="#" class="text-silver hover:text-white px-3 py-2 rounded-md text-sm font-medium">Contact</a>
89
+ </div>
90
+ </div>
91
+ <div class="hidden md:block">
92
+ <div class="ml-4 flex items-center md:ml-6">
93
+ <button class="bg-accent text-deepblue px-4 py-2 rounded-md text-sm font-medium hover:bg-opacity-90 transition">
94
+ <i class="fas fa-shopping-cart mr-2"></i>Cart (0)
95
+ </button>
96
+ </div>
97
+ </div>
98
+ <div class="-mr-2 flex md:hidden">
99
+ <button type="button" class="inline-flex items-center justify-center p-2 rounded-md text-silver hover:text-white focus:outline-none">
100
+ <i class="fas fa-bars"></i>
101
+ </button>
102
+ </div>
103
+ </div>
104
+ </div>
105
+ </nav>
106
+
107
+ <!-- Hero Section -->
108
+ <section class="relative overflow-hidden">
109
+ <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8 py-20 md:py-32">
110
+ <div class="relative z-10 md:w-1/2">
111
+ <h1 class="text-4xl md:text-6xl font-bold text-white mb-6">
112
+ Transform Your <span class="text-accent">Car</span> Into Metal Art
113
+ </h1>
114
+ <p class="text-lg md:text-xl text-silver mb-8">
115
+ Premium quality metal posters of your vehicle, custom made to order. Includes easy-to-use hanging clips for instant display.
116
+ </p>
117
+ <div class="flex flex-col sm:flex-row gap-4">
118
+ <a href="#" class="bg-accent text-deepblue px-6 py-3 rounded-md text-lg font-semibold hover:bg-opacity-90 transition text-center">
119
+ Create Yours Now
120
+ </a>
121
+ <a href="#" class="border border-accent text-accent px-6 py-3 rounded-md text-lg font-semibold hover:bg-accent/10 transition text-center">
122
+ View Gallery
123
+ </a>
124
+ </div>
125
+ </div>
126
+ <div class="absolute right-0 top-1/2 transform -translate-y-1/2 hidden lg:block">
127
+ <div class="relative w-96 h-96 floating">
128
+ <div class="absolute inset-0 bg-gradient-to-br from-silver to-gray-300 rounded-full opacity-20 blur-3xl"></div>
129
+ <img src="https://images.unsplash.com/photo-1590362891991-f776e747a588?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=800&q=80"
130
+ alt="Custom Car Metal Poster"
131
+ class="relative z-10 w-full h-full object-contain rounded-lg shadow-2xl border-4 border-accent/20">
132
+ </div>
133
+ </div>
134
+ </div>
135
+ </section>
136
+
137
+ <!-- Features Section -->
138
+ <section class="py-20 bg-lightblue">
139
+ <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
140
+ <div class="text-center mb-16">
141
+ <h2 class="text-3xl md:text-4xl font-bold text-white mb-4">Why Choose AutoArt?</h2>
142
+ <p class="text-lg text-silver max-w-3xl mx-auto">Premium quality meets personalized design for car enthusiasts who want to showcase their passion.</p>
143
+ </div>
144
+ <div class="grid grid-cols-1 md:grid-cols-3 gap-8">
145
+ <div class="bg-deepblue p-8 rounded-lg shadow-lg hover:shadow-xl transition">
146
+ <div class="text-accent text-4xl mb-4">
147
+ <i class="fas fa-medal"></i>
148
+ </div>
149
+ <h3 class="text-xl font-bold text-white mb-3">Premium Metal Quality</h3>
150
+ <p class="text-silver">Our aluminum posters are durable, lightweight, and resistant to fading, ensuring your car's image stays vibrant for years.</p>
151
+ </div>
152
+ <div class="bg-deepblue p-8 rounded-lg shadow-lg hover:shadow-xl transition">
153
+ <div class="text-accent text-4xl mb-4">
154
+ <i class="fas fa-sliders-h"></i>
155
+ </div>
156
+ <h3 class="text-xl font-bold text-white mb-3">Fully Customizable</h3>
157
+ <p class="text-silver">Choose from various sizes, finishes, and layouts. Add text, filters, or crop your image to create the perfect piece.</p>
158
+ </div>
159
+ <div class="bg-deepblue p-8 rounded-lg shadow-lg hover:shadow-xl transition">
160
+ <div class="text-accent text-4xl mb-4">
161
+ <i class="fas fa-gift"></i>
162
+ </div>
163
+ <h3 class="text-xl font-bold text-white mb-3">Complete Hanging Kit</h3>
164
+ <p class="text-silver">Each order includes high-quality plastic clips for easy, damage-free hanging. No additional hardware needed.</p>
165
+ </div>
166
+ </div>
167
+ </div>
168
+ </section>
169
+
170
+ <!-- Customization Tool -->
171
+ <section class="py-20 bg-deepblue">
172
+ <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
173
+ <div class="text-center mb-16">
174
+ <h2 class="text-3xl md:text-4xl font-bold text-white mb-4">Create Your Custom Poster</h2>
175
+ <p class="text-lg text-silver max-w-3xl mx-auto">Upload your car photo and customize it to your liking.</p>
176
+ </div>
177
+
178
+ <div class="bg-lightblue rounded-xl shadow-2xl overflow-hidden">
179
+ <div class="grid grid-cols-1 lg:grid-cols-2 gap-8">
180
+ <div class="p-8">
181
+ <div class="mb-8">
182
+ <label class="block text-white font-medium mb-2">1. Upload Your Car Photo</label>
183
+ <input type="file" id="car-upload" class="custom-file-input">
184
+ </div>
185
+
186
+ <div class="mb-8">
187
+ <label class="block text-white font-medium mb-2">2. Choose Size</label>
188
+ <div class="grid grid-cols-3 gap-4">
189
+ <button class="bg-accent text-deepblue py-2 rounded font-medium">12"x18"</button>
190
+ <button class="bg-deepblue border border-accent text-accent py-2 rounded font-medium">16"x24"</button>
191
+ <button class="bg-deepblue border border-accent text-accent py-2 rounded font-medium">24"x36"</button>
192
+ </div>
193
+ </div>
194
+
195
+ <div class="mb-8">
196
+ <label class="block text-white font-medium mb-2">3. Select Finish</label>
197
+ <div class="grid grid-cols-2 gap-4">
198
+ <button class="bg-deepblue border border-accent text-accent py-2 rounded font-medium flex items-center justify-center">
199
+ <i class="fas fa-sun mr-2"></i> Glossy
200
+ </button>
201
+ <button class="bg-accent text-deepblue py-2 rounded font-medium flex items-center justify-center">
202
+ <i class="fas fa-moon mr-2"></i> Matte
203
+ </button>
204
+ </div>
205
+ </div>
206
+
207
+ <div class="mb-8">
208
+ <label class="block text-white font-medium mb-2">4. Add Text (Optional)</label>
209
+ <input type="text" placeholder="e.g., My Dream Car" class="w-full bg-deepblue border border-accent/30 rounded px-4 py-2 text-white focus:outline-none focus:ring-2 focus:ring-accent">
210
+ </div>
211
+
212
+ <button class="w-full bg-accent text-deepblue py-3 rounded-lg font-bold text-lg hover:bg-opacity-90 transition">
213
+ Add to Cart - $89.99
214
+ </button>
215
+ </div>
216
+
217
+ <div class="p-8 bg-deepblue flex items-center justify-center">
218
+ <div class="relative w-full h-96 metal-texture rounded-lg shadow-inner flex items-center justify-center">
219
+ <div class="text-center p-8">
220
+ <i class="fas fa-car text-5xl text-accent mb-4"></i>
221
+ <p class="text-white">Your custom car poster preview will appear here</p>
222
+ </div>
223
+ <div class="absolute bottom-4 right-4 text-xs text-silver">
224
+ Includes hanging clips
225
+ </div>
226
+ </div>
227
+ </div>
228
+ </div>
229
+ </div>
230
+ </div>
231
+ </section>
232
+
233
+ <!-- Testimonials -->
234
+ <section class="py-20 bg-lightblue">
235
+ <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
236
+ <div class="text-center mb-16">
237
+ <h2 class="text-3xl md:text-4xl font-bold text-white mb-4">What Our Customers Say</h2>
238
+ <p class="text-lg text-silver max-w-3xl mx-auto">Don't just take our word for it - hear from car enthusiasts like you.</p>
239
+ </div>
240
+
241
+ <div class="grid grid-cols-1 md:grid-cols-3 gap-8">
242
+ <div class="bg-deepblue p-8 rounded-lg shadow-lg">
243
+ <div class="flex items-center mb-4">
244
+ <div class="text-yellow-400 mr-2">
245
+ <i class="fas fa-star"></i>
246
+ <i class="fas fa-star"></i>
247
+ <i class="fas fa-star"></i>
248
+ <i class="fas fa-star"></i>
249
+ <i class="fas fa-star"></i>
250
+ </div>
251
+ </div>
252
+ <p class="text-silver mb-6">"The quality exceeded my expectations! The colors pop on the metal surface and the included clips made hanging it a breeze."</p>
253
+ <div class="flex items-center">
254
+ <div class="w-10 h-10 rounded-full bg-accent flex items-center justify-center text-deepblue font-bold mr-3">JD</div>
255
+ <div>
256
+ <h4 class="text-white font-medium">James D.</h4>
257
+ <p class="text-silver text-sm">1967 Mustang Owner</p>
258
+ </div>
259
+ </div>
260
+ </div>
261
+
262
+ <div class="bg-deepblue p-8 rounded-lg shadow-lg">
263
+ <div class="flex items-center mb-4">
264
+ <div class="text-yellow-400 mr-2">
265
+ <i class="fas fa-star"></i>
266
+ <i class="fas fa-star"></i>
267
+ <i class="fas fa-star"></i>
268
+ <i class="fas fa-star"></i>
269
+ <i class="fas fa-star"></i>
270
+ </div>
271
+ </div>
272
+ <p class="text-silver mb-6">"Best gift for my husband who loves his Tesla. The matte finish looks so modern and sleek. Already planning to order another one!"</p>
273
+ <div class="flex items-center">
274
+ <div class="w-10 h-10 rounded-full bg-accent flex items-center justify-center text-deepblue font-bold mr-3">SM</div>
275
+ <div>
276
+ <h4 class="text-white font-medium">Sarah M.</h4>
277
+ <p class="text-silver text-sm">Model 3 Owner</p>
278
+ </div>
279
+ </div>
280
+ </div>
281
+
282
+ <div class="bg-deepblue p-8 rounded-lg shadow-lg">
283
+ <div class="flex items-center mb-4">
284
+ <div class="text-yellow-400 mr-2">
285
+ <i class="fas fa-star"></i>
286
+ <i class="fas fa-star"></i>
287
+ <i class="fas fa-star"></i>
288
+ <i class="fas fa-star"></i>
289
+ <i class="fas fa-star-half-alt"></i>
290
+ </div>
291
+ </div>
292
+ <p class="text-silver mb-6">"Incredible detail on my WRX poster. The customization options let me add my license plate number which makes it truly unique."</p>
293
+ <div class="flex items-center">
294
+ <div class="w-10 h-10 rounded-full bg-accent flex items-center justify-center text-deepblue font-bold mr-3">TK</div>
295
+ <div>
296
+ <h4 class="text-white font-medium">Trevor K.</h4>
297
+ <p class="text-silver text-sm">Subaru Enthusiast</p>
298
+ </div>
299
+ </div>
300
+ </div>
301
+ </div>
302
+ </div>
303
+ </section>
304
+
305
+ <!-- CTA Section -->
306
+ <section class="py-20 bg-gradient-to-b from-deepblue to-lightblue">
307
+ <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8 text-center">
308
+ <h2 class="text-3xl md:text-4xl font-bold text-white mb-6">Ready to Turn Your Car Into Art?</h2>
309
+ <p class="text-xl text-silver mb-8 max-w-3xl mx-auto">Create your custom metal poster today and receive free shipping on all orders over $100.</p>
310
+ <a href="#" class="inline-block bg-accent text-deepblue px-8 py-4 rounded-lg text-lg font-bold hover:bg-opacity-90 transition shadow-lg">
311
+ Start Designing Now <i class="fas fa-arrow-right ml-2"></i>
312
+ </a>
313
+ </div>
314
+ </section>
315
+
316
+ <!-- Footer -->
317
+ <footer class="bg-lightblue text-silver py-12">
318
+ <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
319
+ <div class="grid grid-cols-1 md:grid-cols-4 gap-8">
320
+ <div>
321
+ <h3 class="text-white text-lg font-bold mb-4 flex items-center">
322
+ <i class="fas fa-car text-accent mr-2"></i> AutoArt
323
+ </h3>
324
+ <p class="mb-4">Premium custom metal posters for car enthusiasts.</p>
325
+ <div class="flex space-x-4">
326
+ <a href="#" class="text-silver hover:text-accent transition">
327
+ <i class="fab fa-facebook-f"></i>
328
+ </a>
329
+ <a href="#" class="text-silver hover:text-accent transition">
330
+ <i class="fab fa-instagram"></i>
331
+ </a>
332
+ <a href="#" class="text-silver hover:text-accent transition">
333
+ <i class="fab fa-twitter"></i>
334
+ </a>
335
+ <a href="#" class="text-silver hover:text-accent transition">
336
+ <i class="fab fa-pinterest-p"></i>
337
+ </a>
338
+ </div>
339
+ </div>
340
+ <div>
341
+ <h3 class="text-white text-lg font-bold mb-4">Shop</h3>
342
+ <ul class="space-y-2">
343
+ <li><a href="#" class="hover:text-accent transition">Create Custom Poster</a></li>
344
+ <li><a href="#" class="hover:text-accent transition">Popular Designs</a></li>
345
+ <li><a href="#" class="hover:text-accent transition">Gift Cards</a></li>
346
+ <li><a href="#" class="hover:text-accent transition">Sale Items</a></li>
347
+ </ul>
348
+ </div>
349
+ <div>
350
+ <h3 class="text-white text-lg font-bold mb-4">Help</h3>
351
+ <ul class="space-y-2">
352
+ <li><a href="#" class="hover:text-accent transition">FAQ</a></li>
353
+ <li><a href="#" class="hover:text-accent transition">Shipping Info</a></li>
354
+ <li><a href="#" class="hover:text-accent transition">Returns & Exchanges</a></li>
355
+ <li><a href="#" class="hover:text-accent transition">Contact Us</a></li>
356
+ </ul>
357
+ </div>
358
+ <div>
359
+ <h3 class="text-white text-lg font-bold mb-4">Newsletter</h3>
360
+ <p class="mb-4">Subscribe for exclusive offers and new product announcements.</p>
361
+ <div class="flex">
362
+ <input type="email" placeholder="Your email" class="bg-deepblue text-white px-4 py-2 rounded-l focus:outline-none focus:ring-2 focus:ring-accent w-full">
363
+ <button class="bg-accent text-deepblue px-4 py-2 rounded-r font-medium hover:bg-opacity-90 transition">
364
+ <i class="fas fa-paper-plane"></i>
365
+ </button>
366
+ </div>
367
+ </div>
368
+ </div>
369
+ <div class="border-t border-deepblue mt-12 pt-8 flex flex-col md:flex-row justify-between items-center">
370
+ <p>© 2023 AutoArt. All rights reserved.</p>
371
+ <div class="flex space-x-6 mt-4 md:mt-0">
372
+ <a href="#" class="hover:text-accent transition">Privacy Policy</a>
373
+ <a href="#" class="hover:text-accent transition">Terms of Service</a>
374
+ <a href="#" class="hover:text-accent transition">Sitemap</a>
375
+ </div>
376
+ </div>
377
+ </div>
378
+ </footer>
379
+
380
+ <script>
381
+ // Simple script to handle file upload preview (would be more robust in a real implementation)
382
+ document.getElementById('car-upload').addEventListener('change', function(e) {
383
+ const preview = document.querySelector('.metal-texture');
384
+ if (e.target.files.length) {
385
+ const reader = new FileReader();
386
+ reader.onload = function(event) {
387
+ preview.innerHTML = `<img src="${event.target.result}" class="w-full h-full object-cover rounded-lg" alt="Your car preview">`;
388
+ };
389
+ reader.readAsDataURL(e.target.files[0]);
390
+ }
391
+ });
392
+
393
+ // Size selection buttons
394
+ const sizeButtons = document.querySelectorAll('[class*="grid-cols-3"] button');
395
+ sizeButtons.forEach(button => {
396
+ button.addEventListener('click', function() {
397
+ sizeButtons.forEach(btn => {
398
+ btn.classList.remove('bg-accent', 'text-deepblue');
399
+ btn.classList.add('bg-deepblue', 'border', 'border-accent', 'text-accent');
400
+ });
401
+ this.classList.remove('bg-deepblue', 'border', 'border-accent', 'text-accent');
402
+ this.classList.add('bg-accent', 'text-deepblue');
403
+ });
404
+ });
405
+
406
+ // Finish selection buttons
407
+ const finishButtons = document.querySelectorAll('[class*="grid-cols-2"] button');
408
+ finishButtons.forEach(button => {
409
+ button.addEventListener('click', function() {
410
+ finishButtons.forEach(btn => {
411
+ btn.classList.remove('bg-accent', 'text-deepblue');
412
+ btn.classList.add('bg-deepblue', 'border', 'border-accent', 'text-accent');
413
+ });
414
+ this.classList.remove('bg-deepblue', 'border', 'border-accent', 'text-accent');
415
+ this.classList.add('bg-accent', 'text-deepblue');
416
+ });
417
+ });
418
+ </script>
419
+ <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="src/assets/logo.gif" alt="Genesis Logo" style="width: 16px; height: 16px; vertical-align: middle;display:inline-block;margin-right:3px;filter:brightness(0) invert(1);"><a href="https://aazzrrooddeell-genesis.hf.space" style="color: #fff;text-decoration: underline;" target="_blank" >Genesis</a> - 🧬 <a href="https://aazzrrooddeell-genesis.hf.space?remix=aazzrrooddeell/website" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
420
+ </html>
prompts.txt ADDED
@@ -0,0 +1 @@
 
 
1
+ deep blue and silver color scheme for a small online business selling custom metal wall posters of customers cars that come with plastic clips to hang them