You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gcgj-dify-1.7.0/web/app/dev-preview/page.tsx

26 lines
688 B
TypeScript

'use client'
import Input from '../components/base/input'
import { OptionCard } from '../components/datasets/create/step-two/option-card'
export default function Page() {
return <div className='p-4'>
<OptionCard
icon={undefined}
title={'General'}
description={
'General text chunking mode, the chunks retrieved and recalled are the same.'
}
className='w-[600px]'
activeHeaderClassName='bg-gradient-to-r from-[#EFF0F9] to-[#F9FAFB]'
isActive={true}>
<p
className='text-[#354052] text-sm font-semibold leading-tight'
>
Lorem ipsum
</p>
<Input className='mt-2' />
</OptionCard>
</div>
}