| 123456789101112131415161718192021222324252627282930 |
- /**
- * @see https://theme-plume.vuejs.press/config/navigation/ 查看文档了解配置详情
- *
- * Navbar 配置文件,它在 `.vuepress/plume.config.ts` 中被导入。
- */
- import { defineNavbarConfig } from 'vuepress-theme-plume'
- export default defineNavbarConfig([
- {
- text: '首页',
- link: '/',
- icon: 'icon-park-outline:home' // 首页 → 房子图标
- },
- {
- text: '公司简介',
- link: '/profile/profile.md',
- icon: 'icon-park-outline:more-three',
- },
- {
- text: '硬件',
- link: '/hardware/profile.md',
- icon: 'icon-park-outline:cpu' // 硬件 → CPU 或芯片图标
- },
- {
- text: '软件',
- link: '/software/mes.md',
- icon: 'icon-park-outline:code' // 软件 → 代码图标
- },
- ])
|