diff --git a/src/app/[locale]/keyword-cloud/page.tsx b/src/app/[locale]/keyword-cloud/page.tsx new file mode 100644 index 0000000..b0e431d --- /dev/null +++ b/src/app/[locale]/keyword-cloud/page.tsx @@ -0,0 +1,35 @@ +import { KeywordCloud } from './components/KeywordCloud'; + +interface PageProps { + params: { + locale: string; + }; + searchParams: { + quarter?: string; + }; +} + +export default function KeywordCloudPage({ searchParams }: PageProps) { + // 如果 URL 中有 quarter 参数,使用它;否则使用默认季度 + const quarter = searchParams.quarter || '2024-Q1'; + + return ( +
+ {/* 页面标题 */} +
+
+ AI 热点追踪 +
+

+ 季度 AI 热点词云 +

+

+ 从 "大型语言模型" 到 "Agent 工作流"。探索 AI 话语的演变历程。 +

+
+ + {/* 词云组件 */} + +
+ ); +}