--- import type { InsuranceSection } from '../../types/home-sections'; interface Props { section: InsuranceSection } const { section } = Astro.props; ---

{section.heading}

{section.body}

{section.logos.map(({ file, alt }) => ( {alt} ))}