mirror of
https://github.com/hashicorp/vault.git
synced 2025-08-20 22:21:09 +02:00
* adds lang attribute * fixes: empty anchor tag * adds alt attributes * alt tag logo grid updates * fix footer contrast color * only render header if it exists * adds `main` element to page * testing pre-releases * fix: button aria-label updates * chore: update deps * fix: adds `main` element to all pages * chore: formatting * fix: adds alts to use-cases page * chore: update headline element * chore: adds alt text * fix: adds alt tags * style: fix height issue * fix: use h1 at top of page * fix: remove main to avoid duplicate tag * chore: fix deps * main is already defined in docs page component * Update website/components/footer/style.css Co-authored-by: Jimmy Merritello <7191639+jmfury@users.noreply.github.com> Co-authored-by: Jimmy Merritello <7191639+jmfury@users.noreply.github.com>
27 lines
603 B
JavaScript
27 lines
603 B
JavaScript
import Button from '@hashicorp/react-button'
|
|
|
|
export default function UseCaseCtaSection() {
|
|
return (
|
|
<section className="g-section-block g-cta-section">
|
|
<div>
|
|
<h2>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>
|
|
)
|
|
}
|