mirror of
https://github.com/theoludwig/theoludwig.git
synced 2024-11-05 13:01:30 +01:00
18 lines
536 B
TypeScript
18 lines
536 B
TypeScript
import useTranslation from 'next-translate/useTranslation'
|
|
|
|
export const ProfileInformation: React.FC = () => {
|
|
const { t } = useTranslation()
|
|
|
|
return (
|
|
<div className='mb-6 border-b-2 border-gray-600 pb-2 font-headline dark:border-gray-400'>
|
|
<h1 className='mb-2 text-4xl'>
|
|
{t('home:about.i-am')}{' '}
|
|
<strong className='font-semibold text-yellow dark:text-yellow-dark'>
|
|
Divlo
|
|
</strong>
|
|
</h1>
|
|
<h2 className='mb-3 text-base'>{t('home:about.description')}</h2>
|
|
</div>
|
|
)
|
|
}
|