undefined / about.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>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>