Skip to content

Commit

Permalink
add dropdown in navbar with link to clusters
Browse files Browse the repository at this point in the history
  • Loading branch information
nilsgstrabo committed Sep 27, 2024
1 parent efc64cc commit e5ca045
Showing 1 changed file with 15 additions and 7 deletions.
22 changes: 15 additions & 7 deletions public-site/docusaurus.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -55,13 +55,21 @@ const config: Config = {
src: 'images/logos/logo.svg',
},
items: [
{to: '/start', label: 'Getting started', position: 'right'},
{to: '/docs', label: 'Docs', position: 'right'},
{to: '/radix-config', label: 'Radix Config', position: 'right'},
{to: '/guides', label: 'Guides', position: 'right'},
{to: '/features', label: 'Features', position: 'right'},
{to: '/community', label: 'Community', position: 'right'},
{href: 'https://console.radix.equinor.com/', label: 'Web Console', position: 'right'},
{to: '/start', label: 'Getting started', position: 'left'},
{to: '/docs', label: 'Docs', position: 'left'},
{to: '/radix-config', label: 'Radix Config', position: 'left'},
{to: '/guides', label: 'Guides', position: 'left'},
{to: '/features', label: 'Features', position: 'left'},
{to: '/community', label: 'Community', position: 'left'},
{
type: 'dropdown',
label: 'Web Console',
position: 'left',
items: [
{label: 'Radix Platform (North Europe)', href: 'https://console.radix.equinor.com/'},
{label: 'Radix Platform 2 (West Europe)', href: 'https://console.c2.radix.equinor.com/'},
],
},
],
},
footer: {
Expand Down

0 comments on commit e5ca045

Please sign in to comment.