feat: 포트원 V2 결제 마이그레이션 + 법적 페이지 추가 (PG 심사용)

- 토스페이먼츠 SDK → 포트원 V2 (@portone/browser-sdk) 전환
- 4채널 결제수단 선택 UI: 카드(KPN)/카카오페이/네이버페이/토스페이
- 서버 결제 검증 API를 포트원 V2 조회 방식으로 변경
- 이용약관(/legal/terms), 개인정보처리방침(/legal/privacy), 환불정책(/legal/refund) 페이지 생성
- 푸터에 법적 페이지 링크 추가

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
2026-04-07 23:52:22 +09:00
parent 5d2fd4be1f
commit 769544b453
11 changed files with 728 additions and 182 deletions

View File

@@ -55,6 +55,11 @@ export default function DashboardShell({ children }: { children: React.ReactNode
<span>전화: 010-3907-1392</span>
<span>이메일: bgg8988@gmail.com</span>
</div>
<div className="flex flex-wrap gap-x-3 mt-3">
<a href="/legal/terms" className="text-slate-400 hover:text-[#1a56db] transition underline underline-offset-2"></a>
<a href="/legal/privacy" className="text-slate-400 hover:text-[#1a56db] transition underline underline-offset-2"></a>
<a href="/legal/refund" className="text-slate-400 hover:text-[#1a56db] transition underline underline-offset-2"> </a>
</div>
<p className="mt-2 text-slate-400">© 2025 . All rights reserved.</p>
</div>
</footer>