From 4f7a39628fed90a307dbcaaf091ed1f0f568002c Mon Sep 17 00:00:00 2001 From: Chneemann Date: Wed, 22 Jul 2026 08:20:55 +0200 Subject: [PATCH] feat: add imprint and privacy policy pages --- src/app/imprint/page.tsx | 114 ++++++++++++++++++++++++++++++++++++++ src/app/privacy/page.tsx | 95 +++++++++++++++++++++++++++++++ src/components/Footer.tsx | 4 +- 3 files changed, 211 insertions(+), 2 deletions(-) create mode 100644 src/app/imprint/page.tsx create mode 100644 src/app/privacy/page.tsx diff --git a/src/app/imprint/page.tsx b/src/app/imprint/page.tsx new file mode 100644 index 0000000..b9a852a --- /dev/null +++ b/src/app/imprint/page.tsx @@ -0,0 +1,114 @@ +import Link from "next/link"; + +export default function ImprintPage() { + return ( +
+

+ Legal Notice. +

+ + ← Back to Homepage + + +
+ {/* Angaben gemäß § 5 DDG & § 18 MStV */} +
+

+ //{" "} + Information pursuant to § 5 DDG +

+

André Kempf

+

Full-Stack Web Developer

+

Großschneidersweg 2a

+

76149 Karlsruhe

+

Germany

+

+ Also responsible for content pursuant to § 18 Abs. 2 MStV. +

+
+ + {/* Contact */} +
+

+ // Contact +

+

+ Email:{" "} + + dev@andre-kempf.com + +

+
+ + {/* Disclaimer */} +
+

+ //{" "} + Disclaimer & Legal Notes +

+ +
+

+ Liability for Content +

+

+ As a service provider, I am responsible for my own content on + these pages according to general laws pursuant to § 7 Abs. 1 DDG. + However, according to §§ 8 to 10 DDG, I am not obligated to + monitor transmitted or stored third-party information or to + investigate circumstances that indicate illegal activity. +

+
+ +
+

+ Liability for Links +

+

+ My website contains links to external third-party websites over + whose content I have no control. Therefore, I cannot accept any + liability for these external contents. The respective provider or + operator of the pages is always responsible for the content of the + linked pages. +

+
+ +
+

Copyright

+

+ The content and works created on these pages are subject to German + copyright law. Duplication, processing, distribution, or any form + of commercialization beyond the scope of copyright law require the + prior written consent of the author or creator. +

+
+
+ + {/* Dispute Resolution */} +
+

+ // Dispute + Resolution +

+

+ The European Commission provides a platform for online dispute + resolution (OS):{" "} + + https://ec.europa.eu/consumers/odr/ + + .
I am neither willing nor obligated to participate in dispute + resolution proceedings before a consumer arbitration board. +

+
+
+
+ ); +} diff --git a/src/app/privacy/page.tsx b/src/app/privacy/page.tsx new file mode 100644 index 0000000..ac4b248 --- /dev/null +++ b/src/app/privacy/page.tsx @@ -0,0 +1,95 @@ +import Link from "next/link"; + +export default function PrivacyPage() { + return ( +
+

+ Privacy Policy. +

+ + ← Back to Homepage + + +
+ {/* 1. Overview */} +
+

+ // 1. Data + Protection at a Glance +

+

General Information

+

+ The following notes provide a simple overview of what happens to + your personal data when you visit this website. Personal data is any + data that can be used to personally identify you. +

+

+ Data Collection on This Website +

+

+ Data processing on this website is carried out by the website + operator. Your data is collected when you provide it to us, or + automatically by our IT systems when you visit the site. +

+
+ + {/* 2. Responsible Party */} +
+

+ // 2. + Responsible Party (Controller) +

+

+ The controller responsible for data processing on this website is: +

+
+

André Kempf

+

Großschneidersweg 2a

+

76149 Karlsruhe, Germany

+

+ Email:{" "} + + dev@andre-kempf.com + +

+
+
+ + {/* 3. Hosting & Log Files */} +
+

+ // 3. + Hosting & Server Log Files +

+

+ This website is hosted externally. The personal data collected on + this website is stored on the host's servers. +

+

+ The provider automatically collects and stores information in + so-called server log files, which your browser automatically + transmits to us (e.g., browser type, operating system, IP address, + time of request). +

+
+ + {/* 4. Your Rights */} +
+

+ // 4. Your + Rights +

+

+ You have the right at any time to receive information free of charge + about the origin, recipient, and purpose of your stored personal + data. You also have a right to request the correction or deletion of + this data. +

+
+
+
+ ); +} diff --git a/src/components/Footer.tsx b/src/components/Footer.tsx index 9266814..147fcb4 100644 --- a/src/components/Footer.tsx +++ b/src/components/Footer.tsx @@ -10,14 +10,14 @@ export default function Footer() { href="/imprint" className="hover:text-slate-300 transition-colors" > - Impressum + Legal Notice | - Datenschutz + Privacy Policy