Skip to content

Commit

Permalink
feat: 깃허브 및 링크드인 링크 추가
Browse files Browse the repository at this point in the history
  • Loading branch information
Coalery committed Jun 12, 2024
1 parent 8e89c51 commit 83c28ed
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions components/Header/index.tsx
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
import Link from "next/link";

export default function Header() {
return (
<header>
Expand All @@ -17,6 +19,22 @@ export default function Header() {
최근에는 Nest.js의 동작과 구현을 많이 살펴보고 있습니다.
</p>
</div>
<div>
<p className="text-lg">
<Link
className="underline underline-offset-4 text-black hover:text-black/60"
href="https://github.com/Coalery"
>
Github
</Link>
<Link
className="underline underline-offset-4 text-black hover:text-black/60 ml-4"
href="https://linkedin.com/in/Coalery"
>
LinkedIn
</Link>
</p>
</div>
</header>
);
}

0 comments on commit 83c28ed

Please sign in to comment.