import { X } from 'lucide-react' import { Modal } from '@/components' import { cn, interactive } from '@/lib' import { GuideContent, GuideContactBox } from './GuideContent' // 유의사항 및 이용방법 팝업 (메뉴 버튼으로 여는 수동형). X 버튼 · 배경 클릭 · ESC 로 닫는다. export function ServiceGuidePopup({ onClose }: { onClose: () => void }) { return (
) }