35044-vm/assets/js/main.js
Flatlogic Bot 3aad7fe5c1 1.0
2025-10-18 13:11:52 +00:00

14 lines
447 B
JavaScript

// For future interactivity
document.addEventListener('DOMContentLoaded', function () {
// Example: Smooth scrolling for anchor links
document.querySelectorAll('a[href^="#"]').forEach(anchor => {
anchor.addEventListener('click', function (e) {
e.preventDefault();
document.querySelector(this.getAttribute('href')).scrollIntoView({
behavior: 'smooth'
});
});
});
});