Add initial project setup with Vite, Mantine, and Docker configuration

This commit is contained in:
2025-03-17 22:39:45 +01:00
parent 1a49b8676f
commit 76384a9eca
54 changed files with 11005 additions and 83 deletions
+30
View File
@@ -0,0 +1,30 @@
import StudioEditor from '@grapesjs/studio-sdk/react';
import '@grapesjs/studio-sdk/style';
// ...
<StudioEditor
options={{
// ...
project: {
type: 'email',
default: {
pages: [
{
component: '<mjml><mj-body><mj-section><mj-column><mj-text>My email</mj-text></mj-column></mj-section></mj-body></mjml>'
},
]
},
},
i18n: {
locales: {
en: {
actions: {
importCode: {
content: 'Paste here your MJML code and click Import'
}
}
}
}
}
}}
/>