From e3ff6096bf56b0e39f27b7a90a543af76adabf3c Mon Sep 17 00:00:00 2001 From: schererleander Date: Sun, 28 Dec 2025 21:47:13 +0100 Subject: chore: refactor privacy to legal --- app/legal/page.tsx | 33 +++++++++++++++++++++++++++++++++ app/privacy/page.tsx | 41 ----------------------------------------- 2 files changed, 33 insertions(+), 41 deletions(-) create mode 100644 app/legal/page.tsx delete mode 100644 app/privacy/page.tsx (limited to 'app') diff --git a/app/legal/page.tsx b/app/legal/page.tsx new file mode 100644 index 0000000..829f505 --- /dev/null +++ b/app/legal/page.tsx @@ -0,0 +1,33 @@ +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 website does not use cookies and does not collect personal data. The source code is available on GitHub. +

+
+ +
+

Hosting

+

+ I use Ionos to host this website. To ensure security and operational stability, I log the following visitor data: +

+ +
    +
  • IP address
  • +
  • Date and time of access
  • +
  • Browser information and operating system
  • +
+
+
+ ); +} diff --git a/app/privacy/page.tsx b/app/privacy/page.tsx deleted file mode 100644 index 8b81d74..0000000 --- a/app/privacy/page.tsx +++ /dev/null @@ -1,41 +0,0 @@ -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