📁 last Posts

Latest Posts

Healthy Snacks
Store-bought protein bars solve convenience but rarely solve cost, ingredient quality, or flavor fatigue — the same three flavors on repeat,...
Healthy Snacks Best Fat Loss Snacks Under 100 Calories for Meal Plans
Snacks under 100 calories have a reputation for being sad — a few almonds, a rice cake, something that leaves you exactly as hungry as befor...
Meal Prep Ideas Cheap Healthy Meal Prep Ideas for Beginners
Meal prep gets marketed with expensive protein powders, specialty containers, and ingredients that cost more per week than eating out. That...
// Blog CTA Close Functionality document.addEventListener('DOMContentLoaded', function() { // Check if CTA box exists on the page const ctaBox = document.querySelector('.blog-cta-box'); const ctaCloseBtn = document.querySelector('.cta-close'); if (ctaCloseBtn && ctaBox) { ctaCloseBtn.addEventListener('click', function() { ctaBox.style.opacity = '0'; ctaBox.style.transform = 'translateY(-20px)'; setTimeout(function() { ctaBox.style.display = 'none'; }, 300); }); } // Optional: Local storage to show CTA less frequently const ctaDismissed = localStorage.getItem('blogCtaDismissed'); if (ctaDismissed && ctaBox) { // If dismissed in last 7 days, don't show const dismissTime = parseInt(ctaDismissed); const oneWeek = 7 * 24 * 60 * 60 * 1000; if (Date.now() - dismissTime < oneWeek) { ctaBox.style.display = 'none'; } } // Update local storage when closed if (ctaCloseBtn) { ctaCloseBtn.addEventListener('click', function() { localStorage.setItem('blogCtaDismissed', Date.now().toString()); }); } });