"use client"; import Link from "next/link"; import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import NavbarStyleApple from "@/components/navbar/NavbarStyleApple/NavbarStyleApple"; import HeroBillboardGallery from "@/components/sections/hero/HeroBillboardGallery"; import ProductCardOne from "@/components/sections/product/ProductCardOne"; import MetricSplitMediaAbout from "@/components/sections/about/MetricSplitMediaAbout"; import SocialProofOne from "@/components/sections/socialProof/SocialProofOne"; import FooterMedia from "@/components/sections/footer/FooterMedia"; export default function HomePage() { const navItems = [ { name: "Erlebnis", id: "erlebnis" }, { name: "Sicherheit", id: "sicherheit" }, { name: "Über uns", id: "uber-uns" }, { name: "Kontakt", id: "kontakt" }, ]; const footerColumns = [ { title: "Navigation", items: [ { label: "Erlebnis", href: "/erlebnis" }, { label: "Sicherheit", href: "/sicherheit" }, { label: "Über uns", href: "/uber-uns" }, ], }, { title: "Contact", items: [ { label: "Telefon", href: "#" }, { label: "WhatsApp", href: "#" }, { label: "E-Mail", href: "mailto:info@kingcars.de" }, ], }, { title: "Legal", items: [ { label: "Datenschutz", href: "#" }, { label: "Impressum", href: "#" }, { label: "AGB", href: "#" }, ], }, ]; return (
); }