Skip to content

Commit

Permalink
hotfix: oops didn't close h2
Browse files Browse the repository at this point in the history
  • Loading branch information
hazelthatsme committed May 19, 2024
1 parent e22e2c0 commit 6dcb6b9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/pages/index.astro
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ const members = await Astro.glob('../pages/members/*.md');
<BlogPost url={post.url} {...post.frontmatter} />
)}

<h2>Who are we?
<h2>Who are we?</h2>
<div class="members">
{members.sort((a, b) => a.frontmatter.name > b.frontmatter.name ? 1 : -1).map((member) =>
<Member {...member.frontmatter} content={member.compiledContent()} />
Expand Down

0 comments on commit 6dcb6b9

Please sign in to comment.