refactor: support i18n

This commit is contained in:
mlogclub
2026-05-25 12:06:15 +08:00
parent 309ac1fe9e
commit 988f55c80d
179 changed files with 10968 additions and 3763 deletions
+10 -5
View File
@@ -1,15 +1,20 @@
"use client"
import { DashboardPlaceholder } from "@/components/dashboard-placeholder"
import { useI18n } from "@/i18n/provider"
export default function DashboardHelpPage() {
const t = useI18n()
return (
<DashboardPlaceholder
eyebrow="Help"
title="帮助中心骨架"
description="帮助中心用于沉淀产品说明、权限约定、渠道接入流程与常见问题。"
title={t("help.title")}
description={t("help.description")}
nextSteps={[
"汇总项目开发规范与后台使用说明。",
"补充第三方接入流程图和配置校验清单。",
"后续可接入 markdown 或文档中心能力。",
t("help.step1"),
t("help.step2"),
t("help.step3"),
]}
/>
)