export function TemplateCard({ id, title, description, href, portrait }) { const [hovering, setHovering] = React.useState(false); const imgSrc = `https://static.heygen.ai/hyperframes-oss/docs/images/templates/${id}.png`; const videoSrc = `https://static.heygen.ai/hyperframes-oss/docs/images/templates/${id}.mp4`; return ( setHovering(true)} onMouseLeave={() => setHovering(false)} >
{`${title} {hovering && (

{title}

{description}

); } export function TemplateGrid({ children }) { return (
{children}
); }