34426-vm/assets/js/main.js
Flatlogic Bot f91f85b999 Version 1
2025-09-27 06:06:22 +00:00

13 lines
401 B
JavaScript

document.addEventListener('DOMContentLoaded', function() {
const getStartedBtn = document.querySelector('.get-started-btn');
if (getStartedBtn) {
getStartedBtn.addEventListener('click', function(e) {
e.preventDefault();
document.querySelector(this.getAttribute('href')).scrollIntoView({
behavior: 'smooth'
});
});
}
});