import Button from '@hashicorp/react-button' import ReactPlayer from 'react-player' import s from './style.module.css' interface Cta { url: string text: string } interface ConsulOnKubernetesHeroProps { title: string description: string ctas: Cta[] video: { src: string poster: string } } export default function ConsulOnKubernetesHero({ title, description, ctas, video, }: ConsulOnKubernetesHeroProps) { return (

{title}

{description}

{ctas.map(({ text, url }, idx) => (
background top background right background bottom background left
} />
) }