/** * @file app/components/layout/Header.tsx * @description Server component header arranging mobile logo, responsive search bar glued to the logo on mobile, and user badge. */ import BrandLogo from "./BrandLogo"; import SearchBar from "../ui/SearchBar"; import UserBadge from "./UserBadge"; /** * Renders the primary application header navigation bar, containing the responsive brand logo, search input, and user profile badge. * * @returns {JSX.Element} The rendered top header navigation component. */ export default function Header() { return (
{/* Left Sidebar: Logo & Search Bar */}
{/* Right-hand side: User Badge */}
); }