Skip to content

Commit 8a4014f

Browse files
committed
Change footer copyright link to a tag
1 parent 8fedd21 commit 8a4014f

File tree

1 file changed

+7
-8
lines changed

1 file changed

+7
-8
lines changed

src/components/shared/AppFooterCopyright.js

+7-8
Original file line numberDiff line numberDiff line change
@@ -1,24 +1,23 @@
1-
import { Link } from 'react-router-dom';
2-
31
function AppFooterCopyright() {
42
return (
53
<div className="font-general-regular flex justify-center items-center text-center">
64
<div className="text-lg text-ternary-dark dark:text-ternary-light">
75
&copy; {new Date().getFullYear()}
8-
<Link
9-
to="https://github.com/realstoman/react-tailwindcss-portfolio"
6+
<a
7+
href="https://github.com/realstoman/react-tailwindcss-portfolio"
8+
target="__blank"
109
className="hover:underline hover:text-indigo-600 dark:hover:text-indigo-300 ml-1 duration-500"
1110
>
1211
React & TailwindCSS Portfolio
13-
</Link>
12+
</a>
1413
.
15-
<Link
16-
to="https://stoman.me"
14+
<a
15+
href="https://stoman.me"
1716
target="__blank"
1817
className="text-secondary-dark dark:text-secondary-light font-medium uppercase hover:underline hover:text-indigo-600 dark:hover:text-indigo-300 ml-1 duration-500"
1918
>
2019
Stoman
21-
</Link>
20+
</a>
2221
</div>
2322
</div>
2423
);

0 commit comments

Comments
 (0)