Sponsorship Packages

Get your digital product, startup, Notion template, or tool in front of a growing audience of passionate Notion users, no-coders, and productivity nerds.

• 7k+ email subscribers, 40%+ open rate
• 3k+/mo page views

Newsletter Sponsor $250

Featured in an issue of our newsletter, in both a banner at the top and a dedicated section at the bottom. 4 spots available per month.

Website Sponsor $150

Featured on our website for one month, in the homepage hero section and the footer of every page.
3 spots available per month.

Newsletter + Website Sponsor $300

Featured in one issue of our newsletter and our website for one month.

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'); } }); }); });