diff --git a/src/app/page.tsx b/src/app/page.tsx index 505c23f..fe78749 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -117,15 +117,27 @@ export default function LandingPage() { products={[ { id: "1", name: "Standard Double Room", price: "$40/night", imageSrc: "http://img.b2bpic.net/free-photo/stacked-white-towels-wooden-surface-with-sunlit-background_9975-133020.jpg", imageAlt: "Spacious standard double room with large bed", initialQuantity: 1, + priceButtonProps: { + href: "#booking", onClick: undefined + } }, { id: "2", name: "Family Room (2-3 guests)", price: "$60/night", imageSrc: "http://img.b2bpic.net/free-photo/abstract-blur-furniture-shop-store-interior_1203-8590.jpg", imageAlt: "Comfortable family room with multiple sleeping areas", initialQuantity: 1, + priceButtonProps: { + href: "#booking", onClick: undefined + } }, { id: "3", name: "Twin Bed Room", price: "$45/night", imageSrc: "http://img.b2bpic.net/free-photo/bath-accessories-burning-candle-body-care-hygiene-concept_169016-15624.jpg", imageAlt: "Twin bedroom with private facilities", initialQuantity: 1, + priceButtonProps: { + href: "#booking", onClick: undefined + } }, ]} gridVariant="three-columns-all-equal-width" + buttons={[ + { text: "Reserve a Room", href: "#booking" }, + ]} />