diff --git a/web/pages/delete-account.tsx b/web/pages/delete-account.tsx new file mode 100644 index 00000000..cffc629b --- /dev/null +++ b/web/pages/delete-account.tsx @@ -0,0 +1,89 @@ +import { PageBase } from "web/components/page-base"; +import { SEO } from "web/components/SEO"; +import { Button } from "web/components/buttons/button"; +import { useRouter } from 'next/router'; + +export default function DeleteAccountPage() { + const router = useRouter(); + + const handleRequestDeletion = () => { + // This would typically open an email client or a form + window.location.href = 'mailto:hello@compassmeet.com?subject=Account%20Deletion%20Request&body=Please%20delete%20my%20account%20and%20associated%20data.%0D%0A%0D%0AUsername%3A%20%5BYour%20Username%5D%0D%0A%0D%0AAdditional%20notes%3A'; + }; + + return ( + + + +
+
+

Delete Your Account

+

+ We're sorry to see you go. You can delete your account in the Settings page. Otherwise, here's how to request account deletion by email. +

+
+ +
+
+

How to Delete Your Account

+
    +
  1. Send an email to hello@compassmeet.com with the subject line "Account Deletion Request"
  2. +
  3. Include your username and email address associated with your account
  4. +
  5. Let us know if you'd like to download your data before deletion
  6. +
  7. We'll process your request within 30 days
  8. +
+ +
+ +
+
+ +
+

What Happens When You Delete Your Account

+
    +
  • Your profile, including all photos and personal information, will be permanently removed
  • +
  • Your messages will be deleted from our servers
  • +
  • Your username will become available for others to use
  • +
  • Your activity history will be anonymized
  • +
+
+ +
+

Data We Retain

+

For legal and operational reasons, we may retain certain information after account deletion:

+
    +
  • Transaction records (if any) for financial reporting and compliance
  • +
  • Copies of communications with our support team
  • +
  • Information required to prevent fraud, comply with legal obligations, or enforce our terms
  • +
+

+ We retain this data only as long as necessary for these purposes and in accordance with our Privacy Policy. +

+
+ +
+

Need Help?

+

+ If you have any questions about account deletion or need assistance, please contact our support team at{' '} + + hello@compassmeet.com + . +

+
+
+
+
+ ); +}