page.tsx 567 B

12345678910111213141516171819
  1. import s from './page.module.css'
  2. import { getLocaleOnServer } from '@/i18n/server'
  3. import { useTranslation } from '@/i18n/i18next-serverside-config'
  4. const PluginsComingSoon = async () => {
  5. const locale = getLocaleOnServer()
  6. const { t } = await useTranslation(locale, 'common')
  7. return (
  8. <div className='flex justify-center items-center w-full h-full bg-gray-100'>
  9. <div className={s.bg}>
  10. <div className={s.tag} />
  11. <div className={s.text}>{t('menus.pluginsTips')}</div>
  12. </div>
  13. </div >
  14. )
  15. }
  16. export default PluginsComingSoon