import { ParagraphProps } from "components/paragraph" import { SectionHeader } from "components/section-header" import { FormattedText } from "components/formatted-text" import { Section } from "components/section" export function ParagraphCards({ paragraph, ...props }: ParagraphProps) { return (
{paragraph.field_items?.length && (
{paragraph.field_items.map((card) => (

{card.field_heading}

{card.field_text?.processed && ( )}
))}
)}
) }