From 72b657dbe97a3ee9ab579c2f6589c602940f855a Mon Sep 17 00:00:00 2001 From: bender Date: Mon, 2 Mar 2026 09:34:29 +0000 Subject: [PATCH] Update src/app/page.tsx --- src/app/page.tsx | 20 ++++++++++++++++---- 1 file changed, 16 insertions(+), 4 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index 2266aaf..5194d12 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -9,7 +9,7 @@ import ProductCardThree from '@/components/sections/product/ProductCardThree'; import TestimonialCardFive from '@/components/sections/testimonial/TestimonialCardFive'; import ContactSplit from '@/components/sections/contact/ContactSplit'; import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis'; -import { Award, Flower2, Heart, Sparkles } from "lucide-react"; +import { Award, Flower2, Heart, Sparkles, ShoppingCart, Zap } from "lucide-react"; export default function LandingPage() { return ( @@ -106,13 +106,25 @@ export default function LandingPage() { tag="Gallery" products={[ { - id: "1", name: "Blush Rose Elegance", price: "$85", imageSrc: "http://img.b2bpic.net/free-photo/closeup-pink-rose-bouquet_53876-153449.jpg", imageAlt: "Blush rose arrangement in classic vase" + id: "1", name: "Blush Rose Elegance", price: "$85", imageSrc: "http://img.b2bpic.net/free-photo/closeup-pink-rose-bouquet_53876-153449.jpg", imageAlt: "Blush rose arrangement in classic vase", priceButtonProps: { + text: "Add to Cart", + icon: ShoppingCart, + onClick: () => console.log('Added Blush Rose Elegance to cart') + } }, { - id: "2", name: "Minimalist White", price: "$65", imageSrc: "http://img.b2bpic.net/free-photo/close-up-white-spring-peonies-flowers-bed_169016-21421.jpg", imageAlt: "White peonies and greenery arrangement" + id: "2", name: "Minimalist White", price: "$65", imageSrc: "http://img.b2bpic.net/free-photo/close-up-white-spring-peonies-flowers-bed_169016-21421.jpg", imageAlt: "White peonies and greenery arrangement", priceButtonProps: { + text: "Quick Order", + icon: Zap, + onClick: () => console.log('Quick ordered Minimalist White') + } }, { - id: "3", name: "Seasonal Rainbow", price: "$95", imageSrc: "http://img.b2bpic.net/free-photo/top-view-colorful-daisies-with-frame_23-2148207830.jpg", imageAlt: "Mixed colorful spring flowers arrangement" + id: "3", name: "Seasonal Rainbow", price: "$95", imageSrc: "http://img.b2bpic.net/free-photo/top-view-colorful-daisies-with-frame_23-2148207830.jpg", imageAlt: "Mixed colorful spring flowers arrangement", priceButtonProps: { + text: "Add to Cart", + icon: ShoppingCart, + onClick: () => console.log('Added Seasonal Rainbow to cart') + } } ]} gridVariant="three-columns-all-equal-width" -- 2.49.1