navbar.ts 743 B

123456789101112131415161718192021222324252627282930
  1. /**
  2. * @see https://theme-plume.vuejs.press/config/navigation/ 查看文档了解配置详情
  3. *
  4. * Navbar 配置文件,它在 `.vuepress/plume.config.ts` 中被导入。
  5. */
  6. import { defineNavbarConfig } from 'vuepress-theme-plume'
  7. export default defineNavbarConfig([
  8. {
  9. text: '首页',
  10. link: '/',
  11. icon: 'icon-park-outline:home' // 首页 → 房子图标
  12. },
  13. {
  14. text: '公司简介',
  15. link: '/profile/profile.md',
  16. icon: 'icon-park-outline:more-three',
  17. },
  18. {
  19. text: '硬件',
  20. link: '/hardware/profile.md',
  21. icon: 'icon-park-outline:cpu' // 硬件 → CPU 或芯片图标
  22. },
  23. {
  24. text: '软件',
  25. link: '/software/mes.md',
  26. icon: 'icon-park-outline:code' // 软件 → 代码图标
  27. },
  28. ])