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 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" }] }, ]} />