import { Link } from 'react-router-dom' import { INSIGHTS as FALLBACK_INSIGHTS } from '@/data/mock' import { useCMS, getCMSInsights } from '@/services/cms' import GlobalCTA from '@/components/Layout/GlobalCTA' export default function Insights() { const { data: INSIGHTS } = useCMS(getCMSInsights, FALLBACK_INSIGHTS) return (
首页 {' '} / 认知观察

认知观察

围绕企业进化、价值坐标、A/M/B 与方法论的持续观察与沉淀。

{INSIGHTS.map(i => (
{i.category.toUpperCase()}

{i.title}

{i.summary}

{i.readingMinutes} 分钟 · {i.author} · 权重 {i.sortWeight}
))}
) }