Update the header to display the brand logo with larger text and icon

Modify client/src/components/search-header.tsx to increase the size of the brand logo text and icon, and adjust the header height.

Replit-Commit-Author: Agent
Replit-Commit-Session-Id: d7424866-83d1-4486-a212-ac12b4c7becf
Replit-Commit-Checkpoint-Type: full_checkpoint
Replit-Commit-Screenshot-Url: https://storage.googleapis.com/screenshot-production-us-central1/8cc42625-c1f5-4e43-99bd-77f2c4dedee2/d7424866-83d1-4486-a212-ac12b4c7becf/vARX9Jm
This commit is contained in:
sebastjanartic 2025-08-07 10:17:19 +00:00
parent b38f738ca4
commit 2a08563412

View File

@ -25,11 +25,11 @@ export default function SearchHeader({
return (
<div className="bg-bunny-gray/80 backdrop-blur-sm border-b border-gray-700 sticky top-0 z-50">
<div className="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div className="flex items-center justify-between h-16">
<div className="flex items-center justify-between h-20">
<div className="flex items-center space-x-4">
<div className="flex items-center space-x-2">
<Play className="text-bunny-blue text-2xl" />
<h1 className="text-xl font-bold text-bunny-light">g4.video</h1>
<div className="flex items-center space-x-3">
<Play className="text-bunny-blue text-4xl" />
<h1 className="text-4xl font-bold bg-gradient-to-r from-bunny-light to-bunny-blue bg-clip-text text-transparent tracking-wide">g4.video</h1>
</div>
</div>