You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
boundary/website/components/section-break-cta/index.jsx

23 lines
581 B

import styles from './section-break-cta.module.css'
import Button from '@hashicorp/react-button'
export default function SectionBreakCta({ heading, content, link }) {
return (
<div className={styles.sectionBreakCta}>
<hr />
<h4 className="g-type-display-4">{heading}</h4>
<p className="g-type-body">{content}</p>
<Button
title={link.text}
url={link.url}
theme={{
brand: 'neutral',
variant: 'tertiary-neutral',
background: 'light',
}}
linkType="outbound"
/>
</div>
)
}