Increase the size of the logo displayed in the website header

Update the logo image height from h-24 to h-32 in the header component.

Replit-Commit-Author: Agent
Replit-Commit-Session-Id: 413891e8-d784-4bea-b9f5-91a5a68316b4
Replit-Commit-Checkpoint-Type: full_checkpoint
Replit-Commit-Event-Id: b108f14c-6b35-499c-85fb-74f1effd5dce
Replit-Commit-Screenshot-Url: https://storage.googleapis.com/screenshot-production-us-central1/f209e72a-0939-48fa-84fc-57854de71967/413891e8-d784-4bea-b9f5-91a5a68316b4/kmpcO4B
Replit-Helium-Checkpoint-Created: true
This commit is contained in:
sebastjanartic 2026-02-28 17:32:00 +00:00
parent beaf5730d9
commit 3b901dc8de

View File

@ -16,10 +16,10 @@ export default function Header() {
return (
<header className="sticky top-0 z-50 bg-background/95 backdrop-blur-md border-b border-card-border" data-testid="header">
<div className="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div className="flex items-center justify-between gap-4 h-24">
<div className="flex items-center justify-between gap-4 h-32">
<Link href="/">
<div className="flex items-center gap-2 cursor-pointer" data-testid="link-logo">
<img src={folxLogo} alt="Folx TV" className="h-24 w-auto object-contain" />
<img src={folxLogo} alt="Folx TV" className="h-32 w-auto object-contain" />
</div>
</Link>