mirror of
http://112.124.100.131/huang.ze/ebiz-dify-ai.git
synced 2025-12-10 03:16:51 +08:00
feat: remove plugin page (#1544)
This commit is contained in:
Binary file not shown.
|
Before Width: | Height: | Size: 2.3 KiB |
Binary file not shown.
|
Before Width: | Height: | Size: 45 KiB |
@@ -1,32 +0,0 @@
|
||||
.bg {
|
||||
position: relative;
|
||||
width: 750px;
|
||||
height: 450px;
|
||||
background: #fff url(./assets/plugins-bg.png) center center no-repeat;
|
||||
background-size: contain;
|
||||
box-shadow: 0px 12px 16px -4px rgba(16, 24, 40, 0.08), 0px 4px 6px -2px rgba(16, 24, 40, 0.03);
|
||||
border-radius: 16px;
|
||||
}
|
||||
|
||||
.text {
|
||||
position: absolute;
|
||||
top: 40px;
|
||||
left: 48px;
|
||||
width: 526px;
|
||||
background: linear-gradient(91.92deg, #104AE1 -1.74%, #0098EE 75.74%);
|
||||
background-clip: text;
|
||||
color: transparent;
|
||||
font-size: 24px;
|
||||
font-weight: 700;
|
||||
line-height: 32px;
|
||||
}
|
||||
|
||||
.tag {
|
||||
position: absolute;
|
||||
width: 116.74px;
|
||||
height: 69.3px;
|
||||
left: -18.37px;
|
||||
top: -11.48px;
|
||||
background: url(./assets/coming-soon.png) center center no-repeat;
|
||||
background-size: contain;
|
||||
}
|
||||
@@ -1,19 +0,0 @@
|
||||
import s from './page.module.css'
|
||||
import { getLocaleOnServer } from '@/i18n/server'
|
||||
import { useTranslation } from '@/i18n/i18next-serverside-config'
|
||||
|
||||
const PluginsComingSoon = async () => {
|
||||
const locale = getLocaleOnServer()
|
||||
const { t } = await useTranslation(locale, 'common')
|
||||
|
||||
return (
|
||||
<div className='flex justify-center items-center w-full h-full bg-gray-100'>
|
||||
<div className={s.bg}>
|
||||
<div className={s.tag} />
|
||||
<div className={s.text}>{t('menus.pluginsTips')}</div>
|
||||
</div>
|
||||
</div >
|
||||
)
|
||||
}
|
||||
|
||||
export default PluginsComingSoon
|
||||
Reference in New Issue
Block a user