From 285f6bdf0e349b0574c74b39ba0c6dc3859c2d3b Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 13 May 2026 08:23:49 +0000 Subject: [PATCH 1/2] Update src/app/page.tsx --- src/app/page.tsx | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index c801945..7951992 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -35,6 +35,7 @@ export default function LandingPage() { { name: "Leistungen", id: "services" }, { name: "Erfahrungen", id: "testimonials" }, { name: "Kontakt", id: "contact" }, + { name: "Datenschutz", id: "/privacy-policy" } ]} brandName="Garage Blaas" button={{ text: "Termin buchen", href: "#contact" }} @@ -147,7 +148,7 @@ export default function LandingPage() { columns={[ { title: "Garage", items: [{ label: "Über uns", href: "#about" }, { label: "Leistungen", href: "#services" }, { label: "Kontakt", href: "#contact" }] }, { title: "Service", items: [{ label: "Termin buchen", href: "#contact" }, { label: "FAQ", href: "#faq" }] }, - { title: "Rechtliches", items: [{ label: "Impressum", href: "#" }, { label: "Datenschutz", href: "#" }] } + { title: "Rechtliches", items: [{ label: "Impressum", href: "#" }, { label: "Datenschutz", href: "/privacy-policy" }] } ]} copyrightText="© 2026 Garage Blaas GmbH | Ihr Meisterbetrieb" /> From cba0e0a7e34f8fdf79e1cfad08832d735a11a716 Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 13 May 2026 08:23:49 +0000 Subject: [PATCH 2/2] Add src/app/privacy-policy/page.tsx --- src/app/privacy-policy/page.tsx | 54 +++++++++++++++++++++++++++++++++ 1 file changed, 54 insertions(+) create mode 100644 src/app/privacy-policy/page.tsx diff --git a/src/app/privacy-policy/page.tsx b/src/app/privacy-policy/page.tsx new file mode 100644 index 0000000..80f215f --- /dev/null +++ b/src/app/privacy-policy/page.tsx @@ -0,0 +1,54 @@ +"use client"; + +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import LegalSection from '@/components/legal/LegalSection'; +import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline'; +import FooterBaseCard from '@/components/sections/footer/FooterBaseCard'; + +export default function PrivacyPolicy() { + return ( + + + + + + + + ); +} \ No newline at end of file