diff --git a/src/app/about/page.tsx b/src/app/about/page.tsx index 50c4f46..fa40d4c 100644 --- a/src/app/about/page.tsx +++ b/src/app/about/page.tsx @@ -12,9 +12,9 @@ export default function AboutPage() { const navItems = [ { name: "Home", id: "/" }, { name: "About", id: "/about" }, - { name: "Programs", id: "programs" }, - { name: "Faculty", id: "faculty" }, - { name: "Contact", id: "contact" }, + { name: "Programs", id: "/programs" }, + { name: "Faculty", id: "#faculty" }, + { name: "Contact", id: "#contact" }, ]; const footerColumns = [ @@ -66,9 +66,9 @@ export default function AboutPage() { navItems={[ { name: "Home", id: "/" }, { name: "About", id: "/about" }, - { name: "Programs", id: "programs" }, - { name: "Faculty", id: "faculty" }, - { name: "Contact", id: "contact" }, + { name: "Programs", id: "/programs" }, + { name: "Faculty", id: "#faculty" }, + { name: "Contact", id: "#contact" }, ]} brandName="International Academy of Iraq" bottomLeftText="Baghdad, Iraq" @@ -80,7 +80,8 @@ export default function AboutPage() { diff --git a/src/app/programs/page.tsx b/src/app/programs/page.tsx index de89eee..9c178d5 100644 --- a/src/app/programs/page.tsx +++ b/src/app/programs/page.tsx @@ -10,20 +10,20 @@ import Link from "next/link"; export default function ProgramsPage() { const navItems = [ - { name: "Home", id: "home" }, - { name: "About", id: "about" }, - { name: "Programs", id: "programs" }, - { name: "Faculty", id: "faculty" }, - { name: "Contact", id: "contact" }, + { name: "Home", id: "/" }, + { name: "About", id: "/about" }, + { name: "Programs", id: "/programs" }, + { name: "Faculty", id: "#faculty" }, + { name: "Contact", id: "#contact" }, ]; const footerColumns = [ { items: [ { label: "Home", href: "/" }, - { label: "About", href: "#about" }, + { label: "About", href: "/about" }, { label: "Programs", href: "/programs" }, - { label: "Faculty", href: "/faculty" }, + { label: "Faculty", href: "#faculty" }, ], }, { @@ -75,17 +75,22 @@ export default function ProgramsPage() {