Files
lcbp3/frontend/components/layout/header.tsx
T
admin d4f0d02c62
CI / CD Pipeline / build (push) Failing after 4m18s
CI / CD Pipeline / deploy (push) Has been skipped
690402:2240 fix dashboard
2026-04-02 22:40:11 +07:00

30 lines
952 B
TypeScript

'use client';
import { UserMenu } from './user-menu';
import { GlobalSearch } from './global-search';
import { NotificationsDropdown } from './notifications-dropdown';
import { MobileSidebar } from './sidebar';
import { ThemeToggle } from './theme-toggle';
import { ProjectSwitcher } from './project-switcher';
export function Header() {
return (
<header className="h-16 border-b bg-background/90 backdrop-blur flex items-center justify-between px-6 sticky top-0 z-10">
<div className="flex items-center gap-4 flex-1">
<MobileSidebar />
<h2 className="text-lg font-semibold text-foreground hidden md:block">LCBP3-DMS</h2>
<div className="ml-0 md:ml-4 w-full max-w-md">
<GlobalSearch />
</div>
</div>
<div className="flex items-center gap-4">
<ProjectSwitcher />
<ThemeToggle />
<NotificationsDropdown />
<UserMenu />
</div>
</header>
);
}