From e5d81b4b1ea56ebc1938e431d506296687e29fea Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 17 Mar 2026 18:55:42 +0000 Subject: [PATCH] Add src/app/location/page.tsx --- src/app/location/page.tsx | 139 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 139 insertions(+) create mode 100644 src/app/location/page.tsx diff --git a/src/app/location/page.tsx b/src/app/location/page.tsx new file mode 100644 index 0000000..3ffd9e5 --- /dev/null +++ b/src/app/location/page.tsx @@ -0,0 +1,139 @@ +"use client"; + +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import NavbarStyleFullscreen from "@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen"; +import HeroSplitDualMedia from "@/components/sections/hero/HeroSplitDualMedia"; +import MediaAbout from "@/components/sections/about/MediaAbout"; +import FeatureCardTwentySix from "@/components/sections/feature/FeatureCardTwentySix"; +import ContactFaq from "@/components/sections/contact/ContactFaq"; +import FooterLogoReveal from "@/components/sections/footer/FooterLogoReveal"; +import { MapPin, Phone, Clock, Wifi, ParkingCircle, Accessibility, MessageCircle } from "lucide-react"; + +export default function LocationPage() { + const navItems = [ + { name: "Startseite", id: "home" }, + { name: "Speisekarte", id: "menu" }, + { name: "Bewertungen", id: "reviews" }, + { name: "Über uns", id: "about" }, + { name: "Standort", id: "location" }, + { name: "Kontakt", id: "contact" }, + ]; + + return ( + + + +
+ +
+ +
+ +
+ +
+ +
+ +
+ +
+ + +
+ ); +} \ No newline at end of file