From ac9b70fb5e52206499ac155cfacf4a98e0009e1c Mon Sep 17 00:00:00 2001 From: gahusb Date: Sat, 16 May 2026 05:34:53 +0900 Subject: [PATCH] =?UTF-8?q?feat(shell):=20DashboardShell=20STANDALONE=5FPA?= =?UTF-8?q?THS=EC=97=90=20/gyeol=20=EC=B6=94=EA=B0=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit CONTOUR 설문 페이지는 자체 시각 정체성 — TopNav/푸터/카카오 모두 숨김. 풀스크린 설문 UI 집중도 보장. Co-Authored-By: Claude Opus 4.7 (1M context) --- app/components/DashboardShell.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/components/DashboardShell.tsx b/app/components/DashboardShell.tsx index 1f51401..83cec30 100644 --- a/app/components/DashboardShell.tsx +++ b/app/components/DashboardShell.tsx @@ -3,7 +3,7 @@ import { usePathname } from 'next/navigation'; import PublicShell from './PublicShell'; -const STANDALONE_PATHS = ['/login', '/signup', '/admin']; +const STANDALONE_PATHS = ['/login', '/signup', '/admin', '/gyeol']; export default function DashboardShell({ children }: { children: React.ReactNode }) { const pathname = usePathname();