import { handleDelete } from './actions' import Card from '@/app/components/plugins/card' import { customTool, extensionDallE, modelGPT4, toolNotion } from '@/app/components/plugins/card/card-mock' import PluginItem from '@/app/components/plugins/plugin-item' import CardMoreInfo from '@/app/components/plugins/card/card-more-info' import ProviderCard from '@/app/components/plugins/provider-card' import Badge from '@/app/components/base/badge' const PluginList = async () => { const pluginList = [toolNotion, extensionDallE, modelGPT4, customTool] return (

Dify Plugin list

{pluginList.map((plugin, index) => ( ))}

Install Plugin / Package under bundle

} />

Installed

Install model provide

{pluginList.map((plugin, index) => ( ))}

Marketplace Plugin list

{pluginList.map((plugin, index) => ( } /> ))}
) } export const metadata = { title: 'Plugins - Card', } export default PluginList