open-nomad/website/layouts/intro.jsx

49 lines
1.5 KiB
React
Raw Normal View History

import DocsPage from '@hashicorp/react-docs-page'
2020-06-01 21:48:25 +00:00
import order from 'data/intro-navigation.js'
import { frontMatter as data } from '../pages/intro/**/*.mdx'
import Head from 'next/head'
import Link from 'next/link'
2020-06-01 21:48:25 +00:00
import { createMdxProvider } from '@hashicorp/nextjs-scripts/lib/providers/docs'
2020-05-27 03:00:14 +00:00
import Search from '../components/search'
import SearchProvider from '../components/search/provider'
2020-02-06 23:45:31 +00:00
2020-06-01 21:48:25 +00:00
const MDXProvider = createMdxProvider({ product: 'nomad' })
export default function IntroLayoutWrapper(pageMeta) {
2020-02-06 23:45:31 +00:00
function IntroLayout(props) {
2020-05-27 03:00:14 +00:00
const { children, ...propsWithoutChildren } = props
2020-02-06 23:45:31 +00:00
return (
2020-06-01 21:48:25 +00:00
<MDXProvider>
<DocsPage
2020-05-27 03:00:14 +00:00
{...propsWithoutChildren}
2020-06-01 21:48:25 +00:00
product="nomad"
head={{
is: Head,
title: `${pageMeta.page_title} | Nomad by HashiCorp`,
description: pageMeta.description,
siteName: 'Nomad by HashiCorp',
}}
sidenav={{
Link,
category: 'intro',
currentPage: props.path,
data,
order,
2020-05-27 03:00:14 +00:00
disableFilter: true,
2020-06-01 21:48:25 +00:00
}}
resourceURL={`https://github.com/hashicorp/nomad/blob/master/website/pages/${pageMeta.__resourcePath}`}
2020-05-27 03:00:14 +00:00
>
<SearchProvider>
<Search placeholder="Search Nomad documentation" />
{children}
</SearchProvider>
</DocsPage>
2020-06-01 21:48:25 +00:00
</MDXProvider>
2020-02-06 23:45:31 +00:00
)
}
IntroLayout.getInitialProps = ({ asPath }) => ({ path: asPath })
2020-02-06 23:45:31 +00:00
return IntroLayout
}