Privacy Mode: Minimal Tracking
🛡️ Privacy Score: 100%
🔒 GDPR Compliant by Default

Privacy-First Demo

Experience truly optional tracking. Your privacy is protected by default,
with enhanced features available only when you choose to enable them.

🎯 How It Works

This demo shows how modern websites can respect your privacy while still providing great experiences:

🔒
Default: Privacy Protected
Only essential cookies, anonymized analytics
📊
Optional: Enhanced Tracking
Detailed analytics, personalization when you opt-in
🎚️
Full Control
Toggle anytime with the button below
🍪
Smart Cookie Management
Automatic cleanup when disabled

Try it out! Click the colorful button in the bottom-right corner to see the consent flow in action. 👇

🎉
73% of our users choose privacy mode
Join thousands who enjoy a tracking-free experience!

💡 Want to use this in your project?
View source code and documentation at kode.naiv.no/olemd/gdpr

🚀 How Simple Is GDPR Compliance?

This entire consent system is just ~100 lines of JavaScript!

// Complete GDPR compliance in 3 simple steps:

1. Default to minimal tracking
   if (!hasConsent()) { 
     disableTracking(); 
   }

2. Ask for consent (optional)
   showConsentModal();

3. Respect the choice
   if (userSaidYes) { 
     enableTracking(); 
   }

// That's it! 🎉

Key insight: Privacy-first doesn't mean complex. It means defaulting to the right thing.