From 17221b57f9345575add173be49efb4587fc3c828 Mon Sep 17 00:00:00 2001 From: Dawid Rycerz Date: Thu, 3 Jul 2025 20:28:45 +0300 Subject: Add privacy policy --- src/components/layout/Header.astro | 22 +++++----- src/pages/privacy-policy.astro | 89 ++++++++++++++++++++++++++++++++++++++ src/site.config.ts | 4 ++ 3 files changed, 105 insertions(+), 10 deletions(-) create mode 100644 src/pages/privacy-policy.astro (limited to 'src') diff --git a/src/components/layout/Header.astro b/src/components/layout/Header.astro index 0b03986..3eff4e0 100644 --- a/src/components/layout/Header.astro +++ b/src/components/layout/Header.astro @@ -126,16 +126,18 @@ import { siteConfig } from "../../site.config"; id="navigation-menu" > { - menuLinks.map((link) => ( - - {link.title} - - )) + menuLinks + .filter((link) => link.path !== "/privacy-policy/") + .map((link) => ( + + {link.title} + + )) } diff --git a/src/pages/privacy-policy.astro b/src/pages/privacy-policy.astro new file mode 100644 index 0000000..262e67d --- /dev/null +++ b/src/pages/privacy-policy.astro @@ -0,0 +1,89 @@ +--- +import PageLayout from "@/layouts/Base.astro"; + +const meta = { + description: + "Privacy policy and GDPR compliance information for rycerz.xyz. Learn about our data processing practices and commitment to user privacy.", + title: "Privacy Policy", +}; +--- + + +

Data Processing & GDPR Compliance

+
+

Data Controller

+

+ The data controller for this website (rycerz.xyz) is the site owner. No + personally identifiable information (PII) is collected or processed on this site. +

+ +

What Data Is Collected?

+

+ We do not collect any personal data.
+ We do not use cookies.
+ We do not track users across sites. +

+ +

Analytics

+

+ This website uses Plausible Analytics – a lightweight, privacy-friendly analytics tool that is fully compliant with the General Data + Protection Regulation (GDPR). +

+

+ Plausible collects only aggregated, anonymous data for statistical purposes, such + as: +

+
    +
  • Page views and visit counts
  • +
  • Referrer sources (e.g. search engines, external links)
  • +
  • Device type, browser, and operating system
  • +
  • Country (at a general level – no precise geolocation)
  • +
+

+ Plausible does not use cookies, does not collect personal data, + and does not track individual visitors. +

+

+ You can view the public analytics dashboard here:
+ 👉 https://analytics.craftknight.com/rycerz.xyz +

+

+ Full details: https://plausible.io/data-policy +

+ +

Hosting

+

+ This website is hosted on Cloudflare Pages, a secure and GDPR-compliant + platform. While Cloudflare may temporarily process technical data (such as IP addresses) to + deliver and protect the website, no tracking or profiling of visitors takes place by default. +

+

+ Cloudflare's privacy policy is available here:
+ https://www.cloudflare.com/privacypolicy/ +

+ +

Your Rights Under GDPR

+

+ Since no personal data is collected or stored on this site, the rights granted under the GDPR + (e.g. right of access, rectification, erasure, or data portability) do not apply in this context. +

+

+ If you have any questions regarding data processing or privacy, feel free to reach out via the + contact information available on the site. +

+
+
diff --git a/src/site.config.ts b/src/site.config.ts index a09953d..8c13238 100644 --- a/src/site.config.ts +++ b/src/site.config.ts @@ -49,6 +49,10 @@ export const menuLinks: { path: string; title: string }[] = [ path: "/micro/", title: "Micro", }, + { + path: "/privacy-policy/", + title: "Privacy", + }, ]; // https://expressive-code.com/reference/configuration/ -- cgit v1.2.3