12 lines
496 B
TypeScript
12 lines
496 B
TypeScript
export default function TermsPage() {
|
|
return (
|
|
<div className="mx-auto max-w-2xl px-4 py-8 prose prose-invert">
|
|
<h1>Terms of Service</h1>
|
|
<p className="text-muted-foreground text-sm">
|
|
ExposedGays is a free adult platform. You must be 18+ to use this site.
|
|
All content is user-generated. We reserve the right to remove illegal content.
|
|
No paid subscriptions — ever. Placeholder terms — consult legal counsel before launch.
|
|
</p>
|
|
</div>
|
|
);
|
|
} |