File size: 1,415 Bytes
3ca5608 |
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 |
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>About | 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');
</style>
</head>
<body class="font-sans bg-emerald-50 text-slate-800">
<!-- Navigation would be same -->
<!-- About Hero -->
<section class="pt-32 pb-20 bg-gradient-to-r from-emerald-500 to-teal-400 text-white">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8 text-center">
<h1 class="text-4xl md:text-5xl font-serif font-bold mb-6">Our Story</h1>
<p class="text-xl max-w-3xl mx-auto">
Born from a passion for both nature and science, WonderDrop is redefining skincare.
</p>
</div>
</section>
<!-- Story Section -->
<section class="py-20">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<!-- About content would go here -->
</div>
</section>
<!-- Footer would be repeated -->
<script>
feather.replace();
</script>
</body>
</html> |