From 64075af20b035cc8503d2ca3cbc1e538ba9a08e8 Mon Sep 17 00:00:00 2001 From: bender Date: Sat, 7 Mar 2026 07:34:39 +0000 Subject: [PATCH] Update src/app/page.tsx --- src/app/page.tsx | 12 ++++++++++++ 1 file changed, 12 insertions(+) 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" }, + ]} /> -- 2.49.1