--- interface Props { name: string; title?: string; photo: string; details?: string; } const { name, title, photo, details } = Astro.props; ---
{name}

{name}

{title &&

{title}

} {details && {details}}