'use client' import Card from '@/app/components/plugins/card' import { customTool, extensionDallE, modelGPT4, toolNeko, 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' import InstallBundle from '@/app/components/plugins/install-plugin/install-bundle' const PluginList = () => { const pluginList = [toolNotion, extensionDallE, modelGPT4, customTool] return (
{ }} plugins={[toolNeko, { ...toolNeko, plugin_unique_identifier: `${toolNeko.plugin_unique_identifier}xxx` }]} />
{/*

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