Skip to content

Commit

Permalink
feat: 온보딩 헤더의 로고 라우팅 추가(#12)
Browse files Browse the repository at this point in the history
  • Loading branch information
ddhelop committed Oct 28, 2024
1 parent 714fafe commit c9cd514
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions src/features/onBoarding/components/OnBoaridngHeader.tsx
Original file line number Diff line number Diff line change
@@ -1,10 +1,13 @@
import Image from 'next/image'
import Link from 'next/link'

export default function OnBoaridngHeader() {
return (
<>
<nav className="flex h-auto w-full px-10 py-6">
<Image src="/common/icons/blue_logo_row.svg" alt="LinKit Logo" width={115} height={22} />
<nav className="flex h-auto w-full px-10 py-4">
<Link href="/">
<Image src="/common/icons/blue_logo_row.svg" alt="LinKit Logo" width={115} height={22} />
</Link>
</nav>
</>
)
Expand Down

0 comments on commit c9cd514

Please sign in to comment.