Merge version_5 into main
Merge version_5 into main
This commit was merged in pull request #13.
This commit is contained in:
@@ -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>
|
||||
);
|
||||
}
|
||||
@@ -27,6 +27,7 @@ export default function PrivacyPage() {
|
||||
{ name: "Datenschutz", id: "/privacy" },
|
||||
]}
|
||||
brandName="Garage Blaas"
|
||||
button={{ text: "Termin", href: "/#contact" }}
|
||||
/>
|
||||
<div className="pt-32 pb-16">
|
||||
<LegalSection
|
||||
@@ -34,10 +35,10 @@ export default function PrivacyPage() {
|
||||
title="Datenschutz"
|
||||
sections={[
|
||||
{
|
||||
heading: "Datenerhebung", content: { type: "paragraph", text: "Wir erheben nur die Daten, die für die Bereitstellung unseres Service notwendig sind." }
|
||||
heading: "Datenerhebung", content: { text: "Wir erheben nur die Daten, die für die Bereitstellung unseres Service notwendig sind.", type: "paragraph" }
|
||||
},
|
||||
{
|
||||
heading: "Speicherung", content: { type: "paragraph", text: "Ihre Daten werden sicher auf unseren Servern gespeichert." }
|
||||
heading: "Speicherung", content: { text: "Ihre Daten werden sicher auf unseren Servern gespeichert.", type: "paragraph" }
|
||||
}
|
||||
]}
|
||||
/>
|
||||
|
||||
Reference in New Issue
Block a user