From ea1e96b597f02a14e5c82f1c3956cd304a5e583c Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 19 Feb 2026 05:35:21 +0000 Subject: [PATCH 1/2] Update src/app/page.tsx --- src/app/page.tsx | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/app/page.tsx b/src/app/page.tsx index 4f51d37..2124a3a 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -85,6 +85,9 @@ export default function LandingPage() { useInvertedBackground={false} gridVariant="uniform-all-items-equal" carouselMode="buttons" + buttons={[ + { text: "See all", href: "/properties" } + ]} 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 -- 2.49.1 From e9287c7dcb1fe5035ee103e589b773d20f1f13bc Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 19 Feb 2026 05:35:22 +0000 Subject: [PATCH 2/2] Add src/app/properties/page.tsx --- src/app/properties/page.tsx | 186 ++++++++++++++++++++++++++++++++++++ 1 file changed, 186 insertions(+) create mode 100644 src/app/properties/page.tsx diff --git a/src/app/properties/page.tsx b/src/app/properties/page.tsx new file mode 100644 index 0000000..d12dcb3 --- /dev/null +++ b/src/app/properties/page.tsx @@ -0,0 +1,186 @@ +"use client"; + +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered'; +import ProductCardFour from '@/components/sections/product/ProductCardFour'; +import ContactCTA from '@/components/sections/contact/ContactCTA'; +import FooterSimple from '@/components/sections/footer/FooterSimple'; +import { Home, Mail } from "lucide-react"; + +export default function PropertiesPage() { + return ( + + + +
+ +
+ +
+ +
+ + +
+ ); +} -- 2.49.1