-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathuser-data.js
43 lines (39 loc) · 1.28 KB
/
user-data.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
// User Data
const userData = {
url: `https://lsj1206.github.io`,
title: `TECH.log`,
name: `lsj1206`,
self_introduction: `안녕하세요. 프론트 엔드 개발자 이서준입니다.`,
email: `[email protected]`,
github_link: `https://github.com/lsj1206`,
};
// Giscus (Comment) Config Data
const giscusData = {
repo: "lsj1206/lsj1206.github.io",
repo_id: "R_kgDONRGoyQ",
category: "Q&A",
category_id: "DIC_kwDONRGoyc4ClfH_",
mapping: "pathname",
reactions_enabled: "1",
emit_metadata: "1",
input_position: "bottom",
lang: "ko",
};
// Blog Development Information
const blogData = {
repository: `https://github.com/lsj1206/lsj1206.github.io`,
title: `Blog Development Information`,
description: `React 기반의 정적 사이트 생성기(Static Site Generator)인 Gatsby를 사용하고 개발된 블로그 입니다.`,
start_date: `2024.11.25`,
end_date: `2024.12.17`,
framework: `Gatsby 5.14(React18)`,
framework_link: `https://www.gatsbyjs.com`,
css: `styled-components 6.1`,
css_link: `https://styled-components.com`,
attribution: `©Font Awesome(CC BY 4.0)`,
attr_link: `https://fontawesome.com`,
};
// Posts List Sorting Table
const SortTable = ["Latest", "Oldest"];
export { giscusData, blogData, SortTable };
export default userData;