From 2d600d724de34a823d1d5f0be58e38a47aee19a4 Mon Sep 17 00:00:00 2001 From: developomp Date: Fri, 28 Jul 2023 22:28:08 +0900 Subject: [PATCH] refactor(blog): use nextJS link --- apps/blog/src/components/GithubLinkIcon.tsx | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) 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 ( - - + ) }