promote-email-templates 0.0.2 → 0.0.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (74) hide show
  1. package/.react-email/.eslintrc.js +52 -0
  2. package/.react-email/.prettierignore +3 -0
  3. package/.react-email/.prettierrc.js +8 -0
  4. package/.react-email/license.md +7 -0
  5. package/.react-email/next.config.js +36 -0
  6. package/.react-email/package.json +1 -0
  7. package/.react-email/postcss.config.js +8 -0
  8. package/.react-email/readme.md +44 -0
  9. package/.react-email/src/actions/get-email-path-from-slug.ts +26 -0
  10. package/.react-email/src/actions/get-emails-directory-metadata.spec.ts +73 -0
  11. package/.react-email/src/actions/get-emails-directory-metadata.ts +91 -0
  12. package/.react-email/src/actions/render-email-by-path.tsx +59 -0
  13. package/.react-email/src/app/favicon.ico +0 -0
  14. package/.react-email/src/app/globals.css +35 -0
  15. package/.react-email/src/app/inter.ts +7 -0
  16. package/.react-email/src/app/layout.tsx +36 -0
  17. package/.react-email/src/app/logo.png +0 -0
  18. package/.react-email/src/app/page.tsx +47 -0
  19. package/.react-email/src/app/preview/[...slug]/page.tsx +65 -0
  20. package/.react-email/src/app/preview/[...slug]/preview.tsx +141 -0
  21. package/.react-email/src/app/preview/[...slug]/rendering-error.tsx +40 -0
  22. package/.react-email/src/components/button.tsx +90 -0
  23. package/.react-email/src/components/code-container.tsx +145 -0
  24. package/.react-email/src/components/code.tsx +112 -0
  25. package/.react-email/src/components/heading.tsx +113 -0
  26. package/.react-email/src/components/icons/icon-arrow-down.tsx +16 -0
  27. package/.react-email/src/components/icons/icon-base.tsx +24 -0
  28. package/.react-email/src/components/icons/icon-button.tsx +23 -0
  29. package/.react-email/src/components/icons/icon-check.tsx +19 -0
  30. package/.react-email/src/components/icons/icon-clipboard.tsx +40 -0
  31. package/.react-email/src/components/icons/icon-download.tsx +19 -0
  32. package/.react-email/src/components/icons/icon-file.tsx +19 -0
  33. package/.react-email/src/components/icons/icon-folder-open.tsx +19 -0
  34. package/.react-email/src/components/icons/icon-folder.tsx +18 -0
  35. package/.react-email/src/components/icons/icon-hide-sidebar.tsx +23 -0
  36. package/.react-email/src/components/icons/icon-monitor.tsx +19 -0
  37. package/.react-email/src/components/icons/icon-phone.tsx +26 -0
  38. package/.react-email/src/components/icons/icon-source.tsx +19 -0
  39. package/.react-email/src/components/index.ts +7 -0
  40. package/.react-email/src/components/logo.tsx +64 -0
  41. package/.react-email/src/components/send.tsx +135 -0
  42. package/.react-email/src/components/shell.tsx +115 -0
  43. package/.react-email/src/components/sidebar/index.ts +1 -0
  44. package/.react-email/src/components/sidebar/sidebar-directory-children.tsx +134 -0
  45. package/.react-email/src/components/sidebar/sidebar-directory.tsx +106 -0
  46. package/.react-email/src/components/sidebar/sidebar.tsx +45 -0
  47. package/.react-email/src/components/text.tsx +99 -0
  48. package/.react-email/src/components/tooltip-content.tsx +32 -0
  49. package/.react-email/src/components/tooltip.tsx +19 -0
  50. package/.react-email/src/components/topbar.tsx +161 -0
  51. package/.react-email/src/contexts/emails.tsx +127 -0
  52. package/.react-email/src/hooks/use-hot-reload.ts +35 -0
  53. package/.react-email/src/hooks/use-rendering-metadata.ts +36 -0
  54. package/.react-email/src/utils/cn.ts +6 -0
  55. package/.react-email/src/utils/constants.ts +6 -0
  56. package/.react-email/src/utils/copy-text-to-clipboard.ts +7 -0
  57. package/.react-email/src/utils/emails-directory-absolute-path.ts +34 -0
  58. package/.react-email/src/utils/get-email-component.ts +108 -0
  59. package/.react-email/src/utils/improve-error-with-sourcemap.ts +55 -0
  60. package/.react-email/src/utils/index.ts +5 -0
  61. package/.react-email/src/utils/language-map.ts +7 -0
  62. package/.react-email/src/utils/static-node-modules-for-vm.ts +92 -0
  63. package/.react-email/src/utils/types/as.ts +26 -0
  64. package/.react-email/src/utils/types/email-template.ts +8 -0
  65. package/.react-email/src/utils/types/error-object.ts +11 -0
  66. package/.react-email/src/utils/types/hot-reload-change.ts +6 -0
  67. package/.react-email/src/utils/types/hot-reload-event.ts +6 -0
  68. package/.react-email/src/utils/unreachable.ts +8 -0
  69. package/.react-email/tailwind.config.ts +94 -0
  70. package/dist/index.d.mts +208 -82
  71. package/dist/index.d.ts +208 -82
  72. package/dist/index.js +292 -91
  73. package/dist/index.mjs +289 -91
  74. package/package.json +1 -1
package/dist/index.js CHANGED
@@ -24,6 +24,9 @@ __export(emails_exports, {
24
24
  EvidenceApprovedCreator: () => EvidenceApprovedCreator,
25
25
  EvidencesRejectedCreator: () => EvidencesRejectedCreator,
26
26
  EvidencesSubmittedBrand: () => EvidencesSubmittedBrand,
27
+ NewJobApplicationUnapprovedCreator: () => NewJobApplicationUnapprovedCreator,
28
+ NewJobApplicationsReceivedBrand: () => NewJobApplicationsReceivedBrand,
29
+ NewJobCreatedBrand: () => NewJobCreatedBrand,
27
30
  NewOrderCreatedBrand: () => NewOrderCreatedBrand,
28
31
  NewOrderCreatedCreator: () => NewOrderCreatedCreator,
29
32
  OrderAcceptedBrand: () => OrderAcceptedBrand,
@@ -100,7 +103,7 @@ var button = {
100
103
  display: "block",
101
104
  color: colors.white,
102
105
  padding: "15px 20px",
103
- width: "auto",
106
+ width: "fit-content",
104
107
  borderRadius: "8px",
105
108
  justifyContent: "center",
106
109
  margin: "0 auto",
@@ -131,8 +134,10 @@ var appRoutes = {
131
134
  creatorsList: `${appBaseUrl}/content-creators`,
132
135
  creatorPrivateProfile: `${appBaseUrl}/content-creators/profile`,
133
136
  termsAndConditions: `${appBaseUrl}/terms-and-conditions`,
137
+ jobsList: `${appBaseUrl}/jobs`,
134
138
  creatorOrderDetails: (orderId) => `${appBaseUrl}/content-creators/profile/orders/${orderId}`,
135
139
  brandOrderDetails: (orderId) => `${appBaseUrl}/brands/orders/${orderId}`,
140
+ brandJobDetails: (jobId) => `${appBaseUrl}/brands/jobs/${jobId}`,
136
141
  adminOrderDetails: (orderId) => `${appBaseUrl}/admin/orders/${orderId}`,
137
142
  creatorPublicProfile: (username) => `${appBaseUrl}/content-creators/${username}`
138
143
  };
@@ -492,7 +497,7 @@ var import_jsx_runtime10 = require("react/jsx-runtime");
492
497
  function NewOrderInfo(props) {
493
498
  return /* @__PURE__ */ (0, import_jsx_runtime10.jsxs)(import_components10.Section, { children: [
494
499
  /* @__PURE__ */ (0, import_jsx_runtime10.jsxs)(import_components10.Row, { style: rowItem, children: [
495
- /* @__PURE__ */ (0, import_jsx_runtime10.jsx)(import_components10.Column, { children: /* @__PURE__ */ (0, import_jsx_runtime10.jsx)(import_components10.Text, { style: leftText, children: "Paconte:" }) }),
500
+ /* @__PURE__ */ (0, import_jsx_runtime10.jsx)(import_components10.Column, { children: /* @__PURE__ */ (0, import_jsx_runtime10.jsx)(import_components10.Text, { style: leftText, children: "Pacote:" }) }),
496
501
  /* @__PURE__ */ (0, import_jsx_runtime10.jsx)(import_components10.Column, { align: "right", children: /* @__PURE__ */ (0, import_jsx_runtime10.jsx)(import_components10.Text, { style: rightText, children: props.packageName }) })
497
502
  ] }),
498
503
  /* @__PURE__ */ (0, import_jsx_runtime10.jsxs)(import_components10.Row, { style: rowItem, children: [
@@ -769,33 +774,169 @@ var reasonContainer2 = {
769
774
  margin: "30px 0"
770
775
  };
771
776
 
772
- // emails/creator/evidences-approved-creator.tsx
777
+ // emails/brand/new-job-created-brand.tsx
773
778
  var import_components16 = require("@react-email/components");
774
779
  var import_jsx_runtime16 = require("react/jsx-runtime");
775
- function EvidenceApprovedCreator(props) {
780
+ function NewJobCreatedBrand(props) {
776
781
  return /* @__PURE__ */ (0, import_jsx_runtime16.jsxs)(import_components16.Html, { style: rootStyles, children: [
777
782
  /* @__PURE__ */ (0, import_jsx_runtime16.jsx)(BaseHead, {}),
778
- /* @__PURE__ */ (0, import_jsx_runtime16.jsx)(import_components16.Preview, { children: "Evid\xEAncia aprovada \u2705" }),
783
+ /* @__PURE__ */ (0, import_jsx_runtime16.jsx)(import_components16.Preview, { children: "Novo Job Publicado" }),
779
784
  /* @__PURE__ */ (0, import_jsx_runtime16.jsxs)(import_components16.Body, { style: { ...main, ...baseContainer }, children: [
780
785
  /* @__PURE__ */ (0, import_jsx_runtime16.jsx)(Header, {}),
781
- /* @__PURE__ */ (0, import_jsx_runtime16.jsx)(UserInfo, { photo: props.brand.photo, name: props.brand.name, userType: "brand" /* BRAND */ }),
782
786
  /* @__PURE__ */ (0, import_jsx_runtime16.jsxs)(import_components16.Container, { style: { ...baseContentContainer }, children: [
783
787
  /* @__PURE__ */ (0, import_jsx_runtime16.jsxs)(import_components16.Text, { style: baseText, children: [
788
+ "Ol\xE1, ",
789
+ props.brand.name,
790
+ ","
791
+ ] }),
792
+ /* @__PURE__ */ (0, import_jsx_runtime16.jsxs)(import_components16.Text, { style: baseText, children: [
793
+ "Parab\xE9ns \u{1F389}, publicou com sucesso o novo job para a campanha ",
794
+ " ",
795
+ /* @__PURE__ */ (0, import_jsx_runtime16.jsxs)("span", { style: link, children: [
796
+ props.campaign.name,
797
+ "."
798
+ ] }),
799
+ /* @__PURE__ */ (0, import_jsx_runtime16.jsx)("br", {}),
800
+ " Por favor, revise os detalhes abaixo \u{1F680}:"
801
+ ] })
802
+ ] }),
803
+ /* @__PURE__ */ (0, import_jsx_runtime16.jsx)(import_components16.Container, { style: jobDetails, children: /* @__PURE__ */ (0, import_jsx_runtime16.jsx)(NewOrderInfo, { orderCreatedAt: props.job.createdAt, packageName: props.campaign.name, packagePrice: props.job.jobCommission }) }),
804
+ /* @__PURE__ */ (0, import_jsx_runtime16.jsx)(import_components16.Container, { style: { ...baseContentContainer }, children: /* @__PURE__ */ (0, import_jsx_runtime16.jsx)(import_components16.Link, { href: appRoutes.brandJobDetails(props.job.id), style: { ...button, width: "120px" }, children: "VER JOB" }) }),
805
+ /* @__PURE__ */ (0, import_jsx_runtime16.jsx)(Footer, {})
806
+ ] })
807
+ ] });
808
+ }
809
+ NewJobCreatedBrand.PreviewProps = {
810
+ brand: {
811
+ name: "Vodacom Mz"
812
+ },
813
+ campaign: {
814
+ name: "Megas ate dormir",
815
+ description: "Ganhe megas so por publicar uma foto com a vodacom",
816
+ photo: "https://s3.us-east-2.amazonaws.com/promote-mz.com/images/8c52bb92-4a8b-472f-89cb-0428b90b8b74.jpg"
817
+ },
818
+ job: {
819
+ id: "1",
820
+ createdAt: "20 de Agosto, 2021",
821
+ jobCommission: "1000"
822
+ }
823
+ };
824
+ var jobDetails = {
825
+ ...baseContentContainer,
826
+ marginTop: "30px",
827
+ marginBottom: "40px"
828
+ };
829
+
830
+ // emails/brand/new-job-application-received-brand.tsx
831
+ var import_components17 = require("@react-email/components");
832
+ var import_jsx_runtime17 = require("react/jsx-runtime");
833
+ function NewJobApplicationsReceivedBrand(props) {
834
+ return /* @__PURE__ */ (0, import_jsx_runtime17.jsxs)(import_components17.Html, { style: rootStyles, children: [
835
+ /* @__PURE__ */ (0, import_jsx_runtime17.jsx)(BaseHead, {}),
836
+ /* @__PURE__ */ (0, import_jsx_runtime17.jsx)(import_components17.Preview, { children: "Nova Candidatura Recebida para o Job" }),
837
+ /* @__PURE__ */ (0, import_jsx_runtime17.jsxs)(import_components17.Body, { style: { ...main, ...baseContainer }, children: [
838
+ /* @__PURE__ */ (0, import_jsx_runtime17.jsx)(Header, {}),
839
+ /* @__PURE__ */ (0, import_jsx_runtime17.jsxs)(import_components17.Container, { style: { ...baseContentContainer }, children: [
840
+ /* @__PURE__ */ (0, import_jsx_runtime17.jsxs)(import_components17.Text, { style: baseText, children: [
841
+ "Ol\xE1, ",
842
+ props.brand.name,
843
+ ","
844
+ ] }),
845
+ /* @__PURE__ */ (0, import_jsx_runtime17.jsxs)(import_components17.Text, { style: baseText, children: [
846
+ "Voc\xEA recebeu uma nova candidatura para o job da campanha",
847
+ " ",
848
+ /* @__PURE__ */ (0, import_jsx_runtime17.jsxs)("span", { style: link, children: [
849
+ props.campaign.name,
850
+ "."
851
+ ] }),
852
+ /* @__PURE__ */ (0, import_jsx_runtime17.jsx)("br", {}),
853
+ " Revise os detalhes da candidatura abaixo \u{1F680}:"
854
+ ] })
855
+ ] }),
856
+ /* @__PURE__ */ (0, import_jsx_runtime17.jsx)(
857
+ UserInfo,
858
+ {
859
+ photo: props.creatorCandidate.photo,
860
+ name: props.creatorCandidate.name,
861
+ userType: "creator" /* CREATOR */,
862
+ username: props.creatorCandidate.username
863
+ }
864
+ ),
865
+ /* @__PURE__ */ (0, import_jsx_runtime17.jsxs)(import_components17.Container, { style: jobDetails2, children: [
866
+ /* @__PURE__ */ (0, import_jsx_runtime17.jsxs)(import_components17.Text, { style: baseText, children: [
867
+ /* @__PURE__ */ (0, import_jsx_runtime17.jsx)("strong", { children: "Or\xE7amento desejado:" }),
868
+ " ",
869
+ props.jobApplication.desired_budget ? `MZN ${props.jobApplication.desired_budget}` : "N\xE3o informado"
870
+ ] }),
871
+ /* @__PURE__ */ (0, import_jsx_runtime17.jsxs)(import_components17.Text, { style: baseText, children: [
872
+ /* @__PURE__ */ (0, import_jsx_runtime17.jsx)("strong", { children: "Observa\xE7\xF5es:" }),
873
+ " ",
874
+ props.jobApplication.observations || "Nenhuma observa\xE7\xE3o"
875
+ ] })
876
+ ] }),
877
+ /* @__PURE__ */ (0, import_jsx_runtime17.jsx)(import_components17.Container, { style: { ...baseContentContainer }, children: /* @__PURE__ */ (0, import_jsx_runtime17.jsx)(import_components17.Link, { href: appRoutes.brandJobDetails(props.job.id), style: { ...button }, children: "VER CANDIDATURA" }) }),
878
+ /* @__PURE__ */ (0, import_jsx_runtime17.jsx)(Footer, {})
879
+ ] })
880
+ ] });
881
+ }
882
+ NewJobApplicationsReceivedBrand.PreviewProps = {
883
+ brand: {
884
+ name: "Vodacom Mz"
885
+ },
886
+ campaign: {
887
+ name: "Megas at\xE9 Dormir",
888
+ description: "Ganhe megas s\xF3 por publicar uma foto com a Vodacom",
889
+ photo: "https://s3.us-east-2.amazonaws.com/promote-mz.com/images/8c52bb92-4a8b-472f-89cb-0428b90b8b74.jpg"
890
+ },
891
+ job: {
892
+ id: "1",
893
+ createdAt: "20 de Agosto, 2021",
894
+ jobCommission: "1000"
895
+ },
896
+ jobApplication: {
897
+ id: "1",
898
+ desired_budget: 1500,
899
+ observations: "Gostaria de discutir mais sobre os requisitos da campanha."
900
+ },
901
+ creatorCandidate: {
902
+ name: "Jo\xE3o Silva",
903
+ photo: "https://s3.us-east-2.amazonaws.com/promote-mz.com/images/creator-photo.jpg",
904
+ username: "joaosilva"
905
+ }
906
+ };
907
+ var jobDetails2 = {
908
+ ...baseContentContainer,
909
+ marginTop: "30px",
910
+ marginBottom: "40px"
911
+ };
912
+
913
+ // emails/creator/evidences-approved-creator.tsx
914
+ var import_components18 = require("@react-email/components");
915
+ var import_jsx_runtime18 = require("react/jsx-runtime");
916
+ function EvidenceApprovedCreator(props) {
917
+ return /* @__PURE__ */ (0, import_jsx_runtime18.jsxs)(import_components18.Html, { style: rootStyles, children: [
918
+ /* @__PURE__ */ (0, import_jsx_runtime18.jsx)(BaseHead, {}),
919
+ /* @__PURE__ */ (0, import_jsx_runtime18.jsx)(import_components18.Preview, { children: "Evid\xEAncia aprovada \u2705" }),
920
+ /* @__PURE__ */ (0, import_jsx_runtime18.jsxs)(import_components18.Body, { style: { ...main, ...baseContainer }, children: [
921
+ /* @__PURE__ */ (0, import_jsx_runtime18.jsx)(Header, {}),
922
+ /* @__PURE__ */ (0, import_jsx_runtime18.jsx)(UserInfo, { photo: props.brand.photo, name: props.brand.name, userType: "brand" /* BRAND */ }),
923
+ /* @__PURE__ */ (0, import_jsx_runtime18.jsxs)(import_components18.Container, { style: { ...baseContentContainer }, children: [
924
+ /* @__PURE__ */ (0, import_jsx_runtime18.jsxs)(import_components18.Text, { style: baseText, children: [
784
925
  "Ol\xE1, ",
785
926
  props.creator.name,
786
927
  " \u{1F38A},"
787
928
  ] }),
788
- /* @__PURE__ */ (0, import_jsx_runtime16.jsxs)(import_components16.Text, { style: baseText, children: [
929
+ /* @__PURE__ */ (0, import_jsx_runtime18.jsxs)(import_components18.Text, { style: baseText, children: [
789
930
  "Actualiza\xE7\xF5es, a",
790
931
  " ",
791
- /* @__PURE__ */ (0, import_jsx_runtime16.jsx)(import_components16.Link, { href: appRoutes.creatorOrderDetails(props.evidenceLink), target: "_blank", style: link, children: "evid\xEAncia" }),
932
+ /* @__PURE__ */ (0, import_jsx_runtime18.jsx)(import_components18.Link, { href: appRoutes.creatorOrderDetails(props.evidenceLink), target: "_blank", style: link, children: "evid\xEAncia" }),
792
933
  " ",
793
934
  "que submeteste foi aprovada pela marca \u{1F389}."
794
935
  ] }),
795
- /* @__PURE__ */ (0, import_jsx_runtime16.jsx)(import_components16.Text, { style: baseText, children: "Aguarde pela aprova\xE7\xE3o total por parte da marca para receberes o pagamento. Se tiveres alguma d\xFAvida, n\xE3o hesites em contactar" })
936
+ /* @__PURE__ */ (0, import_jsx_runtime18.jsx)(import_components18.Text, { style: baseText, children: "Aguarde pela aprova\xE7\xE3o total por parte da marca para receberes o pagamento. Se tiveres alguma d\xFAvida, n\xE3o hesites em contactar" })
796
937
  ] }),
797
- /* @__PURE__ */ (0, import_jsx_runtime16.jsx)(import_components16.Container, { style: { ...baseContentContainer, marginTop: "25px" }, children: /* @__PURE__ */ (0, import_jsx_runtime16.jsx)(import_components16.Link, { href: appRoutes.creatorOrderDetails(props.order.id), style: { ...button, width: "150px" }, children: "VER PEDIDO" }) }),
798
- /* @__PURE__ */ (0, import_jsx_runtime16.jsx)(Footer, {})
938
+ /* @__PURE__ */ (0, import_jsx_runtime18.jsx)(import_components18.Container, { style: { ...baseContentContainer, marginTop: "25px" }, children: /* @__PURE__ */ (0, import_jsx_runtime18.jsx)(import_components18.Link, { href: appRoutes.creatorOrderDetails(props.order.id), style: { ...button, width: "150px" }, children: "VER PEDIDO" }) }),
939
+ /* @__PURE__ */ (0, import_jsx_runtime18.jsx)(Footer, {})
799
940
  ] })
800
941
  ] });
801
942
  }
@@ -814,34 +955,34 @@ EvidenceApprovedCreator.PreviewProps = {
814
955
  };
815
956
 
816
957
  // emails/creator/evidences-rejected-creator.tsx
817
- var import_components17 = require("@react-email/components");
818
- var import_jsx_runtime17 = require("react/jsx-runtime");
958
+ var import_components19 = require("@react-email/components");
959
+ var import_jsx_runtime19 = require("react/jsx-runtime");
819
960
  function EvidencesRejectedCreator(props) {
820
- return /* @__PURE__ */ (0, import_jsx_runtime17.jsxs)(import_components17.Html, { style: rootStyles, children: [
821
- /* @__PURE__ */ (0, import_jsx_runtime17.jsx)(BaseHead, {}),
822
- /* @__PURE__ */ (0, import_jsx_runtime17.jsx)(import_components17.Preview, { children: "Evi\xEAncia rejeitada \u274C" }),
823
- /* @__PURE__ */ (0, import_jsx_runtime17.jsxs)(import_components17.Body, { style: { ...main, ...baseContainer }, children: [
824
- /* @__PURE__ */ (0, import_jsx_runtime17.jsx)(Header, {}),
825
- /* @__PURE__ */ (0, import_jsx_runtime17.jsx)(UserInfo, { photo: props.brand.photo, name: props.brand.name, userType: "brand" /* BRAND */ }),
826
- /* @__PURE__ */ (0, import_jsx_runtime17.jsxs)(import_components17.Container, { style: { ...baseContentContainer }, children: [
827
- /* @__PURE__ */ (0, import_jsx_runtime17.jsxs)(import_components17.Text, { style: baseText, children: [
961
+ return /* @__PURE__ */ (0, import_jsx_runtime19.jsxs)(import_components19.Html, { style: rootStyles, children: [
962
+ /* @__PURE__ */ (0, import_jsx_runtime19.jsx)(BaseHead, {}),
963
+ /* @__PURE__ */ (0, import_jsx_runtime19.jsx)(import_components19.Preview, { children: "Evi\xEAncia rejeitada \u274C" }),
964
+ /* @__PURE__ */ (0, import_jsx_runtime19.jsxs)(import_components19.Body, { style: { ...main, ...baseContainer }, children: [
965
+ /* @__PURE__ */ (0, import_jsx_runtime19.jsx)(Header, {}),
966
+ /* @__PURE__ */ (0, import_jsx_runtime19.jsx)(UserInfo, { photo: props.brand.photo, name: props.brand.name, userType: "brand" /* BRAND */ }),
967
+ /* @__PURE__ */ (0, import_jsx_runtime19.jsxs)(import_components19.Container, { style: { ...baseContentContainer }, children: [
968
+ /* @__PURE__ */ (0, import_jsx_runtime19.jsxs)(import_components19.Text, { style: baseText, children: [
828
969
  "Ol\xE1, ",
829
970
  props.creator.name,
830
971
  ","
831
972
  ] }),
832
- /* @__PURE__ */ (0, import_jsx_runtime17.jsxs)(import_components17.Text, { style: baseText, children: [
973
+ /* @__PURE__ */ (0, import_jsx_runtime19.jsxs)(import_components19.Text, { style: baseText, children: [
833
974
  "A",
834
975
  " ",
835
- /* @__PURE__ */ (0, import_jsx_runtime17.jsx)(import_components17.Link, { href: props.evidenceLink, target: "_blank", style: link, children: "evid\xEAncia" }),
976
+ /* @__PURE__ */ (0, import_jsx_runtime19.jsx)(import_components19.Link, { href: props.evidenceLink, target: "_blank", style: link, children: "evid\xEAncia" }),
836
977
  " ",
837
978
  "foi rejeitada \u274C pela marca.",
838
- /* @__PURE__ */ (0, import_jsx_runtime17.jsx)("br", {}),
979
+ /* @__PURE__ */ (0, import_jsx_runtime19.jsx)("br", {}),
839
980
  "Por favor, reveja o motivo da rejei\xE7\xE3o e submeta novamente."
840
981
  ] })
841
982
  ] }),
842
- props.reason && /* @__PURE__ */ (0, import_jsx_runtime17.jsx)("div", { style: reasonContainer3, children: /* @__PURE__ */ (0, import_jsx_runtime17.jsx)(CommentComponent, { title: "Motivo da rejei\xE7\xE3o:", comment: props.reason, danger: true }) }),
843
- /* @__PURE__ */ (0, import_jsx_runtime17.jsx)(import_components17.Container, { style: { ...baseContentContainer }, children: /* @__PURE__ */ (0, import_jsx_runtime17.jsx)(import_components17.Link, { href: appRoutes.creatorOrderDetails(props.order.id), style: { ...button, width: "200px" }, children: "VER PEDIDO" }) }),
844
- /* @__PURE__ */ (0, import_jsx_runtime17.jsx)(Footer, {})
983
+ props.reason && /* @__PURE__ */ (0, import_jsx_runtime19.jsx)("div", { style: reasonContainer3, children: /* @__PURE__ */ (0, import_jsx_runtime19.jsx)(CommentComponent, { title: "Motivo da rejei\xE7\xE3o:", comment: props.reason, danger: true }) }),
984
+ /* @__PURE__ */ (0, import_jsx_runtime19.jsx)(import_components19.Container, { style: { ...baseContentContainer }, children: /* @__PURE__ */ (0, import_jsx_runtime19.jsx)(import_components19.Link, { href: appRoutes.creatorOrderDetails(props.order.id), style: { ...button, width: "200px" }, children: "VER PEDIDO" }) }),
985
+ /* @__PURE__ */ (0, import_jsx_runtime19.jsx)(Footer, {})
845
986
  ] })
846
987
  ] });
847
988
  }
@@ -866,37 +1007,37 @@ var reasonContainer3 = {
866
1007
  };
867
1008
 
868
1009
  // emails/creator/order-cancelled-creator.tsx
869
- var import_components18 = require("@react-email/components");
870
- var import_jsx_runtime18 = require("react/jsx-runtime");
1010
+ var import_components20 = require("@react-email/components");
1011
+ var import_jsx_runtime20 = require("react/jsx-runtime");
871
1012
  function OrderCancelledCreator(props) {
872
- return /* @__PURE__ */ (0, import_jsx_runtime18.jsxs)(import_components18.Html, { style: rootStyles, children: [
873
- /* @__PURE__ */ (0, import_jsx_runtime18.jsx)(BaseHead, {}),
874
- /* @__PURE__ */ (0, import_jsx_runtime18.jsx)(import_components18.Preview, { children: "Pedido cancelado \u274C" }),
875
- /* @__PURE__ */ (0, import_jsx_runtime18.jsxs)(import_components18.Body, { style: { ...main, ...baseContainer }, children: [
876
- /* @__PURE__ */ (0, import_jsx_runtime18.jsx)(Header, {}),
877
- /* @__PURE__ */ (0, import_jsx_runtime18.jsx)(UserInfo, { photo: `${assetsBasePath}/icons/logo-icon-colored.png`, name: "Promote Team", userType: "brand" /* BRAND */ }),
878
- /* @__PURE__ */ (0, import_jsx_runtime18.jsxs)(import_components18.Container, { style: { ...baseContentContainer }, children: [
879
- /* @__PURE__ */ (0, import_jsx_runtime18.jsxs)(import_components18.Text, { style: baseText, children: [
1013
+ return /* @__PURE__ */ (0, import_jsx_runtime20.jsxs)(import_components20.Html, { style: rootStyles, children: [
1014
+ /* @__PURE__ */ (0, import_jsx_runtime20.jsx)(BaseHead, {}),
1015
+ /* @__PURE__ */ (0, import_jsx_runtime20.jsx)(import_components20.Preview, { children: "Pedido cancelado \u274C" }),
1016
+ /* @__PURE__ */ (0, import_jsx_runtime20.jsxs)(import_components20.Body, { style: { ...main, ...baseContainer }, children: [
1017
+ /* @__PURE__ */ (0, import_jsx_runtime20.jsx)(Header, {}),
1018
+ /* @__PURE__ */ (0, import_jsx_runtime20.jsx)(UserInfo, { photo: `${assetsBasePath}/icons/logo-icon-colored.png`, name: "Promote Team", userType: "brand" /* BRAND */ }),
1019
+ /* @__PURE__ */ (0, import_jsx_runtime20.jsxs)(import_components20.Container, { style: { ...baseContentContainer }, children: [
1020
+ /* @__PURE__ */ (0, import_jsx_runtime20.jsxs)(import_components20.Text, { style: baseText, children: [
880
1021
  "Ol\xE1, ",
881
1022
  props.creator.name,
882
1023
  ","
883
1024
  ] }),
884
- /* @__PURE__ */ (0, import_jsx_runtime18.jsxs)(import_components18.Text, { style: baseText, children: [
1025
+ /* @__PURE__ */ (0, import_jsx_runtime20.jsxs)(import_components20.Text, { style: baseText, children: [
885
1026
  "Infelizmente o",
886
1027
  " ",
887
- /* @__PURE__ */ (0, import_jsx_runtime18.jsxs)(import_components18.Link, { href: appRoutes.creatorOrderDetails(props.order.id), target: "_blank", style: link, children: [
1028
+ /* @__PURE__ */ (0, import_jsx_runtime20.jsxs)(import_components20.Link, { href: appRoutes.creatorOrderDetails(props.order.id), target: "_blank", style: link, children: [
888
1029
  "pedido #",
889
1030
  props.order.id
890
1031
  ] }),
891
1032
  " ",
892
1033
  "foi cancelado \u274C antes da sua conclus\xE3o.",
893
- /* @__PURE__ */ (0, import_jsx_runtime18.jsx)("br", {}),
1034
+ /* @__PURE__ */ (0, import_jsx_runtime20.jsx)("br", {}),
894
1035
  "Agradecemos a sua disponibilidade e esperamos que a pr\xF3xima oportunidade seja um sucesso \u{1F44C}\u{1F3FD}\u{1F44C}\u{1F3FD}!"
895
1036
  ] })
896
1037
  ] }),
897
- props.reason && /* @__PURE__ */ (0, import_jsx_runtime18.jsx)("div", { style: reasonContainer4, children: /* @__PURE__ */ (0, import_jsx_runtime18.jsx)(CommentComponent, { title: "Motivo do cancelamento:", comment: props.reason, danger: true }) }),
898
- /* @__PURE__ */ (0, import_jsx_runtime18.jsx)(import_components18.Container, { style: { ...baseContentContainer }, children: /* @__PURE__ */ (0, import_jsx_runtime18.jsx)(import_components18.Link, { href: appRoutes.creatorOrderDetails(props.order.id), style: { ...button, width: "150px" }, children: "VER PEDIDO" }) }),
899
- /* @__PURE__ */ (0, import_jsx_runtime18.jsx)(Footer, {})
1038
+ props.reason && /* @__PURE__ */ (0, import_jsx_runtime20.jsx)("div", { style: reasonContainer4, children: /* @__PURE__ */ (0, import_jsx_runtime20.jsx)(CommentComponent, { title: "Motivo do cancelamento:", comment: props.reason, danger: true }) }),
1039
+ /* @__PURE__ */ (0, import_jsx_runtime20.jsx)(import_components20.Container, { style: { ...baseContentContainer }, children: /* @__PURE__ */ (0, import_jsx_runtime20.jsx)(import_components20.Link, { href: appRoutes.creatorOrderDetails(props.order.id), style: { ...button, width: "150px" }, children: "VER PEDIDO" }) }),
1040
+ /* @__PURE__ */ (0, import_jsx_runtime20.jsx)(Footer, {})
900
1041
  ] })
901
1042
  ] });
902
1043
  }
@@ -916,35 +1057,35 @@ var reasonContainer4 = {
916
1057
  };
917
1058
 
918
1059
  // emails/creator/order-payment-creator.tsx
919
- var import_components19 = require("@react-email/components");
920
- var import_jsx_runtime19 = require("react/jsx-runtime");
1060
+ var import_components21 = require("@react-email/components");
1061
+ var import_jsx_runtime21 = require("react/jsx-runtime");
921
1062
  function OrderPaymentCreator(props) {
922
- return /* @__PURE__ */ (0, import_jsx_runtime19.jsxs)(import_components19.Html, { style: rootStyles, children: [
923
- /* @__PURE__ */ (0, import_jsx_runtime19.jsx)(BaseHead, {}),
924
- /* @__PURE__ */ (0, import_jsx_runtime19.jsx)(import_components19.Preview, { children: "Pagamento Liberado \u2705" }),
925
- /* @__PURE__ */ (0, import_jsx_runtime19.jsxs)(import_components19.Body, { style: { ...main, ...baseContainer }, children: [
926
- /* @__PURE__ */ (0, import_jsx_runtime19.jsx)(Header, {}),
927
- /* @__PURE__ */ (0, import_jsx_runtime19.jsx)(UserInfo, { photo: `${assetsBasePath}/icons/logo-icon-colored.png`, name: "Promote Team", userType: "brand" /* BRAND */ }),
928
- /* @__PURE__ */ (0, import_jsx_runtime19.jsxs)(import_components19.Container, { style: { ...baseContentContainer }, children: [
929
- /* @__PURE__ */ (0, import_jsx_runtime19.jsxs)(import_components19.Text, { style: baseText, children: [
1063
+ return /* @__PURE__ */ (0, import_jsx_runtime21.jsxs)(import_components21.Html, { style: rootStyles, children: [
1064
+ /* @__PURE__ */ (0, import_jsx_runtime21.jsx)(BaseHead, {}),
1065
+ /* @__PURE__ */ (0, import_jsx_runtime21.jsx)(import_components21.Preview, { children: "Pagamento Liberado \u2705" }),
1066
+ /* @__PURE__ */ (0, import_jsx_runtime21.jsxs)(import_components21.Body, { style: { ...main, ...baseContainer }, children: [
1067
+ /* @__PURE__ */ (0, import_jsx_runtime21.jsx)(Header, {}),
1068
+ /* @__PURE__ */ (0, import_jsx_runtime21.jsx)(UserInfo, { photo: `${assetsBasePath}/icons/logo-icon-colored.png`, name: "Promote Team", userType: "brand" /* BRAND */ }),
1069
+ /* @__PURE__ */ (0, import_jsx_runtime21.jsxs)(import_components21.Container, { style: { ...baseContentContainer }, children: [
1070
+ /* @__PURE__ */ (0, import_jsx_runtime21.jsxs)(import_components21.Text, { style: baseText, children: [
930
1071
  "Ol\xE1, ",
931
1072
  props.creator.name,
932
1073
  " \u{1F38A},"
933
1074
  ] }),
934
- /* @__PURE__ */ (0, import_jsx_runtime19.jsxs)(import_components19.Text, { style: baseText, children: [
1075
+ /* @__PURE__ */ (0, import_jsx_runtime21.jsxs)(import_components21.Text, { style: baseText, children: [
935
1076
  "Boas Not\xEDcias \u{1F389}, est\xE1 em processamento o pagamento da",
936
1077
  " ",
937
- /* @__PURE__ */ (0, import_jsx_runtime19.jsxs)(import_components19.Link, { href: appRoutes.creatorOrderDetails(props.order.id), target: "_blank", style: link, children: [
1078
+ /* @__PURE__ */ (0, import_jsx_runtime21.jsxs)(import_components21.Link, { href: appRoutes.creatorOrderDetails(props.order.id), target: "_blank", style: link, children: [
938
1079
  "ordem #",
939
1080
  props.order.id
940
1081
  ] }),
941
1082
  " "
942
1083
  ] }),
943
- /* @__PURE__ */ (0, import_jsx_runtime19.jsx)(import_components19.Text, { style: baseText, children: "Espera-se que dentro de 24h o pagamento seja conclu\xEDdo, agradecemos por confiar na Promote." })
1084
+ /* @__PURE__ */ (0, import_jsx_runtime21.jsx)(import_components21.Text, { style: baseText, children: "Espera-se que dentro de 24h o pagamento seja conclu\xEDdo, agradecemos por confiar na Promote." })
944
1085
  ] }),
945
- /* @__PURE__ */ (0, import_jsx_runtime19.jsx)(PaymentAmount, { totalAmount: props.totalAmount }),
946
- /* @__PURE__ */ (0, import_jsx_runtime19.jsx)(import_components19.Container, { style: { ...baseContentContainer, marginTop: "25px" }, children: /* @__PURE__ */ (0, import_jsx_runtime19.jsx)(import_components19.Link, { href: appRoutes.creatorOrderDetails(props.order.id), style: { ...button, width: "150px" }, children: "VER PEDIDO" }) }),
947
- /* @__PURE__ */ (0, import_jsx_runtime19.jsx)(Footer, {})
1086
+ /* @__PURE__ */ (0, import_jsx_runtime21.jsx)(PaymentAmount, { totalAmount: props.totalAmount }),
1087
+ /* @__PURE__ */ (0, import_jsx_runtime21.jsx)(import_components21.Container, { style: { ...baseContentContainer, marginTop: "25px" }, children: /* @__PURE__ */ (0, import_jsx_runtime21.jsx)(import_components21.Link, { href: appRoutes.creatorOrderDetails(props.order.id), style: { ...button, width: "150px" }, children: "VER PEDIDO" }) }),
1088
+ /* @__PURE__ */ (0, import_jsx_runtime21.jsx)(Footer, {})
948
1089
  ] })
949
1090
  ] });
950
1091
  }
@@ -959,32 +1100,32 @@ OrderPaymentCreator.PreviewProps = {
959
1100
  };
960
1101
 
961
1102
  // emails/creator/new-order-created-creator.tsx
962
- var import_components20 = require("@react-email/components");
963
- var import_jsx_runtime20 = require("react/jsx-runtime");
1103
+ var import_components22 = require("@react-email/components");
1104
+ var import_jsx_runtime22 = require("react/jsx-runtime");
964
1105
  function NewOrderCreatedCreator(props) {
965
- return /* @__PURE__ */ (0, import_jsx_runtime20.jsxs)(import_components20.Html, { style: rootStyles, children: [
966
- /* @__PURE__ */ (0, import_jsx_runtime20.jsx)(BaseHead, {}),
967
- /* @__PURE__ */ (0, import_jsx_runtime20.jsx)(import_components20.Preview, { children: "Novo Pedido Recebido" }),
968
- /* @__PURE__ */ (0, import_jsx_runtime20.jsxs)(import_components20.Body, { style: { ...main, ...baseContainer }, children: [
969
- /* @__PURE__ */ (0, import_jsx_runtime20.jsx)(Header, {}),
970
- /* @__PURE__ */ (0, import_jsx_runtime20.jsx)(UserInfo, { photo: props.brand.photo, name: props.brand.name, userType: "brand" /* BRAND */ }),
971
- /* @__PURE__ */ (0, import_jsx_runtime20.jsxs)(import_components20.Container, { style: { ...baseContentContainer }, children: [
972
- /* @__PURE__ */ (0, import_jsx_runtime20.jsxs)(import_components20.Text, { style: baseText, children: [
1106
+ return /* @__PURE__ */ (0, import_jsx_runtime22.jsxs)(import_components22.Html, { style: rootStyles, children: [
1107
+ /* @__PURE__ */ (0, import_jsx_runtime22.jsx)(BaseHead, {}),
1108
+ /* @__PURE__ */ (0, import_jsx_runtime22.jsx)(import_components22.Preview, { children: "Novo Pedido Recebido" }),
1109
+ /* @__PURE__ */ (0, import_jsx_runtime22.jsxs)(import_components22.Body, { style: { ...main, ...baseContainer }, children: [
1110
+ /* @__PURE__ */ (0, import_jsx_runtime22.jsx)(Header, {}),
1111
+ /* @__PURE__ */ (0, import_jsx_runtime22.jsx)(UserInfo, { photo: props.brand.photo, name: props.brand.name, userType: "brand" /* BRAND */ }),
1112
+ /* @__PURE__ */ (0, import_jsx_runtime22.jsxs)(import_components22.Container, { style: { ...baseContentContainer }, children: [
1113
+ /* @__PURE__ */ (0, import_jsx_runtime22.jsxs)(import_components22.Text, { style: baseText, children: [
973
1114
  "Ol\xE1, ",
974
1115
  props.creator.name,
975
1116
  ","
976
1117
  ] }),
977
- /* @__PURE__ */ (0, import_jsx_runtime20.jsxs)(import_components20.Text, { style: baseText, children: [
1118
+ /* @__PURE__ */ (0, import_jsx_runtime22.jsxs)(import_components22.Text, { style: baseText, children: [
978
1119
  "Parab\xE9ns \u{1F389}, voc\xEA recebeu um novo pedido da empresa ",
979
- /* @__PURE__ */ (0, import_jsx_runtime20.jsx)("span", { style: { color: colors.primary }, children: props.brand.name }),
1120
+ /* @__PURE__ */ (0, import_jsx_runtime22.jsx)("span", { style: { color: colors.primary }, children: props.brand.name }),
980
1121
  ".",
981
- /* @__PURE__ */ (0, import_jsx_runtime20.jsx)("br", {}),
1122
+ /* @__PURE__ */ (0, import_jsx_runtime22.jsx)("br", {}),
982
1123
  " Por favor, revise os detalhes abaixo \u{1F680}:"
983
1124
  ] })
984
1125
  ] }),
985
- /* @__PURE__ */ (0, import_jsx_runtime20.jsx)(import_components20.Container, { style: orderDetails2, children: /* @__PURE__ */ (0, import_jsx_runtime20.jsx)(NewOrderInfo, { orderCreatedAt: props.order.createdAt, packageName: props.package.name, packagePrice: props.package.price }) }),
986
- /* @__PURE__ */ (0, import_jsx_runtime20.jsx)(import_components20.Container, { style: { ...baseContentContainer }, children: /* @__PURE__ */ (0, import_jsx_runtime20.jsx)(import_components20.Link, { href: appRoutes.creatorOrderDetails(props.order.id), style: { ...button, width: "120px" }, children: "VER PEDIDO" }) }),
987
- /* @__PURE__ */ (0, import_jsx_runtime20.jsx)(Footer, {})
1126
+ /* @__PURE__ */ (0, import_jsx_runtime22.jsx)(import_components22.Container, { style: orderDetails2, children: /* @__PURE__ */ (0, import_jsx_runtime22.jsx)(NewOrderInfo, { orderCreatedAt: props.order.createdAt, packageName: props.package.name, packagePrice: props.package.price }) }),
1127
+ /* @__PURE__ */ (0, import_jsx_runtime22.jsx)(import_components22.Container, { style: { ...baseContentContainer }, children: /* @__PURE__ */ (0, import_jsx_runtime22.jsx)(import_components22.Link, { href: appRoutes.creatorOrderDetails(props.order.id), style: { ...button, width: "120px" }, children: "VER PEDIDO" }) }),
1128
+ /* @__PURE__ */ (0, import_jsx_runtime22.jsx)(Footer, {})
988
1129
  ] })
989
1130
  ] });
990
1131
  }
@@ -1011,9 +1152,66 @@ var orderDetails2 = {
1011
1152
  marginBottom: "40px"
1012
1153
  };
1013
1154
 
1155
+ // emails/creator/new-job-application-unapproved-creator.tsx
1156
+ var import_components23 = require("@react-email/components");
1157
+ var import_jsx_runtime23 = require("react/jsx-runtime");
1158
+ function NewJobApplicationUnapprovedCreator(props) {
1159
+ return /* @__PURE__ */ (0, import_jsx_runtime23.jsxs)(import_components23.Html, { style: rootStyles, children: [
1160
+ /* @__PURE__ */ (0, import_jsx_runtime23.jsx)(BaseHead, {}),
1161
+ /* @__PURE__ */ (0, import_jsx_runtime23.jsx)(import_components23.Preview, { children: "Actualiza\xE7\xE3o sobre sua candidatura ao job" }),
1162
+ /* @__PURE__ */ (0, import_jsx_runtime23.jsxs)(import_components23.Body, { style: { ...main, ...baseContainer }, children: [
1163
+ /* @__PURE__ */ (0, import_jsx_runtime23.jsx)(Header, {}),
1164
+ /* @__PURE__ */ (0, import_jsx_runtime23.jsxs)(import_components23.Container, { style: { ...baseContentContainer }, children: [
1165
+ /* @__PURE__ */ (0, import_jsx_runtime23.jsxs)(import_components23.Text, { style: baseText2, children: [
1166
+ "Ol\xE1, ",
1167
+ props.creator.name,
1168
+ ","
1169
+ ] }),
1170
+ /* @__PURE__ */ (0, import_jsx_runtime23.jsxs)(import_components23.Text, { style: baseText2, children: [
1171
+ "Infelizmente, sua candidatura para o job da campanha",
1172
+ " ",
1173
+ /* @__PURE__ */ (0, import_jsx_runtime23.jsx)("span", { style: link, children: props.campaign.name }),
1174
+ " n\xE3o foi aprovada.",
1175
+ /* @__PURE__ */ (0, import_jsx_runtime23.jsx)("br", {}),
1176
+ "Agradecemos por seu interesse e participa\xE7\xE3o!"
1177
+ ] }),
1178
+ props.jobApplication.rejectionReason && /* @__PURE__ */ (0, import_jsx_runtime23.jsxs)(import_components23.Text, { style: baseText2, children: [
1179
+ /* @__PURE__ */ (0, import_jsx_runtime23.jsx)("strong", { children: "Motivo:" }),
1180
+ " ",
1181
+ props.jobApplication.rejectionReason
1182
+ ] }),
1183
+ /* @__PURE__ */ (0, import_jsx_runtime23.jsx)(import_components23.Text, { style: baseText2, children: "N\xE3o desanime! Continue acompanhando outras oportunidades que possam surgir na plataforma. \u{1F680}" })
1184
+ ] }),
1185
+ /* @__PURE__ */ (0, import_jsx_runtime23.jsx)(import_components23.Container, { style: { ...baseContentContainer }, children: /* @__PURE__ */ (0, import_jsx_runtime23.jsx)(import_components23.Link, { href: appRoutes.jobsList, style: { ...button }, children: "VER OUTRAS OPORTUNIDADES" }) }),
1186
+ /* @__PURE__ */ (0, import_jsx_runtime23.jsx)(Footer, {})
1187
+ ] })
1188
+ ] });
1189
+ }
1190
+ NewJobApplicationUnapprovedCreator.PreviewProps = {
1191
+ creator: {
1192
+ name: "K\xE1tia Vanessa",
1193
+ email: "katia@example.com",
1194
+ photo: "https://s3.us-east-2.amazonaws.com/promote-mz.com/images/creator-photo.jpg"
1195
+ },
1196
+ campaign: {
1197
+ name: "Megas at\xE9 Dormir",
1198
+ description: "Ganhe megas s\xF3 por publicar uma foto com a Vodacom",
1199
+ photo: "https://s3.us-east-2.amazonaws.com/promote-mz.com/images/campaign-photo.jpg"
1200
+ },
1201
+ jobApplication: {
1202
+ id: "1",
1203
+ rejectionReason: "N\xE3o atingiu os requisitos esperados para o job."
1204
+ }
1205
+ };
1206
+ var baseText2 = {
1207
+ fontSize: "16px",
1208
+ lineHeight: "24px",
1209
+ color: "#333"
1210
+ };
1211
+
1014
1212
  // emails/all/welcome.tsx
1015
- var import_components21 = require("@react-email/components");
1016
- var import_jsx_runtime21 = require("react/jsx-runtime");
1213
+ var import_components24 = require("@react-email/components");
1214
+ var import_jsx_runtime24 = require("react/jsx-runtime");
1017
1215
  function Welcome({ name, userType }) {
1018
1216
  const content2 = {
1019
1217
  ["brand" /* BRAND */]: {
@@ -1025,31 +1223,31 @@ function Welcome({ name, userType }) {
1025
1223
  description: " Obrigado por se registrar. Estamos muito felizes por t\xEA-lo a bordo. Explore nossa plataforma e descubra as melhores marcas para colaborar."
1026
1224
  }
1027
1225
  };
1028
- return /* @__PURE__ */ (0, import_jsx_runtime21.jsxs)(import_components21.Html, { style: rootStyles, children: [
1029
- /* @__PURE__ */ (0, import_jsx_runtime21.jsx)(BaseHead, {}),
1030
- /* @__PURE__ */ (0, import_jsx_runtime21.jsx)(import_components21.Preview, { children: "Bem-vindo a Promote" }),
1031
- /* @__PURE__ */ (0, import_jsx_runtime21.jsxs)(import_components21.Body, { style: { ...main, ...baseContainer }, children: [
1032
- /* @__PURE__ */ (0, import_jsx_runtime21.jsxs)(import_components21.Container, { style: headContainer, children: [
1033
- /* @__PURE__ */ (0, import_jsx_runtime21.jsx)(import_components21.Img, { src: `${assetsBasePath}/icons/logo-icon.png`, alt: "Promote Logo", style: promoteLogo }),
1034
- /* @__PURE__ */ (0, import_jsx_runtime21.jsx)(import_components21.Img, { src: `${assetsBasePath}/icons/welcome-title.png`, alt: "Promote Logo", style: welcomeImage })
1226
+ return /* @__PURE__ */ (0, import_jsx_runtime24.jsxs)(import_components24.Html, { style: rootStyles, children: [
1227
+ /* @__PURE__ */ (0, import_jsx_runtime24.jsx)(BaseHead, {}),
1228
+ /* @__PURE__ */ (0, import_jsx_runtime24.jsx)(import_components24.Preview, { children: "Bem-vindo a Promote" }),
1229
+ /* @__PURE__ */ (0, import_jsx_runtime24.jsxs)(import_components24.Body, { style: { ...main, ...baseContainer }, children: [
1230
+ /* @__PURE__ */ (0, import_jsx_runtime24.jsxs)(import_components24.Container, { style: headContainer, children: [
1231
+ /* @__PURE__ */ (0, import_jsx_runtime24.jsx)(import_components24.Img, { src: `${assetsBasePath}/icons/logo-icon.png`, alt: "Promote Logo", style: promoteLogo }),
1232
+ /* @__PURE__ */ (0, import_jsx_runtime24.jsx)(import_components24.Img, { src: `${assetsBasePath}/icons/welcome-title.png`, alt: "Promote Logo", style: welcomeImage })
1035
1233
  ] }),
1036
- /* @__PURE__ */ (0, import_jsx_runtime21.jsxs)(import_components21.Container, { style: baseContentContainer, children: [
1037
- /* @__PURE__ */ (0, import_jsx_runtime21.jsxs)(import_components21.Heading, { as: "h1", style: title3, children: [
1234
+ /* @__PURE__ */ (0, import_jsx_runtime24.jsxs)(import_components24.Container, { style: baseContentContainer, children: [
1235
+ /* @__PURE__ */ (0, import_jsx_runtime24.jsxs)(import_components24.Heading, { as: "h1", style: title3, children: [
1038
1236
  "Ol\xE1 ",
1039
1237
  name || "{{nome}}",
1040
1238
  " \u{1F389},"
1041
1239
  ] }),
1042
- /* @__PURE__ */ (0, import_jsx_runtime21.jsx)(import_components21.Text, { style: textInfo, children: content2[userType]?.description }),
1043
- /* @__PURE__ */ (0, import_jsx_runtime21.jsxs)(import_components21.Text, { style: textInfo, children: [
1240
+ /* @__PURE__ */ (0, import_jsx_runtime24.jsx)(import_components24.Text, { style: textInfo, children: content2[userType]?.description }),
1241
+ /* @__PURE__ */ (0, import_jsx_runtime24.jsxs)(import_components24.Text, { style: textInfo, children: [
1044
1242
  "Em caso de qualquer d\xFAvida, entre em conctato connosco atrav\xE9s do e-mail:",
1045
1243
  " ",
1046
- /* @__PURE__ */ (0, import_jsx_runtime21.jsx)(import_components21.Link, { style: link, href: "mailto:help@promote.co.mz", children: "help@promote.co.mz" }),
1244
+ /* @__PURE__ */ (0, import_jsx_runtime24.jsx)(import_components24.Link, { style: link, href: "mailto:help@promote.co.mz", children: "help@promote.co.mz" }),
1047
1245
  " ",
1048
1246
  "\u{1F680}"
1049
1247
  ] })
1050
1248
  ] }),
1051
- /* @__PURE__ */ (0, import_jsx_runtime21.jsx)(import_components21.Container, { style: baseContentContainer, children: userType && /* @__PURE__ */ (0, import_jsx_runtime21.jsx)(import_components21.Link, { href: content2[userType]?.startLink, style: { ...button, width: "150px" }, children: "COME\xC7AR AGORA" }) }),
1052
- /* @__PURE__ */ (0, import_jsx_runtime21.jsx)(Footer, {})
1249
+ /* @__PURE__ */ (0, import_jsx_runtime24.jsx)(import_components24.Container, { style: baseContentContainer, children: userType && /* @__PURE__ */ (0, import_jsx_runtime24.jsx)(import_components24.Link, { href: content2[userType]?.startLink, style: { ...button, width: "150px" }, children: "COME\xC7AR AGORA" }) }),
1250
+ /* @__PURE__ */ (0, import_jsx_runtime24.jsx)(Footer, {})
1053
1251
  ] })
1054
1252
  ] });
1055
1253
  }
@@ -1095,6 +1293,9 @@ var textInfo = {
1095
1293
  EvidenceApprovedCreator,
1096
1294
  EvidencesRejectedCreator,
1097
1295
  EvidencesSubmittedBrand,
1296
+ NewJobApplicationUnapprovedCreator,
1297
+ NewJobApplicationsReceivedBrand,
1298
+ NewJobCreatedBrand,
1098
1299
  NewOrderCreatedBrand,
1099
1300
  NewOrderCreatedCreator,
1100
1301
  OrderAcceptedBrand,