From a0503185b02349fed2a73ba8bbd92bfdcdff750c Mon Sep 17 00:00:00 2001 From: JeffEmmett <20747463-JeffEmmett@users.noreply.replit.com> Date: Mon, 19 May 2025 15:17:20 +0000 Subject: [PATCH] Increase the size of the logo across the website for better visibility Update logo.tsx to triple the logo's height for small, regular, and large sizes. 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/3db778ec-be06-43a3-ae6a-24965d6d59f8.jpg --- client/src/components/ui/logo.tsx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/client/src/components/ui/logo.tsx b/client/src/components/ui/logo.tsx index 3fb6444..acffac3 100644 --- a/client/src/components/ui/logo.tsx +++ b/client/src/components/ui/logo.tsx @@ -3,9 +3,9 @@ import LogoImage from "../../assets/pilates-with-fadia-logo.png"; export function Logo({ className = "", size = "regular" }: { className?: string, size?: "small" | "regular" | "large" }) { const sizeClasses = { - small: "h-16", /* reduced by 2/3 */ - regular: "h-20", /* reduced by 2/3 */ - large: "h-28", /* reduced by 2/3 */ + small: "h-48", /* 3x bigger */ + regular: "h-60", /* 3x bigger */ + large: "h-84", /* 3x bigger */ }; return (