b7addb5c7a
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
63 lines
2.2 KiB
TypeScript
63 lines
2.2 KiB
TypeScript
export const siteConfig = {
|
|
// 站点信息(改这里定制全站)
|
|
name: 'Nixus',
|
|
siteName: '尼克的小窝',
|
|
title: '《尼克的小窝》官方网站',
|
|
subtitle: 'Nixus',
|
|
description: '专注于IT/互联网技术分享与实践的个人技术博客',
|
|
url: 'https://nixus.top/',
|
|
keywords: ['尼克', '博客', 'Nixus Blog', '技术博客'],
|
|
|
|
// 头像和图标
|
|
avatar: 'https://q2.qlogo.cn/headimg_dl?dst_uin=1042864399&spec=100',
|
|
favicon: 'https://q2.qlogo.cn/headimg_dl?dst_uin=1042864399&spec=100',
|
|
ogImage: 'https://q2.qlogo.cn/headimg_dl?dst_uin=1042864399&spec=100',
|
|
|
|
// 作者信息
|
|
author: {
|
|
name: 'Nixus',
|
|
url: 'https://nixus.top/',
|
|
},
|
|
bio: 'Protect What You Love.',
|
|
|
|
// 社交链接
|
|
socialLinks: [
|
|
{ name: 'B站', icon: 'simple-icons:bilibili', url: 'https://space.bilibili.com/296124701', color: '#fb7299' },
|
|
{ name: 'QQ', icon: 'simple-icons:qq', url: 'https://qm.qq.com/cgi-bin/qm/qr?k=placeholder&group_code=1042864399', color: '#12B7F5' },
|
|
{ name: 'GitHub', icon: 'simple-icons:github', url: 'https://github.com/wishesl', color: '#333333' },
|
|
{ name: 'Gitee', icon: 'simple-icons:gitee', url: 'https://gitee.com/blushes', color: '#c71d23' },
|
|
],
|
|
|
|
// 导航菜单
|
|
navLinks: [
|
|
{ label: '博客', icon: 'mdi:post-outline', href: '/posts' },
|
|
{ label: '封面制作', icon: 'mdi:image-edit-outline', href: '/cover' },
|
|
{ label: '友链', icon: 'mdi:link-variant', href: '/friends' },
|
|
{ label: '赞助', icon: 'mdi:heart-outline', href: '/sponsor' },
|
|
{ label: '关于', icon: 'mdi:information-outline', href: '/about' },
|
|
],
|
|
|
|
// 友链
|
|
friends: [
|
|
{ name: '二叉树树', url: 'https://2x.nz', avatar: 'https://q2.qlogo.cn/headimg_dl?dst_uin=2726730791&spec=100', description: '专注于IT/互联网技术分享与实践的个人技术博客' },
|
|
],
|
|
|
|
// 赞助
|
|
sponsors: {
|
|
qrcode: {
|
|
wechat: '/sponsors/qrcode/wechat.png',
|
|
},
|
|
list: [] as { name: string; date: string; amount: string }[],
|
|
},
|
|
|
|
// Giscus 评论配置
|
|
giscus: {
|
|
repo: 'wishesl/SuBlog',
|
|
repoId: 'R_kgDOSsypJg',
|
|
category: 'Announcements',
|
|
categoryId: 'DIC_kwDOSsypJs4C-Mks',
|
|
},
|
|
}
|
|
|
|
export type SiteConfig = typeof siteConfig
|