|
| 1 | +import { LegalPage } from '@/features/legal/components/LegalPage'; |
| 2 | + |
| 3 | +export default function PrivacyPage() { |
| 4 | + return ( |
| 5 | + <LegalPage |
| 6 | + title="Privacy Policy" |
| 7 | + description="How Conflicts.app handles analytics, chat continuity, and local device storage." |
| 8 | + > |
| 9 | + <section className="flex flex-col gap-3"> |
| 10 | + <h2 className="text-xl font-semibold text-[var(--t1)]">Overview</h2> |
| 11 | + <p> |
| 12 | + Conflicts.app uses a small amount of device storage to keep core product behavior working and, if you allow it, |
| 13 | + to understand product usage through analytics. We aim to keep this collection limited and tied to improving the product. |
| 14 | + </p> |
| 15 | + </section> |
| 16 | + |
| 17 | + <section className="flex flex-col gap-3"> |
| 18 | + <h2 className="text-xl font-semibold text-[var(--t1)]">Necessary storage</h2> |
| 19 | + <p> |
| 20 | + Conflicts.app uses a small amount of strictly necessary storage for core request handling, security, and basic app delivery. |
| 21 | + This category does not include optional remembered preferences or analytics. |
| 22 | + </p> |
| 23 | + </section> |
| 24 | + |
| 25 | + <section className="flex flex-col gap-3"> |
| 26 | + <h2 className="text-xl font-semibold text-[var(--t1)]">Preference storage</h2> |
| 27 | + <p> |
| 28 | + Preference storage covers optional remembered behavior like anonymous chat continuity, workspace layout persistence, |
| 29 | + map UI preferences, and dismissible interface state. These improve convenience, but they are separate from strictly necessary storage. |
| 30 | + </p> |
| 31 | + </section> |
| 32 | + |
| 33 | + <section className="flex flex-col gap-3"> |
| 34 | + <h2 className="text-xl font-semibold text-[var(--t1)]">Analytics</h2> |
| 35 | + <p> |
| 36 | + If you accept analytics cookies, we enable PostHog and Vercel Analytics to measure page views and feature usage. |
| 37 | + This helps us understand what users open, which views are most useful, and where product friction exists after releases. |
| 38 | + </p> |
| 39 | + <p> |
| 40 | + We use analytics to improve navigation, prioritize fixes, and understand which features are being actively used. |
| 41 | + If you reject analytics, those tools remain disabled in your browser. |
| 42 | + </p> |
| 43 | + </section> |
| 44 | + |
| 45 | + <section className="flex flex-col gap-3"> |
| 46 | + <h2 className="text-xl font-semibold text-[var(--t1)]">Local storage and cookies</h2> |
| 47 | + <p> |
| 48 | + Conflicts.app uses both browser local storage and cookies. Local storage is used for interface state such as layouts |
| 49 | + and filters. A chat visitor cookie may be used when remembered chat continuity is enabled. Analytics storage is separate from preference storage. |
| 50 | + </p> |
| 51 | + </section> |
| 52 | + |
| 53 | + <section className="flex flex-col gap-3"> |
| 54 | + <h2 className="text-xl font-semibold text-[var(--t1)]">Your choices</h2> |
| 55 | + <p> |
| 56 | + Where consent controls are enabled, you can accept or reject optional storage and revisit those choices later. |
| 57 | + In environments where those controls are not currently shown, the app may operate with analytics and preference storage enabled by default. |
| 58 | + You can also review our dedicated Cookie Policy for a more explicit breakdown of storage categories. |
| 59 | + </p> |
| 60 | + </section> |
| 61 | + </LegalPage> |
| 62 | + ); |
| 63 | +} |
0 commit comments