diff --git a/src/app/zh-CN/page.tsx b/src/app/zh-CN/page.tsx index 2a0a488..887c296 100644 --- a/src/app/zh-CN/page.tsx +++ b/src/app/zh-CN/page.tsx @@ -2,6 +2,8 @@ import { useState } from 'react'; import React from 'react'; +import ReactMarkdown from 'react-markdown'; +import remarkGfm from 'remark-gfm'; import { HistoryItem } from '@/components/ComparisonHistory'; import AdBanner from '@/components/AdBanner'; import LanguageSwitcher from '@/components/LanguageSwitcher'; @@ -67,7 +69,7 @@ export default function HomePage() {

- 万物皆可比对 + 万物皆可比

@@ -78,6 +80,7 @@ export default function HomePage() {

从产品和服务到概念和想法 - 获得由人工智能驱动的全面、公正的比较分析。 用详细分析做出明智决策。 + 一站式解决选择困难症!

@@ -460,7 +463,39 @@ function ComparisonResultsZH({ results }: { results: string }) {

比较结果

-
') }} /> + ( +
+ + {children} +
+
+ ), + thead: ({ children }) => ( + {children} + ), + tbody: ({ children }) => ( + {children} + ), + tr: ({ children }) => ( + {children} + ), + th: ({ children }) => ( + + {children} + + ), + td: ({ children }) => ( + + {children} + + ), + }} + > + {results} +
); @@ -491,4 +526,4 @@ function ComparisonTipsZH() {
); -} \ No newline at end of file +}