From 771182224d7dc1edca390a052b0dd48c875d6d4e Mon Sep 17 00:00:00 2001
From: JeffEmmett <20747463-JeffEmmett@users.noreply.replit.com>
Date: Mon, 19 May 2025 19:36:16 +0000
Subject: [PATCH] Increase the size of logos to improve visibility across the
entire website
Doubles the height of logos in Footer and Logo components by updating h- classes in footer.tsx and logo.tsx.
Replit-Commit-Author: Agent
Replit-Commit-Session-Id: 88cd88e4-2dbe-4df6-8c8a-7e38f13ef1ec
Replit-Commit-Screenshot-Url: https://storage.googleapis.com/screenshot-production-us-central1/af8dabca-e746-4e53-9c29-d8d4d9cf30f5/993fa8d5-f9b3-4361-9496-3dc7ccf8ce27.jpg
---
client/src/components/navigation/footer.tsx | 2 +-
client/src/components/ui/logo.tsx | 6 +++---
2 files changed, 4 insertions(+), 4 deletions(-)
diff --git a/client/src/components/navigation/footer.tsx b/client/src/components/navigation/footer.tsx
index d8bbc6b..4dba19c 100644
--- a/client/src/components/navigation/footer.tsx
+++ b/client/src/components/navigation/footer.tsx
@@ -13,7 +13,7 @@ export default function Footer() {
diff --git a/client/src/components/ui/logo.tsx b/client/src/components/ui/logo.tsx index a5dbc01..ecb9afb 100644 --- a/client/src/components/ui/logo.tsx +++ b/client/src/components/ui/logo.tsx @@ -3,9 +3,9 @@ import LogoImage from "../../assets/rectangular-logo.png"; export function Logo({ className = "", size = "regular" }: { className?: string, size?: "small" | "regular" | "large" }) { const sizeClasses = { - small: "h-12", /* reduced size */ - regular: "h-16", /* reduced size */ - large: "h-20", /* reduced size */ + small: "h-24", /* twice the size */ + regular: "h-32", /* twice the size */ + large: "h-40", /* twice the size */ }; return (