Zachary Shilton 56ae8bfc15
Upgrade global styles (#12167)
* website: upgrade global-styles packages

* website: remove deprecated --site-max-width on community page

* website: replace code-block showWindowBar with showChrome

* website: replace old g-container with g-grid-container

* website: backfill missing type styles

* website: revert change to heading semantics

* website: fix mismatched border colour

* website: fix spacing issue

* website: revert accidental replacement

* website: clarify debt intention with comment

* website: fix missing search styles, remove cruft

* website: hide alert-banner on mobile

* website: bump to latest patched dependencies
2021-08-20 12:20:18 -04:00

27 lines
632 B
JavaScript

import Button from '@hashicorp/react-button'
export default function UseCaseCtaSection() {
return (
<section className="g-section-block g-cta-section">
<div>
<h2 className='g-type-display-2'>Ready to get started?</h2>
<Button
url="/downloads"
title="Download"
label="Download CLI"
linkType="download"
theme={{
variant: 'primary',
brand: 'neutral',
}}
/>
<Button
url="/docs"
title="Explore Docs"
theme={{ variant: 'secondary' }}
/>
</div>
</section>
)
}