diff --git a/components/Menu/structure.ts b/components/Menu/structure.ts index 5eda93a252..7686ff8126 100644 --- a/components/Menu/structure.ts +++ b/components/Menu/structure.ts @@ -268,6 +268,33 @@ const menu: MenuCategoryProps[] = [ href: "/pricing/", testId: "pricing", }, + { + title: "Community", + href: "/community/", + testId: "community", + children: [ + { + title: "Getting Started with OSS", + href: "/docs/", + }, + { + title: "Downloads", + href: "/download/", + }, + { + title: "Community Slack", + href: "/community-slack/", + }, + { + title: "GitHub Discussions", + href: "https://github.com/gravitational/teleport/discussions", + }, + { + title: "Podcasts", + href: "/resources/podcast/", + }, + ], + }, ]; export default menu; diff --git a/tests/data/navbar-data.ts b/tests/data/navbar-data.ts index c5ce3f5dcd..7e285566f4 100644 --- a/tests/data/navbar-data.ts +++ b/tests/data/navbar-data.ts @@ -300,9 +300,33 @@ export const navigationData: NavbarData = [ isExternal: true, }, { - button: { title: "", testId: "search" }, - href: "https://goteleport.com/search/", - isExternal: true, + button: { title: "Community", testId: "community" }, + menu: { + title: "Community", + testId: "community-menu", + children: [ + { + title: "Getting Started with OSS", + href: "/docs/", + }, + { + title: "Downloads", + href: "/download/", + }, + { + title: "Community Slack", + href: "/community-slack/", + }, + { + title: "GitHub Discussions", + href: "https://github.com/gravitational/teleport/discussions", + }, + { + title: "Podcasts", + href: "/resources/podcast/", + }, + ], + }, }, { button: { title: "Downloads", testId: "downloads" },