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
593 B
TypeScript
Raw Normal View History

import { getI18n } from '@/i18n/i18n.server'
2021-04-18 01:56:23 +02:00
export const ProfileDescriptionBottom: React.FC = () => {
const i18n = getI18n()
2022-02-22 21:19:42 +01:00
2021-04-18 01:56:23 +02:00
return (
2023-04-02 22:44:09 +02:00
<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'
2022-02-22 21:19:42 +01:00
className='text-yellow hover:underline dark:text-yellow-dark'
>
Curriculum vitæ
2022-02-22 21:19:42 +01:00
</a>
</>
) : null}
</p>
2021-04-18 01:56:23 +02:00
)
}