1 Commits

Author SHA1 Message Date
64075af20b Update src/app/page.tsx 2026-03-07 07:34:39 +00:00

View File

@@ -117,15 +117,27 @@ export default function LandingPage() {
products={[ 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, 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, 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, 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" gridVariant="three-columns-all-equal-width"
buttons={[
{ text: "Reserve a Room", href: "#booking" },
]}
/> />
</div> </div>