From 1d0cecedff7a2442170be3973cd4766e56f4b573 Mon Sep 17 00:00:00 2001 From: Brandon Romano Date: Thu, 24 Sep 2020 17:12:36 -0700 Subject: [PATCH] Update landing page CTAs to proper docs pages (#433) --- website/components/subnav/index.jsx | 2 +- website/pages/home/index.jsx | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/website/components/subnav/index.jsx b/website/components/subnav/index.jsx index 59282c5f8d..f1cd780391 100644 --- a/website/components/subnav/index.jsx +++ b/website/components/subnav/index.jsx @@ -17,7 +17,7 @@ export default function ProductSubnav() { text: 'GitHub', url: `https://www.github.com/hashicorp/${productSlug}`, }, - { text: 'Download', url: '#' }, + { text: 'Download', url: '/docs/getting-started/building' }, ]} currentPath={router.pathname} menuItemsAlign="right" diff --git a/website/pages/home/index.jsx b/website/pages/home/index.jsx index eb09fc9641..00db1c6f67 100644 --- a/website/pages/home/index.jsx +++ b/website/pages/home/index.jsx @@ -9,12 +9,12 @@ export default function HomePage() { links={[ { text: 'Download', - url: '#', + url: '/docs/getting-started/building', type: 'download', }, { text: 'Get Started', - url: '/docs/introduction', + url: '/docs/getting-started', type: 'inbound', }, ]}