Updated logo size in Logo.tsx

Adjusted logo size mappings to enlarge logotype (small: h-16, default: h-24, large: h-40) to better fit header/footer after PNG yes.

X-Lovable-Edit-ID: edt-81801528-3ad9-4180-aa1e-ae9a7b41e9b1
This commit is contained in:
gpt-engineer-app[bot]
2026-01-27 20:22:51 +00:00
2 changed files with 3 additions and 3 deletions
Binary file not shown.

Before

Width:  |  Height:  |  Size: 23 KiB

After

Width:  |  Height:  |  Size: 961 KiB

+3 -3
View File
@@ -2,9 +2,9 @@ import logoImage from "@/assets/logo.png";
const Logo = ({ className = "", size = "default" }: { className?: string; size?: "small" | "default" | "large" }) => { const Logo = ({ className = "", size = "default" }: { className?: string; size?: "small" | "default" | "large" }) => {
const sizeClasses = { const sizeClasses = {
small: "h-12", small: "h-16",
default: "h-20", default: "h-24",
large: "h-32" large: "h-40"
}; };
return ( return (