-
Notifications
You must be signed in to change notification settings - Fork 2
/
gatsby-site-meta-data.ts
118 lines (112 loc) · 2.44 KB
/
gatsby-site-meta-data.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
export default {
/**
* basic Information
*/
title: `jeong-min.com`,
description: `개발자 단민`,
language: `ko`,
siteUrl: `https://jeong-min.com/`,
ogImage: `/og-image.png`, // Path to your in the 'static' folder
/**
* comments setting
*/
comments: {
utterances: {
repo: ``, //`danmin20/danmin-gatsby-blog`,
},
},
/**
* introduce yourself
*/
author: {
name: `이정민`,
nickname: `단민`,
stack: ['Frontend', 'React', 'Typescript'],
bio: {
email: `[email protected]`,
residence: 'Seoul, South Korea',
bachelorDegree: 'Kyunghee Univ. Computer Engineering (2018.03-2022.02)',
},
social: {
github: `https://github.com/danmin20`,
linkedIn: `https://www.linkedin.com/in/jeonming-lee/`,
resume: `https://www.figma.com/file/dtkCl6G7G5DVe18DN2LWny/%EC%9D%B4%EC%A0%95%EB%AF%BC-%EC%9D%B4%EB%A0%A5%EC%84%9C?node-id=0%3A1`,
},
dropdown: {
tistory: 'https://danminblog.tistory.com/',
velog: 'https://velog.io/@danmin20',
},
},
/**
* definition of featured posts
*/
featured: [
{
title: 'category1',
category: 'featured-category1',
},
{
title: 'category2',
category: 'featured-category2',
},
],
/**
* metadata for About Page
*/
timestamps: [
{
category: 'Career',
date: '2022.01.04 - NOW',
en: 'A Corp.',
kr: 'A 회사',
info: 'A 팀',
link: '',
},
{
category: 'Career',
date: '2021.01.04 - 2022.01.04',
en: 'B Corp.',
kr: 'B 회사',
info: 'B 팀',
link: '',
},
{
category: 'Activity',
date: '2023.07 - NOW',
en: 'Community',
kr: '커뮤니티',
info: 'IT 커뮤니티',
link: '',
},
],
/**
* metadata for Playground Page
*/
projects: [
{
title: 'Portfolio',
description: '포트폴리오',
techStack: ['React', 'Next.js', 'Typescript'],
thumbnailUrl: '', // Path to your in the 'assets' folder
links: {
post: '',
github: '',
demo: '',
googlePlay: '',
appStore: '',
},
},
],
/**
* metadata for Buy Me A Coffee
*/
remittances: {
toss: {
link: 'https://toss.me/danmin',
qrCode: 'toss_qr.svg', // Path to your in the 'assets' folder
},
kakaopay: {
qrCode: 'kakao_qr.svg', // Path to your in the 'assets' folder
},
},
};