Files
lixiyu-net/data/config.ts

90 lines
2.7 KiB
TypeScript
Raw Normal View History

import type { TConfig } from "@/types/config.type";
2023-12-25 17:21:39 +08:00
export const Config: TConfig = {
// Image url for avatar.
AvatarURL: "/images/avatar.webp",
// Your favorite motto, or a brief self-introduction, for homepage display
Sentence:
"Two things fill the mind with ever-increasing wonder and awe: the starry heavens above and the moral law within.",
// Your nickname, or pen name here.
Nickname: "John Doe",
// Website main title.
SiteTitle: "LEXICAL BLOG",
// Your domain for website.
SiteDomain: "nextjs-lexical-blog-demo.vercel.app",
2023-12-29 21:03:30 +08:00
// For the cover image displayed on the homepage, the recommended image aspect ratio is 4:1.
2023-12-25 17:21:39 +08:00
PageCovers: {
websiteCoverURL: "/images/cover.webp",
},
// Your social platform IDs, and email address.
SocialLinks: {
twitter: "example", // Twitter ID
instagram: "example", // Instagram ID
2024-08-16 11:33:24 +08:00
linkedin: "example", // Linkedin ID
2023-12-25 17:21:39 +08:00
github: "example", // Github ID
facebook: "example", // Facebook ID
2024-08-16 14:12:30 +08:00
youtube: "example", // Channel ID
reddit: "example", // Reddit ID
bilibili: "123456", // Bilibili Number ID
weibo: "123456", // Weibo UID
telegram: "example", // Telegram ID
2024-08-16 17:56:55 +08:00
quora: "example", //Quora ID
2024-08-16 14:12:30 +08:00
mastodon: "https://mas.to/@example", // Mastodon link
2023-12-25 17:21:39 +08:00
email: "me@example.com", // Email address, required.
},
// Giscus Configure. Please refer to the https://giscus.app for entire instruction
Giscus: {
enabled: true,
repo: "PrinOrange/nextjs-lexical-blog",
2023-12-25 17:21:39 +08:00
repoId: "R_kgDOK44zmw",
category: "Announcements",
categoryId: "DIC_kwDOK44zm84Cb94g",
},
// Enable the RSS Feed? If not, the feed file will not be generated and the feed entrance will be closed.
RSSFeed: {
enabled: true,
},
2023-12-25 17:21:39 +08:00
// The supported sponsor ways are wechat-pay, alipay and paypal.
2023-12-30 19:17:48 +08:00
Sponsor: {
// Your WechatPay QRCode content.
WechatPayQRCodeContent: "wxp://xxxxxxxxxxxxxxxxx",
// Your Alipay link.
AlipayLink: "https://qr.alipay.com/xxxx",
// Your Paypal user Id.
2023-12-30 19:52:19 +08:00
PaypalId: "xxxx",
2024-04-03 22:08:27 +08:00
// If it's true, it will show the github sponsor link button.
Github: true,
2023-12-30 18:32:14 +08:00
// Your Patreon user Id.
PatreonId: "xxxx",
2024-04-03 22:08:27 +08:00
// Write your crypto wallet address here.
Crypto: [
{
Name: "BTC",
Address: "bc1q9mgj2kejx0ag3uu34lp7e6we8cs8z8s6r9les3",
Blockchain: "Bitcoin",
},
{
Name: "ETH",
Address: "0xe42110C65Bf732a9F63e95F15e4e1Cc5963D2e74",
Blockchain: "Ethereum",
},
{
Name: "USDT",
Address: "0xe42110C65Bf732a9F63e95F15e4e1Cc5963D2e74",
Blockchain: "Ethereum",
},
],
2023-12-25 17:21:39 +08:00
},
// Website establishment year.
2024-08-14 11:24:25 +08:00
YearStart: "2023",
2023-12-25 17:21:39 +08:00
// Please enter your legal name for use with the copyright mark.
AuthorName: "JOHN DOE",
};