rsimplicio/neutral-elegance-explorer
0
1// Main application logic2document.addEventListener('DOMContentLoaded', () => {3 // Initialize any global functionality4 console.log('Application loaded');5 6 // Smooth scroll for anchor links7 document.querySelectorAll('a[href^="#"]').forEach(anchor => {8 anchor.addEventListener('click', function (e) {9 e.preventDefault();10 document.querySelector(this.getAttribute('href')).scrollIntoView({11 behavior: 'smooth'12 });13 });14 });15});