diff --git a/website/data/intro-navigation.js b/website/data/intro-navigation.js
index a34914772..9a1d2a9a5 100644
--- a/website/data/intro-navigation.js
+++ b/website/data/intro-navigation.js
@@ -10,6 +10,33 @@ export default [
'use-cases',
{
category: 'getting-started',
- content: ['build-image', 'provision', 'parallel-builds', 'vagrant', 'next']
- }
+ name: 'Getting Started',
+ content: [
+ {
+ title: 'Overview',
+ href: 'https://learn.hashicorp.com/packer/getting-started/install',
+ },
+ {
+ title: 'Build An Image',
+ href: 'https://learn.hashicorp.com/packer/getting-started/build-image',
+ },
+ {
+ title: 'Provision',
+ href: 'https://learn.hashicorp.com/packer/getting-started/provision',
+ },
+ {
+ title: 'Parallel Builds',
+ href:
+ 'https://learn.hashicorp.com/packer/getting-started/parallel-builds',
+ },
+ {
+ title: 'Vagrant Boxes',
+ href: 'https://learn.hashicorp.com/packer/getting-started/vagrant',
+ },
+ {
+ title: 'Next Steps',
+ href: 'https://learn.hashicorp.com/packer/getting-started/next',
+ },
+ ],
+ },
]
diff --git a/website/pages/docs/install.mdx b/website/pages/docs/install.mdx
index 7c499a3ae..1b5d2d943 100644
--- a/website/pages/docs/install.mdx
+++ b/website/pages/docs/install.mdx
@@ -10,4 +10,6 @@ sidebar_title: Installing Packer
# Install Packer
For detailed instructions on how to install Packer, see [this
-page](/intro/getting-started/install) in our getting-started guide.
+page][install] in our getting-started guide.
+
+[install]: https://learn.hashicorp.com/packer/getting-started/install 'Install Packer'
diff --git a/website/pages/home/index.jsx b/website/pages/home/index.jsx
index 59524408f..4e80c7661 100644
--- a/website/pages/home/index.jsx
+++ b/website/pages/home/index.jsx
@@ -11,7 +11,7 @@ export default function Homepage() {