Skip to content

Commit

Permalink
Merge pull request #20 from Belloabraham121/feat/added-community-card
Browse files Browse the repository at this point in the history
feat: Created CommunityCard component
  • Loading branch information
evgongora authored Dec 18, 2024
2 parents 40a1b6b + 4de177f commit 37355bf
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions src/app/components/CommunityCard.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
export default function CommunityCard() {
return (
<div className="w-full max-w-3xl p-8">
<div className="relative w-full bg-[#EEEEEE] rounded-[32px] p-8">
<div className="flex justify-between items-start">
<div className="space-y-3">
<h2 className="text-5xl font-normal text-black">CommunityDAO</h2>
<p className="text-3xl text-black">Members: xxx</p>
</div>
<div className="px-6 py-3 bg-[#387478] text-white rounded-full">
<span className="text-xl">Gaming</span>
</div>
</div>
<div className="mt-10">
<p className="text-xl text-black">Created: xx days ago</p>
</div>
</div>
</div>
);
}

0 comments on commit 37355bf

Please sign in to comment.