mirror of
https://git.mirrors.martin98.com/https://github.com/langgenius/dify.git
synced 2025-07-09 07:31:48 +08:00
42 lines
1.7 KiB
TypeScript
42 lines
1.7 KiB
TypeScript
import SearchBox from './search-box'
|
|
import PluginTypeSwitch from './plugin-type-switch'
|
|
import List from './list'
|
|
|
|
const Marketplace = () => {
|
|
return (
|
|
<div className='w-full'>
|
|
<div className='py-10'>
|
|
<h1 className='mb-2 text-center title-4xl-semi-bold text-text-primary'>
|
|
Empower your AI development
|
|
</h1>
|
|
<h2 className='flex justify-center items-center mb-4 text-center body-md-regular text-text-tertiary'>
|
|
Discover
|
|
<span className="relative ml-1 body-md-medium text-text-secondary after:content-[''] after:absolute after:left-0 after:bottom-[1.5px] after:w-full after:h-2 after:bg-text-text-selected">
|
|
models
|
|
</span>
|
|
,
|
|
<span className="relative ml-1 body-md-medium text-text-secondary after:content-[''] after:absolute after:left-0 after:bottom-[1.5px] after:w-full after:h-2 after:bg-text-text-selected">
|
|
tools
|
|
</span>
|
|
,
|
|
<span className="relative ml-1 mr-1 body-md-medium text-text-secondary after:content-[''] after:absolute after:left-0 after:bottom-[1.5px] after:w-full after:h-2 after:bg-text-text-selected">
|
|
extensions
|
|
</span>
|
|
and
|
|
<span className="relative ml-1 mr-1 body-md-medium text-text-secondary after:content-[''] after:absolute after:left-0 after:bottom-[1.5px] after:w-full after:h-2 after:bg-text-text-selected">
|
|
bundles
|
|
</span>
|
|
in Dify Marketplace
|
|
</h2>
|
|
<div className='flex items-center justify-center mb-4'>
|
|
<SearchBox />
|
|
</div>
|
|
<PluginTypeSwitch />
|
|
</div>
|
|
<List />
|
|
</div>
|
|
)
|
|
}
|
|
|
|
export default Marketplace
|