From 742a27595856fc8746b349d50304161b851cdb20 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?C=C3=A9dric=20FAMIBELLE-PRONZOLA?= Date: Mon, 13 Jul 2026 21:30:31 +0400 Subject: [PATCH] =?UTF-8?q?fix(hero):=20retire=20l'effet=20machine=20?= =?UTF-8?q?=C3=A0=20=C3=A9crire=20sur=20INTERNATIONALE?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/assets/js/main.js | 18 ------------------ 1 file changed, 18 deletions(-) diff --git a/src/assets/js/main.js b/src/assets/js/main.js index b377819..a95f2e6 100644 --- a/src/assets/js/main.js +++ b/src/assets/js/main.js @@ -277,24 +277,6 @@ function createNetworkLine() { // Initialize network lines createNetworkLine(); -// Dynamic typing effect for hero subtitle -const subtitle = document.querySelector('.hero-subtitle'); -if (subtitle) { - const text = subtitle.textContent; - subtitle.textContent = ''; - let index = 0; - - function typeWriter() { - if (index < text.length) { - subtitle.textContent += text.charAt(index); - index++; - setTimeout(typeWriter, 100); - } - } - - setTimeout(typeWriter, 800); -} - // Add hover effect to project cards with tilt document.querySelectorAll('.project-card, .service-card').forEach(card => { card.addEventListener('mousemove', (e) => {