--- import type { InfoPage } from "../data/info"; type Props = { page: InfoPage; }; const { page } = Astro.props; --- {page.sections.map((section) => (

{section.title}

{section.body?.map((paragraph) =>

{paragraph}

)} {section.bullets && ( )}
))}