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

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 (
2023-04-02 22:44:09 +02:00
<p className='mb-8 mt-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' ? (
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
)
}