diff --git a/src/app/page.tsx b/src/app/page.tsx index 5b66e80..79eac75 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 { Star, Shield, Zap } from 'lucide-react'; import FeatureCardTwentyFive from '@/components/sections/feature/FeatureCardTwentyFive'; import FeatureCardTwentySeven from '@/components/sections/feature/FeatureCardTwentySeven'; import FooterBaseReveal from '@/components/sections/footer/FooterBaseReveal'; @@ -60,9 +61,9 @@ export default function LandingPage() { textboxLayout="split" useInvertedBackground={false} features={[ - { id: "f1", title: "Handcrafted", description: ["Each piece is made with love by our skilled artisans."], imageSrc: "http://img.b2bpic.net/free-photo/tools-clay-work-sculpting_23-2149986269.jpg" }, - { id: "f2", title: "Ethically Sourced", description: ["Materials chosen with care for the environment."], imageSrc: "http://img.b2bpic.net/free-photo/antique-silver-scissors-wrapped-present-with-leaves-tag-green-background_23-2147924471.jpg" }, - { id: "f3", title: "Timeless Design", description: ["Jewelry that never goes out of style."], imageSrc: "http://img.b2bpic.net/free-photo/view-luxurious-golden-ring-rock-concrete-tray_23-2150329711.jpg" }, + { id: "f1", title: "Handcrafted", descriptions: ["Each piece is made with love by our skilled artisans."], imageSrc: "http://img.b2bpic.net/free-photo/tools-clay-work-sculpting_23-2149986269.jpg" }, + { id: "f2", title: "Ethically Sourced", descriptions: ["Materials chosen with care for the environment."], imageSrc: "http://img.b2bpic.net/free-photo/antique-silver-scissors-wrapped-present-with-leaves-tag-green-background_23-2147924471.jpg" }, + { id: "f3", title: "Timeless Design", descriptions: ["Jewelry that never goes out of style."], imageSrc: "http://img.b2bpic.net/free-photo/view-luxurious-golden-ring-rock-concrete-tray_23-2150329711.jpg" }, ]} title="Why Choose Velmora" description="We blend quality craftsmanship with modern aesthetics to elevate your daily style." @@ -96,8 +97,8 @@ export default function LandingPage() { title="Customization" description="Tailored pieces to express your style." features={[ - { title: "Unique", description: ["Express yourself"], imageSrc: "" }, - { title: "Quality", description: ["Lasting finish"], imageSrc: "" } + { title: "Unique", description: "Express yourself", icon: Star, mediaItems: [{ imageSrc: "" }, { imageSrc: "" }] }, + { title: "Quality", description: "Lasting finish", icon: Shield, mediaItems: [{ imageSrc: "" }, { imageSrc: "" }] } ]} />