website: add urls to homepage buttons (#9152)

This commit is contained in:
Kyle MacDonald 2020-05-01 21:25:22 -04:00 committed by GitHub
parent 39452fee3f
commit f0840f55d0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 6 additions and 1 deletions

View File

@ -8,13 +8,18 @@ export default function Homepage() {
<img src="/img/logo-hashicorp.svg" alt="HashiCorp Packer Logo" />
<h1 className="g-type-display-3">Build Automated Machine Images</h1>
<div className="buttons">
<Button title="Get Started" theme={{ brand: 'packer' }} />
<Button
title="Get Started"
theme={{ brand: 'packer' }}
url="/intro"
/>
<Button
title={`Download ${VERSION}`}
theme={{
variant: 'secondary',
background: 'light',
}}
url="/downloads"
/>
</div>
</section>