Skip to content

Commit

Permalink
.
Browse files Browse the repository at this point in the history
  • Loading branch information
ApoorvDubey23 committed Dec 12, 2023
1 parent 9805d6c commit e804207
Showing 1 changed file with 12 additions and 1 deletion.
13 changes: 12 additions & 1 deletion src/pages/about.astro
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,18 @@ membersZod.parse(MemberDetails);
))
}
</div>


<!-- Contributors -->
<h1 class="text-white text-5xl font-bold pt-32">Contributors</h1>
<div class="flex flex-row items-center justify-center flex-wrap gap-x-10">
{
(MemberDetails as TeamMemberInterface[])
.filter((member) => member.role === "contributor")
.map((member: TeamMemberInterface) => (
<TeamMemberCard {...member} />
))
}
</div>
</div>
</div>
</Layout>

0 comments on commit e804207

Please sign in to comment.