├── .env.example ├── .gitignore ├── LICENSE ├── README.md ├── doc.md ├── editor.gif ├── global.d.ts ├── next-env.d.ts ├── next.config.js ├── package.json ├── public ├── assets │ └── image │ │ ├── background-login-page.jpg │ │ ├── email-doodle.jpg │ │ ├── email-editor-icon.png │ │ ├── lady.jpg │ │ ├── not-found.jpg │ │ └── smartphone.svg ├── next.svg ├── service-worker.js └── vercel.svg ├── src ├── api │ ├── axios-helper.ts │ ├── get-token.ts │ ├── question.ts │ ├── response.ts │ ├── survey.ts │ └── user.ts ├── app │ ├── favicon.ico │ ├── globals.css │ ├── layout.tsx │ └── page.module.css ├── components │ ├── GoogleAnalytics.tsx │ ├── button-controls │ │ ├── create-template-button.tsx │ │ ├── github-auth.tsx │ │ ├── github-buttons.tsx │ │ ├── intro-button.tsx │ │ ├── share-email-button.tsx │ │ └── undo-redo.tsx │ ├── drop-container │ │ ├── edit-mode.tsx │ │ ├── editor-controls.tsx │ │ ├── index.tsx │ │ ├── preview-mode.tsx │ │ └── skeleton-loader.tsx │ ├── editor-skeleton-loader.tsx │ ├── header │ │ ├── controls.tsx │ │ └── online-offline-status.tsx │ ├── home-page-header.tsx │ ├── index.tsx │ ├── left-sidebar │ │ ├── accordions │ │ │ ├── content │ │ │ │ └── index.tsx │ │ │ ├── layout.tsx │ │ │ └── templates │ │ │ │ ├── echip.tsx │ │ │ │ └── index.tsx │ │ ├── drag │ │ │ ├── drag-placesholder.tsx │ │ │ └── element-card.tsx │ │ ├── index.tsx │ │ ├── style.ts │ │ └── tabs │ │ │ └── layer.tsx │ ├── not-supported-mobile.tsx │ ├── preview-items │ │ ├── button.preview.tsx │ │ ├── carousel.preview.tsx │ │ ├── column.preview.tsx │ │ ├── hero.preview.tsx │ │ ├── image.preview.tsx │ │ ├── section.preview.tsx │ │ ├── spacer.preview.tsx │ │ └── text.preview.tsx │ ├── right-sidebar │ │ ├── accordions │ │ │ ├── json-source.tsx │ │ │ └── mjml-source.tsx │ │ ├── button-attributes │ │ │ ├── border.tsx │ │ │ ├── dimension.tsx │ │ │ ├── index.tsx │ │ │ ├── settings.tsx │ │ │ └── typography.tsx │ │ ├── carousel-attributes │ │ │ ├── index.tsx │ │ │ └── settings.tsx │ │ ├── column-attributes │ │ │ ├── border.tsx │ │ │ ├── index.tsx │ │ │ └── settings.tsx │ │ ├── hero-attributes │ │ │ ├── border.tsx │ │ │ ├── dimension.tsx │ │ │ ├── index.tsx │ │ │ └── settings.tsx │ │ ├── image-attributes │ │ │ ├── border.tsx │ │ │ ├── dimension.tsx │ │ │ ├── index.tsx │ │ │ └── settings.tsx │ │ ├── index.tsx │ │ ├── section-attributes │ │ │ ├── border.tsx │ │ │ ├── dimension.tsx │ │ │ ├── index.tsx │ │ │ ├── settings.tsx │ │ │ └── typography.tsx │ │ └── text-attributes │ │ │ ├── dimension.tsx │ │ │ ├── extra.tsx │ │ │ ├── index.tsx │ │ │ ├── settings.tsx │ │ │ └── typography.tsx │ └── share-modal │ │ └── index.tsx ├── hooks │ └── useInternetConnectionStatus.tsx ├── lib │ ├── auth │ │ └── github.ts │ ├── ui │ │ ├── accordion │ │ │ └── index.tsx │ │ ├── card.tsx │ │ ├── color-picker.tsx │ │ ├── hover-info.tsx │ │ ├── image-preview │ │ │ └── index.tsx │ │ ├── layout │ │ │ └── login-register-layout.tsx │ │ ├── model.tsx │ │ ├── not-found.tsx │ │ ├── popper │ │ │ └── index.tsx │ │ ├── snackbar.tsx │ │ └── unsplash │ │ │ ├── index.tsx │ │ │ └── model.tsx │ └── util │ │ ├── analytics.ts │ │ ├── data-crud.ts │ │ ├── get-camel-cased-attr.ts │ │ ├── get-default-tags │ │ ├── index.ts │ │ └── tags.ts │ │ └── get-email-url.ts ├── middleware.ts ├── pages │ ├── 404.tsx │ ├── _app.tsx │ ├── _document.tsx │ ├── _error.tsx │ ├── api │ │ ├── auth │ │ │ └── [...nextauth].ts │ │ └── email-editor │ │ │ ├── generate-mjml.ts │ │ │ └── send-mail.ts │ ├── error-boundary.tsx │ └── index.tsx ├── store │ ├── email-history.ts │ ├── email.ts │ ├── snackbar.ts │ ├── templates.ts │ └── user.ts ├── styles │ ├── globals.css │ └── theme.ts └── types │ ├── email-editor.types.ts │ ├── response.types.ts │ ├── survey.types.ts │ └── user.types.ts ├── tsconfig.json ├── types └── js-cookie.d.ts └── yarn.lock /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knowankit/email-editor/HEAD/.env.example -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knowankit/email-editor/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knowankit/email-editor/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knowankit/email-editor/HEAD/README.md -------------------------------------------------------------------------------- /doc.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knowankit/email-editor/HEAD/doc.md -------------------------------------------------------------------------------- /editor.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knowankit/email-editor/HEAD/editor.gif -------------------------------------------------------------------------------- /global.d.ts: -------------------------------------------------------------------------------- 1 | interface Window { 2 | GA_INITIALIZED: boolean; 3 | } 4 | -------------------------------------------------------------------------------- /next-env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knowankit/email-editor/HEAD/next-env.d.ts -------------------------------------------------------------------------------- /next.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knowankit/email-editor/HEAD/next.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knowankit/email-editor/HEAD/package.json -------------------------------------------------------------------------------- /public/assets/image/background-login-page.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knowankit/email-editor/HEAD/public/assets/image/background-login-page.jpg -------------------------------------------------------------------------------- /public/assets/image/email-doodle.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knowankit/email-editor/HEAD/public/assets/image/email-doodle.jpg -------------------------------------------------------------------------------- /public/assets/image/email-editor-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knowankit/email-editor/HEAD/public/assets/image/email-editor-icon.png -------------------------------------------------------------------------------- /public/assets/image/lady.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knowankit/email-editor/HEAD/public/assets/image/lady.jpg -------------------------------------------------------------------------------- /public/assets/image/not-found.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knowankit/email-editor/HEAD/public/assets/image/not-found.jpg -------------------------------------------------------------------------------- /public/assets/image/smartphone.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knowankit/email-editor/HEAD/public/assets/image/smartphone.svg -------------------------------------------------------------------------------- /public/next.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knowankit/email-editor/HEAD/public/next.svg -------------------------------------------------------------------------------- /public/service-worker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knowankit/email-editor/HEAD/public/service-worker.js -------------------------------------------------------------------------------- /public/vercel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knowankit/email-editor/HEAD/public/vercel.svg -------------------------------------------------------------------------------- /src/api/axios-helper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knowankit/email-editor/HEAD/src/api/axios-helper.ts -------------------------------------------------------------------------------- /src/api/get-token.ts: -------------------------------------------------------------------------------- 1 | const getToken = () => { 2 | 3 | } 4 | -------------------------------------------------------------------------------- /src/api/question.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knowankit/email-editor/HEAD/src/api/question.ts -------------------------------------------------------------------------------- /src/api/response.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knowankit/email-editor/HEAD/src/api/response.ts -------------------------------------------------------------------------------- /src/api/survey.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knowankit/email-editor/HEAD/src/api/survey.ts -------------------------------------------------------------------------------- /src/api/user.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knowankit/email-editor/HEAD/src/api/user.ts -------------------------------------------------------------------------------- /src/app/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knowankit/email-editor/HEAD/src/app/favicon.ico -------------------------------------------------------------------------------- /src/app/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knowankit/email-editor/HEAD/src/app/globals.css -------------------------------------------------------------------------------- /src/app/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knowankit/email-editor/HEAD/src/app/layout.tsx -------------------------------------------------------------------------------- /src/app/page.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knowankit/email-editor/HEAD/src/app/page.module.css -------------------------------------------------------------------------------- /src/components/GoogleAnalytics.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knowankit/email-editor/HEAD/src/components/GoogleAnalytics.tsx -------------------------------------------------------------------------------- /src/components/button-controls/create-template-button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knowankit/email-editor/HEAD/src/components/button-controls/create-template-button.tsx -------------------------------------------------------------------------------- /src/components/button-controls/github-auth.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knowankit/email-editor/HEAD/src/components/button-controls/github-auth.tsx -------------------------------------------------------------------------------- /src/components/button-controls/github-buttons.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knowankit/email-editor/HEAD/src/components/button-controls/github-buttons.tsx -------------------------------------------------------------------------------- /src/components/button-controls/intro-button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knowankit/email-editor/HEAD/src/components/button-controls/intro-button.tsx -------------------------------------------------------------------------------- /src/components/button-controls/share-email-button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knowankit/email-editor/HEAD/src/components/button-controls/share-email-button.tsx -------------------------------------------------------------------------------- /src/components/button-controls/undo-redo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knowankit/email-editor/HEAD/src/components/button-controls/undo-redo.tsx -------------------------------------------------------------------------------- /src/components/drop-container/edit-mode.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knowankit/email-editor/HEAD/src/components/drop-container/edit-mode.tsx -------------------------------------------------------------------------------- /src/components/drop-container/editor-controls.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knowankit/email-editor/HEAD/src/components/drop-container/editor-controls.tsx -------------------------------------------------------------------------------- /src/components/drop-container/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knowankit/email-editor/HEAD/src/components/drop-container/index.tsx -------------------------------------------------------------------------------- /src/components/drop-container/preview-mode.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knowankit/email-editor/HEAD/src/components/drop-container/preview-mode.tsx -------------------------------------------------------------------------------- /src/components/drop-container/skeleton-loader.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knowankit/email-editor/HEAD/src/components/drop-container/skeleton-loader.tsx -------------------------------------------------------------------------------- /src/components/editor-skeleton-loader.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knowankit/email-editor/HEAD/src/components/editor-skeleton-loader.tsx -------------------------------------------------------------------------------- /src/components/header/controls.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knowankit/email-editor/HEAD/src/components/header/controls.tsx -------------------------------------------------------------------------------- /src/components/header/online-offline-status.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knowankit/email-editor/HEAD/src/components/header/online-offline-status.tsx -------------------------------------------------------------------------------- /src/components/home-page-header.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knowankit/email-editor/HEAD/src/components/home-page-header.tsx -------------------------------------------------------------------------------- /src/components/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knowankit/email-editor/HEAD/src/components/index.tsx -------------------------------------------------------------------------------- /src/components/left-sidebar/accordions/content/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knowankit/email-editor/HEAD/src/components/left-sidebar/accordions/content/index.tsx -------------------------------------------------------------------------------- /src/components/left-sidebar/accordions/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knowankit/email-editor/HEAD/src/components/left-sidebar/accordions/layout.tsx -------------------------------------------------------------------------------- /src/components/left-sidebar/accordions/templates/echip.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knowankit/email-editor/HEAD/src/components/left-sidebar/accordions/templates/echip.tsx -------------------------------------------------------------------------------- /src/components/left-sidebar/accordions/templates/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knowankit/email-editor/HEAD/src/components/left-sidebar/accordions/templates/index.tsx -------------------------------------------------------------------------------- /src/components/left-sidebar/drag/drag-placesholder.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knowankit/email-editor/HEAD/src/components/left-sidebar/drag/drag-placesholder.tsx -------------------------------------------------------------------------------- /src/components/left-sidebar/drag/element-card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knowankit/email-editor/HEAD/src/components/left-sidebar/drag/element-card.tsx -------------------------------------------------------------------------------- /src/components/left-sidebar/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knowankit/email-editor/HEAD/src/components/left-sidebar/index.tsx -------------------------------------------------------------------------------- /src/components/left-sidebar/style.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knowankit/email-editor/HEAD/src/components/left-sidebar/style.ts -------------------------------------------------------------------------------- /src/components/left-sidebar/tabs/layer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knowankit/email-editor/HEAD/src/components/left-sidebar/tabs/layer.tsx -------------------------------------------------------------------------------- /src/components/not-supported-mobile.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knowankit/email-editor/HEAD/src/components/not-supported-mobile.tsx -------------------------------------------------------------------------------- /src/components/preview-items/button.preview.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knowankit/email-editor/HEAD/src/components/preview-items/button.preview.tsx -------------------------------------------------------------------------------- /src/components/preview-items/carousel.preview.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knowankit/email-editor/HEAD/src/components/preview-items/carousel.preview.tsx -------------------------------------------------------------------------------- /src/components/preview-items/column.preview.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knowankit/email-editor/HEAD/src/components/preview-items/column.preview.tsx -------------------------------------------------------------------------------- /src/components/preview-items/hero.preview.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knowankit/email-editor/HEAD/src/components/preview-items/hero.preview.tsx -------------------------------------------------------------------------------- /src/components/preview-items/image.preview.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knowankit/email-editor/HEAD/src/components/preview-items/image.preview.tsx -------------------------------------------------------------------------------- /src/components/preview-items/section.preview.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knowankit/email-editor/HEAD/src/components/preview-items/section.preview.tsx -------------------------------------------------------------------------------- /src/components/preview-items/spacer.preview.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knowankit/email-editor/HEAD/src/components/preview-items/spacer.preview.tsx -------------------------------------------------------------------------------- /src/components/preview-items/text.preview.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knowankit/email-editor/HEAD/src/components/preview-items/text.preview.tsx -------------------------------------------------------------------------------- /src/components/right-sidebar/accordions/json-source.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knowankit/email-editor/HEAD/src/components/right-sidebar/accordions/json-source.tsx -------------------------------------------------------------------------------- /src/components/right-sidebar/accordions/mjml-source.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knowankit/email-editor/HEAD/src/components/right-sidebar/accordions/mjml-source.tsx -------------------------------------------------------------------------------- /src/components/right-sidebar/button-attributes/border.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knowankit/email-editor/HEAD/src/components/right-sidebar/button-attributes/border.tsx -------------------------------------------------------------------------------- /src/components/right-sidebar/button-attributes/dimension.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knowankit/email-editor/HEAD/src/components/right-sidebar/button-attributes/dimension.tsx -------------------------------------------------------------------------------- /src/components/right-sidebar/button-attributes/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knowankit/email-editor/HEAD/src/components/right-sidebar/button-attributes/index.tsx -------------------------------------------------------------------------------- /src/components/right-sidebar/button-attributes/settings.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knowankit/email-editor/HEAD/src/components/right-sidebar/button-attributes/settings.tsx -------------------------------------------------------------------------------- /src/components/right-sidebar/button-attributes/typography.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knowankit/email-editor/HEAD/src/components/right-sidebar/button-attributes/typography.tsx -------------------------------------------------------------------------------- /src/components/right-sidebar/carousel-attributes/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knowankit/email-editor/HEAD/src/components/right-sidebar/carousel-attributes/index.tsx -------------------------------------------------------------------------------- /src/components/right-sidebar/carousel-attributes/settings.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knowankit/email-editor/HEAD/src/components/right-sidebar/carousel-attributes/settings.tsx -------------------------------------------------------------------------------- /src/components/right-sidebar/column-attributes/border.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knowankit/email-editor/HEAD/src/components/right-sidebar/column-attributes/border.tsx -------------------------------------------------------------------------------- /src/components/right-sidebar/column-attributes/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knowankit/email-editor/HEAD/src/components/right-sidebar/column-attributes/index.tsx -------------------------------------------------------------------------------- /src/components/right-sidebar/column-attributes/settings.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knowankit/email-editor/HEAD/src/components/right-sidebar/column-attributes/settings.tsx -------------------------------------------------------------------------------- /src/components/right-sidebar/hero-attributes/border.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knowankit/email-editor/HEAD/src/components/right-sidebar/hero-attributes/border.tsx -------------------------------------------------------------------------------- /src/components/right-sidebar/hero-attributes/dimension.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knowankit/email-editor/HEAD/src/components/right-sidebar/hero-attributes/dimension.tsx -------------------------------------------------------------------------------- /src/components/right-sidebar/hero-attributes/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knowankit/email-editor/HEAD/src/components/right-sidebar/hero-attributes/index.tsx -------------------------------------------------------------------------------- /src/components/right-sidebar/hero-attributes/settings.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knowankit/email-editor/HEAD/src/components/right-sidebar/hero-attributes/settings.tsx -------------------------------------------------------------------------------- /src/components/right-sidebar/image-attributes/border.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knowankit/email-editor/HEAD/src/components/right-sidebar/image-attributes/border.tsx -------------------------------------------------------------------------------- /src/components/right-sidebar/image-attributes/dimension.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knowankit/email-editor/HEAD/src/components/right-sidebar/image-attributes/dimension.tsx -------------------------------------------------------------------------------- /src/components/right-sidebar/image-attributes/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knowankit/email-editor/HEAD/src/components/right-sidebar/image-attributes/index.tsx -------------------------------------------------------------------------------- /src/components/right-sidebar/image-attributes/settings.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knowankit/email-editor/HEAD/src/components/right-sidebar/image-attributes/settings.tsx -------------------------------------------------------------------------------- /src/components/right-sidebar/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knowankit/email-editor/HEAD/src/components/right-sidebar/index.tsx -------------------------------------------------------------------------------- /src/components/right-sidebar/section-attributes/border.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knowankit/email-editor/HEAD/src/components/right-sidebar/section-attributes/border.tsx -------------------------------------------------------------------------------- /src/components/right-sidebar/section-attributes/dimension.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knowankit/email-editor/HEAD/src/components/right-sidebar/section-attributes/dimension.tsx -------------------------------------------------------------------------------- /src/components/right-sidebar/section-attributes/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knowankit/email-editor/HEAD/src/components/right-sidebar/section-attributes/index.tsx -------------------------------------------------------------------------------- /src/components/right-sidebar/section-attributes/settings.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knowankit/email-editor/HEAD/src/components/right-sidebar/section-attributes/settings.tsx -------------------------------------------------------------------------------- /src/components/right-sidebar/section-attributes/typography.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knowankit/email-editor/HEAD/src/components/right-sidebar/section-attributes/typography.tsx -------------------------------------------------------------------------------- /src/components/right-sidebar/text-attributes/dimension.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knowankit/email-editor/HEAD/src/components/right-sidebar/text-attributes/dimension.tsx -------------------------------------------------------------------------------- /src/components/right-sidebar/text-attributes/extra.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knowankit/email-editor/HEAD/src/components/right-sidebar/text-attributes/extra.tsx -------------------------------------------------------------------------------- /src/components/right-sidebar/text-attributes/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knowankit/email-editor/HEAD/src/components/right-sidebar/text-attributes/index.tsx -------------------------------------------------------------------------------- /src/components/right-sidebar/text-attributes/settings.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knowankit/email-editor/HEAD/src/components/right-sidebar/text-attributes/settings.tsx -------------------------------------------------------------------------------- /src/components/right-sidebar/text-attributes/typography.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knowankit/email-editor/HEAD/src/components/right-sidebar/text-attributes/typography.tsx -------------------------------------------------------------------------------- /src/components/share-modal/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knowankit/email-editor/HEAD/src/components/share-modal/index.tsx -------------------------------------------------------------------------------- /src/hooks/useInternetConnectionStatus.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knowankit/email-editor/HEAD/src/hooks/useInternetConnectionStatus.tsx -------------------------------------------------------------------------------- /src/lib/auth/github.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knowankit/email-editor/HEAD/src/lib/auth/github.ts -------------------------------------------------------------------------------- /src/lib/ui/accordion/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knowankit/email-editor/HEAD/src/lib/ui/accordion/index.tsx -------------------------------------------------------------------------------- /src/lib/ui/card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knowankit/email-editor/HEAD/src/lib/ui/card.tsx -------------------------------------------------------------------------------- /src/lib/ui/color-picker.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knowankit/email-editor/HEAD/src/lib/ui/color-picker.tsx -------------------------------------------------------------------------------- /src/lib/ui/hover-info.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knowankit/email-editor/HEAD/src/lib/ui/hover-info.tsx -------------------------------------------------------------------------------- /src/lib/ui/image-preview/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knowankit/email-editor/HEAD/src/lib/ui/image-preview/index.tsx -------------------------------------------------------------------------------- /src/lib/ui/layout/login-register-layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knowankit/email-editor/HEAD/src/lib/ui/layout/login-register-layout.tsx -------------------------------------------------------------------------------- /src/lib/ui/model.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knowankit/email-editor/HEAD/src/lib/ui/model.tsx -------------------------------------------------------------------------------- /src/lib/ui/not-found.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knowankit/email-editor/HEAD/src/lib/ui/not-found.tsx -------------------------------------------------------------------------------- /src/lib/ui/popper/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knowankit/email-editor/HEAD/src/lib/ui/popper/index.tsx -------------------------------------------------------------------------------- /src/lib/ui/snackbar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knowankit/email-editor/HEAD/src/lib/ui/snackbar.tsx -------------------------------------------------------------------------------- /src/lib/ui/unsplash/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knowankit/email-editor/HEAD/src/lib/ui/unsplash/index.tsx -------------------------------------------------------------------------------- /src/lib/ui/unsplash/model.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knowankit/email-editor/HEAD/src/lib/ui/unsplash/model.tsx -------------------------------------------------------------------------------- /src/lib/util/analytics.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knowankit/email-editor/HEAD/src/lib/util/analytics.ts -------------------------------------------------------------------------------- /src/lib/util/data-crud.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knowankit/email-editor/HEAD/src/lib/util/data-crud.ts -------------------------------------------------------------------------------- /src/lib/util/get-camel-cased-attr.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knowankit/email-editor/HEAD/src/lib/util/get-camel-cased-attr.ts -------------------------------------------------------------------------------- /src/lib/util/get-default-tags/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knowankit/email-editor/HEAD/src/lib/util/get-default-tags/index.ts -------------------------------------------------------------------------------- /src/lib/util/get-default-tags/tags.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knowankit/email-editor/HEAD/src/lib/util/get-default-tags/tags.ts -------------------------------------------------------------------------------- /src/lib/util/get-email-url.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knowankit/email-editor/HEAD/src/lib/util/get-email-url.ts -------------------------------------------------------------------------------- /src/middleware.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knowankit/email-editor/HEAD/src/middleware.ts -------------------------------------------------------------------------------- /src/pages/404.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knowankit/email-editor/HEAD/src/pages/404.tsx -------------------------------------------------------------------------------- /src/pages/_app.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knowankit/email-editor/HEAD/src/pages/_app.tsx -------------------------------------------------------------------------------- /src/pages/_document.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knowankit/email-editor/HEAD/src/pages/_document.tsx -------------------------------------------------------------------------------- /src/pages/_error.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knowankit/email-editor/HEAD/src/pages/_error.tsx -------------------------------------------------------------------------------- /src/pages/api/auth/[...nextauth].ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knowankit/email-editor/HEAD/src/pages/api/auth/[...nextauth].ts -------------------------------------------------------------------------------- /src/pages/api/email-editor/generate-mjml.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knowankit/email-editor/HEAD/src/pages/api/email-editor/generate-mjml.ts -------------------------------------------------------------------------------- /src/pages/api/email-editor/send-mail.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knowankit/email-editor/HEAD/src/pages/api/email-editor/send-mail.ts -------------------------------------------------------------------------------- /src/pages/error-boundary.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knowankit/email-editor/HEAD/src/pages/error-boundary.tsx -------------------------------------------------------------------------------- /src/pages/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knowankit/email-editor/HEAD/src/pages/index.tsx -------------------------------------------------------------------------------- /src/store/email-history.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knowankit/email-editor/HEAD/src/store/email-history.ts -------------------------------------------------------------------------------- /src/store/email.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knowankit/email-editor/HEAD/src/store/email.ts -------------------------------------------------------------------------------- /src/store/snackbar.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knowankit/email-editor/HEAD/src/store/snackbar.ts -------------------------------------------------------------------------------- /src/store/templates.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knowankit/email-editor/HEAD/src/store/templates.ts -------------------------------------------------------------------------------- /src/store/user.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knowankit/email-editor/HEAD/src/store/user.ts -------------------------------------------------------------------------------- /src/styles/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knowankit/email-editor/HEAD/src/styles/globals.css -------------------------------------------------------------------------------- /src/styles/theme.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knowankit/email-editor/HEAD/src/styles/theme.ts -------------------------------------------------------------------------------- /src/types/email-editor.types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knowankit/email-editor/HEAD/src/types/email-editor.types.ts -------------------------------------------------------------------------------- /src/types/response.types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knowankit/email-editor/HEAD/src/types/response.types.ts -------------------------------------------------------------------------------- /src/types/survey.types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knowankit/email-editor/HEAD/src/types/survey.types.ts -------------------------------------------------------------------------------- /src/types/user.types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knowankit/email-editor/HEAD/src/types/user.types.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knowankit/email-editor/HEAD/tsconfig.json -------------------------------------------------------------------------------- /types/js-cookie.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knowankit/email-editor/HEAD/types/js-cookie.d.ts -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knowankit/email-editor/HEAD/yarn.lock --------------------------------------------------------------------------------