/** * Created by David Garcia for Finboot. * * Custom Hero component for Docusaurus. */ import clsx from 'clsx'; import React from 'react'; import Button from '../Button'; import { HeroProps } from '../types'; import styles from './styles.module.css'; export default function Hero(props:HeroProps) { const { title, content, buttonText, buttonLink, className, } = props; let heroButton; if (buttonText) { heroButton = (