76 lines
1.6 KiB
TypeScript
76 lines
1.6 KiB
TypeScript
// src/constants/homeFeatures.ts
|
|
// 首页功能特性配置
|
|
|
|
import type { Feature } from '@/types/home';
|
|
|
|
/**
|
|
* 核心功能特性列表
|
|
* 第一个功能为特色功能,会以突出样式显示
|
|
*/
|
|
export const CORE_FEATURES: Feature[] = [
|
|
{
|
|
id: 'news-catalyst',
|
|
title: '新闻中心',
|
|
description: '实时新闻事件分析,捕捉市场催化因子',
|
|
icon: '📊',
|
|
color: 'yellow',
|
|
url: '/community',
|
|
badge: '核心',
|
|
featured: true
|
|
},
|
|
{
|
|
id: 'concepts',
|
|
title: '概念中心',
|
|
description: '热门概念与主题投资分析追踪',
|
|
icon: '🎯',
|
|
color: 'purple',
|
|
url: '/concepts',
|
|
badge: '热门'
|
|
},
|
|
{
|
|
id: 'stocks',
|
|
title: '个股信息汇总',
|
|
description: '全面的个股基本面信息整合',
|
|
icon: '📈',
|
|
color: 'blue',
|
|
url: '/stocks',
|
|
badge: '全面'
|
|
},
|
|
{
|
|
id: 'limit-analyse',
|
|
title: '涨停板块分析',
|
|
description: '涨停板数据深度分析与规律挖掘',
|
|
icon: '🚀',
|
|
color: 'green',
|
|
url: '/limit-analyse',
|
|
badge: '精准'
|
|
},
|
|
{
|
|
id: 'company',
|
|
title: '个股罗盘',
|
|
description: '个股全方位分析与投资决策支持',
|
|
icon: '🧭',
|
|
color: 'orange',
|
|
url: '/company?scode=688256',
|
|
badge: '专业'
|
|
},
|
|
{
|
|
id: 'value-forum',
|
|
title: '价值论坛',
|
|
description: '投资者交流社区,分享投资心得',
|
|
icon: '💬',
|
|
color: 'teal',
|
|
url: '/value-forum',
|
|
badge: '交流'
|
|
},
|
|
{
|
|
id: 'agent-chat',
|
|
title: 'AI助手',
|
|
description: '智能投资助手,解答投资疑问',
|
|
icon: '🤖',
|
|
color: 'cyan',
|
|
url: '/agent-chat',
|
|
badge: 'AI'
|
|
}
|
|
];
|