aboutsummaryrefslogtreecommitdiff
path: root/app/legal
diff options
context:
space:
mode:
authorschererleander <leander@schererleander.de>2025-12-28 21:47:13 +0100
committerschererleander <leander@schererleander.de>2025-12-28 21:47:13 +0100
commite3ff6096bf56b0e39f27b7a90a543af76adabf3c (patch)
treee3b5895b33468eb098639584fc2bcabd92308984 /app/legal
parent2c102ad4756b5e7aeab3b0fd05fd0e37687f901f (diff)
chore: refactor privacy to legal
Diffstat (limited to 'app/legal')
-rw-r--r--app/legal/page.tsx33
1 files changed, 33 insertions, 0 deletions
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 (
+ <div className="py-12 space-y-10">
+ <section className="space-y-4">
+ <h1 className="text-2xl font-bold">Privacy Policy</h1>
+ <p className="text-muted-foreground leading-relaxed">
+ This website does not use cookies and does not collect personal data. The source code is available on <Link href="https://github.com/schererleander/site" target="_blank" rel="noopener noreferrer" className="underline underline-offset-4 hover:text-foreground">GitHub</Link>.
+ </p>
+ </section>
+
+ <section className="space-y-3">
+ <h2 className="text-xl font-semibold">Hosting</h2>
+ <p className="text-muted-foreground leading-relaxed">
+ I use <Link href="https://www.ionos.de" target="_blank" rel="noopener noreferrer" className="underline underline-offset-4 hover:text-foreground">Ionos</Link> to host this website. To ensure security and operational stability, I log the following visitor data:
+ </p>
+
+ <ul className="list-disc list-inside text-muted-foreground leading-relaxed space-y-1">
+ <li>IP address</li>
+ <li>Date and time of access</li>
+ <li>Browser information and operating system</li>
+ </ul>
+ </section>
+ </div>
+ );
+}