8ae3332165
- moved and renamed files/folders based on new structure - updated docs navigation based on new structure - moved CLI to top nav (created commands.jsx and commands-navigation.js) - updated and added redirects - updating to be consistent with standalone categories - changing "overview" link in top nav to lead to where intro was moved (docs/intro) - adding redirects for intro content - deleting old intro folders - format all data/navigation files - deleting old commands folder - reverting changes to glossary page - adjust intro navigation for removal of 'vs' paths - add helm page redirect - fix more redirects - add a missing redirect - fix broken anchor links and formatting mistakes - deleted duplicate section, added redirect, changed link - removed duplicate glossary page
42 lines
1.2 KiB
JavaScript
42 lines
1.2 KiB
JavaScript
import DocsPage from '@hashicorp/react-docs-page'
|
|
import order from '../data/commands-navigation.js'
|
|
import { frontMatter as data } from '../pages/commands/**/*.mdx'
|
|
import Head from 'next/head'
|
|
import Link from 'next/link'
|
|
import { createMdxProvider } from '@hashicorp/nextjs-scripts/lib/providers/docs'
|
|
|
|
const MDXProvider = createMdxProvider({ product: 'consul' })
|
|
|
|
function CommandsLayoutWrapper(pageMeta) {
|
|
function CommandsLayout(props) {
|
|
return (
|
|
<MDXProvider>
|
|
<DocsPage
|
|
{...props}
|
|
product="consul"
|
|
head={{
|
|
is: Head,
|
|
title: `${pageMeta.page_title} | Consul by HashiCorp`,
|
|
description: pageMeta.description,
|
|
siteName: 'Consul by HashiCorp',
|
|
}}
|
|
sidenav={{
|
|
Link,
|
|
category: 'commands',
|
|
currentPage: props.path,
|
|
data,
|
|
order,
|
|
}}
|
|
resourceURL={`https://github.com/hashicorp/consul/blob/master/website/pages/${pageMeta.__resourcePath}`}
|
|
/>
|
|
</MDXProvider>
|
|
)
|
|
}
|
|
|
|
CommandsLayout.getInitialProps = ({ asPath }) => ({ path: asPath })
|
|
|
|
return CommandsLayout
|
|
}
|
|
|
|
export default CommandsLayoutWrapper
|