diff --git a/src/app/privacy/page.tsx b/src/app/privacy/page.tsx new file mode 100644 index 0000000..7b16e82 --- /dev/null +++ b/src/app/privacy/page.tsx @@ -0,0 +1,128 @@ +"use client"; + +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import NavbarStyleFullscreen from "@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen"; +import LegalSection from "@/components/legal/LegalSection"; +import FooterMedia from "@/components/sections/footer/FooterMedia"; + +const navItems = [ + { name: "Home", id: "/" }, + { name: "Services", id: "/services" }, + { name: "Projects", id: "/projects" }, + { name: "About", id: "/about" }, + { name: "Contact", id: "/contact" }, +]; + +const footerColumns = [ + { + title: "Navigation", items: [ + { label: "Home", href: "/" }, + { label: "Services", href: "/services" }, + { label: "Projects", href: "/projects" }, + { label: "About", href: "/about" }, + ], + }, + { + title: "Kontakt", items: [ + { label: "Tel: 04744 730045", href: "tel:04744730045" }, + { label: "Schwegen 10, 27612 Loxstedt", href: "#" }, + { label: "Germany", href: "#" }, + { label: "E-Mail anfragen", href: "mailto:info@kuckbau.de" }, + ], + }, + { + title: "Legal", items: [ + { label: "Datenschutz", href: "/privacy" }, + { label: "Impressum", href: "/imprint" }, + { label: "AGB", href: "/terms" }, + ], + }, +]; + +export default function PrivacyPage() { + return ( + + + +
+ +
+ + +
+ ); +} \ No newline at end of file