mirror of
https://github.com/hashicorp/vault.git
synced 2025-11-25 04:31:12 +01:00
* 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
27 lines
632 B
JavaScript
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>
|
|
)
|
|
}
|