From ac0f6bb65c3cb937e20b785feee279547009351a Mon Sep 17 00:00:00 2001 From: bender Date: Mon, 23 Mar 2026 14:20:44 +0000 Subject: [PATCH 1/2] Add src/app/about/page.tsx --- src/app/about/page.tsx | 97 ++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 97 insertions(+) create mode 100644 src/app/about/page.tsx diff --git a/src/app/about/page.tsx b/src/app/about/page.tsx new file mode 100644 index 0000000..d45d8e8 --- /dev/null +++ b/src/app/about/page.tsx @@ -0,0 +1,97 @@ +"use client"; + +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import ReactLenis from "lenis/react"; +import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay'; +import FooterBaseReveal from '@/components/sections/footer/FooterBaseReveal'; +import SplitAbout from '@/components/sections/about/SplitAbout'; +import { Sparkles, CheckCircle } from "lucide-react"; + +export default function AboutPage() { + const navItems = [ + { name: "Home", id: "/" }, + { name: "How It Works", id: "/#how-it-works" }, + { name: "Listings", id: "/listings" }, + { name: "About Us", id: "/about" }, + { name: "Contact", id: "/contact" }, + ]; + + return ( + + + + +
+ +
+ + +
+
+ ); +} \ No newline at end of file -- 2.49.1 From e33b01a5440be51c2a2c33e1837afeb75f5b9bf5 Mon Sep 17 00:00:00 2001 From: bender Date: Mon, 23 Mar 2026 14:20:45 +0000 Subject: [PATCH 2/2] Update src/app/page.tsx --- src/app/page.tsx | 27 ++++++++++++--------------- 1 file changed, 12 insertions(+), 15 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index b24bbed..391c628 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -13,6 +13,14 @@ import SplitAbout from '@/components/sections/about/SplitAbout'; import TestimonialCardSixteen from '@/components/sections/testimonial/TestimonialCardSixteen'; export default function LandingPage() { + const navItems = [ + { name: "Home", id: "/" }, + { name: "How It Works", id: "/#how-it-works" }, + { name: "Listings", id: "/listings" }, + { name: "About Us", id: "/about" }, + { name: "Contact", id: "/contact" }, + ]; + return ( @@ -236,7 +233,7 @@ export default function LandingPage() { { title: "Company", items: [ { - label: "About Us", href: "/#about"}, + label: "About Us", href: "/about"}, { label: "Careers", href: "#"}, { @@ -260,4 +257,4 @@ export default function LandingPage() { ); -} +} \ No newline at end of file -- 2.49.1