-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgatsby-site-meta-data.ts
138 lines (133 loc) · 3.69 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
134
135
136
137
138
export default {
/**
* basic Information
*/
title: `seokhun.dev`,
description: `엄석훈의 개발 블로그입니다.`,
language: `ko`,
siteUrl: `https://seokhun.dev/`,
ogImage: `/og-image.png`, // Path to your in the 'static' folder
naverVertification: `d7906020c046764bbc6896d85454eff1e45f9915`,
/**
* comments setting
*/
comments: {
utterances: {
repo: `SeokhunEom/blog`,
},
},
/**
* introduce yourself
*/
author: {
name: `엄석훈`,
nickname: `엄석훈`,
stack: ["Frontend", "React", "Typescript"],
bio: {
email: `[email protected]`,
residence: "대한민국, 서울",
bachelorDegree:
"서강대학교, 전자공학, 경제학, 컴퓨터공학 학사 (2018.03-재학중)",
},
social: {
github: `https://github.com/SeokhunEom`,
portfolio: `https://ballistic-pangolin-89b.notion.site/f3cc3388e5e74594bd334bf40667e328`,
email: `mailto:[email protected]`,
},
},
/**
* definition of featured posts
*/
featured: [
{
title: "Project",
category: "featured-Project",
},
],
/**
* metadata for About Page
*/
timestamps: [
{
category: "Activity",
date: "2023.07 - 2023.08",
en: "Softeer Bootcamp",
kr: "부트캠프",
info: "현대자동차 소프티어 부트캠프",
link: "",
},
],
/**
* metadata for Playground Page
*/
projects: [
{
title: "SPANS",
description:
"드론의 버드 아이 뷰 기반 장애물 탐지 및 최적 경로 탐색 시스템 프로토타입",
techStack: ["React", "JavaScript"],
thumbnailUrl: "SPANS_thumbnail.jpg", // Path to your in the 'assets' folder
links: {
post: "",
github: "https://github.com/SeokhunEom/SPANS",
demo: "",
googlePlay: "",
appStore: "",
},
},
{
title: "NewSnack",
description:
"유저의 관심사 기반으로 필터링 및 추천된 뉴스를 요약하여 제공 및 카카오톡 전송 서비스",
techStack: ["React", "TypeScript"],
thumbnailUrl: "NewSnack_thumbnail.jpg", // Path to your in the 'assets' folder
links: {
post: "",
github: "https://github.com/SeokhunEom/NewSnack",
demo: "",
googlePlay: "",
appStore: "",
},
},
{
title: "CaArt",
description:
"사용자의 라이프스타일 및 카마스터 기반 차량 추천 및 커스텀 서비스",
techStack: ["React", "TypeScript"],
thumbnailUrl: "CaArt_thumbnail.jpg", // Path to your in the 'assets' folder
links: {
post: "",
github: "https://github.com/SeokhunEom/H6-CaArt",
demo: "",
googlePlay: "",
appStore: "",
},
},
{
title: "UI-MUSEUM",
description: "직접 만든 컴포넌트를 전시하는 전시대",
techStack: ["React", "TypeScript"],
thumbnailUrl: "UI-MUSEUM_thumbnail.jpg", // Path to your in the 'assets' folder
links: {
post: "https://seokhun.dev/post2/",
github: "https://github.com/SeokhunEom/UI-MUSEUM",
demo: "https://SeokhunEom.github.io/UI-MUSEUM/",
googlePlay: "",
appStore: "",
},
},
{
title: "Next.js Movie",
description: "Next.js로 만든 연습용 영화 웹사이트",
techStack: ["Next.js", "TypeScript"],
thumbnailUrl: "NextjsMovie_thumbnail.png", // Path to your in the 'assets' folder
links: {
post: "",
github: "https://github.com/SeokhunEom/Next.js-Movie",
demo: "https://next-js-movie-opal.vercel.app/",
googlePlay: "",
appStore: "",
},
},
],
};