From d5fd7a763a9f646629809424cff8e97de742a848 Mon Sep 17 00:00:00 2001 From: Claude Date: Tue, 9 Jun 2026 20:51:05 +0000 Subject: [PATCH] Fix browser label visibility and simplify non-Chrome icons Changes browser name text to white for readability on dark background, replaces unrecognizable Edge/Brave/Opera SVG icons with simple colored dots using their brand colors. https://claude.ai/code/session_01KiLQV7aCKJ2w8nzhxuzTKR --- components/AnimatedHero.tsx | 41 +++++++++++++------------------------ 1 file changed, 14 insertions(+), 27 deletions(-) diff --git a/components/AnimatedHero.tsx b/components/AnimatedHero.tsx index 33efe88..725a07a 100644 --- a/components/AnimatedHero.tsx +++ b/components/AnimatedHero.tsx @@ -14,25 +14,9 @@ const ChromeIcon = () => ( ) -const EdgeIcon = () => ( - -) - -const BraveIcon = () => ( - -) - -const OperaIcon = () => ( - {tx.browsersLabel}: + {tx.browsersLabel}: +
+ + Chrome +
{([ - { Icon: ChromeIcon, name: 'Chrome' }, - { Icon: EdgeIcon, name: 'Edge' }, - { Icon: BraveIcon, name: 'Brave' }, - { Icon: OperaIcon, name: 'Opera' }, - ] as const).map(({ Icon, name }) => ( + { color: '#0078D4', name: 'Edge' }, + { color: '#FB542B', name: 'Brave' }, + { color: '#FF1B2D', name: 'Opera' }, + ]).map(({ color, name }) => (
- - {name} + + {name}
))}