diff --git a/src/app/page.tsx b/src/app/page.tsx index 7c4bef9..5c186e4 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -2,6 +2,7 @@ import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import ReactLenis from "lenis/react"; +import { Wheat, Utensils, Award, Users, Heart } from "lucide-react"; import ContactCenter from '@/components/sections/contact/ContactCenter'; import FooterBaseCard from '@/components/sections/footer/FooterBaseCard'; import HeroSplitDoubleCarousel from '@/components/sections/hero/HeroSplitDoubleCarousel'; @@ -67,11 +68,11 @@ export default function LandingPage() { ]} avatarText="Loved by 500+ locals" marqueeItems={[ - { text: "100% Organic" }, - { text: "Farm-to-Table" }, - { text: "Authentic Recipes" }, - { text: "Family Owned" }, - { text: "Handmade Daily" }, + { type: "text-icon", text: "100% Organic", icon: Wheat }, + { type: "text-icon", text: "Farm-to-Table", icon: Utensils }, + { type: "text-icon", text: "Authentic Recipes", icon: Award }, + { type: "text-icon", text: "Family Owned", icon: Users }, + { type: "text-icon", text: "Handmade Daily", icon: Heart }, ]} />