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
This commit is contained in:
JeffEmmett 2025-05-19 15:17:20 +00:00
parent 50481d75fe
commit a0503185b0
1 changed files with 3 additions and 3 deletions

View File

@ -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 (