import { getLocaleOnServer, useTranslation as translate, } from '@/i18n/server' type DescriptionProps = { locale?: string } const Description = async ({ locale: localeFromProps, }: DescriptionProps) => { const localeDefault = getLocaleOnServer() const { t } = await translate(localeFromProps || localeDefault, 'plugin') return ( <>

{t('marketplace.empower')}

{t('marketplace.discover')} {t('category.models')} , {t('category.tools')} , {t('category.extensions')} {t('marketplace.and')} {t('category.bundles')} {t('marketplace.inDifyMarketplace')}

) } export default Description