2021-04-18 01:56:23 +02:00
|
|
|
import useTranslation from 'next-translate/useTranslation'
|
|
|
|
|
2021-08-12 01:19:11 +02:00
|
|
|
export const ProfileInformation: React.FC = () => {
|
2021-04-18 01:56:23 +02:00
|
|
|
const { t } = useTranslation()
|
|
|
|
|
|
|
|
return (
|
2021-08-12 01:19:11 +02:00
|
|
|
<div className='pb-2 mb-6 border-b-2 font-headline border-gray-600 dark:border-gray-400'>
|
|
|
|
<h1 className='text-4xl mb-2'>
|
|
|
|
{t('home:about.IAm')}{' '}
|
|
|
|
<strong className='font-semibold text-yellow dark:text-yellow-dark'>
|
|
|
|
Divlo
|
|
|
|
</strong>
|
|
|
|
</h1>
|
|
|
|
<h2 className='text-base mb-3'>{t('home:about.description')}</h2>
|
|
|
|
</div>
|
2021-04-18 01:56:23 +02:00
|
|
|
)
|
|
|
|
}
|