Nandu Ashok

I am a 16 year old Solopreneur and a Notion Certified Creator creating Notion based systems for individuals to help them live a happier and productive life.

Courses

No items found.
script> document.addEventListener("DOMContentLoaded", function () { const modalShown = sessionStorage.getItem('modalShown'); document.querySelectorAll('.template-card').forEach(item => { item.addEventListener('click', function (e) { e.preventDefault(); const url = this.getAttribute('data-url'); const modal = document.getElementById('templateModal'); if (!modal) { console.error("Modal not found"); return; } if (!modalShown) { sessionStorage.setItem('modalShown', 'true'); modal.classList.add('active'); setTimeout(() => { modal.classList.remove('active'); window.open(url, '_blank'); }, 3000); } else { window.open(url, '_blank'); } }); }); });