Files
jaengseung-made/app/legal/terms/page.tsx
gahusb 769544b453 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>
2026-04-07 23:52:22 +09:00

139 lines
7.9 KiB
TypeScript

import { Metadata } from 'next';
export const metadata: Metadata = {
title: '이용약관 | 쟁승메이드',
description: '쟁승메이드 서비스 이용약관',
};
export default function TermsPage() {
return (
<div className="max-w-3xl mx-auto px-6 py-12">
<h1 className="text-2xl font-extrabold text-[#04102b] mb-8"></h1>
<div className="prose prose-sm prose-slate max-w-none space-y-6 text-slate-600 leading-relaxed">
<section>
<h2 className="text-lg font-bold text-slate-800 mt-8 mb-3">1 ()</h2>
<p>
( &quot;&quot;) (jaengseung-made.com)
( &quot;&quot;) , ·
.
</p>
</section>
<section>
<h2 className="text-lg font-bold text-slate-800 mt-8 mb-3">2 ()</h2>
<ol className="list-decimal pl-5 space-y-1">
<li>&quot;&quot; , AI , , , .</li>
<li>&quot;&quot; .</li>
<li>&quot;&quot; , .</li>
</ol>
</section>
<section>
<h2 className="text-lg font-bold text-slate-800 mt-8 mb-3">3 ( )</h2>
<ol className="list-decimal pl-5 space-y-1">
<li> .</li>
<li> , 7 .</li>
</ol>
</section>
<section>
<h2 className="text-lg font-bold text-slate-800 mt-8 mb-3">4 ( )</h2>
<ol className="list-decimal pl-5 space-y-1">
<li> .
<ul className="list-disc pl-5 mt-1 space-y-0.5">
<li> </li>
<li> </li>
<li> </li>
<li>AI </li>
<li>AI </li>
<li> </li>
<li> </li>
<li> </li>
</ul>
</li>
<li> .</li>
</ol>
</section>
<section>
<h2 className="text-lg font-bold text-slate-800 mt-8 mb-3">5 ( )</h2>
<p>
·, ,
. .
</p>
</section>
<section>
<h2 className="text-lg font-bold text-slate-800 mt-8 mb-3">6 ()</h2>
<ol className="list-decimal pl-5 space-y-1">
<li> .</li>
<li> . , .
<ul className="list-disc pl-5 mt-1 space-y-0.5">
<li> </li>
<li> </li>
<li> </li>
</ul>
</li>
</ol>
</section>
<section>
<h2 className="text-lg font-bold text-slate-800 mt-8 mb-3">7 ( )</h2>
<ol className="list-decimal pl-5 space-y-1">
<li> .</li>
<li> , (, , ) .</li>
<li> .</li>
</ol>
</section>
<section>
<h2 className="text-lg font-bold text-slate-800 mt-8 mb-3">8 ( )</h2>
<ol className="list-decimal pl-5 space-y-1">
<li> , , .</li>
<li> .
<ul className="list-disc pl-5 mt-1 space-y-0.5">
<li> </li>
<li> , </li>
<li> 3 </li>
<li> </li>
</ul>
</li>
</ol>
</section>
<section>
<h2 className="text-lg font-bold text-slate-800 mt-8 mb-3">9 ( )</h2>
<ol className="list-decimal pl-5 space-y-1">
<li> .</li>
<li> .</li>
</ol>
</section>
<section>
<h2 className="text-lg font-bold text-slate-800 mt-8 mb-3">10 ()</h2>
<ol className="list-decimal pl-5 space-y-1">
<li> .</li>
<li>AI ( , ) , .</li>
<li> .</li>
</ol>
</section>
<section>
<h2 className="text-lg font-bold text-slate-800 mt-8 mb-3">11 ( )</h2>
<p>
, .
</p>
</section>
<section className="border-t border-slate-200 pt-6 mt-10">
<p className="text-slate-400 text-xs">
시행일자: 2025년 4 7<br />
상호: 쟁승메이드 · 대표: 박재오 · 사업자등록번호: 267-53-00822
</p>
</section>
</div>
</div>
);
}