diff --git a/app/components/DashboardShell.tsx b/app/components/DashboardShell.tsx index 20cdcf4..1f51401 100644 --- a/app/components/DashboardShell.tsx +++ b/app/components/DashboardShell.tsx @@ -1,129 +1,18 @@ 'use client'; -import { useState } from 'react'; import { usePathname } from 'next/navigation'; -import Sidebar from './Sidebar'; import PublicShell from './PublicShell'; const STANDALONE_PATHS = ['/login', '/signup', '/admin']; -const SIDEBAR_PATHS = ['/mypage']; export default function DashboardShell({ children }: { children: React.ReactNode }) { - const [sidebarOpen, setSidebarOpen] = useState(false); const pathname = usePathname(); const isStandalone = STANDALONE_PATHS.some((p) => pathname.startsWith(p)); - const useSidebar = SIDEBAR_PATHS.some((p) => pathname.startsWith(p)); if (isStandalone) { return <>{children}; } - if (!useSidebar) { - return {children}; - } - - return ( -
- setSidebarOpen(false)} /> - -
- {/* Mobile top bar */} -
- -
-
- 쟁 -
- 쟁승메이드 -
-
-
- - {/* Main scrollable content */} -
- {children} - {/* 사업자 정보 푸터 */} -
-
-

쟁승메이드

-
- 대표자: 박재오 - 사업자등록번호: 267-53-00822 - 주소: 서울시 동작구 여의대방로22아길 22, 1동 109호 - 전화: 010-3907-1392 - 이메일: bgg8988@gmail.com -
- -

© 2026 쟁승메이드. All rights reserved.

-
-
-
-
- - {/* 카카오 오픈채팅 플로팅 버튼 */} - - - - - 1:1 상담 - - - -
- ); + return {children}; }