import type { HomeToolIconName } from '../components/HomeToolIcon.vue' export type MineNavItem = { to: string; label: string; icon: HomeToolIconName } export const mineGroupArchive: MineNavItem[] = [ { to: '/profile', label: '个人档案', icon: 'portrait' }, { to: '/reports', label: '我的成长报告', icon: 'reports' }, { to: '/portrait', label: '愈心解码', icon: 'portrait' }, { to: '/star', label: '星象性格', icon: 'star' }, { to: '/rhythm', label: '身心节律', icon: 'rhythm' }, { to: '/cards', label: '意象卡片', icon: 'cards' }, ] export const mineGroupGrowth: MineNavItem[] = [ { to: '/relation', label: '人格匹配', icon: 'relation' }, { to: '/ask', label: 'AI 成长助手', icon: 'ask' }, { to: '/explore', label: '探索测试', icon: 'mbti' }, { to: '/growth-plan', label: '成长计划', icon: 'growth' }, { to: '/membership', label: '成长会员', icon: 'growth' }, ]