From 502b1a93e10cb3058ee988a38b8f3378dd0fe485 Mon Sep 17 00:00:00 2001 From: Timothy Pidashev Date: Mon, 10 Jun 2024 09:59:42 -0700 Subject: [PATCH] Fix navigation links --- src/components/header/constants.js | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/components/header/constants.js b/src/components/header/constants.js index 088f9c5..ccbad98 100644 --- a/src/components/header/constants.js +++ b/src/components/header/constants.js @@ -1,10 +1,10 @@ // Navigation links export const Links = [ { id: 0, href: "/", label: "Home", color: "green" }, - { id: 1, href: "projects", label: "Projects", color: "yellow" }, - { id: 2, href: "resume", label: "Resume", color: "blue" }, - { id: 3, href: "blog", label: "Blog", color: "purple" }, - { id: 4, href: "shop", label: "Shop", color: "aqua" } + { id: 1, href: "/projects", label: "Projects", color: "yellow" }, + { id: 2, href: "/resume", label: "Resume", color: "blue" }, + { id: 3, href: "/blog", label: "Blog", color: "purple" }, + { id: 4, href: "/shop", label: "Shop", color: "aqua" } ]; // Drop down menu link colors