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

22 lines
598 B
TypeScript
Raw Normal View History

2024-01-23 23:59:10 +01:00
import htmlParser from "html-react-parser"
import { getI18n } from "@/i18n/i18n.server"
2021-04-18 01:56:23 +02:00
export const ProfileDescriptionBottom = (): JSX.Element => {
const i18n = getI18n()
2022-02-22 21:19:42 +01:00
2021-04-18 01:56:23 +02:00
return (
<div className="my-6 max-w-md text-center text-base text-gray dark:text-gray-dark">
2024-01-23 23:59:10 +01:00
<p>{htmlParser(i18n.translate("home.about.description-bottom"))}</p>
<br />
<a
href="/curriculum-vitae/index.html"
className="font-semibold text-yellow hover:underline dark:text-yellow-dark"
2024-01-23 23:59:10 +01:00
>
Curriculum vitæ ({i18n.translate("common.fr-FR")})
</a>
</div>
2021-04-18 01:56:23 +02:00
)
}