mirror of
https://git.mirrors.martin98.com/https://github.com/langgenius/dify.git
synced 2025-05-26 08:08:17 +08:00
34 lines
1.6 KiB
TypeScript
34 lines
1.6 KiB
TypeScript
import { RiBookOpenLine } from '@remixicon/react'
|
|
import { useTranslation } from 'react-i18next'
|
|
|
|
const InfoPanel = () => {
|
|
const { t } = useTranslation()
|
|
|
|
return (
|
|
<div className='flex w-[360px] flex-col items-start pb-2 pr-8 pt-[108px]'>
|
|
<div className='flex w-full min-w-[240px] flex-col items-start gap-3 self-stretch rounded-xl bg-background-section p-6'>
|
|
<div className='flex h-10 w-10 grow items-center justify-center gap-2 self-stretch rounded-lg border-[0.5px] border-components-card-border bg-components-card-bg p-1'>
|
|
<RiBookOpenLine className='h-5 w-5 text-text-accent' />
|
|
</div>
|
|
<p className='flex flex-col items-start gap-2 self-stretch'>
|
|
<span className='system-xl-semibold self-stretch text-text-secondary'>
|
|
{t('dataset.connectDatasetIntro.title')}
|
|
</span>
|
|
<span className='system-sm-regular text-text-tertiary'>
|
|
{t('dataset.connectDatasetIntro.content.front')}
|
|
<a className='system-sm-regular ml-1 text-text-accent' href='https://docs.dify.ai/en/guides/knowledge-base/external-knowledge-api' target='_blank' rel="noopener noreferrer">
|
|
{t('dataset.connectDatasetIntro.content.link')}
|
|
</a>
|
|
{t('dataset.connectDatasetIntro.content.end')}
|
|
</span>
|
|
<a className='system-sm-regular self-stretch text-text-accent' href='https://docs.dify.ai/en/guides/knowledge-base/connect-external-knowledge-base' target='_blank' rel="noopener noreferrer">
|
|
{t('dataset.connectDatasetIntro.learnMore')}
|
|
</a>
|
|
</p>
|
|
</div>
|
|
</div>
|
|
)
|
|
}
|
|
|
|
export default InfoPanel
|