-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgatsby-site-meta-data.ts
120 lines (115 loc) · 2.39 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
export default {
/**
* basic Information
*/
title: `hooninedev.com`,
description: `후니네`,
language: `ko`,
siteUrl: `https://hooninedev.com/`,
ogImage: `/og-image.jpeg`, // Path to your in the 'static' folder
/**
* comments setting
*/
comments: {
utterances: {
repo: `jiji-hoon96/jihoon-blog`,
},
},
/**
* introduce yourself
*/
author: {
name: `이지훈`,
nickname: `후니`,
stack: ['React', 'Typescript', 'Javascript', 'Zustand'],
bio: {
email: `[email protected]`,
residence: 'Seoul, South Korea',
},
social: {
github: `https://github.com/jiji-hoon96`,
linkedIn: `https://www.linkedin.com/in/jiji-hoon96`,
resume: `https://www.figma.com/design/K0exYLedyNLV1iZaV9V4Iu/%EC%9D%B4%EB%A0%A5%EC%84%9C-%ED%94%BC%EB%93%9C%EB%B0%B1?t=IMQlxnD4VprguXaN-1`,
},
dropdown: {
tistory: '',
velog: '',
},
},
/**
* definition of featured posts
*/
featured: [
{
title: '프론트엔드',
category: '프론트엔드',
},
{
title: '소박한궁금증',
category: '소박한궁금증',
},
{
title: '대외활동',
category: '대외활동',
},
{
title: '일상',
category: '일상',
},
],
/**
* metadata for About Page
*/
timestamps: [
{
category: 'Career',
date: '2023.03 - NOW',
en: 'HicareNet',
kr: '하이케어넷',
info: 'Web-FrontEnd',
link: '',
},
{
category: 'Activity',
date: '2023.06 - 2023.12',
en: 'SIPE',
kr: '사이프',
info: 'IT 커뮤니티-회원',
link: '',
},
{
category: 'Activity',
date: '2024.01 - 2024.07',
en: 'SIPE',
kr: '사이프',
info: 'IT 커뮤니티-운영진',
link: '',
},
{
category: 'Activity',
date: '2024.06 - 2024.08',
en: 'DND',
kr: '디엔디',
info: '사이드 프로젝트 동아리-6조',
link: '',
},
],
/*thumb
* 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: '',
},
},
],
};