Skip to content

Commit

Permalink
fixed link component
Browse files Browse the repository at this point in the history
  • Loading branch information
sanidhyy authored Jan 13, 2024
1 parent 6f11293 commit f5f4ed0
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions src/components/Banner.jsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import React, { useEffect, useState } from "react";
import { Link } from "react-router-dom";

import { close, bulb } from "../assets";

Expand Down Expand Up @@ -35,14 +36,14 @@ const Banner = () => {
</span>
<span>
Did you like this portfolio. Check out my{" "}
<a
href="https://www.sanidhy.me/"
<Link
to="https://www.sanidhy.me/"
target="_blank"
rel="noreferrer noopener"
className="inline font-medium text-blue-600 underline underline-offset-2 decoration-600 hover:no-underline"
>
new portfolio
</a>
</Link>
.
</span>
</p>
Expand Down

0 comments on commit f5f4ed0

Please sign in to comment.