mirror of
https://github.com/ZiuChen/ZiuChen.github.io.git
synced 2025-08-18 07:29:33 +08:00
22 lines
812 B
TypeScript
22 lines
812 B
TypeScript
export const projects = [
|
|
{ text: '超级剪贴板', link: '/project/ClipboardManager/' },
|
|
{ text: '超级Markdown', link: '/project/Markdown/' },
|
|
{ text: '超级JavaScript', link: '/project/JSRunner/' },
|
|
{ text: '超级分词', link: '/project/SmartWordBreak/' }
|
|
]
|
|
|
|
export const works = [
|
|
{ text: '个人作品', link: '/works/opensource' },
|
|
{ text: '社区贡献', link: '/works/contribution' }
|
|
]
|
|
|
|
export const notes = [
|
|
{ text: 'JavaScript基础', link: '/note/JavaScript' },
|
|
{ text: 'CSS基础', link: '/note/CSS' },
|
|
{ text: 'JavaScript进阶', link: '/note/JavaScriptEnhanced' },
|
|
{ text: '前端工程化', link: '/note/Front-end Engineering' },
|
|
{ text: '服务端渲染', link: '/note/SSR' },
|
|
{ text: 'React基础', link: '/note/React' },
|
|
{ text: 'MySQL', link: '/note/MySQL' }
|
|
]
|