add lead to associations

This commit is contained in:
2024-08-09 03:43:50 +02:00
parent d509a1a41d
commit c48c79848a
6 changed files with 37 additions and 7 deletions

View File

@ -73,6 +73,12 @@ export default async function Page({ params }: { params: { slug: string } }) {
/>
)}
</section>
{association.lead && (
<div
className="lead"
dangerouslySetInnerHTML={{ __html: association.lead }}
/>
)}
<PageContent blocks={association.body} />
</main>
);