43 lines
1.4 KiB
TypeScript
43 lines
1.4 KiB
TypeScript
export const SITE_URL = 'https://lsy22.com';
|
|
export const SITE_NAME = "echoes";
|
|
|
|
export const NAV_LINKS = [
|
|
{ href: '/', text: '首页' },
|
|
{ href: '/articles', text: '文章' },
|
|
{ href: '/movies', text: '观影' },
|
|
{ href: '/books', text: '读书' },
|
|
{ href: '/projects', text: '项目' },
|
|
{ href: '/about', text: '关于' }
|
|
];
|
|
|
|
export const ICP = '渝ICP备2022009272号';
|
|
export const PSB_ICP = '渝公网安备50011902000520号';
|
|
export const PSB_ICP_URL = 'http://www.beian.gov.cn/portal/registerSystemInfo';
|
|
|
|
export const VISITED_PLACES = [ '黑龙江', '吉林', '辽宁', '北京', '天津', '广东', '西藏', '河北', '山东', '湖南','重庆','四川' ];
|
|
|
|
export const DOUBAN_ID = 'lsy22';
|
|
|
|
|
|
// Git 配置 - 只包含用户需要修改的内容
|
|
export const GIT_CONFIG = {
|
|
// 每页显示的项目数量
|
|
perPage: 10,
|
|
|
|
// 用户配置 - 用户只需修改这部分
|
|
github: {
|
|
username: 'lsy2246', // GitHub 用户名
|
|
token: '' // GitHub 访问令牌(可选)
|
|
},
|
|
gitea: {
|
|
url: 'https://g.lsy22.com', // Gitea 实例 URL
|
|
username: 'lsy', // Gitea 用户名
|
|
token: '' // Gitea 访问令牌(可选)
|
|
},
|
|
gitee: {
|
|
username: 'lsy22', // Gitee 用户名
|
|
token: '' // Gitee 访问令牌(可选)
|
|
}
|
|
};
|
|
|