From fd0af7616a2be7a435d8781300aec509c5f7460b Mon Sep 17 00:00:00 2001 From: ZGaetano Date: Mon, 4 May 2026 00:02:39 -0400 Subject: [PATCH] SEO/UX: footer links resolve from any page (use /#anchor and /services) --- src/components/Footer.tsx | 42 ++++++++++++++++++++++++--------------- 1 file changed, 26 insertions(+), 16 deletions(-) diff --git a/src/components/Footer.tsx b/src/components/Footer.tsx index af9ef60..d88d492 100755 --- a/src/components/Footer.tsx +++ b/src/components/Footer.tsx @@ -1,4 +1,5 @@ import Image from "next/image"; +import Link from "next/link"; function LinkedinIcon({ size = 16, className = "" }: { size?: number; className?: string }) { return ( @@ -14,19 +15,19 @@ const navSections = [ { title: "Navigation", links: [ - { label: "About", href: "#about" }, - { label: "Services", href: "#services" }, - { label: "Projects", href: "#projects" }, - { label: "Contact", href: "#contact" }, + { label: "About", href: "/#about" }, + { label: "Services", href: "/services" }, + { label: "Projects", href: "/#projects" }, + { label: "Contact", href: "/#contact" }, ], }, { title: "Expertise", links: [ - { label: "Systems Design", href: "#about" }, - { label: "IP & Cloud Production", href: "#about" }, - { label: "Broadcast Integration", href: "#about" }, - { label: "XR / Virtual Production", href: "#projects" }, + { label: "Systems Design", href: "/services" }, + { label: "IP & Cloud Production", href: "/services" }, + { label: "Broadcast Integration", href: "/services" }, + { label: "XR / Virtual Production", href: "/projects/intuit-xr-facility" }, ], }, ]; @@ -39,7 +40,7 @@ export default function Footer() {
{/* Brand column */}
-
+ Wild Dragon Wild Dragon -
+

Broadcast systems integration and production facility design for sports, corporate, financial services, and defense organizations. @@ -87,12 +88,21 @@ export default function Footer() {