From 7cc397fd1c97d1bc35a1db93440017b73697d462 Mon Sep 17 00:00:00 2001 From: jmartin Date: Fri, 24 Jul 2026 10:31:46 -0400 Subject: [PATCH] Increase hero logo to 120px --- client/src/pages/HomePage.scss | 4 ++-- client/src/pages/HomePage.tsx | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/client/src/pages/HomePage.scss b/client/src/pages/HomePage.scss index 1c9a56e..b17fdca 100644 --- a/client/src/pages/HomePage.scss +++ b/client/src/pages/HomePage.scss @@ -13,8 +13,8 @@ } &__logo { - width: 96px; - height: 96px; + width: 120px; + height: 120px; object-fit: contain; border-radius: 16px; background: #000; diff --git a/client/src/pages/HomePage.tsx b/client/src/pages/HomePage.tsx index 1d2ad5e..6551599 100644 --- a/client/src/pages/HomePage.tsx +++ b/client/src/pages/HomePage.tsx @@ -34,8 +34,8 @@ export function HomePage() { src="/logo.png" alt="jmartgraphix" className="home-hero__logo" - width={96} - height={96} + width={120} + height={120} decoding="async" />

jmartgraphix