add vmware utility download link

This commit is contained in:
Jeff Escalante 2020-05-28 12:56:39 -04:00
parent 881c3a6e78
commit 891dd33c71
No known key found for this signature in database
GPG Key ID: 32D23C61AB5450DB

View File

@ -3,6 +3,7 @@ import { VERSION } from 'data/version.json'
import ProductDownloader from '@hashicorp/react-product-downloader'
import Head from 'next/head'
import HashiHead from '@hashicorp/react-head'
import Link from 'next/link'
export default function DownloadsPage({ downloadData }) {
return (
@ -12,7 +13,11 @@ export default function DownloadsPage({ downloadData }) {
product="Vagrant"
version={VERSION}
downloads={downloadData}
/>
>
<Link href="/vmware/downloads">
<a>&raquo; Download VMWare Utility</a>
</Link>
</ProductDownloader>
</div>
)
}