|
|
|
|
@ -1,5 +1,5 @@
|
|
|
|
|
import DocsPage from '@hashicorp/react-docs-page'
|
|
|
|
|
import order from '../data/guides-navigation.js'
|
|
|
|
|
import order from 'data/guides-navigation.js'
|
|
|
|
|
import { frontMatter as data } from '../pages/guides/**/*.mdx'
|
|
|
|
|
import Head from 'next/head'
|
|
|
|
|
import Link from 'next/link'
|
|
|
|
|
@ -14,14 +14,14 @@ function GuidesLayoutWrapper(pageMeta) {
|
|
|
|
|
is: Head,
|
|
|
|
|
title: `${pageMeta.page_title} | Packer by HashiCorp`,
|
|
|
|
|
description: pageMeta.description,
|
|
|
|
|
siteName: 'Packer by HashiCorp'
|
|
|
|
|
siteName: 'Packer by HashiCorp',
|
|
|
|
|
}}
|
|
|
|
|
sidenav={{
|
|
|
|
|
Link,
|
|
|
|
|
category: 'guides',
|
|
|
|
|
currentPage: props.path,
|
|
|
|
|
data,
|
|
|
|
|
order
|
|
|
|
|
order,
|
|
|
|
|
}}
|
|
|
|
|
resourceURL={`https://github.com/hashicorp/packer/blob/master/website/pages/${pageMeta.__resourcePath}`}
|
|
|
|
|
/>
|
|
|
|
|
|