This commit is contained in:
mota
2025-11-02 15:13:03 +09:00
parent b10d41532b
commit fadd402e63
31 changed files with 1105 additions and 192 deletions

33
src/app/legal/page.tsx Normal file
View File

@@ -0,0 +1,33 @@
export const dynamic = "force-static";
export default function LegalDisclaimerPage() {
return (
<div className="space-y-6">
<section className="rounded-xl overflow-hidden bg-white p-6 md:p-8">
<h1 className="text-2xl font-bold mb-2"> </h1>
<p className="text-sm text-neutral-500 mb-6">시행일: 2025-11-02</p>
<div className="prose max-w-none text-sm leading-6 text-neutral-800">
<h2>1. </h2>
<p>
, .
, , .
</p>
<h2>2. </h2>
<p>
·· .
</p>
<h2>3. </h2>
<p>
.
</p>
<h2>4. </h2>
<p>
, .
</p>
</div>
</section>
</div>
);
}