mirror of
https://github.com/theoludwig/theoludwig.git
synced 2024-11-05 04:51:30 +01:00
24 lines
581 B
TypeScript
24 lines
581 B
TypeScript
import useTranslation from 'next-translate/useTranslation'
|
|
|
|
export const ProfileDescriptionBottom: React.FC = () => {
|
|
const { t, lang } = useTranslation()
|
|
|
|
return (
|
|
<p className='mb-8 mt-8 text-base font-normal text-gray dark:text-gray-dark'>
|
|
{t('home:about.description-bottom')}
|
|
{lang === 'fr' && (
|
|
<>
|
|
<br />
|
|
<br />
|
|
<a
|
|
href='/curriculum-vitae'
|
|
className='text-yellow hover:underline dark:text-yellow-dark'
|
|
>
|
|
Curriculum vitæ
|
|
</a>
|
|
</>
|
|
)}
|
|
</p>
|
|
)
|
|
}
|