返回 AiToEarn
constants.ts
根目录 / project / aitoearn-web / src / app / layout / shared / constants.ts
1 /**
2 * 导航共享常量
3 * MobileNav 和 LayoutSidebar 共用的常量配置
4 */
5
6 /** GitHub 仓库地址 */
7 export const GITHUB_REPO = 'yikart/AiToEarn'
8
9 /** 文档网站地址 */
10 export const DOCS_URL = 'https://docs.aitoearn.ai'
11
12 /**
13 * 导航菜单分组配置
14 * MobileNav 中 "More" 折叠菜单包含的路由项
15 */
16 export const NAV_GROUP_KEYS = [
17 'tasksHistory',
18 'header.materialLibrary',
19 ] as const
20
20 lines TYPESCRIPT