undefined / index.html
ValeriaTrade's picture
CHANGE THE COLORS
d492874 verified
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>VALERIQUE | Luxurious Jewelry & Apparel</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: '#5E3023',
secondary: '#895737',
accent: '#B88B4A',
light: '#F5F1E3',
dark: '#2F1B0E'
}
}
}
}
</script>
<script src="https://unpkg.com/feather-icons"></script>
<style>
.product-card:hover .product-overlay {
opacity: 1;
}
.min-h-screen-80 {
min-height: 80vh;
}
</style>
</head>
<body class="bg-light font-serif">
<!-- Header -->
<header class="bg-light shadow-sm py-6">
<div class="max-w-7xl mx-auto px-4 text-center">
<a href="index.html" class="text-3xl font-bold text-primary">VALERIQUE</a>
<div class="mt-4">
<a href="clothing.html" class="text-gray-600 hover:text-primary mx-4">Clothing</a>
<a href="jewelry.html" class="text-gray-600 hover:text-primary mx-4">Jewelry</a>
</div>
</div>
</header>
<!-- Last Viewed Section -->
<div class="min-h-screen-80 flex items-center justify-center bg-light p-4">
<div class="max-w-md w-full mx-auto text-center">
<h1 class="text-2xl text-gray-600 mb-2">You last viewed</h1>
<div class="bg-light rounded-lg shadow-md overflow-hidden">
<img src="http://static.photos/jewelry/640x360/1" alt="Last Viewed Product" class="w-full h-64 object-cover">
<div class="p-4">
<h2 class="text-xl font-bold text-gray-800 mb-1">Eternal Gold Necklace</h2>
<p class="text-primary font-bold text-lg mb-4">£295 <span class="text-gray-400 line-through text-sm ml-2">£350</span></p>
<div class="flex space-x-3 justify-center">
<a href="product.html" class="bg-primary text-white px-6 py-2 rounded-full font-medium hover:bg-opacity-90 transition">View Product</a>
<button class="bg-black text-white px-6 py-2 rounded-full font-medium hover:bg-opacity-90 transition">Buy Now</button>
</div>
<p class="text-xs text-gray-500 mt-2">Only 2 left in stock</p>
</div>
</div>
</div>
</div>
<!-- Footer -->
<footer class="bg-dark text-light py-8 px-4">
<div class="max-w-7xl mx-auto text-center">
<div class="flex justify-center space-x-6">
<a href="terms.html" class="text-gray-400 hover:text-white transition">Terms & Conditions</a>
<a href="privacy.html" class="text-gray-400 hover:text-white transition">Privacy Policy</a>
<a href="contact.html" class="text-gray-400 hover:text-white transition">Contact Us</a>
</div>
<p class="text-gray-400 mt-4">© 2023 VALERIA TRADE LTD</p>
</div>
</footer>
<script src="https://unpkg.com/feather-icons"></script>
<script>
feather.replace();
</script>
</body>
</html>