document.addEventListener("DOMContentLoaded", function() {
const arrow = document.querySelector(".nectar_icon_wrap .nectar_icon i.fa-angle-down");
if(arrow) {
arrow.addEventListener("click", function(e) {
e.preventDefault(); // blocca il comportamento predefinito del link
const target = document.querySelector("#meet-me");
if(target) {
target.scrollIntoView({ behavior: "smooth" });
}
});
}
});Skip to main content