import { defineCollections, type ThemeCollections } from 'vuepress-theme-plume' import { companyProfile } from './companyProfile.js' import { hardware } from './hardware.js' import { software } from './software.js' // 各板块左侧边栏配置 export const zhCollections: ThemeCollections = defineCollections([ hardware, software, companyProfile, ])