From cba009b6b909ddf26ebf47408ae68ba29f371758 Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 9 Apr 2026 06:26:12 +0000 Subject: [PATCH 1/2] Update src/app/page.tsx --- src/app/page.tsx | 321 +++++++++++------------------------------------ 1 file changed, 75 insertions(+), 246 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index 40336df..debfa86 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -25,258 +25,87 @@ export default function LandingPage() { headingFontWeight="semibold" > - + -
- -
+
+ +
-
- -
+
+ +
-
- -
+
+ +
-
- -
+
+ +
-
- -
+
+ +
- +
); -} +} \ No newline at end of file -- 2.49.1 From bdc23f5c8cf85cb21327203d82808c45046d6bfd Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 9 Apr 2026 06:26:13 +0000 Subject: [PATCH 2/2] Add src/app/properties/page.tsx --- src/app/properties/page.tsx | 67 +++++++++++++++++++++++++++++++++++++ 1 file changed, 67 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..5f5f4cd --- /dev/null +++ b/src/app/properties/page.tsx @@ -0,0 +1,67 @@ +"use client"; + +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import ReactLenis from "lenis/react"; +import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple'; +import ProductCardThree from '@/components/sections/product/ProductCardThree'; +import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis'; + +export default function PropertyListingPage() { + return ( + + + + +
+ +
+ + +
+
+ ); +} \ No newline at end of file -- 2.49.1