From 0f15b763f9a5b7a42524c3a9ef3303a37501e991 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andr=C3=A9s=20Gonz=C3=A1lez=20Mu=C3=B1oz?= Date: Tue, 8 Oct 2024 17:36:50 +0200 Subject: [PATCH] adds privacy page --- src/app/privacy-policy/layout.tsx | 12 ++ src/app/privacy-policy/page.tsx | 5 + src/containers/privacy-policy/index.tsx | 141 ++++++++++++++++++++++++ 3 files changed, 158 insertions(+) create mode 100644 src/app/privacy-policy/layout.tsx create mode 100644 src/app/privacy-policy/page.tsx create mode 100644 src/containers/privacy-policy/index.tsx diff --git a/src/app/privacy-policy/layout.tsx b/src/app/privacy-policy/layout.tsx new file mode 100644 index 0000000..2f696d7 --- /dev/null +++ b/src/app/privacy-policy/layout.tsx @@ -0,0 +1,12 @@ +import { PropsWithChildren } from 'react'; + +import Footer from '@/containers/footer'; + +export default function PrivacyPolicyLayout({ children }: Readonly) { + return ( +
+ {children} +
+
+ ); +} diff --git a/src/app/privacy-policy/page.tsx b/src/app/privacy-policy/page.tsx new file mode 100644 index 0000000..c678a49 --- /dev/null +++ b/src/app/privacy-policy/page.tsx @@ -0,0 +1,5 @@ +import PrivacyPolicy from '@/containers/privacy-policy'; + +export default function PrivacyPolicyPage() { + return ; +} diff --git a/src/containers/privacy-policy/index.tsx b/src/containers/privacy-policy/index.tsx new file mode 100644 index 0000000..77298b4 --- /dev/null +++ b/src/containers/privacy-policy/index.tsx @@ -0,0 +1,141 @@ +import Header from '@/containers/header'; + +import AppMenu from '@/components/app-menu'; +import Wrapper from '@/components/ui/wrapper'; + +export default function PrivacyPolicy() { + return ( +
+
+
+
+ +
+
+
+ +

Privacy Policy

+

+ At more4nature, we are committed to protecting your privacy and ensuring transparency + about how we handle your personal data. This privacy policy outlines how we collect, use, + and safeguard your information in compliance with the General Data Protection Regulation + (GDPR) and other relevant privacy laws. +

+
    +
  1. +

    Website Content

    +

    + This website provides information related to the more4nature project. It is presented + for knowledge, education and information purposes only.{' '} +

    +
  2. +
  3. +

    Data Controller

    +

    + more4nature is the data controller responsible for your personal data. If you have any + questions or concerns regarding your personal data or this privacy policy, please + contact us at{' '} + more4nature_project@un-ihe.org. +

    +
  4. +
  5. +

    Data We Collect

    +

    + We collect personal data for specific purposes, such as: +

    +
      +
    • + Newsletter Subscription: When you subscribe to our newsletter, we collect your email + address to send you updates and information about the more4nature project. +
    • +
    • + Website Analytics: We use Plausible, a privacy-focused analytics tool, to gather + anonymous data about how visitors use our website. This data does not include + personally identifiable information and is aggregated to help us improve user + experience. +
    • +
    +
  6. +
  7. +

    Legal Basis for Processing Your Data

    +

    We process your data based on:

    +
      +
    • + Consent: By subscribing to our newsletter, you provide explicit consent for us to + use your email address for communication purposes +
    • +
    • + Legitimate Interest: We use anonymized website analytics to better understand how + users interact with our site, improve our services, and maintain security. +
    • +
    +
  8. +
  9. +

    Data Retention

    +

    + We retain your personal data for as long as necessary to fulfill the purposes for + which it was collected: +

    +
      +
    • + Newsletter: Your email address will be stored until you choose to unsubscribe. +
    • +
    • + Analytics: Plausible only collects anonymized data, and no personal data is stored + beyond the session. +
    • +
    +
  10. +
  11. +

    Sharing of Data

    +

    + We do not share, sell, or rent your personal data to third parties. The only + third-party service we use is Plausible for website analytics, which does not track + personally identifiable information. +

    +
  12. +
  13. +

    Exercising Your Rights

    +

    Under the GDPR, you have the following rights concerning your personal data:

    +
      +
    • The right to access, correct, or delete your data.
    • +
    • + The right to withdraw your consent at any time (e.g., unsubscribing from the + newsletter). +
    • +
    • The right to object to the processing of your data.
    • +
    • The right to data portability.
    • +
    +

    + To exercise any of these rights, please contact us at{' '} + more4nature_project@un-ihe.org. +

    +
  14. +
  15. +

    Data Security and Confidentiality

    +

    + We implement appropriate technical and organizational measures to protect your + personal data from unauthorized access, alteration, disclosure, or destruction. +

    +
  16. +
  17. +

    Updating our Privacy Policy

    +

    + We may update this privacy policy from time to time to reflect changes in our + practices or for other operational, legal, or regulatory reasons. Please review this + policy periodically to stay informed about how we are protecting your data. +

    +
  18. +
  19. +

    Contact Us

    +

    + If you have any questions or concerns about this privacy policy or your personal data, + please contact us at{' '} + more4nature_project@un-ihe.org. +

    +
  20. +
+
+
+ ); +}