- 사이드바 Sheet 스타일로 변경
- 로그아웃 버튼 구현
This commit is contained in:
geonhee-min
2025-12-03 17:05:48 +09:00
parent edef4273c0
commit 069f58075b
4 changed files with 56 additions and 15 deletions

View File

@@ -33,8 +33,9 @@ export default function Layout() {
<SideBar />
<div className="flex flex-col w-full h-full">
{ authData ? <Header /> : null}
{/* <Header /> */}
<Outlet />
<div className="w-full h-full p-2.5">
<Outlet />
</div>
</div>
</SidebarProvider>
</>