diff --git a/src/app/page.tsx b/src/app/page.tsx index 1ebfa71..a1aac08 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -91,9 +91,9 @@ export default function LandingPage() { useInvertedBackground={false} animationType="slide-up" products={[ - { id: "p1", name: "Diamond Engagement Ring", price: "$2,450", imageSrc: "http://img.b2bpic.net/free-photo/beautiful-engagement-ring-with-diamonds_23-2149509243.jpg" }, - { id: "p2", name: "Gold Pendant Necklace", price: "$850", imageSrc: "http://img.b2bpic.net/free-photo/high-angle-golden-bright-chain_23-2149836482.jpg" }, - { id: "p3", name: "Diamond Drop Earrings", price: "$1,200", imageSrc: "http://img.b2bpic.net/free-photo/close-up-beautiful-afro-american-latin-woman-smiling-spending-nice-time-coffee-shop_58466-12273.jpg" }, + { id: "p1", name: "Diamond Engagement Ring", price: "$2,450", imageSrc: "http://img.b2bpic.net/free-photo/beautiful-engagement-ring-with-diamonds_23-2149509243.jpg", priceButtonProps: { text: "Purchase Now", href: "#contact" } }, + { id: "p2", name: "Gold Pendant Necklace", price: "$850", imageSrc: "http://img.b2bpic.net/free-photo/high-angle-golden-bright-chain_23-2149836482.jpg", priceButtonProps: { text: "Purchase Now", href: "#contact" } }, + { id: "p3", name: "Diamond Drop Earrings", price: "$1,200", imageSrc: "http://img.b2bpic.net/free-photo/close-up-beautiful-afro-american-latin-woman-smiling-spending-nice-time-coffee-shop_58466-12273.jpg", priceButtonProps: { text: "Purchase Now", href: "#contact" } }, ]} title="Curated Collections" description="Discover timeless treasures handcrafted for every occasion." @@ -160,4 +160,4 @@ export default function LandingPage() { ); -} \ No newline at end of file +}