open-consul/website/layouts/index.jsx

36 lines
904 B
React
Raw Normal View History

2020-04-06 20:27:35 +00:00
import DocsPage from '@hashicorp/react-docs-page'
import Head from 'next/head'
import Link from 'next/link'
2020-04-07 23:56:08 +00:00
function DefaultLayoutWrapper(pageMeta) {
function DefaultLayout(props) {
2020-04-06 20:27:35 +00:00
return (
<DocsPage
{...props}
product="consul"
head={{
is: Head,
title: `${pageMeta.page_title} | Consul by HashiCorp`,
description: pageMeta.description,
siteName: 'Consul by HashiCorp',
}}
sidenav={{
Link,
category: 'docs',
currentPage: props.path,
data: [],
order: [],
disableFilter: true,
}}
resourceURL={`https://github.com/hashicorp/consul/blob/master/website/pages/${pageMeta.__resourcePath}`}
/>
)
}
2020-04-07 23:56:08 +00:00
DefaultLayout.getInitialProps = ({ asPath }) => ({ path: asPath })
2020-04-06 20:27:35 +00:00
2020-04-07 23:56:08 +00:00
return DefaultLayout
2020-04-06 20:27:35 +00:00
}
2020-04-07 23:56:08 +00:00
export default DefaultLayoutWrapper