github.com/uchennaokeke444/nomad@v0.11.8/website/components/mini-cta/index.jsx (about) 1 import Button from '@hashicorp/react-button' 2 3 export default function MiniCTA({ title, description, link }) { 4 return ( 5 <div className="g-mini-cta"> 6 <div className="g-grid-container"> 7 <hr /> 8 <h5 className="g-type-display-4">{title}</h5> 9 {description && <p className="g-type-body">{description}</p>} 10 <Button 11 title={link.text} 12 url={link.url} 13 theme={{ 14 variant: 'tertiary-neutral', 15 brand: 'neutral', 16 background: 'light' 17 }} 18 linkType={link.type} 19 /> 20 </div> 21 </div> 22 ) 23 }