From cfa2ce5998866b018c33ea92df9604d9f72ace21 Mon Sep 17 00:00:00 2001 From: schererleander Date: Fri, 26 Dec 2025 04:30:15 +0100 Subject: feat(privacy): add privacy page --- app/privacy/page.tsx | 41 +++++++++++++++++++++++++++++++++++++++++ 1 file changed, 41 insertions(+) create mode 100644 app/privacy/page.tsx diff --git a/app/privacy/page.tsx b/app/privacy/page.tsx new file mode 100644 index 0000000..8b81d74 --- /dev/null +++ b/app/privacy/page.tsx @@ -0,0 +1,41 @@ +import Link from "next/link"; +import type { Metadata } from "next"; + +export const metadata: Metadata = { + title: "Privacy Policy | Leander Scherer", + description: "Privacy policy for schererleander.de", +}; + +export default function PrivacyPage() { + return ( +
+
+

Privacy Policy

+

+ This site respects your privacy. It does not use cookies and does not collect any personal data. The source code is available on GitHub. +

+
+ +
+

Analytics

+

+ I use Plausible Analytics to collect anonymous usage statistics. Plausible is a privacy-focused analytics tool that does not use cookies and is fully compliant with GDPR, CCPA, and PECR. +

+
+ +
+

Maps

+

+ The map on this website uses Carto for basemaps. When you view the map, your browser makes requests to Carto to load the map tiles. +

+
+ +
+

Contact

+

+ If you have any questions about this privacy policy, please contact me at leander@schererleander.de. +

+
+
+ ); +} -- cgit v1.3.1