From 0fb778d66b461309353be176384aa6c9e98948c7 Mon Sep 17 00:00:00 2001 From: KMKoushik Date: Thu, 22 Aug 2024 20:33:14 +1000 Subject: [PATCH] add privacy and terms --- apps/marketing/src/app/layout.tsx | 6 +- apps/marketing/src/app/privacy/page.tsx | 154 ++++++++++++++++++++++++ apps/marketing/src/app/terms/page.tsx | 97 +++++++++++++++ 3 files changed, 255 insertions(+), 2 deletions(-) create mode 100644 apps/marketing/src/app/privacy/page.tsx create mode 100644 apps/marketing/src/app/terms/page.tsx diff --git a/apps/marketing/src/app/layout.tsx b/apps/marketing/src/app/layout.tsx index 4b926aa..37f83ca 100644 --- a/apps/marketing/src/app/layout.tsx +++ b/apps/marketing/src/app/layout.tsx @@ -89,11 +89,13 @@ export default function RootLayout({
{children}
-
-
+
+
+ terms + privacy { + return ( +
+
+
+

Privacy Policy

+

+ Last Updated: Aug 22, 2024 +

+ +

+ Unsend is committed to protecting your privacy. This Privacy Policy + outlines how we collect, use, and disclose your information when you + use Unsend. +

+
+ +
+

+ 1. Information We Collect +

+ +

+ Personal Information +

+

+ When you create an account, we collect your email address and name. +

+ +

Usage Data

+

+ We automatically collect information about how you interact with the + Service, such as pages visited and features used. +

+
+ +
+

+ 2. How We Use Your Information +

+

+ We use your information for the following purposes: +

+
    +
  • To provide and maintain the Service
  • +
  • To improve and personalize your experience with the Service
  • +
  • + To communicate with you about updates, promotions, and customer + support +
  • +
+
+ +
+

+ 3. Sharing Your Information +

+

+ We do not sell, rent or your personal information with third + parties. +

+

+ We are using following third party services to run this service. +

+
    +
  • + + Railway + + : this is where unsend is hosted. currently in US region +
  • +
  • + + AWS + + : unsend uses AWS SES to process your mails +
  • +
+
+ +
+

4. Data Security

+

+ We take reasonable steps to protect your information from + unauthorized access, use, or disclosure. However, no method of + transmission or storage is completely secure, and we cannot + guarantee the absolute security of your information. +

+
+ +
+

5. Data Retention

+

+ We retain your personal information for as long as necessary to + provide the Service, comply with legal obligations, resolve + disputes, and enforce our agreements. +

+
+ +
+

6. Your Rights

+

+ You may access, update, or request the deletion of your personal + information by contacting us at hello@unsend.dev. +

+
+ +
+

7. Children's Privacy

+

+ The Service is not intended for users under 13 years old. We do not + knowingly collect personal information from children under 13. If + you are a parent or guardian and believe your child has provided us + with personal information, please contact us at hello@unsend.dev. +

+
+ +
+

+ 8. Changes to This Policy +

+

+ We may update this Policy from time to time. We will notify you of + any changes by posting the updated Policy on this page. By + continuing to use the Service, you agree to be bound by the updated + Policy. +

+
+ +
+

9. Contact

+

+ If you have any questions or concerns regarding this Privacy Policy, + please contact us at hello@unsend.dev. +

+
+
+
+ ); +}; + +export default PrivacyPolicy; diff --git a/apps/marketing/src/app/terms/page.tsx b/apps/marketing/src/app/terms/page.tsx new file mode 100644 index 0000000..bf02087 --- /dev/null +++ b/apps/marketing/src/app/terms/page.tsx @@ -0,0 +1,97 @@ +import React from "react"; + +const TermsOfService = () => { + return ( +
+
+
+

Terms of Service

+

+ Last Updated: Apr 22, 2024 +

+ +

+ By using Unsend, you agree to these Terms of Service. Unsend + reserves the right to modify these Terms at any time. By continuing + to use the Service, you agree to the updated Terms. +

+
+ +
+

1. Agreement

+

+ By using Unsend, you agree to these Terms of Service. Unsend + reserves the right to modify these Terms at any time. By continuing + to use the Service, you agree to the updated Terms. +

+
+ +
+

2. Eligibility

+

+ You must be at least 13 years old to use the Service. By using the + Service, you represent that you meet this age requirement. +

+
+ +
+

3. Acceptable Use

+

+ You agree not to use the Service for any illegal or harmful + activities. We reserve the right to terminate your access to the + Service if you violate this provision. +

+
+ +
+

4. Termination

+

+ We reserve the right to suspend or terminate your access to the + Service at any time, with or without notice, for any reason. +

+
+ +
+

+ 5. Disclaimers and Limitation of Liability +

+

+ The Service is provided "as is" and "as available," without + warranties of any kind. We disclaim all liability for any damages or + losses arising from your use of the Service. +

+
+ +
+

6. Governing Law

+

+ These Terms shall be governed by the laws of US. Any disputes + arising from these Terms shall be resolved in the courts located in + US. +

+
+ +
+

7. Privacy

+

+ Please read our{" "} + + privacy policy + + . +

+
+ +
+

8. Contact

+

+ If you have any questions or concerns regarding these Terms, please + contact us at hello@unsend.dev. +

+
+
+
+ ); +}; + +export default TermsOfService;