From 7e801178a937fbc37eaa6cecc572d58b581dfddc Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 28 May 2026 10:10:32 +0000 Subject: [PATCH] Update src/app/shop/page.tsx --- src/app/shop/page.tsx | 348 +++++++++++++++--------------------------- 1 file changed, 126 insertions(+), 222 deletions(-) diff --git a/src/app/shop/page.tsx b/src/app/shop/page.tsx index ee023d0..78bd114 100644 --- a/src/app/shop/page.tsx +++ b/src/app/shop/page.tsx @@ -2,14 +2,48 @@ import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import ReactLenis from "lenis/react"; -import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis'; -import MetricCardTwo from '@/components/sections/metrics/MetricCardTwo'; import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple'; +import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis'; import ProductCardThree from '@/components/sections/product/ProductCardThree'; +import AgeVerificationModal from "@/app/components/AgeVerificationModal"; + +export default function ShopPage() { + const products = [ + { + id: "prod-1", name: "Exclusieve Rode Wijn", price: "€34,95", imageSrc: "http://img.b2bpic.net/free-photo/carafe-glass-wine-white-table_52683-96526.jpg", imageAlt: "Fles rode wijn", onProductClick: () => window.location.href = "/shop/prod-1" + }, + { + id: "prod-2", name: "Frisse Witte Wijn", price: "€19,50", imageSrc: "http://img.b2bpic.net/free-photo/message-bottle-beach_1204-107.jpg", imageAlt: "Fles witte wijn", onProductClick: () => window.location.href = "/shop/prod-2" + }, + { + id: "prod-3", name: "Ambachtelijke Gin", price: "€49,00", imageSrc: "http://img.b2bpic.net/free-photo/wine-bottle-with-goblet-hookah-tubes-ashtray_176474-6111.jpg", imageAlt: "Fles gin", onProductClick: () => window.location.href = "/shop/prod-3" + }, + { + id: "prod-4", name: "Premium Single Malt Whisky", price: "€75,00", imageSrc: "http://img.b2bpic.net/free-photo/scotch-whiskey-glass-wooden-table_123827-22162.jpg", imageAlt: "Glas whisky met fles", onProductClick: () => window.location.href = "/shop/prod-4" + }, + { + id: "prod-5", name: "Gourmet Kaasplank", price: "€28,75", imageSrc: "http://img.b2bpic.net/free-photo/delicious-gourmet-snacks-board_23-2148325932.jpg", imageAlt: "Kaasplank met delicatessen", onProductClick: () => window.location.href = "/shop/prod-5" + }, + { + id: "prod-6", name: "Feestelijke Mousserende Wijn", price: "€22,95", imageSrc: "http://img.b2bpic.net/free-photo/top-view-champagne-dark-table_140725-99998.jpg", imageAlt: "Fles mousserende wijn", onProductClick: () => window.location.href = "/shop/prod-6" + }, + { + id: "prod-7", name: "Italiaanse Olijfolie", price: "€12,99", imageSrc: "http://img.b2bpic.net/free-photo/olive-oil-with-black-olives-glass-bowl_140725-10368.jpg", imageAlt: "Fles olijfolie", onProductClick: () => window.location.href = "/shop/prod-7" + }, + { + id: "prod-8", name: "Luxueuze Chocolade Truffels", price: "€15,00", imageSrc: "http://img.b2bpic.net/free-photo/assortment-chocolate-truffles_23-2147779268.jpg", imageAlt: "Chocolade truffels", onProductClick: () => window.location.href = "/shop/prod-8" + }, + { + id: "prod-9", name: "Biologisch Bier Pakket", price: "€25,00", imageSrc: "http://img.b2bpic.net/free-photo/assortment-beer-bottles_23-2147910100.jpg", imageAlt: "Bierpakket", onProductClick: () => window.location.href = "/shop/prod-9" + }, + { + id: "prod-10", name: "Vintage Port", price: "€89,00", imageSrc: "http://img.b2bpic.net/free-photo/vintage-port-wine-bottle_140725-72439.jpg", imageAlt: "Vintage Port fles", onProductClick: () => window.location.href = "/shop/prod-10" + } + ]; -export default function LandingPage() { return ( - + - - + > + + -
- -
+
+ +
-
- -
- - -
-
+ + +
+ ); }