File size: 1,416 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>Journal | 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 -->

    <!-- Journal 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">The WonderDrop Journal</h1>
            <p class="text-xl max-w-3xl mx-auto">
                Insights on skincare science, sustainability, and wellness.
            </p>
        </div>
    </section>

    <!-- Articles Grid -->
    <section class="py-20">
        <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
            <!-- Blog/journal articles would go here -->
        </div>
    </section>

    <!-- Footer would be repeated -->

    <script>
        feather.replace();
    </script>
</body>
</html>