mirror of
https://github.com/Snailclimb/JavaGuide
synced 2025-06-16 18:10:13 +08:00
40 lines
684 B
TypeScript
40 lines
684 B
TypeScript
import { arraySidebar } from "vuepress-theme-hope";
|
|
|
|
export const openSourceProject = arraySidebar([
|
|
{
|
|
text: "技术教程",
|
|
link: "tutorial",
|
|
icon: "book",
|
|
},
|
|
{
|
|
text: "实战项目",
|
|
link: "practical-project",
|
|
icon: "project",
|
|
},
|
|
{
|
|
text: "系统设计",
|
|
link: "system-design",
|
|
icon: "design",
|
|
},
|
|
{
|
|
text: "工具类库",
|
|
link: "tool-library",
|
|
icon: "codelibrary-fill",
|
|
},
|
|
{
|
|
text: "开发工具",
|
|
link: "tools",
|
|
icon: "tool",
|
|
},
|
|
{
|
|
text: "机器学习",
|
|
link: "machine-learning",
|
|
icon: "a-MachineLearning",
|
|
},
|
|
{
|
|
text: "大数据",
|
|
link: "big-data",
|
|
icon: "big-data",
|
|
},
|
|
]);
|