import DocsSidenav from '@hashicorp/react-docs-sidenav' import Content from '@hashicorp/react-content' import InlineSvg from '@hashicorp/react-inline-svg' import githubIcon from './img/github-icon.svg?include' import Link from 'next/link' import Head from 'next/head' export default function DocsPage({ children, path, orderData, frontMatter, category, pageMeta }) { return (
{pageMeta.page_title} | Vault by HashiCorp {pageMeta.description && ( )}
Edit this page
) } export async function getInitialProps({ asPath }) { return { path: asPath } }