Skip to content

Commit 92dc8ee

Browse files
committed
add linked in
1 parent 64bea2c commit 92dc8ee

File tree

3 files changed

+14
-2
lines changed

3 files changed

+14
-2
lines changed

app/page.tsx

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,6 @@ import { Navigation } from '@/components/Navigation/Navigation'
22
import { PostListItem } from '@/components/PostListItem/PostListItem'
33
import { tagDropdownTrigger, content, header, postList } from './styles.css'
44

5-
import dropDownArrow from '@/public/icons/arrow_drop_down.svg'
6-
import Image from 'next/image'
75
import { getPostDatabase } from '@/notionApi/getPostDatabase'
86

97
export default async function Home() {

components/Navigation/Navigation.tsx

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ import {
1414
} from './styles.css'
1515

1616
import githubLogo from '@/public/icons/github_logo.svg'
17+
import linkedinLogo from '@/public/icons/linkedin_logo.svg'
1718

1819
export function Navigation() {
1920
return (
@@ -37,6 +38,16 @@ export function Navigation() {
3738
<Image src={githubLogo} alt="깃허브" />
3839
</a>
3940
</li>
41+
<li className={navControlListItem}>
42+
<a
43+
href="https://www.linkedin.com/in/parkjeongbin"
44+
target="_blank"
45+
rel="noopener noreferrer"
46+
className={iconButton}
47+
>
48+
<Image src={linkedinLogo} alt="링크드인" />
49+
</a>
50+
</li>
4051
</ul>
4152
</div>
4253
</nav>

public/icons/linkedin_logo.svg

Lines changed: 3 additions & 0 deletions
Loading

0 commit comments

Comments
 (0)