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 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