Skip to content
This repository was archived by the owner on Jan 8, 2025. It is now read-only.

Add Hot Takes and IGS nav links #418

Merged
merged 1 commit into from
Nov 29, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions components/Menu/structure.ts
Original file line number Diff line number Diff line change
@@ -11,6 +11,10 @@ const menu: MenuCategoryProps[] = [
title: "Platform",
children: [
{ title: "Why Teleport", href: "/why-teleport/" },
{
title: "Identity Governance & Security",
href: "/identity-governance-security/",
},
{ title: "How It Works", href: "/how-it-works/" },
],
},
@@ -191,6 +195,10 @@ const menu: MenuCategoryProps[] = [
title: "Tech Papers",
href: "/resources/white-papers/",
},
{
title: "Hot Takes",
href: "/resources/hot-takes/",
},
],
},
{
10 changes: 10 additions & 0 deletions tests/data/navbar-data.ts
Original file line number Diff line number Diff line change
@@ -32,6 +32,11 @@ export const navigationData: NavbarData = [
testId: "platform-menu",
children: [
{ title: "Why Teleport", href: "/why-teleport/", isExternal: true },
{
title: "Identity Governance & Security",
href: "/identity-governance-security/",
isExternal: true,
},
{ title: "How It Works", href: "/how-it-works/", isExternal: true },
{
title: "SSH",
@@ -224,6 +229,11 @@ export const navigationData: NavbarData = [
href: "/resources/white-papers/",
isExternal: true,
},
{
title: "Hot Takes",
href: "/resources/hot-takes/",
isExternal: true,
},
{
title: "Support Portal",
href: "/support/",