import Head from 'next/head' import Link from 'next/link' import { createMdxProvider } from '@hashicorp/nextjs-scripts/lib/providers/docs' import DocsPage from '@hashicorp/react-docs-page' import { SearchProvider } from '@hashicorp/react-search' import SearchBar from '../components/search-bar' import { frontMatter as data } from '../pages/intro/**/*.mdx' import order from '../data/intro-navigation.js' const MDXProvider = createMdxProvider({ product: 'consul' }) function IntroLayoutWrapper(pageMeta) { function IntroLayout(props) { const { children, ...propsWithoutChildren } = props return ( {children} ) } IntroLayout.getInitialProps = ({ asPath }) => ({ path: asPath }) return IntroLayout } export default IntroLayoutWrapper