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 (