Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

added_hover_animation_to_links #90

Merged
merged 3 commits into from
Nov 26, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 9 additions & 9 deletions src/components/user/profile/header.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -35,35 +35,35 @@ 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">
<div className="flex items-center gap-2 text-starlight-gray hover:text-black">
<Link
href={`mailto:${email}`}
className="text-starlight-gray"
className="flex items-center gap-2 rounded-md px-3 py-1"
target="_blank"
>
<Mail className="inline-block h-5 w-5 text-starlight-gray" />
<Mail className="inline-block h-5 w-5" />
<span className="ml-2">{email}</span>
</Link>
</div>

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

<div className="flex items-center gap-2">
<div className="flex items-center gap-2 text-starlight-gray hover:text-black">
<Link
href={`https://discord.com/users/${discord}`}
className="text-starlight-gray"
className="flex items-center gap-2 rounded-md px-3 py-1"
target="_blank"
>
<FaDiscord className="inline-block h-5 w-5 text-starlight-gray" />
<FaDiscord className="inline-block h-5 w-5" />
<span className="ml-2">{discord}</span>
</Link>
</div>
Expand Down
Loading