Merge version_2 into main #9

Merged
bender merged 1 commits from version_2 into main 2026-04-17 21:50:29 +00:00

View File

@@ -78,9 +78,9 @@ export default function Page() {
textboxLayout="default"
useInvertedBackground={false}
products={[
{ id: "1", name: "Penthouse Suite", price: "$5,000/mo", imageSrc: "https://images.unsplash.com/photo-1600566753190-17f0baa2a6c3?q=80&w=800" },
{ id: "2", name: "Garden Villa", price: "$4,200/mo", imageSrc: "https://images.unsplash.com/photo-1600585154340-be6161a56a0c?q=80&w=800" },
{ id: "3", name: "Loft Studio", price: "$2,800/mo", imageSrc: "https://images.unsplash.com/photo-1600607687939-ce8a6c25118c?q=80&w=800" }
{ id: "1", name: "Penthouse Suite", price: "$5,000/mo", imageSrc: "https://images.unsplash.com/photo-1600566753190-17f0baa2a6c3?q=80&w=800", onProductClick: () => console.log('Reserve Penthouse') },
{ id: "2", name: "Garden Villa", price: "$4,200/mo", imageSrc: "https://images.unsplash.com/photo-1600585154340-be6161a56a0c?q=80&w=800", onProductClick: () => console.log('Reserve Garden Villa') },
{ id: "3", name: "Loft Studio", price: "$2,800/mo", imageSrc: "https://images.unsplash.com/photo-1600607687939-ce8a6c25118c?q=80&w=800", onProductClick: () => console.log('Reserve Loft Studio') }
]}
/>
</div>