import Link from 'next/link'; const SAMPLE_CASES = [ { id: 'sc-1', storeTitle: '강남역 카페', status: 'DOCUMENTS_PENDING', checklist: { total: 5, checked: 2 }, createdAt: '2026-03-04', }, { id: 'sc-2', storeTitle: '선릉역 한식당', status: 'SUBMITTED', checklist: { total: 5, checked: 5 }, createdAt: '2026-03-01', }, { id: 'sc-3', storeTitle: '합정 베이커리', status: 'APPROVED', checklist: { total: 4, checked: 4 }, createdAt: '2026-02-28', }, ]; const STATUS_MAP: Record = { DOCUMENTS_PENDING: { label: '서류 준비 중', color: 'bg-yellow-100 text-yellow-700' }, READY_TO_SUBMIT: { label: '제출 준비 완료', color: 'bg-blue-100 text-blue-700' }, SUBMITTED: { label: '제출됨', color: 'bg-purple-100 text-purple-700' }, REVIEWING: { label: '검토 중', color: 'bg-orange-100 text-orange-700' }, APPROVED: { label: '승인', color: 'bg-green-100 text-green-700' }, REJECTED: { label: '반려', color: 'bg-red-100 text-red-700' }, }; export default function SubsidiesPage() { return (

정부 지원금

폐업 관련 정부 지원금 자격 확인과 서류 제출을 도와드립니다

{/* 안내 배너 */}

가이드형 지원금 대행 서비스

Re:Link은 지원금 신청 보조 파트너로서, 체크리스트·서류 업로드·진행 상태·운영자 피드백을 제공합니다.

{/* 케이스 목록 */}
{SAMPLE_CASES.map((c) => { const statusInfo = STATUS_MAP[c.status] ?? { label: c.status, color: 'bg-gray-100 text-gray-700' }; return (

{c.storeTitle}

신청일: {c.createdAt}

{statusInfo.label}
{/* 체크리스트 진행률 */}
체크리스트 진행 {c.checklist.checked}/{c.checklist.total}
); })}

새 지원금 케이스를 시작하려면{' '} 등록된 매장 이 필요합니다

); }