Skip to content

Commit

Permalink
Replace Link by using a tag
Browse files Browse the repository at this point in the history
  • Loading branch information
JeFlame committed Jun 5, 2024
1 parent 16106ee commit 1e48d36
Showing 1 changed file with 8 additions and 14 deletions.
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
import Link from "next/link";
import type { NextPage } from "next";
import {
AcademicCapIcon,
Expand Down Expand Up @@ -40,19 +39,19 @@ const HoangVu: NextPage = () => {
<AcademicCapIcon className="h-8 w-8 fill-secondary" />
<p>
Explore my projects on{" "}
<Link href="https://github.com/JeFlame" passHref className="link" target="_blank">
<a href="https://github.com/JeFlame" className="link" target="_blank">
GitHub
</Link>
</a>
</p>
</div>

<div className="flex flex-col bg-base-100 px-6 py-6 text-center items-center max-w-xs rounded-3xl">
<EnvelopeIcon className="h-8 w-8 fill-secondary" />
<p>
Contact me via this{" "}
<Link href="mailto:[email protected]" passHref className="link" target="_blank">
<a href="mailto:[email protected]" className="link" target="_blank">
email
</Link>
</a>
</p>
</div>
</div>
Expand All @@ -62,24 +61,19 @@ const HoangVu: NextPage = () => {
<IdentificationIcon className="h-8 w-8 fill-secondary" />
<p>
View my profile on{" "}
<Link
href="https://www.linkedin.com/in/hoang-vu-847288202/"
passHref
className="link"
target="_blank"
>
<a href="https://www.linkedin.com/in/hoang-vu-847288202/" className="link" target="_blank">
LinkedIn
</Link>
</a>
</p>
</div>

<div className="flex flex-col bg-base-100 px-6 py-6 text-center items-center max-w-xs rounded-3xl">
<ChatBubbleBottomCenterTextIcon className="h-8 w-8 fill-secondary" />
<p>
Follow me on{" "}
<Link href="https://twitter.com/iaawyalytcl" passHref className="link" target="_blank">
<a href="https://twitter.com/iaawyalytcl" className="link" target="_blank">
Twitter
</Link>
</a>
</p>
</div>
</div>
Expand Down

0 comments on commit 1e48d36

Please sign in to comment.