feat(minapps): add n8n mini app with logo and URL. (#5776)

Co-authored-by: George Zhao <georgezhao@SKJLAB>
This commit is contained in:
George Zhao 2025-05-09 00:52:15 +08:00 committed by GitHub
parent 83cea0750d
commit 3bd7a9fbe8
2 changed files with 8 additions and 0 deletions

Binary file not shown.

After

Width:  |  Height:  |  Size: 15 KiB

View File

@ -1,3 +1,4 @@
import n8nLogo from '@renderer/assets/images/apps/n8n.ico?url'
import ApplicationLogo from '@renderer/assets/images/apps/application.png?url'
import ThreeMinTopAppLogo from '@renderer/assets/images/apps/3mintop.png?url'
import AbacusLogo from '@renderer/assets/images/apps/abacus.webp?url'
@ -448,6 +449,13 @@ const ORIGIN_DEFAULT_MIN_APPS: MinAppType[] = [
style: {
padding: 10
}
},
{
id: 'n8n',
name: 'n8n',
logo: n8nLogo,
url: 'https://app.n8n.cloud/',
bodered: true
}
]