feat(i18n): implement localization using LinguiJS

This commit is contained in:
Amruth Pillai
2023-11-10 09:07:47 +01:00
parent 13d91411e3
commit 6ad4358d70
108 changed files with 4631 additions and 798 deletions

View File

@ -1,3 +1,4 @@
import { t } from "@lingui/macro";
import { Separator } from "@reactive-resume/ui";
import { Copyright } from "@/client/components/copyright";
@ -12,11 +13,10 @@ export const Footer = () => (
<div className="flex flex-col gap-y-2">
<Logo size={96} className="-ml-2" />
<h2 className="text-xl font-medium">Reactive Resume</h2>
<h2 className="text-xl font-medium">{t`Reactive Resume`}</h2>
<p className="prose prose-sm prose-zinc leading-relaxed opacity-60 dark:prose-invert">
A free and open-source resume builder that simplifies the tasks of creating, updating, and
sharing your resume.
{t`A free and open-source resume builder that simplifies the process of creating, updating, and sharing your resume.`}
</p>
<Copyright className="mt-6" />