From ac61446e775e4b1b86dae33d1c89b3d9b0fde978 Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 10 Mar 2026 19:23:13 +0000 Subject: [PATCH 1/3] Update src/app/about/page.tsx --- src/app/about/page.tsx | 41 ++++++++++++++++++++++++++--------------- 1 file changed, 26 insertions(+), 15 deletions(-) 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() { Date: Tue, 10 Mar 2026 19:23:13 +0000 Subject: [PATCH 2/3] Update src/app/page.tsx --- src/app/page.tsx | 75 +++++++++++++++++++++++++++++++----------------- 1 file changed, 49 insertions(+), 26 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index ff0fc25..cbf81c9 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -16,9 +16,9 @@ export default function HomePage() { 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 = [ @@ -70,9 +70,9 @@ export default function HomePage() { 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" @@ -87,7 +87,8 @@ export default function HomePage() { background={{ variant: "plain" }} avatars={[ { - src: "http://img.b2bpic.net/free-photo/people-leaning-handrail_23-2147678955.jpg", alt: "International Academy Campus"}, + src: "http://img.b2bpic.net/free-photo/people-leaning-handrail_23-2147678955.jpg", alt: "International Academy Campus" + }, ]} avatarText="Serving 2000+ Students from 45 Countries" buttons={[ @@ -102,7 +103,8 @@ export default function HomePage() { -- 2.49.1 From 0a2cb24d4d7a3dd0b0a4a04e083e042877ea17d8 Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 10 Mar 2026 19:23:14 +0000 Subject: [PATCH 3/3] Update src/app/programs/page.tsx --- src/app/programs/page.tsx | 40 ++++++++++++++++++++++++--------------- 1 file changed, 25 insertions(+), 15 deletions(-) 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() {