content
diff --git a/src/components/Navigation.res b/src/components/Navigation.res
index d75624361..48bfb3863 100644
--- a/src/components/Navigation.res
+++ b/src/components/Navigation.res
@@ -1,6 +1,6 @@
module Link = Next.Link
-let link = "no-underline block hover:cursor-pointer hover:text-fire-30 text-gray-40 mb-px"
+let link = "no-underline block hover:cursor-pointer hover:text-fire-30 mb-px"
let activeLink = "font-medium text-fire-30 border-b border-fire"
let linkOrActiveLink = (~target, ~route) => target === route ? activeLink : link
@@ -8,16 +8,28 @@ let linkOrActiveLink = (~target, ~route) => target === route ? activeLink : link
let linkOrActiveLinkSubroute = (~target, ~route) =>
String.startsWith(route, target) ? activeLink : link
-let isActiveLink = (~route: string, ~href: string) => {
- route == href ? activeLink : link
+let isActiveLink = (~includes: string, ~excludes: option
+
- @@ -73,98 +85,117 @@ let make = (~fixed=true, ~isOverlayOpen: bool, ~setOverlayOpen: (bool => bool) = let fixedNav = fixed ? "fixed top-0" : "relative" <> -