diff --git a/index.html b/index.html index 08f9bfc..7f5ddbe 100644 --- a/index.html +++ b/index.html @@ -2498,13 +2498,12 @@ const id = d.identity; // ── HERO ── - const heroId = `${esc(id.entreprise)} // ${esc(id.titre)} // ${esc((id.contact && id.contact.site) || '')}`; const heroHTML = `
- ${heroId} + Bienvenue sur le CV en ligne de

${esc(id.nom)}${esc(id.prenom)}

@@ -2692,20 +2691,6 @@ }, { threshold: 0.08 }); document.querySelectorAll('section').forEach(s => obs.observe(s)); - // Typing effect hero badge - const badge = document.getElementById('heroId'); - if (badge) { - const txt = badge.textContent; - badge.textContent = ''; - let i = 0; - setTimeout(() => { - const t = setInterval(() => { - badge.textContent = txt.slice(0, i++); - if (i > txt.length) clearInterval(t); - }, 14); - }, 500); - } - // Cacher le loading const ld = document.getElementById('loading'); ld.style.opacity = '0';