--- import type { LegalSection } from '@/types/site'; interface Props { sections: LegalSection[]; } const { sections } = Astro.props; ---
{ sections.map((section) => (

{section.title}

)) }