2024-01-23 23:59:10 +01:00
|
|
|
import htmlParser from "html-react-parser"
|
|
|
|
|
2023-10-23 23:11:59 +02:00
|
|
|
import { getI18n } from "@/i18n/i18n.server"
|
2021-04-18 01:56:23 +02:00
|
|
|
|
2023-08-01 17:22:09 +02:00
|
|
|
export const ProfileDescriptionBottom = (): JSX.Element => {
|
2023-07-31 19:06:46 +02:00
|
|
|
const i18n = getI18n()
|
2022-02-22 21:19:42 +01:00
|
|
|
|
2021-04-18 01:56:23 +02:00
|
|
|
return (
|
2024-01-23 23:59:10 +01:00
|
|
|
<div className="my-6 text-gray dark:text-gray-dark text-center max-w-md text-base">
|
|
|
|
<p>{htmlParser(i18n.translate("home.about.description-bottom"))}</p>
|
|
|
|
|
|
|
|
<br />
|
|
|
|
<a
|
|
|
|
href="/curriculum-vitae/index.html"
|
2024-01-28 01:56:47 +01:00
|
|
|
className="text-yellow hover:underline dark:text-yellow-dark font-semibold"
|
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
|
|
|
)
|
|
|
|
}
|