diff --git a/frontend/src/components/navbar/Navbar.tsx b/frontend/src/components/navbar/Navbar.tsx index f8f686b..e153fcf 100644 --- a/frontend/src/components/navbar/Navbar.tsx +++ b/frontend/src/components/navbar/Navbar.tsx @@ -21,7 +21,10 @@ const Navbar: React.FC = () => { }, []); useEffect(() => { - if (location.pathname === "/about-us") { + if ( + location.pathname === "/about-us" || + location.pathname === "/algorithms" + ) { setShouldHaveSolidColour(true); } else { setShouldHaveSolidColour(false);