您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

12345678910111213141516
  1. import PluginPage from '@/app/components/plugins/plugin-page'
  2. import PluginsPanel from '@/app/components/plugins/plugin-page/plugins-panel'
  3. import Marketplace from '@/app/components/plugins/marketplace'
  4. import { getLocaleOnServer } from '@/i18n-config/server'
  5. const PluginList = async () => {
  6. const locale = await getLocaleOnServer()
  7. return (
  8. <PluginPage
  9. plugins={<PluginsPanel />}
  10. marketplace={<Marketplace locale={locale} pluginTypeSwitchClassName='top-[60px]' searchBoxAutoAnimate={false} showSearchParams={false} />}
  11. />
  12. )
  13. }
  14. export default PluginList