75 lines
2.8 KiB
JavaScript
75 lines
2.8 KiB
JavaScript
// 所有风格页面共用的个人资料与作品数据
|
||
export const profile = {
|
||
name: '年糕崽崽',
|
||
nameEn: 'NianGao ZaiZai',
|
||
job: '程序员',
|
||
jobEn: 'Software Engineer',
|
||
age: 25,
|
||
location: '中国 · 杭州',
|
||
motto: '把代码写得像年糕一样,软糯又有韧性。',
|
||
bio: '25 岁的前端程序员。白天写 Vue 和 TypeScript,晚上折腾终端主题和小游戏。相信好的界面应该像刚出锅的年糕:温润、扎实、让人惊喜。',
|
||
bioShort: '写代码的年糕,一个热爱把玩界面与终端的 25 岁程序员。',
|
||
|
||
avatars: {
|
||
default:
|
||
'https://api.dicebear.com/9.x/notionists/svg?seed=niangao&backgroundColor=ffdfbf',
|
||
pixel: 'https://api.dicebear.com/9.x/pixel-art/svg?seed=niangao',
|
||
bot: 'https://api.dicebear.com/9.x/bottts/svg?seed=niangao',
|
||
cute: 'https://api.dicebear.com/9.x/adventurer/svg?seed=niangao&backgroundColor=ffd5dc',
|
||
},
|
||
|
||
skills: [
|
||
{ name: 'Vue / 前端工程', en: 'Vue & Frontend', level: 92 },
|
||
{ name: 'TypeScript', en: 'TypeScript', level: 88 },
|
||
{ name: 'Node.js', en: 'Node.js', level: 80 },
|
||
{ name: 'UI / 交互设计', en: 'UI & Interaction', level: 76 },
|
||
{ name: 'Rust / CLI 工具', en: 'Rust & CLI', level: 72 },
|
||
{ name: 'Canvas / 小游戏', en: 'Canvas & Games', level: 68 },
|
||
],
|
||
|
||
projects: [
|
||
{
|
||
name: 'CodeMochi',
|
||
alias: '代码年糕',
|
||
desc: '开源代码片段管理工具,支持全文搜索、标签体系与一键分享,已收获 2.3k Star。',
|
||
tags: ['Vue 3', 'TypeScript', 'IndexedDB'],
|
||
year: '2025',
|
||
stars: '2.3k',
|
||
image: 'https://picsum.photos/seed/codemochi/640/420',
|
||
},
|
||
{
|
||
name: '糯米终端',
|
||
alias: 'NuomiTerm',
|
||
desc: '终端美化主题与 CLI 工具集:一条命令换主题、自带年糕色板与状态栏组件。',
|
||
tags: ['Rust', 'Shell', 'CLI'],
|
||
year: '2024',
|
||
stars: '1.1k',
|
||
image: 'https://picsum.photos/seed/nuomiterm/640/420',
|
||
},
|
||
{
|
||
name: 'TodoRice',
|
||
alias: '饭粒清单',
|
||
desc: '极简待办 Web 应用,离线可用的 PWA,把每件小事都当作一粒米认真对待。',
|
||
tags: ['Vue 3', 'Pinia', 'PWA'],
|
||
year: '2024',
|
||
stars: '860',
|
||
image: 'https://picsum.photos/seed/todorice/640/420',
|
||
},
|
||
{
|
||
name: '像素厨房',
|
||
alias: 'Pixel Kitchen',
|
||
desc: '用 Canvas 手搓的做饭小游戏:翻锅、颠勺、摆盘,全凭手速与直觉。',
|
||
tags: ['Canvas', 'TypeScript', 'Game'],
|
||
year: '2023',
|
||
stars: '540',
|
||
image: 'https://picsum.photos/seed/pixelkitchen/640/420',
|
||
},
|
||
],
|
||
|
||
contacts: [
|
||
{ label: 'GitHub', value: 'github.com/niangao-zaizai' },
|
||
{ label: 'Email', value: 'hi@niangao.dev' },
|
||
{ label: 'Blog', value: 'blog.niangao.dev' },
|
||
],
|
||
}
|