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

This commit is contained in:
2026-05-13 08:23:49 +00:00
parent 285f6bdf0e
commit cba0e0a7e3

View File

@@ -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 (
<ThemeProvider
defaultButtonVariant="hover-bubble"
defaultTextAnimation="reveal-blur"
borderRadius="pill"
contentWidth="mediumLarge"
sizing="mediumLarge"
background="noise"
cardStyle="glass-depth"
primaryButtonStyle="primary-glow"
secondaryButtonStyle="glass"
headingFontWeight="medium"
>
<NavbarLayoutFloatingInline
navItems={[
{ name: "Home", id: "/" },
{ name: "Datenschutz", id: "/privacy-policy" }
]}
brandName="Garage Blaas"
/>
<LegalSection
layout="page"
title="Datenschutzerklärung"
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"] }
}
]}
/>
<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"
/>
</ThemeProvider>
);
}