misc messy design progress, fix table error, add more placeholder content to pages, etc
This commit is contained in:
@ -63,19 +63,21 @@ export default async function Page({ params }: { params: { slug: string } }) {
|
||||
/>
|
||||
)}
|
||||
</section>
|
||||
<section className="page-content">
|
||||
<section className="pageContent">
|
||||
<Blocks blocks={association.body} />
|
||||
<table>
|
||||
<tr>
|
||||
<th>Type</th>
|
||||
<td>{association.associationType}</td>
|
||||
</tr>
|
||||
{association.websiteUrl && (
|
||||
<tbody>
|
||||
<tr>
|
||||
<th>Nettside</th>
|
||||
<td>{association.websiteUrl}</td>
|
||||
<th>Type</th>
|
||||
<td>{association.associationType}</td>
|
||||
</tr>
|
||||
)}
|
||||
{association.websiteUrl && (
|
||||
<tr>
|
||||
<th>Nettside</th>
|
||||
<td>{association.websiteUrl}</td>
|
||||
</tr>
|
||||
)}
|
||||
</tbody>
|
||||
</table>
|
||||
</section>
|
||||
</main>
|
||||
|
Reference in New Issue
Block a user