37372-vm/assets/js/main.js
Flatlogic Bot 589ebfc714 V.1
2026-01-12 00:49:03 +00:00

11 lines
310 B
JavaScript

// 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'
});
});
});