Files
jaengseung-made/app/legal/terms/page.tsx
gahusb c2d7455f65 refactor(design): 노출 페이지 잔여 글래스·다크 스타일 정리
- layout.tsx: GlassFilter 렌더·import 제거 (LiquidGlass.tsx 파일은 숨김 페이지용으로 유지)
- payment/success,fail: #04102b 다크 헤더 → jsm-navy 토큰, h2 색상 jsm-ink 토큰으로 교체
- legal/terms,privacy,refund: h1 text-[#04102b] → jsm-ink CSS 변수
- portfolio/[token]: bg-slate-950 + 다크 radial-gradient → jsm-bg/surface/navy 라이트 테마
- quote/[token]: #0a0f1e/#0f172a 전체 다크 테마 → jsm-* 라이트 토큰 기반으로 전면 교체 (print CSS·수락/거절 로직 무수정)

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
2026-06-11 02:44:36 +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 mb-8" style={{ color: 'var(--jsm-ink)' }}></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>
);
}