import { Hero } from 'shared/types' import styles from './index.module.scss' import { Button } from '../Button' 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}
)}
) }