Merge version_2 into main #2

Merged
bender merged 1 commits from version_2 into main 2026-04-18 14:59:13 +00:00

View File

@@ -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() {
</ReactLenis>
</ThemeProvider>
);
}
}