Switch to version 4: remove src/app/privacy/page.tsx

This commit is contained in:
2026-05-13 08:31:27 +00:00
parent c74a6e9667
commit 88d134cc6f

View File

@@ -1,57 +0,0 @@
"use client";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
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 PrivacyPage() {
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"
>
<ReactLenis root>
<NavbarLayoutFloatingInline
navItems={[
{ name: "Start", id: "/" },
{ name: "Datenschutz", id: "/privacy" },
]}
brandName="Garage Blaas"
button={{ text: "Termin", href: "/#contact" }}
/>
<div className="pt-32 pb-16">
<LegalSection
layout="page"
title="Datenschutz"
sections={[
{
heading: "Datenerhebung", content: { text: "Wir erheben nur die Daten, die für die Bereitstellung unseres Service notwendig sind." }
},
{
heading: "Speicherung", content: { text: "Ihre Daten werden sicher auf unseren Servern gespeichert." }
}
]}
/>
</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" }] }
]}
/>
</ReactLenis>
</ThemeProvider>
);
}