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

24 lines
596 B
TypeScript
Raw Normal View History

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 (
<p className="mb-8 mt-8 text-base font-normal text-gray dark:text-gray-dark">
{i18n.translate("home.about.description-bottom")}
{i18n.locale === "fr-FR" ? (
2022-02-22 21:19:42 +01:00
<>
<br />
<br />
<a
href="/curriculum-vitae/index.html"
className="text-yellow hover:underline dark:text-yellow-dark"
2022-02-22 21:19:42 +01:00
>
Curriculum vitæ
2022-02-22 21:19:42 +01:00
</a>
</>
) : null}
</p>
2021-04-18 01:56:23 +02:00
)
}