Update video platform branding and visual appearance

Refactor SearchHeader component in client/src/components/search-header.tsx to update the application's logo and branding, including changes to the background color, logo icon size and color, and heading text styling.

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/39jWxJw
This commit is contained in:
sebastjanartic 2025-08-07 11:35:06 +00:00
parent ae3fea9c82
commit a5e8c09b69

View File

@ -23,13 +23,15 @@ 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="bg-bunny-gray 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-20">
<div className="flex items-center space-x-4">
<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 className="w-10 h-10 bg-bunny-blue rounded-lg flex items-center justify-center">
<Play className="text-white text-xl" />
</div>
<h1 className="text-3xl font-bold text-white tracking-wide">g4.video</h1>
</div>
</div>