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-28 03:21:11 +01:00
|
|
|
<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"
|
2024-04-06 20:25:02 +02:00
|
|
|
className="font-semibold text-primary hover:underline dark:text-primary-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
|
|
|
)
|
|
|
|
}
|