'use client' import type { FC } from 'react' import React from 'react' import { useTranslation } from 'react-i18next' import { RiBookOpenLine, RiEqualizer2Line } from '@remixicon/react' import Button from '@/app/components/base/button' const I18N_PREFIX = 'datasetCreation.stepOne.website' type Props = { onSetting: () => void } const Header: FC = ({ onSetting, }) => { const { t } = useTranslation() return (
{t(`${I18N_PREFIX}.jinaReaderTitle`)}
{t(`${I18N_PREFIX}.jinaReaderDoc`)}
) } export default React.memo(Header)