import {supportEmail} from 'common/constants' import {PageBase} from 'web/components/page-base' import {SEO} from 'web/components/SEO' import {useT} from 'web/lib/locale' // TODO: convert to MarkDown for better readability during modifications? export default function PrivacyPage() { const t = useT() return (

{t('privacy.title', 'Privacy Policy')}

{t('privacy.effective_date', 'Effective Date: January 1, 2025')}

{t('privacy.intro.prefix', 'At ')} Compass {t( 'privacy.intro.suffix', ', we value transparency and respect for your data. This Privacy Policy explains how we handle your information.', )}

{t('privacy.info.title', '1. Information We Collect')}

{t( 'privacy.info.text', 'We collect basic account details such as your name, email, and profile data. Additionally, we may collect usage data to improve platform functionality.', )}

{t('privacy.use.title', '2. How We Use Your Data')}

{t( 'privacy.use.text', 'Your data is used solely to operate, personalize, and improve the platform. We do not sell your personal information to third parties.', )}

{t('privacy.storage.title', '3. Data Storage & Security')}

{t( 'privacy.storage.text', 'We use modern encryption and security practices to protect your data. However, no online system is completely secure, so use the platform responsibly.', )}

{t('privacy.third_party.title', '4. Third-Party Services')}

{t( 'privacy.third_party.text', 'Compass may integrate with third-party tools (e.g., Google Sign-In). These services have their own privacy policies that we encourage you to review.', )}

{t('privacy.rights.title', '5. Your Rights')}

{t( 'privacy.rights.text', 'You can download or delete all your data in the settings. You can also request deletion of your account and data at any time by contacting ', )} {supportEmail} {'.'}

{t('privacy.contact', 'For questions about this Privacy Policy, reach out at ')} {supportEmail} {'.'}

) }