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" }} 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" }} 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() { >