80 | {section.blocks.map(({ linkTo, text, image }, j) => {
81 | const El = linkTo ? 'a' : 'div'
82 | const props = linkTo && { href: linkTo, target: '_blank' }
83 | return (
84 |
85 | {image && (
86 |
87 |
88 |
89 | )}
90 | {text && (
91 |
92 |
93 |
94 | )}
95 |
96 | )
97 | })}
98 |
99 | )}
100 |