diff --git a/src/app/(routes)/(website)/components/header/header.tsx b/src/app/(routes)/(website)/components/header/header.tsx index 9759799..860754c 100644 --- a/src/app/(routes)/(website)/components/header/header.tsx +++ b/src/app/(routes)/(website)/components/header/header.tsx @@ -29,22 +29,22 @@ export default function Header() { const navLinks = dict ? [ - { href: "/#home", label: dict.website.header.Home }, - { href: "/#about-me", label: dict.website.header.AboutMe }, - { href: "/#services", label: dict.website.header.Services }, - { href: "/#projects", label: dict.website.header.Projects }, - { href: "/#testimonials", label: dict.website.header.Testimonials }, - { href: "/#contact", label: dict.website.header.Contact }, - { href: "/blog", label: dict.website.header.Blog }, + { href: "/#home", label: dict.website.homePage.nav.home }, + { href: "/#about-me", label: dict.website.homePage.nav.aboutMe }, + { href: "/#services", label: dict.website.homePage.nav.services }, + { href: "/#projects", label: dict.website.homePage.nav.projects }, + { href: "/#testimonials", label: dict.website.homePage.nav.testimonials }, + { href: "/#contact", label: dict.website.homePage.nav.contact }, + { href: "/blog", label: dict.website.homePage.nav.blog }, ] : []; return (