Switch to version 4: remove src/app/privacy/page.tsx
This commit is contained in:
@@ -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>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user