-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgatsby-meta-config.js
43 lines (39 loc) · 1.26 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
/**
* @typedef {Object} Links
* @prop {string} github Your github repository
*/
/**
* @typedef {Object} Social
* @prop {string} social
*/
/**
* @typedef {Object} MetaConfig
* @prop {string} title Your website title
* @prop {string} description Your website description
* @prop {string} author Maybe your name
* @prop {string} siteUrl Your website URL
* @prop {string} lang Your website Language
* @prop {string} utterances Github repository to store comments
* @prop {Links} links
* @prop {Social} social
* @prop {string} favicon Favicon Path
*/
/** @type {MetaConfig} */
const metaConfig = {
title: "Blue Triangle's Website",
description: `Blue Triangleのサイトです。プロフィール、趣味、作品などを紹介しています。MinecraftやGatsbyのことを主に扱っています。`,
author: "Blue Triangle",
siteUrl: "https://aosankaku.github.io",
lang: "ja",
utterances: "AoSankaku/gatsby-starter-apple-comment",
links: {
github: "https://github.com/AoSankaku/aosankaku.github.io",
},
social: {
misskeySystems: "[email protected]",
twitter: "@ao_sankaku"
},
favicon: "src/images/icon.png",
}
// eslint-disable-next-line no-undef
module.exports = metaConfig