diff --git a/src/app/page.tsx b/src/app/page.tsx index fc2d50c..f838868 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -8,7 +8,7 @@ import ProductCardFour from '@/components/sections/product/ProductCardFour'; import TestimonialCardTwo from '@/components/sections/testimonial/TestimonialCardTwo'; import ContactSplitForm from '@/components/sections/contact/ContactSplitForm'; import FooterBase from '@/components/sections/footer/FooterBase'; -import { CheckCircle, Heart, Sparkles, Star } from "lucide-react"; +import { Heart, Sparkles, Star } from "lucide-react"; export default function SitePage() { return ( @@ -60,9 +60,9 @@ export default function SitePage() { imageAlt="Freshly baked bread and pastries arranged beautifully on a wooden table" mediaAnimation="slide-up" marqueeItems={[ - { type: 'text', text: "100% Natural Ingredients", icon: CheckCircle }, - { type: 'text', text: "Made Fresh Daily", icon: Sparkles }, - { type: 'text', text: "Handcrafted with Love", icon: Heart }, + { type: 'text', text: "100% Natural Ingredients" }, + { type: 'text', text: "Made Fresh Daily" }, + { type: 'text', text: "Handcrafted with Love" }, ]} marqueeSpeed={30} showMarqueeCard={true}