4 Commits

Author SHA1 Message Date
f241eb57b3 Update src/app/page.tsx 2026-03-25 13:24:10 +00:00
c8b8b37130 Update src/app/page.tsx 2026-03-25 13:23:47 +00:00
42f3ca72db Merge version_2 into main
Merge version_2 into main
2026-03-25 13:19:45 +00:00
2e1c63fe73 Merge version_2 into main
Merge version_2 into main
2026-03-25 13:19:21 +00:00

View File

@@ -51,7 +51,7 @@ export default function LandingPage() {
tagIcon={Sparkles}
buttons={[
{ text: "Explore Properties", href: "properties" },
{ text: "Request a Private Consultation", href: "contact" }
{ text: "Contact Agent", href: "contact" }
]}
mediaItems={[
{
@@ -91,13 +91,15 @@ export default function LandingPage() {
products={[
{
id: "1", name: "Palm Jumeirah Villa", price: "AED 12,500,000", variant: "5 Bed Villa | Beachfront", imageSrc: "https://img.b2bpic.net/free-photo/shanghai-night-china_1127-3170.jpg?_wi=2", imageAlt: "Luxury villa on Palm Jumeirah", isFavorited: false,
onProductClick: () => window.location.href = "/property/palm-jumeirah-villa"
onProductClick: () => window.location.href = "/property/1"
},
{
id: "2", name: "Downtown Dubai Penthouse", price: "AED 8,750,000", variant: "4 Bed Penthouse | City View", imageSrc: "https://img.b2bpic.net/free-photo/luxury-architecture-exterior-design_23-2151920926.jpg?_wi=2", imageAlt: "Modern penthouse in Downtown Dubai", isFavorited: false
id: "2", name: "Downtown Dubai Penthouse", price: "AED 8,750,000", variant: "4 Bed Penthouse | City View", imageSrc: "https://img.b2bpic.net/free-photo/luxury-architecture-exterior-design_23-2151920926.jpg?_wi=2", imageAlt: "Modern penthouse in Downtown Dubai", isFavorited: false,
onProductClick: () => window.location.href = "/property/2"
},
{
id: "3", name: "Emirates Hills Townhouse", price: "AED 6,200,000", variant: "4 Bed Townhouse | Golf View", imageSrc: "https://img.b2bpic.net/free-photo/luxury-architecture-exterior-design_23-2151920931.jpg?_wi=2", imageAlt: "Contemporary townhouse in Emirates Hills", isFavorited: false
id: "3", name: "Emirates Hills Townhouse", price: "AED 6,200,000", variant: "4 Bed Townhouse | Golf View", imageSrc: "https://img.b2bpic.net/free-photo/luxury-architecture-exterior-design_23-2151920931.jpg?_wi=2", imageAlt: "Contemporary townhouse in Emirates Hills", isFavorited: false,
onProductClick: () => window.location.href = "/property/3"
}
]}
/>