Skip to content

Commit 7fc56fa

Browse files
committed
Auto-save: Changed 9 lines in src/app/tool/components/explains.tsx on 2025-07-13 21:12:11
1 parent 22156dc commit 7fc56fa

File tree

1 file changed

+6
-3
lines changed

1 file changed

+6
-3
lines changed

src/app/tool/components/explains.tsx

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,15 @@
1+
"use client";
2+
import { useTranslations } from "next-intl";
13
export default function Explains() {
4+
const t = useTranslations("pages.tool");
25
return (
36
<>
47
<section className="title">
5-
<h1>The Infinity&apos;s Tools</h1>
8+
<h1>{t("title")}</h1>
69
</section>
710
<section className="description">
8-
<p>Useful tools for everyone!</p>
9-
<p>More tools will be added in the future.</p>
11+
<p>{t("description.msg1")}</p>
12+
<p>{t("description.msg2")}</p>
1013
</section>
1114
</>
1215
);

0 commit comments

Comments
 (0)