Create a modern online fineart print store with mininmal swiss design theme, product grid, shopping cart icon, and checkout button. Include header navigation, hero section with sale banner, and footer with social links.
a1327a4
verified
| <html lang="en"> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
| <title>Gallery Noir · Fine Art Prints</title> | |
| <link rel="icon" type="image/x-icon" href="/static/favicon.ico"> | |
| <script src="https://cdn.tailwindcss.com"></script> | |
| <script src="https://cdn.jsdelivr.net/npm/feather-icons/dist/feather.min.js"></script> | |
| <script src="https://unpkg.com/feather-icons"></script> | |
| <script> | |
| tailwind.config = { | |
| theme: { | |
| fontFamily: { | |
| sans: ['Helvetica Neue', 'Arial', 'sans-serif'], | |
| mono: ['Courier New', 'monospace'] | |
| }, | |
| extend: { | |
| colors: { | |
| primary: '#000000', | |
| secondary: '#f0f0f0', | |
| accent: '#8b8b8b' | |
| } | |
| } | |
| } | |
| } | |
| </script> | |
| <style> | |
| @import url('https://fonts.googleapis.com/css2?family=Space+Mono:wght@400;700&display=swap'); | |
| .hero-bg { | |
| background-image: url('http://static.photos/minimal/1200x630/42'); | |
| background-size: cover; | |
| background-position: center; | |
| } | |
| .product-hover { | |
| transition: all 0.3s ease; | |
| } | |
| .product-hover:hover { | |
| transform: translateY(-5px); | |
| box-shadow: 0 10px 25px rgba(0,0,0,0.1); | |
| } | |
| .grid-gap { | |
| gap: 1.5rem; | |
| } | |
| </style> | |
| </head> | |
| <body class="bg-white font-sans antialiased"> | |
| <!-- Header --> | |
| <header class="sticky top-0 z-50 bg-white border-b border-gray-100"> | |
| <div class="container mx-auto px-4"> | |
| <div class="flex justify-between items-center py-6"> | |
| <a href="#" class="text-2xl font-bold tracking-tighter text-primary">GALLERY NOIR</a> | |
| <nav class="hidden md:flex space-x-8"> | |
| <a href="#" class="text-sm uppercase tracking-wider hover:text-gray-600">Prints</a> | |
| <a href="#" class="text-sm uppercase tracking-wider hover:text-gray-600">Artists</a> | |
| <a href="#" class="text-sm uppercase tracking-wider hover:text-gray-600">About</a> | |
| <a href="#" class="text-sm uppercase tracking-wider hover:text-gray-600">Contact</a> | |
| </nav> | |
| <div class="flex items-center space-x-4"> | |
| <a href="#" class="relative"> | |
| <i data-feather="shopping-bag" class="text-primary"></i> | |
| <span class="absolute -top-2 -right-2 bg-primary text-white text-xs h-5 w-5 flex items-center justify-center rounded-full">0</span> | |
| </a> | |
| <button class="md:hidden"> | |
| <i data-feather="menu" class="text-primary"></i> | |
| </button> | |
| </div> | |
| </div> | |
| </div> | |
| </header> | |
| <!-- Hero Section --> | |
| <section class="hero-bg relative h-96 flex items-center"> | |
| <div class="absolute inset-0 bg-black bg-opacity-30"></div> | |
| <div class="container mx-auto px-4 relative z-10 text-white"> | |
| <div class="max-w-md"> | |
| <span class="inline-block px-3 py-1 mb-4 text-xs font-mono bg-white text-primary uppercase tracking-widest">Limited Edition</span> | |
| <h1 class="text-4xl md:text-5xl font-bold mb-4">Spring Collection</h1> | |
| <p class="text-lg mb-6">Exclusive fine art prints from emerging contemporary artists</p> | |
| <a href="#" class="inline-block px-6 py-3 bg-primary text-white uppercase text-sm tracking-wider hover:bg-opacity-90 transition">View Collection</a> | |
| </div> | |
| </div> | |
| </section> | |
| <!-- Featured Prints --> | |
| <section class="py-16 container mx-auto px-4"> | |
| <div class="flex justify-between items-center mb-12"> | |
| <h2 class="text-2xl font-bold text-primary">Featured Prints</h2> | |
| <a href="#" class="text-sm uppercase tracking-wider hover:text-gray-600 flex items-center"> | |
| View all | |
| <i data-feather="arrow-right" class="ml-1 w-4 h-4"></i> | |
| </a> | |
| </div> | |
| <div class="grid grid-cols-1 sm:grid-cols-2 lg:grid-cols-3 xl:grid-cols-4 grid-gap"> | |
| <!-- Product 1 --> | |
| <div class="product-hover"> | |
| <div class="mb-4 aspect-square overflow-hidden"> | |
| <img src="http://static.photos/art/640x360/1" alt="Abstract Composition" class="w-full h-full object-cover"> | |
| </div> | |
| <div class="px-2"> | |
| <h3 class="font-bold text-primary mb-1">Abstract Composition</h3> | |
| <p class="text-sm text-gray-600 mb-2">by Lena Schmidt</p> | |
| <div class="flex justify-between items-center"> | |
| <span class="font-bold">$120</span> | |
| <button class="text-xs uppercase tracking-wider border border-primary px-3 py-1 hover:bg-primary hover:text-white transition"> | |
| Add to cart | |
| </button> | |
| </div> | |
| </div> | |
| </div> | |
| <!-- Product 2 --> | |
| <div class="product-hover"> | |
| <div class="mb-4 aspect-square overflow-hidden"> | |
| <img src="http://static.photos/art/640x360/2" alt="Urban Geometry" class="w-full h-full object-cover"> | |
| </div> | |
| <div class="px-2"> | |
| <h3 class="font-bold text-primary mb-1">Urban Geometry</h3> | |
| <p class="text-sm text-gray-600 mb-2">by Marco Vialli</p> | |
| <div class="flex justify-between items-center"> | |
| <span class="font-bold">$95</span> | |
| <button class="text-xs uppercase tracking-wider border border-primary px-3 py-1 hover:bg-primary hover:text-white transition"> | |
| Add to cart | |
| </button> | |
| </div> | |
| </div> | |
| </div> | |
| <!-- Product 3 --> | |
| <div class="product-hover"> | |
| <div class="mb-4 aspect-square overflow-hidden"> | |
| <img src="http://static.photos/art/640x360/3" alt="Silent Waves" class="w-full h-full object-cover"> | |
| </div> | |
| <div class="px-2"> | |
| <h3 class="font-bold text-primary mb-1">Silent Waves</h3> | |
| <p class="text-sm text-gray-600 mb-2">by Sofia Chen</p> | |
| <div class="flex justify-between items-center"> | |
| <span class="font-bold">$150</span> | |
| <button class="text-xs uppercase tracking-wider border border-primary px-3 py-1 hover:bg-primary hover:text-white transition"> | |
| Add to cart | |
| </button> | |
| </div> | |
| </div> | |
| </div> | |
| <!-- Product 4 --> | |
| <div class="product-hover"> | |
| <div class="mb-4 aspect-square overflow-hidden"> | |
| <img src="http://static.photos/art/640x360/4" alt="Monochrome Dreams" class="w-full h-full object-cover"> | |
| </div> | |
| <div class="px-2"> | |
| <h3 class="font-bold text-primary mb-1">Monochrome Dreams</h3> | |
| <p class="text-sm text-gray-600 mb-2">by Erik Johansson</p> | |
| <div class="flex justify-between items-center"> | |
| <span class="font-bold">$110</span> | |
| <button class="text-xs uppercase tracking-wider border border-primary px-3 py-1 hover:bg-primary hover:text-white transition"> | |
| Add to cart | |
| </button> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| </section> | |
| <!-- Call to Action --> | |
| <section class="py-16 bg-secondary"> | |
| <div class="container mx-auto px-4 text-center"> | |
| <h2 class="text-2xl font-bold text-primary mb-4">Handcrafted for Your Space</h2> | |
| <p class="max-w-2xl mx-auto text-gray-600 mb-8">Each print is carefully produced using archival-quality materials to ensure lasting beauty.</p> | |
| <a href="#" class="inline-block px-6 py-3 bg-primary text-white uppercase text-sm tracking-wider hover:bg-opacity-90 transition">Discover Our Process</a> | |
| </div> | |
| </section> | |
| <!-- Footer --> | |
| <footer class="bg-primary text-white py-12"> | |
| <div class="container mx-auto px-4"> | |
| <div class="grid grid-cols-1 md:grid-cols-4 gap-8"> | |
| <div> | |
| <h3 class="text-xl font-bold mb-4">GALLERY NOIR</h3> | |
| <p class="text-sm opacity-80">Curated fine art prints for the modern collector.</p> | |
| </div> | |
| <div> | |
| <h4 class="uppercase text-sm tracking-wider mb-4 opacity-80">Shop</h4> | |
| <ul class="space-y-2"> | |
| <li><a href="#" class="text-sm hover:opacity-80 transition">All Prints</a></li> | |
| <li><a href="#" class="text-sm hover:opacity-80 transition">Collections</a></li> | |
| <li><a href="#" class="text-sm hover:opacity-80 transition">Limited Editions</a></li> | |
| <li><a href="#" class="text-sm hover:opacity-80 transition">Framing Options</a></li> | |
| </ul> | |
| </div> | |
| <div> | |
| <h4 class="uppercase text-sm tracking-wider mb-4 opacity-80">Information</h4> | |
| <ul class="space-y-2"> | |
| <li><a href="#" class="text-sm hover:opacity-80 transition">About Us</a></li> | |
| <li><a href="#" class="text-sm hover:opacity-80 transition">Shipping</a></li> | |
| <li><a href="#" class="text-sm hover:opacity-80 transition">Returns</a></li> | |
| <li><a href="#" class="text-sm hover:opacity-80 transition">FAQ</a></li> | |
| </ul> | |
| </div> | |
| <div> | |
| <h4 class="uppercase text-sm tracking-wider mb-4 opacity-80">Connect</h4> | |
| <div class="flex space-x-4 mb-6"> | |
| <a href="#" class="hover:opacity-80 transition"><i data-feather="instagram"></i></a> | |
| <a href="#" class="hover:opacity-80 transition"><i data-feather="twitter"></i></a> | |
| <a href="#" class="hover:opacity-80 transition"><i data-feather="facebook"></i></a> | |
| <a href="#" class="hover:opacity-80 transition"><i data-feather="mail"></i></a> | |
| </div> | |
| <p class="text-sm opacity-80">Subscribe to our newsletter</p> | |
| </div> | |
| </div> | |
| <div class="border-t border-opacity-20 mt-12 pt-8 flex flex-col md:flex-row justify-between items-center"> | |
| <p class="text-xs opacity-80 mb-4 md:mb-0">© 2023 Gallery Noir. All rights reserved.</p> | |
| <div class="flex space-x-6"> | |
| <a href="#" class="text-xs opacity-80 hover:opacity-100">Privacy Policy</a> | |
| <a href="#" class="text-xs opacity-80 hover:opacity-100">Terms of Service</a> | |
| </div> | |
| </div> | |
| </div> | |
| </footer> | |
| <script> | |
| feather.replace(); | |
| </script> | |
| </body> | |
| </html> | |