260220:1600 20260220 TASK-BEFE-001 Refactor by ADR-014 #3
All checks were successful
Build and Deploy / deploy (push) Successful in 1m35s

This commit is contained in:
admin
2026-02-20 16:00:26 +07:00
parent 634178fbab
commit 068e76d701
6 changed files with 443 additions and 144 deletions

View File

@@ -1,16 +1,17 @@
"use client";
'use client';
import { UserMenu } from "./user-menu";
import { Button } from "@/components/ui/button";
import { GlobalSearch } from "./global-search";
import { NotificationsDropdown } from "./notifications-dropdown";
import { UserMenu } from './user-menu';
import { GlobalSearch } from './global-search';
import { NotificationsDropdown } from './notifications-dropdown';
import { MobileSidebar } from './sidebar';
export function Header() {
return (
<header className="h-16 border-b bg-white flex items-center justify-between px-6 sticky top-0 z-10">
<div className="flex items-center gap-4 flex-1">
<h2 className="text-lg font-semibold text-gray-800">LCBP3-DMS</h2>
<div className="ml-4 w-full max-w-md">
<MobileSidebar />
<h2 className="text-lg font-semibold text-gray-800 hidden md:block">LCBP3-DMS</h2>
<div className="ml-0 md:ml-4 w-full max-w-md">
<GlobalSearch />
</div>
</div>