diff --git a/src/app/page.tsx b/src/app/page.tsx index 7eb5b97..91c3080 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -83,12 +83,12 @@ export default function LandingPage() { gridVariant="three-columns-all-equal-width" useInvertedBackground={false} products={[ - { id: "p1", name: "Premium Jacket", price: "$120", imageSrc: "http://img.b2bpic.net/free-photo/close-up-young-man-blue-denim-shirt_23-2148130363.jpg" }, - { id: "p2", name: "Summer Dress", price: "$89", imageSrc: "http://img.b2bpic.net/free-photo/denim-pants-placed-display_150588-17.jpg" }, - { id: "p3", name: "Leather Bag", price: "$150", imageSrc: "http://img.b2bpic.net/free-photo/view-women-s-purse-tiles-with-mediterranean-aesthetics_23-2150916726.jpg" }, - { id: "p4", name: "Knit Sweater", price: "$75", imageSrc: "http://img.b2bpic.net/free-photo/pile-winter-sweaters-with-pine-cones_23-2148312122.jpg" }, - { id: "p5", name: "Graphic Tee", price: "$35", imageSrc: "http://img.b2bpic.net/free-photo/spring-wardrobe-switch-still-life_23-2150176772.jpg" }, - { id: "p6", name: "Silk Scarf", price: "$45", imageSrc: "http://img.b2bpic.net/free-photo/smooth-textured-handkerchief-hanging_23-2149091389.jpg" }, + { id: "p1", name: "Premium Jacket", price: "$120", imageSrc: "http://img.b2bpic.net/free-photo/close-up-young-man-blue-denim-shirt_23-2148130363.jpg", priceButtonProps: { text: "Add to Cart" } }, + { id: "p2", name: "Summer Dress", price: "$89", imageSrc: "http://img.b2bpic.net/free-photo/denim-pants-placed-display_150588-17.jpg", priceButtonProps: { text: "Add to Cart" } }, + { id: "p3", name: "Leather Bag", price: "$150", imageSrc: "http://img.b2bpic.net/free-photo/view-women-s-purse-tiles-with-mediterranean-aesthetics_23-2150916726.jpg", priceButtonProps: { text: "Add to Cart" } }, + { id: "p4", name: "Knit Sweater", price: "$75", imageSrc: "http://img.b2bpic.net/free-photo/pile-winter-sweaters-with-pine-cones_23-2148312122.jpg", priceButtonProps: { text: "Add to Cart" } }, + { id: "p5", name: "Graphic Tee", price: "$35", imageSrc: "http://img.b2bpic.net/free-photo/spring-wardrobe-switch-still-life_23-2150176772.jpg", priceButtonProps: { text: "Add to Cart" } }, + { id: "p6", name: "Silk Scarf", price: "$45", imageSrc: "http://img.b2bpic.net/free-photo/smooth-textured-handkerchief-hanging_23-2149091389.jpg", priceButtonProps: { text: "Add to Cart" } }, ]} title="Latest Arrivals" description="Explore our newest clothing essentials." @@ -189,4 +189,4 @@ export default function LandingPage() { ); -} +} \ No newline at end of file