From 03859d0fb6c4acff9f834962488f5c5073ef3fdb Mon Sep 17 00:00:00 2001 From: bender Date: Sat, 11 Apr 2026 20:01:03 +0000 Subject: [PATCH 1/2] Update src/app/contact/page.tsx --- src/app/contact/page.tsx | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/app/contact/page.tsx b/src/app/contact/page.tsx index 29be490..ea67d32 100644 --- a/src/app/contact/page.tsx +++ b/src/app/contact/page.tsx @@ -38,11 +38,11 @@ export default function ContactPage() { logoText="LaunchPad Local" copyrightText="© 2026 | LaunchPad Local" columns={[ - { title: "Company", items: [{ label: "About", href: "#" }, { label: "Contact", href: "/contact" }] }, - { title: "Services", items: [{ label: "Web Design", href: "#" }, { label: "Local SEO", href: "#" }] }, - { title: "Resources", items: [{ label: "Blog", href: "#" }, { label: "Guides", href: "#" }] }, + { title: "Company", items: [{ label: "About", href: "/about" }, { label: "Contact", href: "/contact" }] }, + { title: "Services", items: [{ label: "Web Design", href: "/services" }, { label: "Local SEO", href: "/services" }] }, + { title: "Resources", items: [{ label: "Blog", href: "/blog" }, { label: "Guides", href: "/guides" }] }, ]} /> ); -} +} \ No newline at end of file -- 2.49.1 From 9bb1f6b9b3c5df55e000b0d73d0bde0603f55c9e Mon Sep 17 00:00:00 2001 From: bender Date: Sat, 11 Apr 2026 20:01:03 +0000 Subject: [PATCH 2/2] Update src/app/page.tsx --- src/app/page.tsx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index d495bb7..b55bf01 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -125,9 +125,9 @@ export default function LaunchPadLocalPage() { logoText="LaunchPad Local" copyrightText="© 2026 | LaunchPad Local" columns={[ - { title: "Company", items: [{ label: "About", href: "#" }, { label: "Contact", href: "/contact" }] }, - { title: "Services", items: [{ label: "Web Design", href: "#" }, { label: "Local SEO", href: "#" }] }, - { title: "Resources", items: [{ label: "Blog", href: "#" }, { label: "Guides", href: "#" }] }, + { title: "Company", items: [{ label: "About", href: "/about" }, { label: "Contact", href: "/contact" }] }, + { title: "Services", items: [{ label: "Web Design", href: "/services" }, { label: "Local SEO", href: "/services" }] }, + { title: "Resources", items: [{ label: "Blog", href: "/blog" }, { label: "Guides", href: "/guides" }] }, ]} /> -- 2.49.1