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