diff --git a/components/Shell.tsx b/components/Shell.tsx
index dd128867..9cfa6ff6 100644
--- a/components/Shell.tsx
+++ b/components/Shell.tsx
@@ -9,6 +9,7 @@ import {
LogoutIcon,
PuzzleIcon,
MoonIcon,
+ MapIcon,
} from "@heroicons/react/solid";
import { signOut, useSession } from "next-auth/react";
import Link from "next/link";
@@ -466,6 +467,15 @@ function UserDropdown({ small }: { small?: boolean }) {
{t("join_our_slack")}
+
+
+ {t("visit_roadmap")}
+
+
diff --git a/public/static/locales/en/common.json b/public/static/locales/en/common.json
index 81b50b97..6ffa158c 100644
--- a/public/static/locales/en/common.json
+++ b/public/static/locales/en/common.json
@@ -594,5 +594,6 @@
"saml_configuration_placeholder": "Please paste the SAML metadata from your Identity Provider here",
"saml_configuration_update_failed": "SAML configuration update failed",
"saml_configuration_delete_failed": "SAML configuration delete failed",
- "saml_email_required": "Please enter an email so we can find your SAML Identity Provider"
+ "saml_email_required": "Please enter an email so we can find your SAML Identity Provider",
+ "visit_roadmap": "Roadmap"
}