12 lines
479 B
TypeScript
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>
|
|
);
|
|
} |