-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgatsby-meta-config.js
88 lines (87 loc) · 3.19 KB
/
gatsby-meta-config.js
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
module.exports = {
title: `LESS BUT BETTER`,
description: `soobing의 개발블로그`,
language: `ko`, // `ko`, `en` => currently support versions for Korean and English
siteUrl: `https://soobing.github.io/`,
ogImage: `/og-image.png`, // Path to your in the 'static' folder
comments: {
utterances: {
repo: `soobing/soobing.github.io`,
},
},
ga: 'G-G4M2VQ5W05', // Google Analytics Tracking ID
author: {
name: `soobing`,
bio: {
role: `개발자`,
description: ['지속가능한 소프트웨어를 만드는', '배우는 자세를 가진', '편하게 소통할 수 있는'],
},
social: {
github: `https://github.com/soobing`,
linkedIn: `https://www.linkedin.com/in/soobin-bak-8a1994117/`,
},
},
// metadata for About Page
about: {
timestamps: [],
projects: [],
// timestamps: [
// // ===== [Timestamp Sample and Structure] =====
// // ===== 🚫 Don't erase this sample (여기 지우지 마세요!) =====
// {
// date: '',
// activity: '',
// links: {
// github: '',
// post: '',
// googlePlay: '',
// appStore: '',
// demo: '',
// },
// },
// // ========================================================
// // ========================================================
// {
// // date: '2021.02 ~',
// // activity: '개인 블로그 개발 및 운영',
// // links: {
// // post: '/gatsby-starter-zoomkoding-introduction',
// // github: 'https://github.com/zoomkoding/zoomkoding-gatsby-blog',
// // demo: 'https://www.zoomkoding.com',
// // },
// },
// ],
// projects: [
// // ===== [Project Sample and Structure] =====
// // ===== 🚫 Don't erase this sample (여기 지우지 마세요!) =====
// {
// title: '',
// description: '',
// techStack: ['', ''],
// thumbnailUrl: '',
// links: {
// post: '',
// github: '',
// googlePlay: '',
// appStore: '',
// demo: '',
// },
// },
// // ========================================================
// // ========================================================
// {
// // title: '개발 블로그 테마 개발',
// // description:
// // '개발 블로그를 운영하는 기간이 조금씩 늘어나고 점점 많은 생각과 경험이 블로그에 쌓아가면서 제 이야기를 담고 있는 블로그를 직접 만들어보고 싶게 되었습니다. 그동안 여러 개발 블로그를 보면서 좋았던 부분과 불편했던 부분들을 바탕으로 레퍼런스를 참고하여 직접 블로그 테마를 만들게 되었습니다.',
// // techStack: ['gatsby', 'react'],
// // thumbnailUrl: 'blog.png',
// // links: {
// // post: '/gatsby-starter-zoomkoding-introduction',
// // github: 'https://github.com/zoomkoding/zoomkoding-gatsby-blog',
// // demo: 'https://www.zoomkoding.com',
// // },
// },
// ],
},
};