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 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 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 ( + + + +
+ +
+ +
+ +
+ +
+ +
+ +
+ +
+ +
+ +
+ +
+ +
+ + +
+ ); +}