mirror of
https://github.com/theoludwig/theoludwig.git
synced 2024-11-05 04:51:30 +01:00
1505b81233
BREAKING CHANGE: minimum supported Node.js >= 16.0.0 and npm >= 8.0.0 fixes #74
13 lines
332 B
TypeScript
13 lines
332 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.description-bottom'
|
|
components={[<br key='break' />]}
|
|
/>
|
|
</p>
|
|
)
|
|
}
|