Files
ai-agent/web/app/dashboard/help/page.tsx
T
2026-05-25 12:06:15 +08:00

22 lines
446 B
TypeScript

"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={t("help.title")}
description={t("help.description")}
nextSteps={[
t("help.step1"),
t("help.step2"),
t("help.step3"),
]}
/>
)
}