Spaces:
Running
Running
| <html lang="en"> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
| <title>VALERIQUE | Jewelry Collection</title> | |
| <link rel="icon" type="image/x-icon" href="/favicon.ico"> | |
| <script src="https://cdn.tailwindcss.com"></script> | |
| <script> | |
| tailwind.config = { | |
| theme: { | |
| extend: { | |
| colors: { | |
| primary: '#b38b6d', | |
| secondary: '#e8d5c0', | |
| dark: '#1a1a1a', | |
| light: '#f8f8f8' | |
| } | |
| } | |
| } | |
| } | |
| </script> | |
| <script src="https://unpkg.com/feather-icons"></script> | |
| <style> | |
| .jewelry-card:hover .jewelry-overlay { | |
| opacity: 1; | |
| transform: translateY(0); | |
| } | |
| </style> | |
| </head> | |
| <body class="bg-gray-50 font-serif"> | |
| <!-- Header --> | |
| <header class="bg-white shadow-sm py-4"> | |
| <div class="max-w-7xl mx-auto px-4 flex justify-between items-center"> | |
| <a href="index.html" class="text-2xl font-bold text-primary">VALERIQUE</a> | |
| <div class="flex items-center space-x-4"> | |
| <a href="clothing.html" class="text-gray-600 hover:text-primary">Clothing</a> | |
| <a href="jewelry.html" class="text-primary font-medium">Jewelry</a> | |
| <a href="contact.html" class="text-gray-600 hover:text-primary">Contact</a> | |
| <a href="#" class="text-gray-600 hover:text-primary"><i data-feather="shopping-bag"></i></a> | |
| </div> | |
| </div> | |
| </header> | |
| <!-- Jewelry Collection --> | |
| <main class="max-w-7xl mx-auto px-4 py-12"> | |
| <h1 class="text-3xl font-bold text-center text-gray-800 mb-2">Jewelry Collection</h1> | |
| <p class="text-center text-gray-600 mb-12">Timeless pieces crafted with precious materials</p> | |
| <div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-8"> | |
| <!-- Jewelry Item 1 --> | |
| <div class="jewelry-card relative bg-white rounded-lg overflow-hidden shadow-md"> | |
| <img src="http://static.photos/jewelry/640x360/301" alt="Gold Necklace" class="w-full h-80 object-cover"> | |
| <div class="jewelry-overlay absolute inset-0 bg-black bg-opacity-50 flex items-center justify-center opacity-0 transform translate-y-4 transition duration-300"> | |
| <div class="text-center p-4"> | |
| <h3 class="text-white text-xl font-bold mb-2">Eternal Gold Necklace</h3> | |
| <p class="text-secondary mb-4">18k gold with diamond accents</p> | |
| <p class="text-primary font-bold text-lg mb-4">£1,295</p> | |
| <button class="bg-primary text-white px-6 py-2 rounded-full font-medium hover:bg-opacity-90 transition">View Details</button> | |
| </div> | |
| </div> | |
| <div class="p-4"> | |
| <h3 class="font-bold text-lg mb-1">Eternal Gold Necklace</h3> | |
| <p class="text-primary font-bold">£1,295</p> | |
| </div> | |
| </div> | |
| <!-- Jewelry Item 2 --> | |
| <div class="jewelry-card relative bg-white rounded-lg overflow-hidden shadow-md"> | |
| <img src="http://static.photos/jewelry/640x360/302" alt="Diamond Ring" class="w-full h-80 object-cover"> | |
| <div class="jewelry-overlay absolute inset-0 bg-black bg-opacity-50 flex items-center justify-center opacity-0 transform translate-y-4 transition duration-300"> | |
| <div class="text-center p-4"> | |
| <h3 class="text-white text-xl font-bold mb-2">Solitaire Diamond Ring</h3> | |
| <p class="text-secondary mb-4">1.5 carat center diamond</p> | |
| <p class="text-primary font-bold text-lg mb-4">£3,850</p> | |
| <button class="bg-primary text-white px-6 py-2 rounded-full font-medium hover:bg-opacity-90 transition">View Details</button> | |
| </div> | |
| </div> | |
| <div class="p-4"> | |
| <h3 class="font-bold text-lg mb-1">Solitaire Diamond Ring</h3> | |
| <p class="text-primary font-bold">£3,850</p> | |
| </div> | |
| </div> | |
| <!-- Jewelry Item 3 --> | |
| <div class="jewelry-card relative bg-white rounded-lg overflow-hidden shadow-md"> | |
| <img src="http://static.photos/jewelry/640x360/303" alt="Pearl Earrings" class="w-full h-80 object-cover"> | |
| <div class="jewelry-overlay absolute inset-0 bg-black bg-opacity-50 flex items-center justify-center opacity-0 transform translate-y-4 transition duration-300"> | |
| <div class="text-center p-4"> | |
| <h3 class="text-white text-xl font-bold mb-2">South Sea Pearl Earrings</h3> | |
| <p class="text-secondary mb-4">14mm golden South Sea pearls</p> | |
| <p class="text-primary font-bold text-lg mb-4">£2,200</p> | |
| <button class="bg-primary text-white px-6 py-2 rounded-full font-medium hover:bg-opacity-90 transition">View Details</button> | |
| </div> | |
| </div> | |
| <div class="p-4"> | |
| <h3 class="font-bold text-lg mb-1">South Sea Pearl Earrings</h3> | |
| <p class="text-primary font-bold">£2,200</p> | |
| </div> | |
| </div> | |
| </div> | |
| </main> | |
| <!-- Footer --> | |
| <footer class="bg-white border-t border-gray-200 py-8 px-4"> | |
| <div class="max-w-7xl mx-auto text-center"> | |
| <p class="text-gray-600 mb-4">© 2023 VALERIA TRADE LTD. All rights reserved.</p> | |
| <div class="flex justify-center space-x-6"> | |
| <a href="terms.html" class="text-gray-500 hover:text-primary">Terms</a> | |
| <a href="privacy.html" class="text-gray-500 hover:text-primary">Privacy</a> | |
| <a href="contact.html" class="text-gray-500 hover:text-primary">Contact</a> | |
| </div> | |
| </div> | |
| </footer> | |
| <script src="https://unpkg.com/feather-icons"></script> | |
| <script> | |
| feather.replace(); | |
| </script> | |
| </body> | |
| </html> |