From 3b3e710f773ad2ddb499bdc8c73c4668307e5fa8 Mon Sep 17 00:00:00 2001 From: Brandon Romano Date: Wed, 6 May 2020 19:39:32 -0700 Subject: [PATCH] Adjust nav to new recommended layout. This removes "Intro", which is actually no longer the recommended get-started place (Learn takes that spot). Additionally, there is now a separator between the high level business value stuff, and the low level developer stuff. --- website/data/subnav.js | 15 ++++++--------- 1 file changed, 6 insertions(+), 9 deletions(-) diff --git a/website/data/subnav.js b/website/data/subnav.js index d9b0da099..78a2652f1 100644 --- a/website/data/subnav.js +++ b/website/data/subnav.js @@ -1,4 +1,5 @@ export default [ + { text: 'Overview', url: '/', type: 'inbound' }, { text: 'Use Cases', submenu: [ @@ -7,10 +8,12 @@ export default [ ], }, { - text: 'Intro', - url: '/intro', - type: 'inbound', + text: 'Enterprise', + url: + 'https://www.hashicorp.com/products/consul/?utm_source=oss&utm_medium=header-nav&utm_campaign=consul', + type: 'outbound', }, + 'divider', { text: 'Learn', url: 'https://learn.hashicorp.com/consul', @@ -31,10 +34,4 @@ export default [ url: '/community', type: 'inbound', }, - { - text: 'Enterprise', - url: - 'https://www.hashicorp.com/products/consul/?utm_source=oss&utm_medium=header-nav&utm_campaign=consul', - type: 'outbound', - }, ]