open-vault/website/pages/downloads/index.jsx
2021-12-25 14:42:55 -05:00

17 lines
546 B
JavaScript

import ProductDownloadsPage from '@hashicorp/react-product-downloads-page'
import { generateStaticProps } from '@hashicorp/react-product-downloads-page/server'
import { VERSION } from 'data/version'
import { productSlug } from 'data/metadata'
import baseProps from 'components/downloads-props'
export default function DownloadsPage(staticProps) {
return <ProductDownloadsPage {...baseProps()} {...staticProps} />
}
export function getStaticProps() {
return generateStaticProps({
product: productSlug,
latestVersion: VERSION,
})
}