--- import { Image } from 'astro:assets'; interface Props { hero: HeroComponent; } const hero = Astro.props.hero; ---

{hero.title}

{ hero.text !== null && (
{hero.text}
) }