From 4569defecfc2225c720435424372b2342a8c7d7f Mon Sep 17 00:00:00 2001 From: kjs Date: Wed, 3 Dec 2025 19:05:10 +0900 Subject: [PATCH] =?UTF-8?q?=ED=97=A4=EB=8D=94=EC=83=9D=EC=84=B1?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- frontend/components/layout/AppLayout.tsx | 101 +++++++++++++++++------ 1 file changed, 77 insertions(+), 24 deletions(-) diff --git a/frontend/components/layout/AppLayout.tsx b/frontend/components/layout/AppLayout.tsx index 0d23a88e..449a9c49 100644 --- a/frontend/components/layout/AppLayout.tsx +++ b/frontend/components/layout/AppLayout.tsx @@ -423,28 +423,80 @@ function AppLayoutInner({ children }: AppLayoutProps) { const uiMenus = convertMenuToUI(currentMenus, user as ExtendedUserInfo); return ( -
- {/* 모바일 사이드바 오버레이 */} - {sidebarOpen && isMobile && ( -
setSidebarOpen(false)} /> +
+ {/* 모바일 헤더 - 모바일에서만 표시 */} + {isMobile && ( +
+
+ {/* 햄버거 메뉴 버튼 */} + setSidebarOpen(!sidebarOpen)} /> + +
+ {/* 사용자 드롭다운 */} + + + + + + +
+

+ {user.userName || "사용자"} +

+

+ {user.deptName || user.email || user.userId} +

+
+
+ + + + 프로필 + + + + 로그아웃 + +
+
+
)} - {/* 왼쪽 사이드바 */} - - {/* 가운데 컨텐츠 영역 - 스크롤 가능 */} -
- {children} -
+ {/* 가운데 컨텐츠 영역 - 스크롤 가능 */} +
+ {children} +
+
{/* 프로필 수정 모달 */}