Reduce the size of logos throughout the Pilates With Fadia website

Reduces the size of the logos in `footer.tsx` and `logo.tsx` components by 20%.

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/689d1577-05ed-474d-ab2c-ff6f6b771ea5.jpg
This commit is contained in:
JeffEmmett 2025-05-19 19:38:37 +00:00
parent 771182224d
commit 6b9b4654ed
2 changed files with 4 additions and 4 deletions

View File

@ -13,7 +13,7 @@ export default function Footer() {
<img
src={SquareLogo}
alt="Pilates with Fadia"
className="h-96 mb-4"
className="h-80 mb-4"
style={{ filter: "brightness(1.1)" }}
/>
<p className="text-white text-opacity-80 mb-4">

View File

@ -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-24", /* twice the size */
regular: "h-32", /* twice the size */
large: "h-40", /* twice the size */
small: "h-20", /* reduced by 20% */
regular: "h-24", /* reduced by 20% */
large: "h-32", /* reduced by 20% */
};
return (