123
This commit is contained in:
31
src/app/guide/page.tsx
Normal file
31
src/app/guide/page.tsx
Normal file
@@ -0,0 +1,31 @@
|
||||
export const dynamic = "force-static";
|
||||
|
||||
export default function ServiceGuidePage() {
|
||||
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>
|
||||
<div className="prose max-w-none text-sm leading-6 text-neutral-800">
|
||||
<h2>가입 및 로그인</h2>
|
||||
<ul>
|
||||
<li>휴대폰 인증 또는 아이디/비밀번호로 가입하실 수 있습니다.</li>
|
||||
<li>비밀번호는 주기적으로 변경하여 계정을 보호하세요.</li>
|
||||
</ul>
|
||||
<h2>게시판 이용</h2>
|
||||
<ul>
|
||||
<li>게시글/댓글 작성 시 타인을 비방하거나 불법 콘텐츠를 업로드할 수 없습니다.</li>
|
||||
<li>운영정책 위반 시 게시물 삭제 및 이용 제한이 적용될 수 있습니다.</li>
|
||||
</ul>
|
||||
<h2>포인트 & 랭킹</h2>
|
||||
<ul>
|
||||
<li>출석, 활동, 추천 등으로 포인트가 적립되며, 누적 포인트에 따라 등급이 상승합니다.</li>
|
||||
</ul>
|
||||
<h2>문의</h2>
|
||||
<p>customer@assm.example / 02-0000-0000 (평일 10:00~18:00)</p>
|
||||
</div>
|
||||
</section>
|
||||
</div>
|
||||
);
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user