Files
lixiyu-net/data/config.ts

77 lines
2.2 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
2025-09-18 17:04:40 +08:00
Sentence: "绿叶兮素华,芳菲菲兮袭予。",
2023-12-25 17:21:39 +08:00
// Your nickname, or pen name here.
2025-09-18 17:04:40 +08:00
Nickname: "妙妙",
2023-12-25 17:21:39 +08:00
// Website main title.
2025-09-18 17:04:40 +08:00
SiteTitle: "妙妙日记",
2023-12-25 17:21:39 +08:00
// Your domain for website.
2025-09-18 17:04:40 +08:00
SiteDomain: "lixiyu.net",
2023-12-25 17:21:39 +08:00
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: {
2025-09-18 17:04:40 +08:00
email: "lixiyua@gmail.com", // Email address, required.
2023-12-25 17:21:39 +08:00
},
// 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.
2025-09-18 17:04:40 +08:00
YearStart: "2025",
2023-12-25 17:21:39 +08:00
// Please enter your legal name for use with the copyright mark.
2025-09-18 17:04:40 +08:00
AuthorName: "jimlee & miaomiao(lixiyu)",
2023-12-25 17:21:39 +08:00
};