diff --git a/src/app/page.tsx b/src/app/page.tsx index d246daa..318c95c 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -55,11 +55,12 @@ export default function LandingPage() { textboxLayout="default" gridVariant="four-items-2x2-equal-grid" useInvertedBackground={false} + buttons={[{ text: "View Full Catalog", href: "#" }]} products={[ - { id: "1", name: "Wireless Earbuds", price: "$49", variant: "S", imageSrc: "http://img.b2bpic.net/free-photo/modern-apartment-with-luxury-vibe-featuring-spacious-living-room_482257-120668.jpg" }, - { id: "2", name: "Modern Watch", price: "$129", variant: "M", imageSrc: "http://img.b2bpic.net/free-photo/crop-man-reading-magazine_23-2147793091.jpg" }, - { id: "3", name: "Smart Speaker", price: "$79", variant: "L", imageSrc: "http://img.b2bpic.net/free-photo/top-view-vinyl-record-assortment_23-2149075990.jpg" }, - { id: "4", name: "Gaming Mouse", price: "$35", variant: "S", imageSrc: "http://img.b2bpic.net/free-photo/top-view-blue-computer-mouse-with-yellow-background_23-2148226814.jpg" } + { id: "1", name: "Wireless Earbuds", price: "$49", variant: "S", imageSrc: "http://img.b2bpic.net/free-photo/modern-apartment-with-luxury-vibe-featuring-spacious-living-room_482257-120668.jpg", onProductClick: () => console.log("Discovering Earbuds") }, + { id: "2", name: "Modern Watch", price: "$129", variant: "M", imageSrc: "http://img.b2bpic.net/free-photo/crop-man-reading-magazine_23-2147793091.jpg", onProductClick: () => console.log("Discovering Watch") }, + { id: "3", name: "Smart Speaker", price: "$79", variant: "L", imageSrc: "http://img.b2bpic.net/free-photo/top-view-vinyl-record-assortment_23-2149075990.jpg", onProductClick: () => console.log("Discovering Speaker") }, + { id: "4", name: "Gaming Mouse", price: "$35", variant: "S", imageSrc: "http://img.b2bpic.net/free-photo/top-view-blue-computer-mouse-with-yellow-background_23-2148226814.jpg", onProductClick: () => console.log("Discovering Mouse") } ]} title="Top Selling Products" description="Browse our premium selection." @@ -77,7 +78,7 @@ export default function LandingPage() {