-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgatsby-site-meta-data.ts
133 lines (127 loc) · 2.62 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
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
export default {
/**
* basic Information
*/
title: `0xheun.com`,
description: `0xheun`,
language: `ko`,
siteUrl: `https://0xheun.com/`,
ogImage: `/og-image.png`, // Path to your in the 'static' folder
/**
* comments setting
*/
comments: {
utterances: {
repo: `heun630/0xheun`,
},
},
/**
* introduce yourself
*/
author: {
name: `이자흔`,
nickname: `Heun`,
stack: ['블록체인', 'Web3', "Core 개발"],
bio: {
email: `egg6030@gmail.com`,
residence: 'Seoul, South Korea',
masterDegree: 'Korea Univ. Financial Security (2023.09 - now)',
},
social: {
github: `https://github.com/heun630`,
linkedIn: `https://www.linkedin.com/in/0xheun`,
resume: ``,
},
dropdown: {
tistory: 'https://heun.tistory.com/',
},
},
/**
* definition of featured posts
*/
featured: [
{
title: 'Dev',
category: 'featured-Dev',
},
{
title: 'Personal',
category: 'featured-Personal',
},
{
title: 'Core',
category: 'featured-Core',
},
{
title: 'Etc',
category: 'featured-Etc',
},
],
/**
* metadata for About Page
*/
timestamps: [
{
category: 'Career',
date: '2021.07 - 2023.09',
en: 'Fineitn Corp.',
kr: '전자지갑 서비스',
info: '백엔드 및 블록체인 개발',
link: '',
},
{
category: 'Career',
date: '2024.09 - Now',
en: 'Onther Corp.',
kr: '블록체인 R&D',
info: '블록체인 개발',
link: 'https://www.tokamak.network/',
},
{
category: 'Activity',
date: '2024.09 - Now',
en: 'Decipher',
kr: '서울대학교 블록체인 학회',
info: 'Research',
link: 'https://decipher.ac/',
},
{
category: 'Activity',
date: '2024.06 - Now',
en: 'AllofNode',
kr: 'NaaS',
info: 'CTO',
link: 'https://allofnode.xyz',
},
],
/**
* metadata for Portfolio Page
*/
projects: [
{
title: 'AllofNode',
description: '노드 구동 대행 서비스',
techStack: ['Go', 'React'],
thumbnailUrl: 'allofnode.png',
links: {
post: '',
github: '',
link: 'https://allofnode.xyz/',
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
},
},
};