// Main JavaScript file for future enhancements
|
|
|
|
// Example: Smooth scroll for navigation links
|
|
document.querySelectorAll('nav a').forEach(link => {
|
|
link.addEventListener('click', function(e) {
|
|
e.preventDefault();
|
|
document.querySelector(this.getAttribute('href')).scrollIntoView({ behavior: 'smooth' });
|
|
});
|
|
}); |