diff --git a/src/app/about/page.tsx b/src/app/about/page.tsx index f5502a2..b334556 100644 --- a/src/app/about/page.tsx +++ b/src/app/about/page.tsx @@ -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 ( @@ -54,15 +40,8 @@ export default function LandingPage() { @@ -71,10 +50,7 @@ export default function LandingPage() { @@ -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: "#" }] + } ]} /> ); -} +} \ No newline at end of file