mirror of
https://github.com/theoludwig/theoludwig.git
synced 2024-11-04 20:41:30 +01:00
22 lines
600 B
TypeScript
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>
|
|
)
|
|
}
|