Add src/app/about/page.tsx

This commit is contained in:
2026-04-09 01:47:40 +00:00
parent cc14898c35
commit 7cd188a7b4

38
src/app/about/page.tsx Normal file
View File

@@ -0,0 +1,38 @@
"use client";
import ReactLenis from "lenis/react";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import NavbarStyleFullscreen from "@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen";
import TextSplitAbout from "@/components/sections/about/TextSplitAbout";
import FooterSimple from "@/components/sections/footer/FooterSimple";
export default function AboutUsPage() {
return (
<ThemeProvider>
<ReactLenis root>
<NavbarStyleFullscreen
brandName="GreenScape"
navItems={[
{ name: "Services", id: "/services" },
{ name: "About", id: "/about" },
{ name: "Team", id: "/#team" },
{ name: "Testimonials", id: "/#testimonials" },
{ name: "Contact", id: "/#contact" },
]}
button={{ text: "Call Now", href: "/#contact" }}
/>
<div className="pt-24">
<TextSplitAbout
title="Our Philosophy"
description={["We believe that every garden should be an extension of the home.", "Driven by sustainability and local ecosystem health."]}
useInvertedBackground={false}
/>
</div>
<FooterSimple
columns={[]}
bottomLeftText="© 2026 GreenScape Landscaping"
/>
</ReactLenis>
</ThemeProvider>
);
}