undefined / products.html
Glaski's picture
add info on the about me page
3ca5608 verified
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Products | WonderDrop Elixirs</title>
<link rel="icon" type="image/x-icon" href="/static/favicon.ico">
<script src="https://cdn.tailwindcss.com"></script>
<script src="https://unpkg.com/feather-icons"></script>
<style>
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700&family=Poppins:wght@300;400;600&display=swap');
.product-card:hover .product-overlay {
opacity: 1;
transform: translateY(0);
}
</style>
</head>
<body class="font-sans bg-emerald-50 text-slate-800">
<!-- Navigation -->
<nav class="bg-white bg-opacity-80 backdrop-blur-md fixed w-full z-50 shadow-sm">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="flex justify-between h-20 items-center">
<div class="flex items-center">
<a href="index.html" class="flex-shrink-0 flex items-center">
<i data-feather="droplet" class="text-emerald-500 w-8 h-8"></i>
<span class="ml-2 text-xl font-serif font-bold text-slate-800">WonderDrop</span>
</a>
</div>
<div class="hidden md:block">
<div class="ml-10 flex items-center space-x-8">
<a href="products.html" class="text-emerald-600 font-medium hover:text-emerald-800 transition">Products</a>
<a href="ingredients.html" class="text-slate-600 hover:text-emerald-600 transition">Ingredients</a>
<a href="science.html" class="text-slate-600 hover:text-emerald-600 transition">Science</a>
<a href="about.html" class="text-slate-600 hover:text-emerald-600 transition">About</a>
<a href="journal.html" class="text-slate-600 hover:text-emerald-600 transition">Journal</a>
</div>
</div>
<div class="flex items-center space-x-4">
<button class="p-2 rounded-full hover:bg-emerald-50 text-slate-600 hover:text-emerald-600 transition">
<i data-feather="search" class="w-5 h-5"></i>
</button>
<button class="p-2 rounded-full hover:bg-emerald-50 text-slate-600 hover:text-emerald-600 transition">
<i data-feather="shopping-bag" class="w-5 h-5"></i>
</button>
<button class="md:hidden p-2 rounded-full hover:bg-emerald-50 text-slate-600 hover:text-emerald-600 transition">
<i data-feather="menu" class="w-5 h-5"></i>
</button>
</div>
</div>
</div>
</nav>
<!-- Product Collection -->
<section class="pt-32 pb-20">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8 mb-16">
<div class="bg-white p-8 rounded-xl shadow-md">
<h2 class="text-2xl font-serif font-bold text-slate-800 mb-4">Product Information</h2>
<div class="grid md:grid-cols-2 gap-8">
<div>
<h3 class="text-lg font-medium text-slate-800 mb-3">How to Use Our Products</h3>
<ol class="list-decimal list-inside space-y-2 text-slate-600">
<li>Start with clean, dry skin</li>
<li>Apply products from thinnest to thickest consistency</li>
<li>Use gentle upward motions</li>
<li>Allow each product to absorb before applying the next</li>
<li>Finish with sunscreen in the morning</li>
</ol>
</div>
<div>
<h3 class="text-lg font-medium text-slate-800 mb-3">Key Benefits</h3>
<ul class="list-disc list-inside space-y-2 text-slate-600">
<li>Clean, vegan formulations</li>
<li>Clinically proven effectiveness</li>
<li>Sustainable sourcing</li>
<li>Cruelty-free testing</li>
<li>Recyclable packaging</li>
</ul>
</div>
</div>
</div>
</div>
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="text-center mb-16">
<h1 class="text-4xl md:text-5xl font-serif font-bold text-slate-800 mb-4">Our Formulations</h1>
<p class="max-w-2xl mx-auto text-slate-600">Each product is a harmonious blend of nature's wisdom and scientific precision.</p>
</div>
<div class="grid md:grid-cols-2 lg:grid-cols-3 gap-8">
<!-- Product cards would be repeated from index.html with more products -->
</div>
</div>
</section>
<!-- Footer would be repeated from index.html -->
<script>
feather.replace();
</script>
</body>
</html>