diff --git a/src/app/page.tsx b/src/app/page.tsx index 10dd00f..08318d7 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -116,19 +116,24 @@ export default function LandingPage() { textboxLayout="split" gridVariant="uniform-all-items-equal" useInvertedBackground={false} + buttons={[ + { + text: "View Details", href: "#contact" + } + ]} products={[ { - id: "r1", name: "Standard AC Room", price: "₹1,500/night", variant: "Best Value", imageSrc: "http://img.b2bpic.net/free-photo/luxury-modern-style-bedroom-interior-hotel-bedroom-generative-ai-illustration_1258-151611.jpg"}, + id: "r1", name: "Standard AC Room", price: "₹1,500/night", variant: "Best Value", imageSrc: "http://img.b2bpic.net/free-photo/luxury-modern-style-bedroom-interior-hotel-bedroom-generative-ai-illustration_1258-151611.jpg", onProductClick: () => window.location.href = '#contact'}, { - id: "r2", name: "Deluxe Room", price: "₹2,500/night", variant: "Premium", imageSrc: "http://img.b2bpic.net/free-photo/minimalist-bedroom-with-view_23-2151934207.jpg"}, + id: "r2", name: "Deluxe Room", price: "₹2,500/night", variant: "Premium", imageSrc: "http://img.b2bpic.net/free-photo/minimalist-bedroom-with-view_23-2151934207.jpg", onProductClick: () => window.location.href = '#contact'}, { - id: "r3", name: "Suite", price: "₹3,500/night", variant: "Luxury", imageSrc: "http://img.b2bpic.net/free-photo/friends-having-fun-party-covid_23-2149316357.jpg"}, + id: "r3", name: "Suite", price: "₹3,500/night", variant: "Luxury", imageSrc: "http://img.b2bpic.net/free-photo/friends-having-fun-party-covid_23-2149316357.jpg", onProductClick: () => window.location.href = '#contact'}, { - id: "r4", name: "Non-AC Economy", price: "₹999/night", variant: "Budget", imageSrc: "http://img.b2bpic.net/free-photo/bed-with-gray-orange-cushions_1203-767.jpg"}, + id: "r4", name: "Non-AC Economy", price: "₹999/night", variant: "Budget", imageSrc: "http://img.b2bpic.net/free-photo/bed-with-gray-orange-cushions_1203-767.jpg", onProductClick: () => window.location.href = '#contact'}, { - id: "r5", name: "Family Suite", price: "₹4,500/night", variant: "Spacious", imageSrc: "http://img.b2bpic.net/free-photo/hotel-bedroom-with-double-bed-table-tv-set_1262-3034.jpg"}, + id: "r5", name: "Family Suite", price: "₹4,500/night", variant: "Spacious", imageSrc: "http://img.b2bpic.net/free-photo/hotel-bedroom-with-double-bed-table-tv-set_1262-3034.jpg", onProductClick: () => window.location.href = '#contact'}, { - id: "r6", name: "Twin Room", price: "₹2,000/night", variant: "Travelers", imageSrc: "http://img.b2bpic.net/free-photo/white-comfortable-pillow-bed-decoration-interior_74190-10085.jpg"}, + id: "r6", name: "Twin Room", price: "₹2,000/night", variant: "Travelers", imageSrc: "http://img.b2bpic.net/free-photo/white-comfortable-pillow-bed-decoration-interior_74190-10085.jpg", onProductClick: () => window.location.href = '#contact'}, ]} title="Our Comfortable Rooms" description="Choose from a range of clean, air-conditioned, and well-maintained rooms tailored for your needs. Includes Free Cancellation and our Best Price Guarantee." @@ -261,4 +266,4 @@ export default function LandingPage() { ); -} +} \ No newline at end of file