o2o-triple-pick/components/Footer.tsx

29 lines
1.1 KiB
XML

export default function Footer() {
return (
<footer className="mt-6 text-center">
<p className="text-[10.5px] font-semibold text-white/75">
Independent AI prediction event. Not official.
</p>
<p className="mt-1 text-[10.5px] leading-relaxed text-white/60">
본 서비스는 독립적인 AI 예측 이벤트이며, 공식·조작·후원·운영과
무관합니다.
</p>
<div className="mx-auto mt-3 max-w-[400px] space-y-1 text-[9.5px] leading-relaxed text-white/55">
<p>
스포츠 분석·엔터테인먼트 목적의 예측 게임이며 베팅·도박을 권유하지
않습니다. AI 예측은 실제 결과를 보장하지 않습니다.
</p>
<p>
100만 원 이벤트는 무료 참여형 챌린지입니다. 지급·동점 처리 조건은 별도
약관에 따릅니다. 이메일은 결과·이벤트 알림 목적으로만 사용됩니다.
</p>
</div>
<div className="mt-3 text-[10px] text-white/70">
© 2026 TriplePick · 운영 AIO2O · @triplepick_ai
</div>
</footer>
);
}