From 739517f7e483f54837853fafd39fad07bc69541c Mon Sep 17 00:00:00 2001 From: Christian Visintin Date: Fri, 19 Jun 2026 19:12:53 +0200 Subject: [PATCH] feat(site): add privacy policy page (#435) Add a GDPR privacy policy covering Vercel hosting/server logs and EU-hosted Umami analytics, and link it from the footer. --- site/src/components/Footer.astro | 6 + site/src/pages/privacy.astro | 187 +++++++++++++++++++++++++++++++ 2 files changed, 193 insertions(+) create mode 100644 site/src/pages/privacy.astro diff --git a/site/src/components/Footer.astro b/site/src/components/Footer.astro index acead06..3a21b78 100644 --- a/site/src/components/Footer.astro +++ b/site/src/components/Footer.astro @@ -26,6 +26,12 @@ const year = new Date().getFullYear(); data-umami-event="docs" data-umami-event-location="footer">User manual + Privacy

termscp v{VERSION} · © {year} Christian Visintin · Released under the MIT license. diff --git a/site/src/pages/privacy.astro b/site/src/pages/privacy.astro new file mode 100644 index 0000000..bc3519c --- /dev/null +++ b/site/src/pages/privacy.astro @@ -0,0 +1,187 @@ +--- +import Base from "../layouts/Base.astro"; +import Nav from "../components/Nav.astro"; +import Footer from "../components/Footer.astro"; + +const EMAIL = "info@veeso.dev"; +--- + + +