mirror of
https://github.com/theoludwig/theoludwig.git
synced 2024-11-05 04:51:30 +01:00
13 lines
331 B
TypeScript
13 lines
331 B
TypeScript
import Translation from 'next-translate/Trans'
|
|
|
|
export const ProfileDescriptionBottom: React.FC = () => {
|
|
return (
|
|
<p className='mt-8 mb-8 font-normal text-base text-gray dark:text-gray-dark'>
|
|
<Translation
|
|
i18nKey='home:about.descriptionBottom'
|
|
components={[<br key='break' />]}
|
|
/>
|
|
</p>
|
|
)
|
|
}
|