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',
|
2021-12-15 16:48:16 +08:00
|
|
|
theme: 'system', // system, dark or light
|
2021-07-14 23:11:20 +03:00
|
|
|
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-28 23:25:05 +08:00
|
|
|
analytics: {
|
2022-02-10 11:43:22 +01:00
|
|
|
// If you want to use an analytics provider you have to add it to the
|
|
|
|
// content security policy in the `next.config.js` file.
|
2022-01-02 19:02:48 -05:00
|
|
|
// supports plausible, simpleAnalytics, umami or googleAnalytics
|
2021-07-28 23:25:05 +08:00
|
|
|
plausibleDataDomain: '', // e.g. tailwind-nextjs-starter-blog.vercel.app
|
|
|
|
simpleAnalytics: false, // true or false
|
2022-01-02 19:02:48 -05:00
|
|
|
umamiWebsiteId: '', // e.g. 123e4567-e89b-12d3-a456-426614174000
|
2021-07-28 23:25:05 +08:00
|
|
|
googleAnalyticsId: '', // e.g. UA-000000-2 or G-XXXXXXX
|
|
|
|
},
|
2021-08-18 17:33:15 +02:00
|
|
|
newsletter: {
|
2022-05-03 18:56:50 -04:00
|
|
|
// supports mailchimp, buttondown, convertkit, klaviyo, revue, emailoctopus
|
2021-09-10 22:51:26 +08:00
|
|
|
// Please add your .env file and modify it according to your selection
|
2021-09-09 21:15:17 +08:00
|
|
|
provider: 'buttondown',
|
2021-08-18 17:33:15 +02:00
|
|
|
},
|
2021-07-14 23:52:46 +03:00
|
|
|
comment: {
|
2022-02-10 11:43:22 +01:00
|
|
|
// If you want to use a commenting system other than giscus you have to add it to the
|
|
|
|
// content security policy in the `next.config.js` file.
|
2021-07-21 11:18:03 +03:00
|
|
|
// Select a provider and use the environment variables associated to it
|
|
|
|
// https://vercel.com/docs/environment-variables
|
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-21 11:18:03 +03:00
|
|
|
// Visit the link below, and follow the steps in the 'configuration' section
|
2021-07-18 16:27:47 +08:00
|
|
|
// https://giscus.app/
|
2021-07-21 11:18:03 +03:00
|
|
|
repo: process.env.NEXT_PUBLIC_GISCUS_REPO,
|
|
|
|
repositoryId: process.env.NEXT_PUBLIC_GISCUS_REPOSITORY_ID,
|
|
|
|
category: process.env.NEXT_PUBLIC_GISCUS_CATEGORY,
|
|
|
|
categoryId: process.env.NEXT_PUBLIC_GISCUS_CATEGORY_ID,
|
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',
|
2022-02-17 02:01:47 +09:00
|
|
|
// Place the comment box above the comments. options: bottom, top
|
|
|
|
inputPosition: 'bottom',
|
|
|
|
// Choose the language giscus will be displayed in. options: en, es, zh-CN, zh-TW, ko, ja etc
|
|
|
|
lang: 'en',
|
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: {
|
2021-07-21 11:18:03 +03:00
|
|
|
// Visit the link below, and follow the steps in the 'configuration' section
|
|
|
|
// https://utteranc.es/
|
|
|
|
repo: process.env.NEXT_PUBLIC_UTTERANCES_REPO,
|
2021-07-14 23:52:46 +03:00
|
|
|
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
|
|
|
},
|
2021-09-02 10:17:34 +02:00
|
|
|
disqusConfig: {
|
2021-07-14 23:52:46 +03:00
|
|
|
// https://help.disqus.com/en/articles/1717111-what-s-a-shortname
|
2021-07-21 11:18:03 +03:00
|
|
|
shortname: process.env.NEXT_PUBLIC_DISQUS_SHORTNAME,
|
2021-07-14 23:52:46 +03:00
|
|
|
},
|
|
|
|
},
|
2021-07-14 23:11:20 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
module.exports = siteMetadata
|