import * as React from 'react' import classNames from 'classnames' import { Products } from '@hashicorp/platform-product-meta' import { IconArrowRight16 } from '@hashicorp/flight-icons/svg-react/arrow-right-16' import s from './style.module.css' interface IoHomePreFooterProps { brand: Products heading: string description: string ctas: [IoHomePreFooterCard, IoHomePreFooterCard, IoHomePreFooterCard] } export default function IoHomePreFooter({ brand, heading, description, ctas, }: IoHomePreFooterProps) { return (

{heading}

{description}

{ctas.map((cta, index) => { return ( ) })}
) } interface IoHomePreFooterCard { brand?: string link: string heading: string description: string cta: string } function IoHomePreFooterCard({ brand, link, heading, description, cta, }: IoHomePreFooterCard): React.ReactElement { return (

{heading}

{description}

{cta}
) }