Skip to content

Commit 5e8a800

Browse files
PeerRichpumfleet
andauthored
added roadmap link in dropdown (#1510)
* added roadmap link in dropdown * Update public/static/locales/en/common.json Co-authored-by: Bailey Pumfleet <pumfleet@hey.com> Co-authored-by: Bailey Pumfleet <pumfleet@hey.com>
1 parent 9921b76 commit 5e8a800

File tree

2 files changed

+12
-1
lines changed

2 files changed

+12
-1
lines changed

components/Shell.tsx

+10
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ import {
99
LogoutIcon,
1010
PuzzleIcon,
1111
MoonIcon,
12+
MapIcon,
1213
} from "@heroicons/react/solid";
1314
import { signOut, useSession } from "next-auth/react";
1415
import Link from "next/link";
@@ -466,6 +467,15 @@ function UserDropdown({ small }: { small?: boolean }) {
466467
{t("join_our_slack")}
467468
</a>
468469
</DropdownMenuItem>
470+
<DropdownMenuItem>
471+
<a
472+
target="_blank"
473+
rel="noopener noreferrer"
474+
href="https://cal.com/roadmap"
475+
className="flex items-center px-4 py-2 text-sm text-gray-700">
476+
<MapIcon className="w-5 h-5 mr-3 text-gray-500" /> {t("visit_roadmap")}
477+
</a>
478+
</DropdownMenuItem>
469479
<HelpMenuItemDynamic />
470480
<DropdownMenuSeparator className="h-px bg-gray-200" />
471481
<DropdownMenuItem>

public/static/locales/en/common.json

+2-1
Original file line numberDiff line numberDiff line change
@@ -594,5 +594,6 @@
594594
"saml_configuration_placeholder": "Please paste the SAML metadata from your Identity Provider here",
595595
"saml_configuration_update_failed": "SAML configuration update failed",
596596
"saml_configuration_delete_failed": "SAML configuration delete failed",
597-
"saml_email_required": "Please enter an email so we can find your SAML Identity Provider"
597+
"saml_email_required": "Please enter an email so we can find your SAML Identity Provider",
598+
"visit_roadmap": "Roadmap"
598599
}

0 commit comments

Comments
 (0)