pummmp.fun/app/terms/page.tsx
2026-07-04 12:49:09 -07:00

59 lines
2.4 KiB
TypeScript

import Link from 'next/link'
export default function TermsPage() {
return (
<div className="min-h-screen w-full bg-black text-zinc-400 font-sans selection:bg-white/20">
<div className="max-w-3xl mx-auto px-6 py-20">
<Link
href="/"
className="group mb-12 inline-flex items-center text-sm text-zinc-600 transition-colors hover:text-white"
>
<span className="mr-2 transition-transform group-hover:-translate-x-1">&larr;</span>
pummmp.fun
</Link>
<h1 className="mb-12 text-4xl font-bold tracking-tight text-white">Terms of Service</h1>
<div className="space-y-12 text-sm leading-relaxed">
<section>
<h2 className="mb-4 text-base font-semibold text-white">1. Acceptance of Terms</h2>
<p>
By accessing or using pummmp.fun ("the Platform"), you agree to be bound by these Terms of Service.
The Platform is a simulated trading environment for entertainment purposes only.
</p>
</section>
<section>
<h2 className="mb-4 text-base font-semibold text-white">2. No Financial Advice</h2>
<p>
Nothing on this Platform constitutes financial, investment, or trading advice.
All "coins," "tokens," and "assets" on this platform are virtual items with no real-world monetary value.
We are not responsible for any perceived losses or damages.
</p>
</section>
<section>
<h2 className="mb-4 text-base font-semibold text-white">3. User Conduct</h2>
<p>
You agree not to use the Platform for any illegal purpose. You are responsible for all content
(names, images, comments) you create. We reserve the right to remove any content or terminate
any account at our sole discretion, without notice.
</p>
</section>
<section>
<h2 className="mb-4 text-base font-semibold text-white">4. Disclaimer</h2>
<p>
THE SERVICE IS PROVIDED "AS IS" AND "AS AVAILABLE" WITHOUT WARRANTIES OF ANY KIND.
WE DISCLAIM ALL WARRANTIES, EXPRESS OR IMPLIED.
</p>
</section>
</div>
<div className="mt-20 border-t border-zinc-900 pt-8 text-xs text-zinc-700">
Last updated: January 2026
</div>
</div>
</div>
)
}