From 851a865d9b49dceb0c064d319f5f20451005d8d0 Mon Sep 17 00:00:00 2001 From: Hassan Arslan Date: Sun, 14 Jun 2026 14:20:29 +0300 Subject: [PATCH] fix(home): capitalize first letter of every rotating source word MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Meeting / Screen recording / Telegram / WhatsApp / Email — was mixed casing. Width-ghost capitalized to match. Co-Authored-By: Claude Opus 4.8 --- app/components/home-commitment.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/components/home-commitment.tsx b/app/components/home-commitment.tsx index 60d59bb..08719bf 100644 --- a/app/components/home-commitment.tsx +++ b/app/components/home-commitment.tsx @@ -623,7 +623,7 @@ function AppWindow() { /* ----------------------------------------------------- rotating source */ -const HERO_SOURCES = ['meeting', 'screen recording', 'Telegram', 'WhatsApp', 'email'] +const HERO_SOURCES = ['Meeting', 'Screen recording', 'Telegram', 'WhatsApp', 'Email'] function RotatingSource() { const [i, setI] = useState(0) @@ -651,7 +651,7 @@ function RotatingSource() { return ( {/* ghost = longest word; reserves the slot so the line never reflows */} - + {HERO_SOURCES[i]} )