diff --git a/src/app/product-detail/page.tsx b/src/app/product-detail/page.tsx new file mode 100644 index 0000000..d34eb50 --- /dev/null +++ b/src/app/product-detail/page.tsx @@ -0,0 +1,153 @@ +"use client"; + +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import ReactLenis from "lenis/react"; +import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay'; +import HeroSplitDualMedia from '@/components/sections/hero/HeroSplitDualMedia'; +import FeatureBorderGlow from '@/components/sections/feature/featureBorderGlow/FeatureBorderGlow'; +import ContactSplit from '@/components/sections/contact/ContactSplit'; +import FooterMedia from '@/components/sections/footer/FooterMedia'; +import { Eye, Paintbrush, Gem } from "lucide-react"; + +export default function ProductDetailPage() { + const navItems = [ + { + name: "Kollektion", id: "/product-detail"}, + { + name: "Markenstory", id: "/#about"}, + { + name: "Anprobe", id: "/#tryon"}, + { + name: "Termin", id: "/#contact"}, + ]; + + return ( + + + + +
+ alert('Produkt zum Warenkorb hinzugefügt!'), + }, + { + text: "Showroom Termin buchen", href: "#contact"}, + ]} + mediaItems={[ + { imageSrc: "http://img.b2bpic.net/free-photo/glasses-with-slightly-rounded-frame_23-2150670770.jpg", imageAlt: "Zenith glasses in emerald" }, + { imageSrc: "http://img.b2bpic.net/free-photo/glasses-with-slightly-rounded-frame_23-2150670729.jpg", imageAlt: "Zenith glasses in gold" }, + ]} + mediaAnimation="slide-up" + rating={5} + ratingText="Luxusbewertung" + /> +
+ +
+ +
+ +
+ +
+ + +
+
+ ); +}