2021-07-14 23:11:20 +03:00
const siteMetadata = {
title : 'Next.js Starter Blog' ,
author : 'Tails Azimuth' ,
headerTitle : 'TailwindBlog' ,
description : 'A blog created with Next.js and Tailwind.css' ,
language : 'en-us' ,
siteUrl : 'https://tailwind-nextjs-starter-blog.vercel.app' ,
siteRepo : 'https://github.com/timlrx/tailwind-nextjs-starter-blog' ,
siteLogo : '/static/images/logo.png' ,
image : '/static/images/avatar.png' ,
socialBanner : '/static/images/twitter-card.png' ,
email : 'address@yoursite.com' ,
github : 'https://github.com' ,
twitter : 'https://twitter.com/Twitter' ,
facebook : 'https://facebook.com' ,
youtube : 'https://youtube.com' ,
linkedin : 'https://www.linkedin.com' ,
locale : 'en-US' ,
2021-07-14 23:52:46 +03:00
comment : {
2021-07-18 15:51:10 +08:00
provider : 'giscus' , // supported providers: giscus, utterances, disqus
2021-07-14 23:52:46 +03:00
giscusConfig : {
2021-07-18 15:51:10 +08:00
repo : 'timlrx/tailwind-nextjs-starter-blog' , // username/repoName
2021-07-18 16:27:47 +08:00
// Visit the link below, enter your repo in the configuration section and copy the script data parameters
2021-07-18 17:09:00 +08:00
// Before that you should create a new Github discussions category with the Announcements type so that new discussions can only be created by maintainers and giscus
2021-07-18 16:27:47 +08:00
// https://giscus.app/
2021-07-18 15:51:10 +08:00
repositoryId : 'MDEwOlJlcG9zaXRvcnkzMjgxMjEyNjA=' ,
2021-07-18 17:09:00 +08:00
category : 'Blog Comments' ,
categoryId : 'DIC_kwDOE467rM4B-XTQ' ,
2021-07-18 15:51:10 +08:00
mapping : 'pathname' , // supported options: pathname, url, title
reactions : '1' , // Emoji reactions: 1 = enable / 0 = disable
2021-07-14 23:52:46 +03:00
// Send discussion metadata periodically to the parent window: 1 = enable / 0 = disable
2021-07-18 15:51:10 +08:00
metadata : '0' ,
2021-07-14 23:52:46 +03:00
// theme example: light, dark, dark_dimmed, dark_high_contrast
// transparent_dark, preferred_color_scheme, custom
2021-07-18 15:51:10 +08:00
theme : 'light' ,
2021-07-18 15:49:42 +08:00
// theme when dark mode
2021-07-18 15:51:10 +08:00
darkTheme : 'transparent_dark' ,
2021-07-14 23:52:46 +03:00
// If the theme option above is set to 'custom`
// please provide a link below to your custom theme css file.
// example: https://giscus.app/themes/custom_example.css
themeURL : '' ,
} ,
utterancesConfig : {
repo : '' , // username/repoName
issueTerm : '' , // supported options: pathname, url, title
label : '' , // label (optional): Comment 💬
// theme example: github-light, github-dark, preferred-color-scheme
// github-dark-orange, icy-dark, dark-blue, photon-dark, boxy-light
theme : '' ,
2021-07-18 15:49:42 +08:00
// theme when dark mode
darkTheme : '' ,
2021-07-14 23:52:46 +03:00
} ,
disqus : {
// https://help.disqus.com/en/articles/1717111-what-s-a-shortname
shortname : '' ,
} ,
} ,
2021-07-14 23:11:20 +03:00
}
module . exports = siteMetadata