From 96d3f504a44306dce313d30982eef5a877a16582 Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 19 Feb 2026 05:46:00 +0000 Subject: [PATCH 1/3] Update src/app/page.tsx --- src/app/page.tsx | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index 67e5585..56e0fe4 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -90,7 +90,8 @@ 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", imageAlt: "Luxury villa on Palm Jumeirah", isFavorited: false + 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", imageAlt: "Luxury villa on Palm Jumeirah", isFavorited: false, + onProductClick: () => window.location.href = "/property/palm-jumeirah-villa" }, { 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", imageAlt: "Modern penthouse in Downtown Dubai", isFavorited: false -- 2.49.1 From 4ce190d75ea3c143691becdd9e8669ec328d7ae4 Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 19 Feb 2026 05:46:01 +0000 Subject: [PATCH 2/3] Update src/app/properties/page.tsx --- src/app/properties/page.tsx | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/app/properties/page.tsx b/src/app/properties/page.tsx index d12dcb3..7311d27 100644 --- a/src/app/properties/page.tsx +++ b/src/app/properties/page.tsx @@ -49,7 +49,8 @@ export default function PropertiesPage() { carouselMode="buttons" 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", imageAlt: "Luxury villa on Palm Jumeirah", isFavorited: false + 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", imageAlt: "Luxury villa on Palm Jumeirah", isFavorited: false, + onProductClick: () => window.location.href = "/property/palm-jumeirah-villa" }, { 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", imageAlt: "Modern penthouse in Downtown Dubai", isFavorited: false -- 2.49.1 From d490ecf0a0146fac5a623fcc2a11b878a0cf32f4 Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 19 Feb 2026 05:46:02 +0000 Subject: [PATCH 3/3] Add src/app/property/palm-jumeirah-villa/page.tsx --- src/app/property/palm-jumeirah-villa/page.tsx | 225 ++++++++++++++++++ 1 file changed, 225 insertions(+) create mode 100644 src/app/property/palm-jumeirah-villa/page.tsx diff --git a/src/app/property/palm-jumeirah-villa/page.tsx b/src/app/property/palm-jumeirah-villa/page.tsx new file mode 100644 index 0000000..5a030dd --- /dev/null +++ b/src/app/property/palm-jumeirah-villa/page.tsx @@ -0,0 +1,225 @@ +"use client"; + +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered'; +import HeroBillboardGallery from '@/components/sections/hero/HeroBillboardGallery'; +import MediaAbout from '@/components/sections/about/MediaAbout'; +import FeatureCardThree from '@/components/sections/feature/featureCardThree/FeatureCardThree'; +import ContactCTA from '@/components/sections/contact/ContactCTA'; +import FooterSimple from '@/components/sections/footer/FooterSimple'; +import { Sparkles, Home, Shield, Mail, MapPin, Bed, Bath, Maximize2 } from "lucide-react"; + +export default function PalmJumeirahVillaPage() { + return ( + + + +
+ +
+ +
+ +
+ +
+ +
+ +
+ +
+ +
+ +
+ +
+ +
+ + +
+ ); +} -- 2.49.1