Update src/app/about/page.tsx

This commit is contained in:
2026-04-24 23:36:38 +00:00
parent ec0b1f3584
commit 7fe3717904

View File

@@ -21,28 +21,36 @@ export default function AboutPage() {
headingFontWeight="normal"
>
<ReactLenis root>
<NavbarStyleApple
navItems={[
{ name: "Home", id: "/" },
{ name: "About", id: "/about" },
{ name: "Service Areas", id: "/service-areas" },
{ name: "Contact", id: "#contact" }
]}
brandName="GreenLeaf Landscapes"
/>
<SplitAbout
textboxLayout="split"
title="The Memphis Homeowners' Trust"
description="For over 15 years, we have served Memphis families by transforming ordinary yards into extraordinary sanctuaries. We understand that your home is your greatest investment, and our commitment is to provide the reliable, professional, and high-quality care that Memphis homeowners trust."
imageSrc="http://img.b2bpic.net/free-photo/medium-shot-people-watering-plants_23-2149098323.jpg"
/>
<FooterBaseReveal
logoText="GreenLeaf"
columns={[
{ title: "Services", items: [{ label: "Lawn Care", href: "#" }, { label: "Hardscaping", href: "#" }] },
{ title: "Company", items: [{ label: "About Us", href: "/about" }, { label: "Service Areas", href: "/service-areas" }] }
]}
/>
<div id="nav" data-section="nav">
<NavbarStyleApple
navItems={[
{ name: "Home", id: "/" },
{ name: "About", id: "/about" },
{ name: "Service Areas", id: "/service-areas" },
{ name: "Contact", id: "/contact" }
]}
brandName="GreenLeaf Landscapes"
/>
</div>
<div id="about" data-section="about">
<SplitAbout
textboxLayout="split"
title="The Memphis Homeowners' Trust"
description="For over 15 years, we have served Memphis families by transforming ordinary yards into extraordinary sanctuaries. We understand that your home is your greatest investment, and our commitment is to provide the reliable, professional, and high-quality care that Memphis homeowners trust."
imageSrc="http://img.b2bpic.net/free-photo/medium-shot-people-watering-plants_23-2149098323.jpg"
bulletPoints={[]}
useInvertedBackground={false}
/>
</div>
<div id="footer" data-section="footer">
<FooterBaseReveal
logoText="GreenLeaf"
columns={[
{ title: "Services", items: [{ label: "Lawn Care", href: "#" }, { label: "Hardscaping", href: "#" }] },
{ title: "Company", items: [{ label: "About Us", href: "/about" }, { label: "Service Areas", href: "/service-areas" }] }
]}
/>
</div>
</ReactLenis>
</ThemeProvider>
);