Update src/app/privacy-policy/page.tsx

This commit is contained in:
2026-05-13 08:28:56 +00:00
parent e76d8e6d32
commit dc7a5adedc

View File

@@ -1,11 +1,12 @@
"use client";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import LegalSection from '@/components/legal/LegalSection';
import ReactLenis from "lenis/react";
import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline';
import FooterBaseCard from '@/components/sections/footer/FooterBaseCard';
import LegalSection from '@/components/legal/LegalSection';
export default function PrivacyPolicy() {
export default function PrivacyPolicyPage() {
return (
<ThemeProvider
defaultButtonVariant="hover-bubble"
@@ -19,38 +20,38 @@ export default function PrivacyPolicy() {
secondaryButtonStyle="glass"
headingFontWeight="medium"
>
<ReactLenis root>
<NavbarLayoutFloatingInline
navItems={[
{ name: "Home", id: "/" },
{ name: "Datenschutz", id: "/privacy-policy" }
]}
brandName="Garage Blaas"
navItems={[
{ name: "Home", id: "/" },
{ name: "Privacy", id: "/privacy-policy" },
]}
brandName="Garage Blaas"
button={{ text: "Contact", href: "/#contact" }}
/>
<LegalSection
<div className="pt-32 pb-16">
<LegalSection
layout="page"
title="Datenschutzerklärung"
title="Privacy Policy"
sections={[
{
heading: "1. Einleitung",
content: { type: "paragraph", text: "Der Schutz Ihrer persönlichen Daten ist uns ein wichtiges Anliegen. Wir informieren Sie hier über die Verarbeitung Ihrer Daten." }
},
{
heading: "2. Datenerhebung",
content: { type: "list", items: ["Name", "E-Mail-Adresse", "Telefonnummer"] }
}
{
heading: "Data Collection", content: { text: "We only collect data necessary for providing our services.", type: "paragraph" }
},
{
heading: "Data Security", content: { text: "Your data is stored securely.", type: "paragraph" }
}
]}
/>
/>
</div>
<FooterBaseCard
logoText="Garage Blaas GmbH"
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: "/privacy-policy" }] }
]}
copyrightText="© 2026 Garage Blaas GmbH | Ihr Meisterbetrieb"
logoText="Garage Blaas GmbH"
columns={[
{ title: "Garage", items: [{ label: "About", href: "/#about" }, { label: "Services", href: "/#services" }, { label: "Contact", href: "/#contact" }] },
{ title: "Service", items: [{ label: "Book", href: "/#contact" }, { label: "FAQ", href: "/#faq" }] },
{ title: "Legal", items: [{ label: "Privacy", href: "/privacy-policy" }] }
]}
/>
</ReactLenis>
</ThemeProvider>
);
}