Files
ef_front/app/term/page.tsx

174 lines
8.1 KiB
TypeScript
Raw Normal View History

2025-09-07 22:57:43 +00:00
import type { Metadata } from "next";
export const metadata: Metadata = {
title: "서비스 이용약관 | Talkbaram",
description: "Talkbaram의 서비스 이용약관",
};
const sections = [
{ id: "purpose", title: "1. 목적" },
{ id: "def", title: "2. 용어의 정의" },
{ id: "account", title: "3. 계정 및 인증" },
{ id: "service", title: "4. 서비스의 제공 및 변경" },
{ id: "user-duty", title: "5. 이용자의 의무" },
{ id: "fee", title: "6. 요금·결제·환불" },
{ id: "content", title: "7. 콘텐츠의 권리와 책임" },
{ id: "restriction", title: "8. 이용제한" },
{ id: "disclaimer", title: "9. 면책" },
{ id: "governing", title: "10. 준거법 및 분쟁" },
{ id: "notice", title: "11. 고지 및 약관변경" },
{ id: "contact", title: "12. 문의처" },
];
export default function TermsPage() {
return (
<main className=" h-screen bg-white overflow-y-auto">
<section className="mx-auto max-w-3xl px-4 py-12">
{/* Header */}
<header className="mb-8 rounded-2xl border bg-gray-50 p-6 shadow-sm">
<h1 className="text-2xl font-bold tracking-tight"> </h1>
<p className="mt-2 text-sm text-gray-600">
everflow( ) · .
</p>
<div className="mt-3 inline-flex items-center gap-2 rounded-xl bg-white px-3 py-1.5 text-xs text-gray-500 ring-1 ring-gray-200">
<span></span>
<span className="font-medium">2025-08-01</span>
<span className="mx-1"></span>
<span> </span>
<span className="font-medium">2025-08-20</span>
</div>
</header>
{/* TOC */}
<nav className="mb-10 grid gap-2 rounded-2xl border p-4 text-sm shadow-sm">
<span className="mb-1 font-semibold text-gray-700"></span>
<ul className="grid grid-cols-1 gap-1 sm:grid-cols-2">
{sections.map((s) => (
<li key={s.id}>
<a
href={`#${s.id}`}
className="inline-block rounded-lg px-2 py-1 hover:bg-gray-50 hover:text-gray-900 text-gray-600"
>
{s.title}
</a>
</li>
))}
</ul>
</nav>
{/* Body */}
<article className="space-y-10">
<section id="purpose" className="scroll-mt-24">
<h2 className="text-xl font-semibold">{sections[0].title}</h2>
<p className="mt-3 leading-7 text-gray-700">
/ .
</p>
</section>
<section id="def" className="scroll-mt-24">
<h2 className="text-xl font-semibold">{sections[1].title}</h2>
<ul className="mt-3 list-disc pl-5 text-gray-700">
<li>: </li>
<li>: </li>
<li>: </li>
</ul>
</section>
<section id="account" className="scroll-mt-24">
<h2 className="text-xl font-semibold">{sections[2].title}</h2>
<ul className="mt-3 list-disc pl-5 text-gray-700">
<li> , .</li>
<li>OAuth .</li>
</ul>
</section>
<section id="service" className="scroll-mt-24">
<h2 className="text-xl font-semibold">{sections[3].title}</h2>
<p className="mt-3 text-gray-700">
·· , .
</p>
</section>
<section id="user-duty" className="scroll-mt-24">
<h2 className="text-xl font-semibold">{sections[4].title}</h2>
<ul className="mt-3 list-disc pl-5 text-gray-700">
<li>, , </li>
<li> (, )</li>
<li> (, ) </li>
</ul>
</section>
<section id="fee" className="scroll-mt-24">
<h2 className="text-xl font-semibold">{sections[5].title}</h2>
<p className="mt-3 text-gray-700">
, , .
</p>
</section>
<section id="content" className="scroll-mt-24">
<h2 className="text-xl font-semibold">{sections[6].title}</h2>
<ul className="mt-3 list-disc pl-5 text-gray-700">
<li> .</li>
<li>
·· (·· ) .
</li>
<li>· .</li>
</ul>
</section>
<section id="restriction" className="scroll-mt-24">
<h2 className="text-xl font-semibold">{sections[7].title}</h2>
<p className="mt-3 text-gray-700">
, , .
</p>
</section>
<section id="disclaimer" className="scroll-mt-24">
<h2 className="text-xl font-semibold">{sections[8].title}</h2>
<ul className="mt-3 list-disc pl-5 text-gray-700">
<li>, </li>
<li> </li>
</ul>
</section>
<section id="governing" className="scroll-mt-24">
<h2 className="text-xl font-semibold">{sections[9].title}</h2>
<p className="mt-3 text-gray-700">
, .
</p>
</section>
<section id="notice" className="scroll-mt-24">
<h2 className="text-xl font-semibold">{sections[10].title}</h2>
<p className="mt-3 text-gray-700">
7 ( 30 ) . .
</p>
</section>
<section id="contact" className="scroll-mt-24">
<h2 className="text-xl font-semibold">{sections[11].title}</h2>
<div className="mt-3 rounded-xl border p-4">
<p className="text-gray-700">
: <a href="mailto:support@talkbaram.com" className="underline">support@talkbaram.com</a>
</p>
<p className="text-gray-700">운영시간: 평일 10:00 ~ 17:00 ( 12:00 ~ 13:00)</p>
</div>
</section>
</article>
{/* Footer CTA */}
<footer className="mt-12 flex items-center justify-between rounded-2xl border bg-gray-50 p-5">
<span className="text-sm text-gray-600">
.
</span>
<a
href="/privacy"
className="rounded-xl bg-gray-900 px-4 py-2 text-sm font-medium text-white hover:bg-black"
>
</a>
</footer>
</section>
</main>
);
}