Files
exposedgays/src/app/privacy/page.tsx
2026-06-26 21:32:17 +00:00

12 lines
479 B
TypeScript

export default function PrivacyPage() {
return (
<div className="mx-auto max-w-2xl px-4 py-8 prose prose-invert">
<h1>Privacy Policy</h1>
<p className="text-muted-foreground text-sm">
We collect minimal data. Location is used for map features and city chat auto-join.
Anonymous browsing is supported. Cart data stays in your browser (localStorage).
Placeholder policy consult legal counsel before launch.
</p>
</div>
);
}