From 4c2d4c235bd80368e31cae9c375e9a585f6a6844 Mon Sep 17 00:00:00 2001 From: dujinkim Date: Thu, 25 Sep 2025 03:28:27 +0000 Subject: (대표님) archiver 추가, 데이터룸구현 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- components/project/ProjectHeader.tsx | 84 ++++++++++++++++++++++++++++++++++++ 1 file changed, 84 insertions(+) create mode 100644 components/project/ProjectHeader.tsx (limited to 'components/project/ProjectHeader.tsx') diff --git a/components/project/ProjectHeader.tsx b/components/project/ProjectHeader.tsx new file mode 100644 index 00000000..34a3f43e --- /dev/null +++ b/components/project/ProjectHeader.tsx @@ -0,0 +1,84 @@ +// components/project/ProjectHeader.tsx +'use client'; + +import { useSession } from 'next-auth/react'; +import { Bell, Search, HelpCircle, User } from 'lucide-react'; +import { Button } from '@/components/ui/button'; +import { + DropdownMenu, + DropdownMenuContent, + DropdownMenuItem, + DropdownMenuLabel, + DropdownMenuSeparator, + DropdownMenuTrigger, +} from '@/components/ui/dropdown-menu'; +import { Badge } from '@/components/ui/badge'; + +export function ProjectHeader() { + const { data: session } = useSession(); + + return ( +
+
+
+ {/* 로고 */} +
+
+
+ FM +
+ File Manager +
+
+ + {/* 우측 메뉴 */} +
+ {/* 검색 */} + + + {/* 알림 */} + + + {/* 도움말 */} + + + {/* 사용자 메뉴 */} + + + + + + +
+

{session?.user?.name}

+

{session?.user?.email}

+
+
+ + 프로필 + 설정 + 팀 관리 + + + 로그아웃 + +
+
+
+
+
+
+ ); +} \ No newline at end of file -- cgit v1.2.3