Files
lixiyu-net/data/config.ts
jimlee 5966ed4b98
Some checks failed
Update pnpm Dependencies / update-dependencies (push) Has been cancelled
初始化
2025-09-18 17:04:40 +08:00

77 lines
2.2 KiB
TypeScript

import type { TConfig } from "@/types/config.type";
export const Config: TConfig = {
// Image url for avatar.
AvatarURL: "/images/avatar.webp",
// Your favorite motto, or a brief self-introduction, for homepage display
Sentence: "绿叶兮素华,芳菲菲兮袭予。",
// Your nickname, or pen name here.
Nickname: "妙妙",
// Website main title.
SiteTitle: "妙妙日记",
// Your domain for website.
SiteDomain: "lixiyu.net",
// For the cover image displayed on the homepage, the recommended image aspect ratio is 4:1.
PageCovers: {
websiteCoverURL: "/images/cover.webp",
},
// Your social platform IDs, and email address.
SocialLinks: {
email: "lixiyua@gmail.com", // Email address, required.
},
// Giscus Configure. Please refer to the https://giscus.app for entire instruction
Giscus: {
enabled: true,
repo: "PrinOrange/nextjs-lexical-blog",
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,
},
// The supported sponsor ways are wechat-pay, alipay and paypal.
Sponsor: {
// Your WechatPay QRCode content.
WechatPayQRCodeContent: "wxp://xxxxxxxxxxxxxxxxx",
// Your Alipay link.
AlipayLink: "https://qr.alipay.com/xxxx",
// Your Paypal user Id.
PaypalId: "xxxx",
// If it's true, it will show the github sponsor link button.
Github: true,
// Your Patreon user Id.
PatreonId: "xxxx",
// 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",
},
],
},
// Website establishment year.
YearStart: "2025",
// Please enter your legal name for use with the copyright mark.
AuthorName: "jimlee & miaomiao(lixiyu)",
};