-
Notifications
You must be signed in to change notification settings - Fork 4
/
config.ts
88 lines (80 loc) · 2.67 KB
/
config.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
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: "L'homme est né libre, et partout il est dans les fers.",
// 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",
// 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: {
twitter: "example", // Twitter ID
instagram: "example", // Instagram ID
linkedin: "example", // Linkedin ID
github: "example", // Github ID
facebook: "example", // Facebook ID
youtube: "example", // Channel ID
reddit: "example", // Reddit ID
bilibili: "123456", // Bilibili Number ID
weibo: "123456", // Weibo UID
telegram: "example", // Telegram ID
quora: "example", //Quora ID
mastodon: "https://mas.to/@example", // Mastodon link
email: "[email protected]", // 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: "2023",
// Please enter your legal name for use with the copyright mark.
AuthorName: "JOHN DOE",
};