Privacy Policy

Your privacy is important to us.

Information We Collect

We collect email addresses for newsletters and account creation.

How We Use Information

To provide services, send updates, and improve our site.

Data Security

We use encryption and secure servers to protect your data.

Contact Us

Email: privacy@modhive.com

⚙️
sidenav.classList.toggle('active'); } function toggleTheme() { const body = document.body; const themeBtn = document.getElementById('themeToggle'); const sunSVG = ''; const moonSVG = ''; if (body.classList.contains('dark-theme')) { body.classList.remove('dark-theme'); body.classList.add('light-theme'); themeBtn.innerHTML = moonSVG; localStorage.setItem('theme','light'); } else { body.classList.remove('light-theme'); body.classList.add('dark-theme'); themeBtn.innerHTML = sunSVG; localStorage.setItem('theme','dark'); } } window.addEventListener('DOMContentLoaded', function(){ const saved = localStorage.getItem('theme'); const themeBtn = document.getElementById('themeToggle'); const sunSVG = ''; const moonSVG = ''; if (saved === 'dark') { document.body.classList.add('dark-theme'); themeBtn.innerHTML = sunSVG; } else { document.body.classList.add('light-theme'); themeBtn.innerHTML = moonSVG; } });