Calvinzulu/deepsite-explorer
0
1// Handle theme toggle if needed2document.addEventListener('DOMContentLoaded', () => {3 // Smooth scrolling for anchor links4 document.querySelectorAll('a[href^="#"]').forEach(anchor => {5 anchor.addEventListener('click', function (e) {6 e.preventDefault();7 document.querySelector(this.getAttribute('href')).scrollIntoView({8 behavior: 'smooth'9 });10 });11 });12 13 // Add any other global JavaScript functionality here14});