Skip to content

Commit 4958911

Browse files
committed
미사용 소셜 링크 제거, 링크드인 추가
1 parent 1cd3d7e commit 4958911

2 files changed

Lines changed: 3 additions & 4 deletions

File tree

gatsby-config.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ module.exports = {
99
social: {
1010
github: `https://github.com/constmoon`,
1111
twitter: `https://twitter.com/constmoon`,
12-
facebook: `https://www.facebook.com/profile.php?id=1262115677`,
12+
linkedin: `https://www.linkedin.com/in/jiwoo-kang`,
1313
},
1414
},
1515
plugins: [

src/pages/about.js

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ const AboutPage = ({ data }) => {
1818
const socialLinks = {
1919
GitHub: siteMetadata.social.github,
2020
Twitter: siteMetadata.social.twitter,
21-
Facebook: siteMetadata.social.facebook,
21+
LinkedIn: siteMetadata.social.linkedin,
2222
}
2323

2424
return (
@@ -37,7 +37,6 @@ const AboutPage = ({ data }) => {
3737
<a
3838
href={socialLinks[key]}
3939
target="_blank"
40-
rel="noopener noreferrer"
4140
>
4241
{key}
4342
{index < Object.keys(socialLinks).length - 1 && (
@@ -69,7 +68,7 @@ export const query = graphql`
6968
social {
7069
github
7170
twitter
72-
facebook
71+
linkedin
7372
}
7473
}
7574
}

0 commit comments

Comments
 (0)