From b0da1a8b0a84a6757b999d6ae2ccf4035f846ec5 Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 10 Mar 2026 18:24:07 +0000 Subject: [PATCH 1/4] Update src/app/about/page.tsx --- src/app/about/page.tsx | 19 ++++++++++++------- 1 file changed, 12 insertions(+), 7 deletions(-) diff --git a/src/app/about/page.tsx b/src/app/about/page.tsx index bdf22dc..a484c95 100644 --- a/src/app/about/page.tsx +++ b/src/app/about/page.tsx @@ -7,8 +7,16 @@ import MetricCardTwo from "@/components/sections/metrics/MetricCardTwo"; import TeamCardTwo from "@/components/sections/team/TeamCardTwo"; import FooterLogoReveal from "@/components/sections/footer/FooterLogoReveal"; import { Briefcase, Users, TrendingUp, Shield, Linkedin } from "lucide-react"; +import Link from "next/link"; export default function AboutPage() { + const navItems = [ + { name: "Home", id: "/" }, + { name: "Services", id: "/services" }, + { name: "About", id: "/about" }, + { name: "Contact", id: "/contact" }, + ]; + return ( ({ + name: item.name, + id: item.id + }))} button={{ text: "Schedule Consultation", href: "/contact" }} -- 2.49.1 From b715d4caa520295f85f491733358c9a8d5b3535b Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 10 Mar 2026 18:24:07 +0000 Subject: [PATCH 2/4] Update src/app/contact/page.tsx --- src/app/contact/page.tsx | 19 ++++++++++++------- 1 file changed, 12 insertions(+), 7 deletions(-) diff --git a/src/app/contact/page.tsx b/src/app/contact/page.tsx index 565d231..98db36e 100644 --- a/src/app/contact/page.tsx +++ b/src/app/contact/page.tsx @@ -5,8 +5,16 @@ import NavbarStyleCentered from "@/components/navbar/NavbarStyleCentered/NavbarS import ContactCTA from "@/components/sections/contact/ContactCTA"; import FaqDouble from "@/components/sections/faq/FaqDouble"; import FooterLogoReveal from "@/components/sections/footer/FooterLogoReveal"; +import Link from "next/link"; export default function ContactPage() { + const navItems = [ + { name: "Home", id: "/" }, + { name: "Services", id: "/services" }, + { name: "About", id: "/about" }, + { name: "Contact", id: "/contact" }, + ]; + return ( ({ + name: item.name, + id: item.id + }))} button={{ text: "Schedule Consultation", href: "/contact" }} -- 2.49.1 From 3bdbaee7221217345cc2670596a1fe92ab10a878 Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 10 Mar 2026 18:24:07 +0000 Subject: [PATCH 3/4] Update src/app/page.tsx --- src/app/page.tsx | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index 7b48dec..f908a58 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -12,13 +12,13 @@ import FaqDouble from "@/components/sections/faq/FaqDouble"; import ContactCTA from "@/components/sections/contact/ContactCTA"; import FooterLogoReveal from "@/components/sections/footer/FooterLogoReveal"; import { Briefcase, Users, TrendingUp, Shield, Linkedin } from "lucide-react"; +import Link from "next/link"; export default function HomePage() { const navItems = [ { name: "Home", id: "/" }, { name: "Services", id: "/services" }, { name: "About", id: "/about" }, - { name: "Team", id: "team" }, { name: "Contact", id: "/contact" }, ]; @@ -37,7 +37,10 @@ export default function HomePage() { >