diff --git a/client/src/pages/home/index.tsx b/client/src/pages/home/index.tsx index 0bcced6..06ffe95 100644 --- a/client/src/pages/home/index.tsx +++ b/client/src/pages/home/index.tsx @@ -7,6 +7,7 @@ import dayjs from "dayjs"; import utc from "dayjs/plugin/utc"; import React, { ReactNode } from "react"; import { Link } from "react-router"; +import { Trans } from "react-i18next"; import Logo from "../../icon.svg?react"; import { ISpool } from "../spools/model"; @@ -107,10 +108,14 @@ export const Home: React.FC = () => { {!hasSpools && ( <> -

Welcome to your Spoolman instance!

+

{t("home.welcome")}

- It looks like you haven't added any spools yet. See the Help page for help getting - started. + , + }} + />

)}