2022-02-22 21:19:42 +01:00
|
|
|
import useTranslation from 'next-translate/useTranslation'
|
2021-04-18 01:56:23 +02:00
|
|
|
|
|
|
|
export const ProfileDescriptionBottom: React.FC = () => {
|
2022-02-22 21:19:42 +01:00
|
|
|
const { t, lang } = useTranslation()
|
|
|
|
|
2021-04-18 01:56:23 +02:00
|
|
|
return (
|
2021-12-04 15:52:51 +01:00
|
|
|
<p className='mt-8 mb-8 text-base font-normal text-gray dark:text-gray-dark'>
|
2022-02-22 21:19:42 +01:00
|
|
|
{t('home:about.description-bottom')}
|
|
|
|
{lang === 'fr' && (
|
|
|
|
<>
|
|
|
|
<br />
|
|
|
|
<br />
|
|
|
|
<a
|
|
|
|
href='/curriculum-vitae.html'
|
|
|
|
className='text-yellow hover:underline dark:text-yellow-dark'
|
|
|
|
>
|
|
|
|
Mon Curriculum vitæ
|
|
|
|
</a>
|
|
|
|
</>
|
|
|
|
)}
|
2021-05-08 19:52:04 +02:00
|
|
|
</p>
|
2021-04-18 01:56:23 +02:00
|
|
|
)
|
|
|
|
}
|