We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 22156dc commit 7fc56faCopy full SHA for 7fc56fa
src/app/tool/components/explains.tsx
@@ -1,12 +1,15 @@
1
+"use client";
2
+import { useTranslations } from "next-intl";
3
export default function Explains() {
4
+ const t = useTranslations("pages.tool");
5
return (
6
<>
7
<section className="title">
- <h1>The Infinity's Tools</h1>
8
+ <h1>{t("title")}</h1>
9
</section>
10
<section className="description">
- <p>Useful tools for everyone!</p>
- <p>More tools will be added in the future.</p>
11
+ <p>{t("description.msg1")}</p>
12
+ <p>{t("description.msg2")}</p>
13
14
</>
15
);
0 commit comments