diff --git a/apps/blog/src/components/GithubLinkIcon.tsx b/apps/blog/src/components/GithubLinkIcon.tsx index a85fe18..6b27487 100644 --- a/apps/blog/src/components/GithubLinkIcon.tsx +++ b/apps/blog/src/components/GithubLinkIcon.tsx @@ -1,5 +1,6 @@ import { faGithub } from "@fortawesome/free-brands-svg-icons" import { FontAwesomeIcon } from "@fortawesome/react-fontawesome" +import Link from "next/link" interface Props { href: string @@ -7,13 +8,13 @@ interface Props { export default function GithubLinkIcon({ href }: Props) { return ( - - + ) }