|
| 1 | +import React from 'react' |
| 2 | +const PrivacyPolicy: React.FC = () => { |
| 3 | + return ( |
| 4 | + <div className="flex flex-col min-h-screen"> |
| 5 | + <div className="flex-grow max-w-3xl mx-auto px-4 py-12"> |
| 6 | + <h1 className="text-3xl font-bold text-gray-900 mb-6"> |
| 7 | + Privacy Policy |
| 8 | + </h1> |
| 9 | + |
| 10 | + <p className="text-gray-700 mb-4"> |
| 11 | + At LocalMind, your privacy matters. This Privacy Policy explains what |
| 12 | + information we collect, how we use it, and your rights regarding your |
| 13 | + personal data. |
| 14 | + </p> |
| 15 | + |
| 16 | + <section className="mb-4"> |
| 17 | + <h2 className="text-xl font-semibold text-gray-800 mb-2"> |
| 18 | + Information We Collect |
| 19 | + </h2> |
| 20 | + <p className="text-gray-700 text-sm"> |
| 21 | + We do not collect, share, or sell personal information. LocalMind |
| 22 | + operates locally, on your device, without tracking or analytics. |
| 23 | + </p> |
| 24 | + </section> |
| 25 | + |
| 26 | + <section className="mb-4"> |
| 27 | + <h2 className="text-xl font-semibold text-gray-800 mb-2"> |
| 28 | + Use of Data |
| 29 | + </h2> |
| 30 | + <p className="text-gray-700 text-sm"> |
| 31 | + Any data you input is processed locally within the app and is never |
| 32 | + sent to external servers unless you explicitly configure integrations. |
| 33 | + </p> |
| 34 | + </section> |
| 35 | + |
| 36 | + <section className="mb-4"> |
| 37 | + <h2 className="text-xl font-semibold text-gray-800 mb-2"> |
| 38 | + Contact Us |
| 39 | + </h2> |
| 40 | + <p className="text-gray-700 text-sm"> |
| 41 | + For questions about this policy, email us at support@localmind.dev |
| 42 | + </p> |
| 43 | + </section> |
| 44 | + </div> |
| 45 | + |
| 46 | + </div> |
| 47 | + ) |
| 48 | +} |
| 49 | + |
| 50 | +export default PrivacyPolicy |
0 commit comments