Skip to content

Commit

Permalink
Merge pull request #53 from acm-ucr/kevincao/change_metadata_color
Browse files Browse the repository at this point in the history
fixed metadata color
  • Loading branch information
shahdivyank authored Nov 5, 2024
2 parents e62bf8a + ddd91d0 commit e77d736
Showing 1 changed file with 14 additions and 10 deletions.
24 changes: 14 additions & 10 deletions src/components/user/profile/header.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -35,32 +35,36 @@ const Header = ({
<div className="flex max-h-full w-full max-w-full flex-col gap-1">
<p className="text-3xl font-bold">{name}</p>

<div className="flex items-center gap-2">
<Mail className="h-5 w-5" />
<Link href={`mailto:${email}`} className="text-base" target="_blank">
{email}
<div className="flex items-center">
<Link
href={`mailto:${email}`}
className="text-starlight-gray"
target="_blank"
>
<Mail className="inline-block h-5 w-5 text-starlight-gray" />
<span className="ml-2">{email}</span>
</Link>
</div>

<div className="flex items-center gap-2">
<FaGithub className="h-5 w-5" />
<Link
href={`https://github.com/${github}`}
className="text-base"
className="text-starlight-gray"
target="_blank"
>
{github}
<FaGithub className="inline h-5 w-5 text-starlight-gray" />
<span className="ml-2">{github}</span>
</Link>
</div>

<div className="flex items-center gap-2">
<FaDiscord className="h-5 w-5" />
<Link
href={`https://discord.com/users/${discord}`}
className="text-base"
className="text-starlight-gray"
target="_blank"
>
{discord}
<FaDiscord className="inline-block h-5 w-5 text-starlight-gray" />
<span className="ml-2">{discord}</span>
</Link>
</div>
<div className="flex max-w-full items-center">
Expand Down

0 comments on commit e77d736

Please sign in to comment.