From f21a172823289a2afb9de6fed23c994acef75755 Mon Sep 17 00:00:00 2001 From: Azenris Date: Sun, 5 Nov 2023 12:58:27 +0000 Subject: [PATCH] Navbar Updated, Image Test --- src/components/Navbar.tsx | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/src/components/Navbar.tsx b/src/components/Navbar.tsx index d6e76b0..0ef20a1 100644 --- a/src/components/Navbar.tsx +++ b/src/components/Navbar.tsx @@ -10,37 +10,37 @@ const menuItems: MenuItem[] = [ { path: "/", name: "Home", - icon: "/imgs/pokeball-0.png" + icon: "./imgs/pokeball-0.png" }, { path: "/pokemon", name: "POKéMON", - icon: "/imgs/pokeball-0.png" + icon: "./imgs/pokeball-0.png" }, { path: "/collection", name: "Collection", - icon: "/imgs/pokeball-0.png" + icon: "./imgs/pokeball-0.png" }, { path: "/item", name: "Items", - icon: "/imgs/pokeball-0.png" + icon: "./imgs/pokeball-0.png" }, { path: "/tm", name: "HMs / TMs", - icon: "/imgs/pokeball-0.png" + icon: "./imgs/pokeball-0.png" }, { path: "/move", name: "Moves", - icon: "/imgs/pokeball-0.png" + icon: "./imgs/pokeball-0.png" }, { path: "/about", name: "About", - icon: "/imgs/pokeball-0.png" + icon: "./imgs/pokeball-0.png" } ];