From 58e0c25ccdf2fcd146b0601d2c64f68c09eed674 Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 3 Mar 2026 11:01:52 +0000 Subject: [PATCH] Update src/app/page.tsx --- src/app/page.tsx | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index bcb46df..8736535 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -9,7 +9,7 @@ import FeatureCardSix from '@/components/sections/feature/FeatureCardSix'; import TestimonialCardTwelve from '@/components/sections/testimonial/TestimonialCardTwelve'; import ContactCTA from '@/components/sections/contact/ContactCTA'; import FooterMedia from '@/components/sections/footer/FooterMedia'; -import { Heart, Flower2, Award, Sparkles } from 'lucide-react'; +import { Heart, Flower2, Award, Sparkles, Star } from 'lucide-react'; export default function LandingPage() { return ( @@ -67,17 +67,21 @@ export default function LandingPage() { useInvertedBackground={false} products={[ { - id: "1", name: "Romance Rose", price: "$95", imageSrc: "http://img.b2bpic.net/free-photo/bouquet-pink-roses-single-branch-rose-with-green-leaves-inside-vase_114579-1440.jpg?_wi=1", imageAlt: "Romantic rose arrangement" + id: "1", name: "Romance Rose", price: "$95", imageSrc: "http://img.b2bpic.net/free-photo/bouquet-pink-roses-single-branch-rose-with-green-leaves-inside-vase_114579-1440.jpg?_wi=1", imageAlt: "Romantic rose arrangement", rating: 5, + ratingColor: "#22c55e" }, { - id: "2", name: "Bridal Dreams", price: "$150", imageSrc: "http://img.b2bpic.net/free-photo/beautiful-wedding-bouquet-flowers_1157-18354.jpg?_wi=1", imageAlt: "Elegant bridal bouquet" + id: "2", name: "Bridal Dreams", price: "$150", imageSrc: "http://img.b2bpic.net/free-photo/beautiful-wedding-bouquet-flowers_1157-18354.jpg?_wi=1", imageAlt: "Elegant bridal bouquet", rating: 5, + ratingColor: "#22c55e" }, { - id: "3", name: "Spring Garden", price: "$85", imageSrc: "http://img.b2bpic.net/free-photo/overhead-view-colorful-tulips-baby-s-breath-flower-wooden-desk_23-2148048500.jpg?_wi=1", imageAlt: "Colorful spring arrangement" + id: "3", name: "Spring Garden", price: "$85", imageSrc: "http://img.b2bpic.net/free-photo/overhead-view-colorful-tulips-baby-s-breath-flower-wooden-desk_23-2148048500.jpg?_wi=1", imageAlt: "Colorful spring arrangement", rating: 5, + ratingColor: "#22c55e" } ]} gridVariant="three-columns-all-equal-width" animationType="slide-up" + ratingIcon={Star} /> -- 2.49.1