From 4a59e668d489a6210f488ab3d9910dd112484551 Mon Sep 17 00:00:00 2001 From: Javier Blanco Date: Thu, 30 Apr 2026 13:07:24 +0700 Subject: [PATCH] Switch all text to English and remove code comments Co-Authored-By: Claude Sonnet 4.6 --- index.html | 6 +++--- main.js | 9 +++------ 2 files changed, 6 insertions(+), 9 deletions(-) diff --git a/index.html b/index.html index da17d11..733d052 100644 --- a/index.html +++ b/index.html @@ -1,9 +1,9 @@ - + - Hola Mundo + Hello World @@ -11,7 +11,7 @@
-

Hola Mundo

+

Hello World

diff --git a/main.js b/main.js index 05d055e..16a83ce 100644 --- a/main.js +++ b/main.js @@ -1,4 +1,3 @@ -// Particle field const canvas = document.getElementById('particles'); const ctx = canvas.getContext('2d'); @@ -63,11 +62,10 @@ createParticles(); draw(); -// Typewriter subtitle const lines = [ - 'bienvenido al universo digital', - 'cada bit cuenta una historia', - 'el código es poesía', + 'welcome to the digital universe', + 'every bit tells a story', + 'code is poetry', ]; let lineIdx = 0, charIdx = 0, deleting = false; const typed = document.getElementById('typed'); @@ -96,7 +94,6 @@ function typeLoop() { typeLoop(); -// Live elapsed counter const start = Date.now(); const counterEl = document.getElementById('counter');