fix: Increase logo sizes significantly

New sizes:
- Header: 48px (mobile) → 56px (desktop) [was 32-36px]
- Footer: 48px [was 40px]
- Login/Register: 64px [was 48px]

Logo is now much more prominent and visible
This commit is contained in:
yves.gugger
2025-12-08 10:48:34 +01:00
parent 48368fe026
commit 013758c404
4 changed files with 12 additions and 12 deletions

View File

@ -13,9 +13,9 @@ function Logo() {
<Image <Image
src="/pounce-logo.png" src="/pounce-logo.png"
alt="pounce" alt="pounce"
width={48} width={64}
height={48} height={64}
className="w-12 h-12" className="w-16 h-16"
/> />
) )
} }

View File

@ -13,9 +13,9 @@ function Logo() {
<Image <Image
src="/pounce-logo.png" src="/pounce-logo.png"
alt="pounce" alt="pounce"
width={48} width={64}
height={48} height={64}
className="w-12 h-12" className="w-16 h-16"
/> />
) )
} }

View File

@ -13,9 +13,9 @@ export function Footer() {
<Image <Image
src="/pounce-logo.png" src="/pounce-logo.png"
alt="pounce" alt="pounce"
width={40} width={48}
height={40} height={48}
className="w-10 h-10" className="w-12 h-12"
/> />
</div> </div>
<p className="text-body-sm text-foreground-muted mb-4 max-w-xs"> <p className="text-body-sm text-foreground-muted mb-4 max-w-xs">

View File

@ -13,9 +13,9 @@ function Logo() {
<Image <Image
src="/pounce-logo.png" src="/pounce-logo.png"
alt="pounce" alt="pounce"
width={36} width={56}
height={36} height={56}
className="w-8 h-8 sm:w-9 sm:h-9 object-contain" className="w-12 h-12 sm:w-14 sm:h-14 object-contain"
priority priority
/> />
</div> </div>