From ddea832261d6eab43f135f312bbc508f98b24cac Mon Sep 17 00:00:00 2001 From: Caihaohan Date: Tue, 27 Jan 2026 20:19:26 +0800 Subject: [PATCH] =?UTF-8?q?feat:=20=E6=B7=BB=E5=8A=A0=E5=85=B3=E9=94=AE?= =?UTF-8?q?=E8=AF=8D=E8=AF=8D=E4=BA=91=E9=A1=B5=E9=9D=A2?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/app/[locale]/keyword-cloud/page.tsx | 35 +++++++++++++++++++++++++ 1 file changed, 35 insertions(+) create mode 100644 src/app/[locale]/keyword-cloud/page.tsx 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 话语的演变历程。 +

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