--- import Container from '@/components/primitives/Container.astro'; import Section from '@/components/primitives/Section.astro'; import type { TrustPrincipleContent } from '@/types/site'; interface Props { statements: TrustPrincipleContent[]; } const { statements } = Astro.props; ---
{ statements.map((statement) => (

{statement.title}

{statement.description}

)) }