1
1
mirror of https://github.com/theoludwig/theoludwig.git synced 2024-09-19 05:55:53 +02:00
.profile/components/Profile/ProfileDescriptionBottom.tsx

22 lines
600 B
TypeScript

import htmlParser from "html-react-parser"
import { getI18n } from "@/i18n/i18n.server"
export const ProfileDescriptionBottom = (): JSX.Element => {
const i18n = getI18n()
return (
<div className="my-6 max-w-md text-center text-base text-gray dark:text-gray-dark">
<p>{htmlParser(i18n.translate("home.about.description-bottom"))}</p>
<br />
<a
href="/curriculum-vitae/index.html"
className="font-semibold text-primary hover:underline dark:text-primary-dark"
>
Curriculum vitæ ({i18n.translate("common.fr-FR")})
</a>
</div>
)
}