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} />