-
Notifications
You must be signed in to change notification settings - Fork 0
/
site.config.ts
68 lines (65 loc) · 1.67 KB
/
site.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
import { defineSiteConfig } from 'valaxy'
export default defineSiteConfig({
url: 'https://blog.yby.zone',
lang: 'zh-CN',
title: '小于同学的异世界',
subtitle: '我只知道一件事,那就是我一无所知。',
author: {
name: 'Boyang Yu/Okysu',
avatar: 'https://yby-zone.obs.cn-east-3.myhuaweicloud.com/avatar.jpg',
},
description: '为吾为枝,余地三尺,以己为棋,胜天半子。',
social: [
{
name: 'RSS',
link: '/atom.xml',
icon: 'i-ri-rss-line',
color: 'orange',
},
{
name: 'GitHub',
link: 'https://github.com/Okysu',
icon: 'i-ri-github-line',
color: '#6e5494',
},
{
name: 'E-Mail',
link: 'mailto:[email protected]',
icon: 'i-ri-mail-line',
color: '#ea4335',
},
{
name: 'MVP Community',
link: 'https://mvp.microsoft.com/zh-CN/studentambassadors/profile/1cba6b30-3e38-4959-9863-c8cd7ee9e133',
icon: 'i-ri-microsoft-line',
color: 'var(--va-c-text)',
},
],
search: {
enable: false,
},
sponsor: {
enable: false,
title: '我很可爱,请给我钱!',
methods: [
{
name: '支付宝',
url: 'https://cdn.yunyoujun.cn/img/donate/alipay-qrcode.jpg',
color: '#00A3EE',
icon: 'i-ri-alipay-line',
},
{
name: 'QQ 支付',
url: 'https://cdn.yunyoujun.cn/img/donate/qqpay-qrcode.png',
color: '#12B7F5',
icon: 'i-ri-qq-line',
},
{
name: '微信支付',
url: 'https://cdn.yunyoujun.cn/img/donate/wechatpay-qrcode.jpg',
color: '#2DC100',
icon: 'i-ri-wechat-pay-line',
},
],
},
})