Update src/app/about/page.tsx

This commit is contained in:
2026-04-28 00:47:07 +00:00
parent 87c0e2b87a
commit b97f180338

View File

@@ -24,11 +24,11 @@ export default function AboutPage() {
<div id="nav" data-section="nav">
<NavbarStyleFullscreen
navItems={[
{ name: "Home", id: "home" },
{ name: "Home", id: "/" },
{ name: "About", id: "about" },
{ name: "Services", id: "services" },
{ name: "Testimonials", id: "testimonials" },
{ name: "Contact", id: "contact" },
{ name: "Services", id: "/services" },
{ name: "Testimonials", id: "/testimonials" },
{ name: "Contact", id: "/contact" },
]}
brandName="Syncpoint Handyman"
/>
@@ -48,7 +48,7 @@ export default function AboutPage() {
<FooterBase
columns={[
{ title: "Company", items: [{ label: "About", href: "/about" }, { label: "Services", href: "/" }] },
{ title: "Support", items: [{ label: "Contact", href: "/" }, { label: "FAQs", href: "/" }] },
{ title: "Support", items: [{ label: "Contact", href: "/contact" }, { label: "FAQs", href: "/" }] },
]}
logoText="Syncpoint Handyman"
copyrightText="© 2025 Syncpoint Handyman Service. All rights reserved."
@@ -57,4 +57,4 @@ export default function AboutPage() {
</ReactLenis>
</ThemeProvider>
);
}
}