1
1
mirror of https://github.com/theoludwig/theoludwig.git synced 2024-09-19 22:15:53 +02:00
.profile/components/Profile/ProfileInfo.tsx

17 lines
468 B
TypeScript
Raw Normal View History

import { getI18n } from '@/i18n/i18n.server'
2021-04-18 01:56:23 +02:00
export const ProfileInformation = (): JSX.Element => {
const i18n = getI18n()
2021-04-18 01:56:23 +02:00
return (
2021-12-04 15:52:51 +01:00
<div className='mb-6 border-b-2 border-gray-600 pb-2 font-headline dark:border-gray-400'>
<h1 className='mb-2 text-4xl font-semibold text-yellow dark:text-yellow-dark'>
Théo LUDWIG
</h1>
<h2 className='mb-3 text-base'>
{i18n.translate('home.about.description')}
</h2>
</div>
2021-04-18 01:56:23 +02:00
)
}