|
| 1 | +// Terms of Service Options |
| 2 | + |
| 3 | +export const TermsOptions: { |
| 4 | + title: string; |
| 5 | + subTitle: string; |
| 6 | + points: string[]; |
| 7 | +}[] = [ |
| 8 | + { |
| 9 | + title: "User Responsibility", |
| 10 | + subTitle: "User agree to:", |
| 11 | + points: [ |
| 12 | + "Comply with all applicable laws and regulations", |
| 13 | + "Maintain the security of their instance", |
| 14 | + "Not use the service for spam or malicious purposes", |
| 15 | + "Respect intellectual property rights", |
| 16 | + "Report security vulnerabilities responsibly", |
| 17 | + ], |
| 18 | + }, |
| 19 | + { |
| 20 | + title: "Self-Hosted Service", |
| 21 | + subTitle: "", |
| 22 | + points: [ |
| 23 | + "Zenorizon provides software that users can deploy on their own infrastructure", |
| 24 | + "Users are responsible for their own hosting, maintenance, and compliance", |
| 25 | + "The software is provided 'as is' under the Apache 2.0 License", |
| 26 | + ], |
| 27 | + }, |
| 28 | + { |
| 29 | + title: "Software License", |
| 30 | + subTitle: "Zenorizon is licensed under the Apache 2.0 License:", |
| 31 | + points: [ |
| 32 | + "Users are free to use, modify, and distribute the software", |
| 33 | + "The software is provided “as-is” without warranties or guarantees of any kind", |
| 34 | + "Users must retain the original copyright and license notice", |
| 35 | + "Contributions and modifications may also be subject to the Apache 2.0 License", |
| 36 | + "The license includes a grant of patent rights from contributors to users", |
| 37 | + ], |
| 38 | + }, |
| 39 | + { |
| 40 | + title: "Community Guidelines", |
| 41 | + subTitle: "Users participating in our community agree to:", |
| 42 | + points: [ |
| 43 | + "Follow our code of conduct", |
| 44 | + "Contribute constructively to discussions", |
| 45 | + "Respect other community members", |
| 46 | + "Report inappropriate behavior", |
| 47 | + ], |
| 48 | + }, |
| 49 | +]; |
| 50 | + |
| 51 | +// Privacy Policy Options |
| 52 | + |
| 53 | +export const PrivacyOptions: { |
| 54 | + title: string; |
| 55 | + subTitle: string; |
| 56 | + points: string[]; |
| 57 | +}[] = [ |
| 58 | + { |
| 59 | + title: "We are Transparent", |
| 60 | + subTitle: "Our verified privacy commitments:", |
| 61 | + points: [ |
| 62 | + "We store user emails after encryption to manage user authenticity", |
| 63 | + "Client-Side Processing: All email processing happens in your browser", |
| 64 | + "Open Source: Our entire codebase is public and can be audited", |
| 65 | + "Minimal Data: We only request essential Gmail API permissions", |
| 66 | + "User Control: You can revoke our access to your Gmail at any time", |
| 67 | + ], |
| 68 | + }, |
| 69 | + { |
| 70 | + title: "Auth Integration", |
| 71 | + subTitle: "User can Oauth using GitHub or Google", |
| 72 | + points: [ |
| 73 | + "We request access to your Gmail data only after receiving your explicit consent", |
| 74 | + "If user is authenticating via GitHub, we only request access for their associated email and avatar", |
| 75 | + "Your Google account credentials are never stored on our servers", |
| 76 | + "We use secure OAuth 2.0 authentication provided by Google", |
| 77 | + "You can revoke our access to your Google account at any time through your Google Account settings and same goes with GitHub", |
| 78 | + ], |
| 79 | + }, |
| 80 | + { |
| 81 | + title: "Self-Hosted Instances", |
| 82 | + subTitle: "", |
| 83 | + points: [ |
| 84 | + "When you self-host Zenorizon, your email data remains entirely under your control", |
| 85 | + "No data is sent to our servers or third parties without your explicit consent", |
| 86 | + "You maintain complete ownership and responsibility for your data", |
| 87 | + "We provide detailed documentation on secure self-hosting practices", |
| 88 | + "You can configure your own data retention and backup policies", |
| 89 | + ], |
| 90 | + }, |
| 91 | + { |
| 92 | + title: "Data Sharing and Transfer", |
| 93 | + subTitle: "", |
| 94 | + points: [ |
| 95 | + "Google user data is never shared with third parties except as required for core service functionality", |
| 96 | + "When necessary, we only work with service providers who comply with Google API Services User Data Policy", |
| 97 | + "All service providers are bound by strict confidentiality agreements", |
| 98 | + "We maintain a current list of all third-party service providers with access to Google user data", |
| 99 | + "Data sharing agreements are reviewed annually", |
| 100 | + "Users are notified of any material changes to our data sharing practices", |
| 101 | + ], |
| 102 | + }, |
| 103 | + { |
| 104 | + title: "Security Response", |
| 105 | + subTitle: "We continuously maintain and improvise the security checks", |
| 106 | + points: [ |
| 107 | + "Dedicated security monitoring to detect and respond to threats in real-time", |
| 108 | + "Well-defined escalation process for handling security incidents efficiently", |
| 109 | + "Ongoing internal security education and best practices for all developers and staff", |
| 110 | + ], |
| 111 | + }, |
| 112 | +]; |
0 commit comments