import { Hero } from 'types'; import styles from './index.module.scss'; import { Button } from '../Button/index'; export function HomeHero(props: { hero: Hero }) { const { hero } = props; return (

{hero.name}

{hero.text}

{hero.tagline}

{hero.actions.map((action) => (
))}
{hero.image && (
{hero.image.alt}
)}
); }