undefined Resultados
// --- Scroll fluide pour une navigation agréable ---
document.querySelectorAll('a[href^="#"]').forEach(anchor => {
anchor.addEventListener("click", function(e) {
e.preventDefault();
const target = document.querySelector(this.getAttribute("href"));
if (target) target.scrollIntoView({ behavior: "smooth" });
});
});
// --- Google Analytics 4 (remplacer ID par le vôtre) ---
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-XXXXXXXXXX'); // Remplacez par votre ID GA4
// --- Suivi de conversion Google Ads (facultatif) ---
function trackConversion() {
gtag('event', 'conversion', {'send_to': 'AW-CONVERSION-ID/XXXX'});
}