Implemented a simple page to view the currently registered users

This commit is contained in:
Tiago Ribeiro
2023-04-14 12:34:56 +01:00
parent 399e222791
commit f88db929f4
16 changed files with 433 additions and 32 deletions

View File

@@ -17,9 +17,7 @@ export default function ProfileCard({user, className}: Props) {
<img src={user.profilePicture} alt="Profile picture" className="rounded-full" />
</div>
<div className="flex flex-col justify-center">
<span className="text-neutral-600 font-bold text-2xl">
{user.name.first} {user.name.last}
</span>
<span className="text-neutral-600 font-bold text-2xl">{user.name}</span>
<LevelLabel experience={user.experience} />
</div>
</div>