2020-04-06 20:27:35 +00:00
|
|
|
import DocsPage from '@hashicorp/react-docs-page'
|
|
|
|
import order from '../data/intro-navigation.js'
|
|
|
|
import { frontMatter as data } from '../pages/intro/**/*.mdx'
|
2020-04-07 23:56:08 +00:00
|
|
|
import { MDXProvider } from '@mdx-js/react'
|
2020-04-23 22:13:18 +00:00
|
|
|
import EnterpriseAlert from '../components/enterprise-alert'
|
2020-05-08 20:42:08 +00:00
|
|
|
import { Tabs, Tab } from '../components/tabs'
|
2020-04-06 20:27:35 +00:00
|
|
|
import Head from 'next/head'
|
|
|
|
import Link from 'next/link'
|
2020-04-07 23:56:08 +00:00
|
|
|
|
2020-05-08 20:42:08 +00:00
|
|
|
const DEFAULT_COMPONENTS = { EnterpriseAlert, Tabs, Tab }
|
2020-04-06 20:27:35 +00:00
|
|
|
|
|
|
|
function IntroLayoutWrapper(pageMeta) {
|
|
|
|
function IntroLayout(props) {
|
|
|
|
return (
|
2020-04-07 23:56:08 +00:00
|
|
|
<MDXProvider components={DEFAULT_COMPONENTS}>
|
|
|
|
<DocsPage
|
|
|
|
{...props}
|
|
|
|
product="consul"
|
|
|
|
head={{
|
|
|
|
is: Head,
|
|
|
|
title: `${pageMeta.page_title} | Consul by HashiCorp`,
|
|
|
|
description: pageMeta.description,
|
|
|
|
siteName: 'Consul by HashiCorp',
|
|
|
|
}}
|
|
|
|
sidenav={{
|
|
|
|
Link,
|
|
|
|
category: 'intro',
|
|
|
|
currentPage: props.path,
|
|
|
|
data,
|
|
|
|
order,
|
|
|
|
}}
|
|
|
|
resourceURL={`https://github.com/hashicorp/consul/blob/master/website/pages/${pageMeta.__resourcePath}`}
|
|
|
|
/>
|
|
|
|
</MDXProvider>
|
2020-04-06 20:27:35 +00:00
|
|
|
)
|
|
|
|
}
|
|
|
|
|
|
|
|
IntroLayout.getInitialProps = ({ asPath }) => ({ path: asPath })
|
|
|
|
|
|
|
|
return IntroLayout
|
|
|
|
}
|
|
|
|
|
|
|
|
export default IntroLayoutWrapper
|