File size: 11,640 Bytes
a1327a4 85eda69 |
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 |
<!DOCTYPE html>
<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>
|