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