-
Notifications
You must be signed in to change notification settings - Fork 0
/
user-meta-config.js
32 lines (29 loc) · 1.6 KB
/
user-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
const userMetadata = {
title: `Gatsby-Starter-Oasis`, // Blog title - Used for display in the navbar and used for SEO.
description: `Gatsby blog template`, //Blog Description - Used for SEO.
author: `Je0ngyun`,
otherSite: `https://github.com/je0ngyun`, // Please enter the address of another site such as Facebook, Twitter, or Github.
copyright: `Copyright ⓒ 2021 je0ngyun/JeongYun`,
siteUrl: `https://gatsby-starter-oasis.netlify.app`, // Enter the URL to deploy or deploy. Used to create a Sitemap and create Robots.txt.
commentRepo: `je0ngyun/blog-comments`, // Please enter the Github repository where comments will be saved.
googleVerification: `gVXI8__9H5fEKSWQJR8C7GRAdoYu_qkhdlKiDvpZa0w`, // Please enter the verification code from Google Search Console.
naverVerification: `e15d720818bf977e56d3355b823d9401c15f84dd`, // Please enter the verification code from Naver Serarch Console.
googleAnalyticsTrackingId: ``, // Please enter the TrackingId from GoogleAnalytics.
}
const pageMetadata = {
//menu - Please enter a menu link to add to the navbar.
//If you do not want to add a link to the navbar, you can leave it blank.
menu: [
{ path: '/', linkname: 'Home' },
{ path: '/projects', linkname: 'Projects' },
{ path: '/develop', linkname: 'Develop' },
],
//directorys - Enter the directory to be mapped with the page.
//That directory is automatically linked to the gatsby filesystem.
directorys: ['develop', 'projects'],
}
exports.pageMetadata = (() => {
pageMetadata.menu = JSON.stringify(pageMetadata.menu)
return pageMetadata
})()
exports.userMetadata = userMetadata