37 lines
1.1 KiB
TypeScript
37 lines
1.1 KiB
TypeScript
|
export const SITE_NAME = "Blog Name";
|
||
|
export const NAV_LINKS = [
|
||
|
{ href: '/', text: '首页' },
|
||
|
{ href: '/articles', text: '文章' },
|
||
|
{ href: '/movies', text: '观影' },
|
||
|
{ href: '/books', text: '读书' },
|
||
|
{ href: '/about', text: '关于' },
|
||
|
{ href: '/projects', text: '项目' }
|
||
|
];
|
||
|
|
||
|
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 访问令牌(可选)
|
||
|
}
|
||
|
};
|
||
|
|