2026-05-25 12:06:15 +08:00
|
|
|
"use client"
|
|
|
|
|
|
2026-04-09 10:01:23 +08:00
|
|
|
import { DashboardPlaceholder } from "@/components/dashboard-placeholder"
|
2026-05-25 12:06:15 +08:00
|
|
|
import { useI18n } from "@/i18n/provider"
|
2026-04-09 10:01:23 +08:00
|
|
|
|
|
|
|
|
export default function DashboardHelpPage() {
|
2026-05-25 12:06:15 +08:00
|
|
|
const t = useI18n()
|
|
|
|
|
|
2026-04-09 10:01:23 +08:00
|
|
|
return (
|
|
|
|
|
<DashboardPlaceholder
|
|
|
|
|
eyebrow="Help"
|
2026-05-25 12:06:15 +08:00
|
|
|
title={t("help.title")}
|
|
|
|
|
description={t("help.description")}
|
2026-04-09 10:01:23 +08:00
|
|
|
nextSteps={[
|
2026-05-25 12:06:15 +08:00
|
|
|
t("help.step1"),
|
|
|
|
|
t("help.step2"),
|
|
|
|
|
t("help.step3"),
|
2026-04-09 10:01:23 +08:00
|
|
|
]}
|
|
|
|
|
/>
|
|
|
|
|
)
|
|
|
|
|
}
|