mirror of
https://github.com/langgenius/dify.git
synced 2024-11-16 19:59:50 +08:00
20 lines
790 B
TypeScript
20 lines
790 B
TypeScript
'use client'
|
|
|
|
import { useTranslation } from 'react-i18next'
|
|
|
|
const DatasetFooter = () => {
|
|
const { t } = useTranslation()
|
|
|
|
return (
|
|
<footer className='px-12 py-6 grow-0 shrink-0'>
|
|
<h3 className='text-xl font-semibold leading-tight text-gradient'>{t('dataset.didYouKnow')}</h3>
|
|
<p className='mt-1 text-sm font-normal leading-tight text-gray-700'>
|
|
{t('dataset.intro1')}<a className='inline-flex items-center gap-1 link' target='_blank' rel='noopener noreferrer' href='/'>{t('dataset.intro2')}</a>{t('dataset.intro3')}<br />
|
|
{t('dataset.intro4')}<a className='inline-flex items-center gap-1 link' target='_blank' rel='noopener noreferrer' href='/'>{t('dataset.intro5')}</a>{t('dataset.intro6')}
|
|
</p>
|
|
</footer>
|
|
)
|
|
}
|
|
|
|
export default DatasetFooter
|