36352-vm/assets/js/main.js
Flatlogic Bot 4359789531 t1
2025-11-27 08:44:48 +00:00

14 lines
400 B
JavaScript

document.addEventListener('DOMContentLoaded', function() {
// Smooth scroll for hero button
const heroBtn = document.querySelector('.hero .btn');
if (heroBtn) {
heroBtn.addEventListener('click', function(e) {
e.preventDefault();
document.querySelector('#features').scrollIntoView({
behavior: 'smooth'
});
});
}
});