Update src/app/about/page.tsx

This commit is contained in:
2026-04-15 16:23:16 +00:00
parent fb3961ecdf
commit 3182c7086c

View File

@@ -7,7 +7,7 @@ import InlineImageSplitTextAbout from '@/components/sections/about/InlineImageSp
import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline';
import TextSplitAbout from '@/components/sections/about/TextSplitAbout';
export default function LandingPage() {
export default function AboutPage() {
return (
<ThemeProvider
defaultButtonVariant="icon-arrow"
@@ -25,28 +25,14 @@ export default function LandingPage() {
<div id="nav" data-section="nav">
<NavbarLayoutFloatingInline
navItems={[
{
name: "Home",
id: "/",
},
{
name: "Services",
id: "/services",
},
{
name: "Reviews",
id: "/reviews",
},
{
name: "About",
id: "/about",
},
{
name: "Contact",
id: "/contact",
},
{ name: "Home", id: "/" },
{ name: "Services", id: "/services" },
{ name: "Reviews", id: "/reviews" },
{ name: "About", id: "/about" },
{ name: "Contact", id: "/contact" }
]}
brandName="Mahoney Plumbing"
button={{ text: "Call Now", href: "tel:+17067232039" }}
/>
</div>
@@ -54,15 +40,8 @@ export default function LandingPage() {
<InlineImageSplitTextAbout
useInvertedBackground={false}
heading={[
{
type: "text",
content: "Meet Your Local Plumber, CJ",
},
{
type: "image",
src: "http://img.b2bpic.net/free-photo/waiter-does-advertisement-politics-showing-speech-bubble_482257-96009.jpg",
alt: "CJ",
},
{ type: "text", content: "Meet Your Local Plumber, CJ" },
{ type: "image", src: "http://img.b2bpic.net/free-photo/waiter-does-advertisement-politics-showing-speech-bubble_482257-96009.jpg", alt: "CJ" }
]}
/>
</div>
@@ -71,10 +50,7 @@ export default function LandingPage() {
<TextSplitAbout
useInvertedBackground={false}
title="Our Philosophy"
description={[
"Quality over quantity.",
"Customer satisfaction is our #1 priority.",
]}
description={["Quality over quantity.", "Customer satisfaction is our #1 priority."]}
/>
</div>
@@ -83,39 +59,15 @@ export default function LandingPage() {
logoText="Mahoney Plumbing"
columns={[
{
title: "Quick Links",
items: [
{
label: "Home",
href: "/",
},
{
label: "Services",
href: "/services",
},
{
label: "Contact",
href: "/contact",
},
],
title: "Quick Links", items: [{ label: "Home", href: "/" }, { label: "Services", href: "/services" }, { label: "Contact", href: "/contact" }]
},
{
title: "Legal",
items: [
{
label: "Privacy Policy",
href: "#",
},
{
label: "Terms of Service",
href: "#",
},
],
},
title: "Legal", items: [{ label: "Privacy Policy", href: "#" }, { label: "Terms of Service", href: "#" }]
}
]}
/>
</div>
</ReactLenis>
</ThemeProvider>
);
}
}