'use client' 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' import InstallBundle from '@/app/components/plugins/install-plugin/install-bundle' import { useBoolean } from 'ahooks' import LoadingError from '@/app/components/plugins/install-plugin/base/loading-error' const PluginList = () => { const pluginList = [toolNotion, extensionDallE, modelGPT4, customTool] const [isShow, { setFalse: hide, }] = useBoolean(true) return (
{isShow && ( ) }
{/*

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