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

Add access graph link to nav #424

Merged
merged 1 commit into from
Jan 19, 2024
Merged
Show file tree
Hide file tree
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
4 changes: 4 additions & 0 deletions components/Menu/structure.ts
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,10 @@ const menu: MenuCategoryProps[] = [
href: "/features/",
titleLink: true,
children: [
{
title: "Access Graph",
href: "/features/access-graph/",
},
{ title: "Assist", href: "/features/assist/" },
{ title: "Single Sign On", href: "/features/sso-for-ssh/" },
{
Expand Down
5 changes: 5 additions & 0 deletions tests/data/navbar-data.ts
Original file line number Diff line number Diff line change
Expand Up @@ -69,6 +69,11 @@ export const navigationData: NavbarData = [
isExternal: true,
},
{ title: "Our Features", href: "/features/", isExternal: true },
{
title: "Access Graph",
href: "/features/access-graph/",
isExternal: true,
},
{ title: "Assist", href: "/features/assist/", isExternal: true },
{
title: "Single Sign On",
Expand Down