You are now a premium member

Welcome to the Premium Experience

We're thrilled to have you!

Your plan:

Premium Membership

Tier Preview

Monthly Yearly
    <div id="planDetails" class="plan-details">
        <!-- Default Monthly Plan Details -->
        <div id="monthlyPlan" class="plan active">
            <h4>Premium</h4>
            <h2>$2.99<span>/month</span></h2>
            <p><span class="highlight">60 days free</span></p>
            <p>Upgrade to premium for only 70¢ a week and get your 2 months free trial today!</p>
            <ul>
                <li>✔ Everything in Free</li>
                <li>✔ Full access to all posts</li>
                <li>✔ Internal commenting</li>
                <li>✔ Receive exclusive content via email</li>
                <li>✔ Can be cancelled monthly</li>
            </ul>
        </div>

        <!-- Yearly Plan Details -->
        <div id="yearlyPlan" class="plan">
            <h4>Premium</h4>
            <h2>$50<span>/year</span></h2>
            <p><span class="highlight">60 days free</span></p>
            <p>Upgrade to premium for only 70¢ a week and get your 2 months free trial today!</p>
            <ul>
                <li>✔ Everything in Free</li>
                <li>✔ Full access to all posts</li>
                <li>✔ Internal commenting</li>
                <li>✔ Receive exclusive content via email</li>
                <li>✔ Can be cancelled monthly</li>
            </ul>
        </div>
    </div>

    <!-- Display the Selected Plan -->
    <div id="selectedPlan">
        <h3>You selected the <span id="planText">Monthly</span> plan.</h3>
    </div>
</div>

<script>
    let selectedPlan = 'monthly'; // Default plan

    function togglePlan(plan) {
        // Set selected plan
        selectedPlan = plan;

        // Update the UI
        document.getElementById('planText').innerText = plan === 'monthly' ? 'Monthly' : 'Yearly';
        
        // Toggle active class
        document.getElementById('monthlyToggle').classList.toggle('active', plan === 'monthly');
        document.getElementById('yearlyToggle').classList.toggle('active', plan === 'yearly');

        // Show corresponding plan details
        document.getElementById('monthlyPlan').classList.toggle('active', plan === 'monthly');
        document.getElementById('yearlyPlan').classList.toggle('active', plan === 'yearly');
    }
</script>


Dear {first_name},

Welcome to the Sunny Side UP Premium, where we’re excited to bring you the very best of what we have to offer!

You’ve just unlocked a whole new level of curated content, thoughtful insights, and special perks designed exclusively for members like you. We’re truly honored to have you join our growing community of passionate readers.


Here’s what you can expect as a Premium Member:

  • Exclusive Content: Be the first to dive into insightful articles, in-depth reports, and unique perspectives crafted just for you.
  • Member-Only Perks: Special events, offers and more
  • A Personalized Experience: Your membership allows us to tailor content that resonates most with your interests, giving you exactly what you love to read.

We'd love to hear from you!

Your journey matters to us. If you have any feedback, questions, or just want to say hello, our inbox (the-sunny-side-up-1@ghost.io) is always open. Let’s make this journey even more meaningful together!


Stay Connected

Don’t forget to check your inbox regularly for your exclusive newsletters, and be sure to follow us on

Instagram: TheSSU2024

LinkedIn: The(SSU)Sunny Side UP

for some additional content.


Thank you for signing up to Premium. :)