diff --git a/src/app/page.tsx b/src/app/page.tsx index 158d86a..6389fd7 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -102,9 +102,9 @@ export default function LandingPage() { gridVariant="three-columns-all-equal-width" useInvertedBackground={false} products={[ - { id: "p1", brand: "WohnGarten", name: "Sommerstrauß", price: "29,90 €", rating: 5, reviewCount: "12", imageSrc: "http://img.b2bpic.net/free-photo/pink-roses-paper-bag-with-gift-box_23-2148268255.jpg" }, - { id: "p2", brand: "WohnGarten", name: "Sonnenblumen-Korb", price: "35,00 €", rating: 5, reviewCount: "8", imageSrc: "http://img.b2bpic.net/free-photo/woman-holding-bouquet-purple-flowers-hand_114579-2439.jpg" }, - { id: "p3", brand: "WohnGarten", name: "Hochzeit-Arrangement", price: "89,00 €", rating: 5, reviewCount: "24", imageSrc: "http://img.b2bpic.net/free-photo/closeup-shot-beautiful-white-floral-bouquet-wedding-decoration_181624-6765.jpg" }, + { id: "p1", brand: "WohnGarten", name: "Sommerstrauß", price: "29,90 €", rating: 5, reviewCount: "12", imageSrc: "http://img.b2bpic.net/free-photo/pink-roses-paper-bag-with-gift-box_23-2148268255.jpg", onProductClick: () => window.location.href = '#contact' }, + { id: "p2", brand: "WohnGarten", name: "Sonnenblumen-Korb", price: "35,00 €", rating: 5, reviewCount: "8", imageSrc: "http://img.b2bpic.net/free-photo/woman-holding-bouquet-purple-flowers-hand_114579-2439.jpg", onProductClick: () => window.location.href = '#contact' }, + { id: "p3", brand: "WohnGarten", name: "Hochzeit-Arrangement", price: "89,00 €", rating: 5, reviewCount: "24", imageSrc: "http://img.b2bpic.net/free-photo/closeup-shot-beautiful-white-floral-bouquet-wedding-decoration_181624-6765.jpg", onProductClick: () => window.location.href = '#contact' }, ]} title="Unsere Produkte" description="Entdecken Sie unsere aktuelle Auswahl." @@ -176,4 +176,4 @@ export default function LandingPage() { ); -} +} \ No newline at end of file