diff --git a/src/pages/Help.tsx b/src/pages/Help.tsx index 5206622..8fff480 100644 --- a/src/pages/Help.tsx +++ b/src/pages/Help.tsx @@ -1,4 +1,5 @@ import { useMemo, useState } from "react"; +import { useTranslation } from "react-i18next"; import { faqItems, helpArticles, @@ -25,6 +26,7 @@ function saveRatings(ratings: RatingMap): void { } export default function Help() { + const { t } = useTranslation(); const [query, setQuery] = useState(""); const [selectedCategory, setSelectedCategory] = useState("all"); const [selectedArticleId, setSelectedArticleId] = useState(helpArticles[0]?.id ?? ""); @@ -79,17 +81,16 @@ export default function Help() { return (
-

Help Center

+

{t("help.title")}

- Search documentation, browse FAQs, and find contextual guidance for dashboard operations, - integrations, and incident response. + {t("help.intro")}