feat: add i18n with ttag

This commit is contained in:
Maël Gangloff
2024-07-28 15:36:22 +02:00
parent 05baaf911f
commit df0a93b8e6
13 changed files with 447 additions and 98 deletions

View File

@@ -1,11 +1,12 @@
import {Result} from "antd";
import React from "react";
import { t } from 'ttag'
export default function NotFoundPage() {
return <Result
status="404"
title="404"
subTitle="Sorry, the page you visited does not exist."
subTitle={t`Sorry, the page you visited does not exist.`}
/>
}