14 lines
400 B
JavaScript
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'
|
|
});
|
|
});
|
|
}
|
|
});
|