@intlayer/backend 8.7.12 → 8.7.13
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.
- package/README.md +27 -1
- package/dist/assets/utils/AI/askDocQuestion/embeddings/docs/en/benchmark/solid.json +4990 -0
- package/dist/assets/utils/AI/askDocQuestion/embeddings/docs/en/benchmark/svelte.json +4987 -0
- package/dist/assets/utils/AI/askDocQuestion/embeddings/docs/en/benchmark/vue.json +4975 -0
- package/dist/assets/utils/AI/askDocQuestion/embeddings/docs/en/intlayer_with_astro_lit.json +9936 -8930
- package/dist/assets/utils/AI/askDocQuestion/embeddings/docs/en/intlayer_with_astro_vanilla.json +7963 -6949
- package/dist/assets/utils/AI/askDocQuestion/embeddings/docs/en/readme.json +12908 -12288
- package/dist/esm/controllers/oAuth2.controller.mjs +21 -1
- package/dist/esm/controllers/oAuth2.controller.mjs.map +1 -1
- package/dist/esm/controllers/stripe.controller.mjs +86 -2
- package/dist/esm/controllers/stripe.controller.mjs.map +1 -1
- package/dist/esm/controllers/translation.controller.mjs +2 -0
- package/dist/esm/controllers/translation.controller.mjs.map +1 -1
- package/dist/esm/emails/InviteUserEmail.mjs +1541 -1
- package/dist/esm/emails/InviteUserEmail.mjs.map +1 -1
- package/dist/esm/emails/MagicLinkEmail.mjs +1128 -1
- package/dist/esm/emails/MagicLinkEmail.mjs.map +1 -1
- package/dist/esm/emails/OAuthTokenCreatedEmail.mjs +1389 -1
- package/dist/esm/emails/OAuthTokenCreatedEmail.mjs.map +1 -1
- package/dist/esm/emails/PasswordChangeConfirmation.mjs +814 -1
- package/dist/esm/emails/PasswordChangeConfirmation.mjs.map +1 -1
- package/dist/esm/emails/ResetUserPassword.mjs +1132 -1
- package/dist/esm/emails/ResetUserPassword.mjs.map +1 -1
- package/dist/esm/emails/SubscriptionPaymentCancellation.mjs +913 -1
- package/dist/esm/emails/SubscriptionPaymentCancellation.mjs.map +1 -1
- package/dist/esm/emails/SubscriptionPaymentError.mjs +908 -1
- package/dist/esm/emails/SubscriptionPaymentError.mjs.map +1 -1
- package/dist/esm/emails/SubscriptionPaymentSuccess.mjs +935 -1
- package/dist/esm/emails/SubscriptionPaymentSuccess.mjs.map +1 -1
- package/dist/esm/emails/ValidateUserEmail.mjs +1111 -1
- package/dist/esm/emails/ValidateUserEmail.mjs.map +1 -1
- package/dist/esm/emails/Welcome.mjs +1004 -1
- package/dist/esm/emails/Welcome.mjs.map +1 -1
- package/dist/esm/emails/index.mjs +7 -7
- package/dist/esm/index.mjs +8 -2
- package/dist/esm/index.mjs.map +1 -1
- package/dist/esm/middlewares/oAuth2.middleware.mjs +2 -2
- package/dist/esm/middlewares/oAuth2.middleware.mjs.map +1 -1
- package/dist/esm/routes/audit.routes.mjs +5 -4
- package/dist/esm/routes/audit.routes.mjs.map +1 -1
- package/dist/esm/routes/dictionary.routes.mjs +4 -3
- package/dist/esm/routes/dictionary.routes.mjs.map +1 -1
- package/dist/esm/routes/organization.routes.mjs +3 -2
- package/dist/esm/routes/organization.routes.mjs.map +1 -1
- package/dist/esm/routes/paramsSchemas.mjs +67 -0
- package/dist/esm/routes/paramsSchemas.mjs.map +1 -0
- package/dist/esm/routes/project.routes.mjs +2 -1
- package/dist/esm/routes/project.routes.mjs.map +1 -1
- package/dist/esm/routes/showcaseProject.routes.mjs +5 -4
- package/dist/esm/routes/showcaseProject.routes.mjs.map +1 -1
- package/dist/esm/routes/stripe.routes.mjs +19 -1
- package/dist/esm/routes/stripe.routes.mjs.map +1 -1
- package/dist/esm/routes/tags.routes.mjs +3 -2
- package/dist/esm/routes/tags.routes.mjs.map +1 -1
- package/dist/esm/routes/translate.routes.mjs +6 -5
- package/dist/esm/routes/translate.routes.mjs.map +1 -1
- package/dist/esm/routes/user.routes.mjs +5 -4
- package/dist/esm/routes/user.routes.mjs.map +1 -1
- package/dist/esm/schemas/oAuth2.schema.mjs +1 -1
- package/dist/esm/schemas/oAuth2.schema.mjs.map +1 -1
- package/dist/esm/services/email.service.mjs +338 -38
- package/dist/esm/services/email.service.mjs.map +1 -1
- package/dist/esm/services/oAuth2.service.mjs +20 -2
- package/dist/esm/services/oAuth2.service.mjs.map +1 -1
- package/dist/esm/services/subscription.service.mjs +5 -2
- package/dist/esm/services/subscription.service.mjs.map +1 -1
- package/dist/esm/utils/AI/askDocQuestion/embeddings/docs/en/benchmark/solid.json +4990 -0
- package/dist/esm/utils/AI/askDocQuestion/embeddings/docs/en/benchmark/svelte.json +4987 -0
- package/dist/esm/utils/AI/askDocQuestion/embeddings/docs/en/benchmark/vue.json +4975 -0
- package/dist/esm/utils/AI/askDocQuestion/embeddings/docs/en/intlayer_with_astro_lit.json +9936 -8930
- package/dist/esm/utils/AI/askDocQuestion/embeddings/docs/en/intlayer_with_astro_vanilla.json +7963 -6949
- package/dist/esm/utils/AI/askDocQuestion/embeddings/docs/en/readme.json +12908 -12288
- package/dist/esm/utils/auth/getAuth.mjs +6 -0
- package/dist/esm/utils/auth/getAuth.mjs.map +1 -1
- package/dist/esm/utils/errors/errorCodes.mjs +3917 -287
- package/dist/esm/utils/errors/errorCodes.mjs.map +1 -1
- package/dist/esm/utils/mongoDB/connectDB.mjs +5 -0
- package/dist/esm/utils/mongoDB/connectDB.mjs.map +1 -1
- package/dist/esm/utils/oAuth2.mjs +6 -2
- package/dist/esm/utils/oAuth2.mjs.map +1 -1
- package/dist/esm/utils/plan.mjs +13 -1
- package/dist/esm/utils/plan.mjs.map +1 -1
- package/dist/types/controllers/oAuth2.controller.d.ts +11 -1
- package/dist/types/controllers/oAuth2.controller.d.ts.map +1 -1
- package/dist/types/controllers/stripe.controller.d.ts +22 -2
- package/dist/types/controllers/stripe.controller.d.ts.map +1 -1
- package/dist/types/controllers/translation.controller.d.ts.map +1 -1
- package/dist/types/emails/InviteUserEmail.d.ts +181 -1
- package/dist/types/emails/InviteUserEmail.d.ts.map +1 -1
- package/dist/types/emails/MagicLinkEmail.d.ts +106 -1
- package/dist/types/emails/MagicLinkEmail.d.ts.map +1 -1
- package/dist/types/emails/OAuthTokenCreatedEmail.d.ts +166 -1
- package/dist/types/emails/OAuthTokenCreatedEmail.d.ts.map +1 -1
- package/dist/types/emails/PasswordChangeConfirmation.d.ts +91 -1
- package/dist/types/emails/PasswordChangeConfirmation.d.ts.map +1 -1
- package/dist/types/emails/ResetUserPassword.d.ts +106 -1
- package/dist/types/emails/ResetUserPassword.d.ts.map +1 -1
- package/dist/types/emails/SubscriptionPaymentCancellation.d.ts +151 -1
- package/dist/types/emails/SubscriptionPaymentCancellation.d.ts.map +1 -1
- package/dist/types/emails/SubscriptionPaymentError.d.ts +151 -1
- package/dist/types/emails/SubscriptionPaymentError.d.ts.map +1 -1
- package/dist/types/emails/SubscriptionPaymentSuccess.d.ts +151 -1
- package/dist/types/emails/SubscriptionPaymentSuccess.d.ts.map +1 -1
- package/dist/types/emails/ValidateUserEmail.d.ts +106 -1
- package/dist/types/emails/ValidateUserEmail.d.ts.map +1 -1
- package/dist/types/emails/Welcome.d.ts +106 -1
- package/dist/types/emails/Welcome.d.ts.map +1 -1
- package/dist/types/emails/index.d.ts +7 -7
- package/dist/types/export.d.ts +3 -3
- package/dist/types/middlewares/oAuth2.middleware.d.ts.map +1 -1
- package/dist/types/routes/audit.routes.d.ts.map +1 -1
- package/dist/types/routes/dictionary.routes.d.ts.map +1 -1
- package/dist/types/routes/organization.routes.d.ts.map +1 -1
- package/dist/types/routes/paramsSchemas.d.ts +102 -0
- package/dist/types/routes/paramsSchemas.d.ts.map +1 -0
- package/dist/types/routes/project.routes.d.ts.map +1 -1
- package/dist/types/routes/showcaseProject.routes.d.ts.map +1 -1
- package/dist/types/routes/stripe.routes.d.ts +15 -0
- package/dist/types/routes/stripe.routes.d.ts.map +1 -1
- package/dist/types/routes/tags.routes.d.ts.map +1 -1
- package/dist/types/routes/translate.routes.d.ts.map +1 -1
- package/dist/types/routes/user.routes.d.ts.map +1 -1
- package/dist/types/schemas/dictionary.schema.d.ts +8 -8
- package/dist/types/schemas/discussion.schema.d.ts +8 -8
- package/dist/types/schemas/organization.schema.d.ts +5 -5
- package/dist/types/schemas/plans.schema.d.ts +7 -7
- package/dist/types/schemas/project.schema.d.ts +9 -9
- package/dist/types/schemas/session.schema.d.ts +7 -7
- package/dist/types/schemas/showcaseProject.schema.d.ts +18 -18
- package/dist/types/schemas/tag.schema.d.ts +7 -7
- package/dist/types/services/email.service.d.ts.map +1 -1
- package/dist/types/services/oAuth2.service.d.ts +6 -1
- package/dist/types/services/oAuth2.service.d.ts.map +1 -1
- package/dist/types/types/plan.types.d.ts +2 -2
- package/dist/types/utils/errors/errorCodes.d.ts +3634 -4
- package/dist/types/utils/errors/errorCodes.d.ts.map +1 -1
- package/dist/types/utils/mongoDB/connectDB.d.ts.map +1 -1
- package/dist/types/utils/oAuth2.d.ts +3 -1
- package/dist/types/utils/oAuth2.d.ts.map +1 -1
- package/dist/types/utils/plan.d.ts +2 -1
- package/dist/types/utils/plan.d.ts.map +1 -1
- package/package.json +13 -12
|
@@ -200,6 +200,994 @@ const WelcomeEmailES = ({ username, loginLink }) => {
|
|
|
200
200
|
}) })
|
|
201
201
|
] });
|
|
202
202
|
};
|
|
203
|
+
const WelcomeEmailRU = ({ username, loginLink }) => {
|
|
204
|
+
return /* @__PURE__ */ jsxs(Html, { children: [
|
|
205
|
+
/* @__PURE__ */ jsx(Head, {}),
|
|
206
|
+
/* @__PURE__ */ jsx(Preview, { children: `Добро пожаловать в Intlayer!` }),
|
|
207
|
+
/* @__PURE__ */ jsx(Tailwind, { children: /* @__PURE__ */ jsx(Body, {
|
|
208
|
+
className: "m-auto px-2 font-sans",
|
|
209
|
+
children: /* @__PURE__ */ jsxs(Container, {
|
|
210
|
+
className: "mx-auto my-[40px] max-w-[465px] rounded-xl border border-[#eaeaea] border-solid bg-white p-[20px]",
|
|
211
|
+
children: [
|
|
212
|
+
/* @__PURE__ */ jsx(Section, {
|
|
213
|
+
className: "mt-[32px]",
|
|
214
|
+
children: /* @__PURE__ */ jsx(Img, {
|
|
215
|
+
src: "https://intlayer.org/apple-touch-icon.png",
|
|
216
|
+
width: "40",
|
|
217
|
+
height: "37",
|
|
218
|
+
alt: "Intlayer",
|
|
219
|
+
className: "mx-auto my-0"
|
|
220
|
+
})
|
|
221
|
+
}),
|
|
222
|
+
/* @__PURE__ */ jsxs(Heading, {
|
|
223
|
+
className: "mx-0 my-[30px] p-0 text-center font-normal text-[24px] text-black",
|
|
224
|
+
children: ["Добро пожаловать в ", /* @__PURE__ */ jsx("strong", { children: "Intlayer" })]
|
|
225
|
+
}),
|
|
226
|
+
/* @__PURE__ */ jsxs(Text, {
|
|
227
|
+
className: "text-[14px] text-black leading-[24px]",
|
|
228
|
+
children: [
|
|
229
|
+
"Здравствуйте, ",
|
|
230
|
+
username,
|
|
231
|
+
","
|
|
232
|
+
]
|
|
233
|
+
}),
|
|
234
|
+
/* @__PURE__ */ jsxs(Text, {
|
|
235
|
+
className: "text-[14px] text-black leading-[24px]",
|
|
236
|
+
children: [
|
|
237
|
+
"Мы рады видеть вас в нашей команде! Начните работу, войдя в свой аккаунт ",
|
|
238
|
+
/* @__PURE__ */ jsx("strong", { children: "Intlayer" }),
|
|
239
|
+
"."
|
|
240
|
+
]
|
|
241
|
+
}),
|
|
242
|
+
/* @__PURE__ */ jsx(Section, {
|
|
243
|
+
className: "my-[32px] text-center",
|
|
244
|
+
children: /* @__PURE__ */ jsx(Button, {
|
|
245
|
+
className: "rounded-md bg-[#000000] px-5 py-3 text-center font-semibold text-[12px] text-white no-underline",
|
|
246
|
+
href: loginLink,
|
|
247
|
+
children: "Войти в свой аккаунт"
|
|
248
|
+
})
|
|
249
|
+
}),
|
|
250
|
+
/* @__PURE__ */ jsx(Text, {
|
|
251
|
+
className: "text-[14px] text-black leading-[24px]",
|
|
252
|
+
children: "или скопируйте и вставьте этот URL в ваш браузер:"
|
|
253
|
+
}),
|
|
254
|
+
/* @__PURE__ */ jsx(Link, {
|
|
255
|
+
href: loginLink,
|
|
256
|
+
className: "text-[#8a8a8a] text-[10px] no-underline",
|
|
257
|
+
children: loginLink
|
|
258
|
+
}),
|
|
259
|
+
/* @__PURE__ */ jsx(Hr, { className: "mx-0 my-[26px] w-full border border-[#eaeaea] border-solid" }),
|
|
260
|
+
/* @__PURE__ */ jsx(Text, {
|
|
261
|
+
className: "text-[#666666] text-[12px] leading-[24px]",
|
|
262
|
+
children: "Если у вас есть вопросы или нужна помощь, не стесняйтесь отвечать на это письмо. Мы здесь, чтобы помочь!"
|
|
263
|
+
})
|
|
264
|
+
]
|
|
265
|
+
})
|
|
266
|
+
}) })
|
|
267
|
+
] });
|
|
268
|
+
};
|
|
269
|
+
const WelcomeEmailJA = ({ username, loginLink }) => {
|
|
270
|
+
return /* @__PURE__ */ jsxs(Html, { children: [
|
|
271
|
+
/* @__PURE__ */ jsx(Head, {}),
|
|
272
|
+
/* @__PURE__ */ jsx(Preview, { children: `Intlayerへようこそ!` }),
|
|
273
|
+
/* @__PURE__ */ jsx(Tailwind, { children: /* @__PURE__ */ jsx(Body, {
|
|
274
|
+
className: "m-auto px-2 font-sans",
|
|
275
|
+
children: /* @__PURE__ */ jsxs(Container, {
|
|
276
|
+
className: "mx-auto my-[40px] max-w-[465px] rounded-xl border border-[#eaeaea] border-solid bg-white p-[20px]",
|
|
277
|
+
children: [
|
|
278
|
+
/* @__PURE__ */ jsx(Section, {
|
|
279
|
+
className: "mt-[32px]",
|
|
280
|
+
children: /* @__PURE__ */ jsx(Img, {
|
|
281
|
+
src: "https://intlayer.org/apple-touch-icon.png",
|
|
282
|
+
width: "40",
|
|
283
|
+
height: "37",
|
|
284
|
+
alt: "Intlayer",
|
|
285
|
+
className: "mx-auto my-0"
|
|
286
|
+
})
|
|
287
|
+
}),
|
|
288
|
+
/* @__PURE__ */ jsxs(Heading, {
|
|
289
|
+
className: "mx-0 my-[30px] p-0 text-center font-normal text-[24px] text-black",
|
|
290
|
+
children: [/* @__PURE__ */ jsx("strong", { children: "Intlayer" }), "へようこそ"]
|
|
291
|
+
}),
|
|
292
|
+
/* @__PURE__ */ jsxs(Text, {
|
|
293
|
+
className: "text-[14px] text-black leading-[24px]",
|
|
294
|
+
children: [username, "様、こんにちは"]
|
|
295
|
+
}),
|
|
296
|
+
/* @__PURE__ */ jsxs(Text, {
|
|
297
|
+
className: "text-[14px] text-black leading-[24px]",
|
|
298
|
+
children: [
|
|
299
|
+
"Intlayerへようこそ!まずは",
|
|
300
|
+
/* @__PURE__ */ jsx("strong", { children: "Intlayer" }),
|
|
301
|
+
"アカウントにログインして始めましょう。"
|
|
302
|
+
]
|
|
303
|
+
}),
|
|
304
|
+
/* @__PURE__ */ jsx(Section, {
|
|
305
|
+
className: "my-[32px] text-center",
|
|
306
|
+
children: /* @__PURE__ */ jsx(Button, {
|
|
307
|
+
className: "rounded-md bg-[#000000] px-5 py-3 text-center font-semibold text-[12px] text-white no-underline",
|
|
308
|
+
href: loginLink,
|
|
309
|
+
children: "アカウントにログイン"
|
|
310
|
+
})
|
|
311
|
+
}),
|
|
312
|
+
/* @__PURE__ */ jsx(Text, {
|
|
313
|
+
className: "text-[14px] text-black leading-[24px]",
|
|
314
|
+
children: "または、以下のURLをブラウザにコピー&ペーストしてください:"
|
|
315
|
+
}),
|
|
316
|
+
/* @__PURE__ */ jsx(Link, {
|
|
317
|
+
href: loginLink,
|
|
318
|
+
className: "text-[#8a8a8a] text-[10px] no-underline",
|
|
319
|
+
children: loginLink
|
|
320
|
+
}),
|
|
321
|
+
/* @__PURE__ */ jsx(Hr, { className: "mx-0 my-[26px] w-full border border-[#eaeaea] border-solid" }),
|
|
322
|
+
/* @__PURE__ */ jsx(Text, {
|
|
323
|
+
className: "text-[#666666] text-[12px] leading-[24px]",
|
|
324
|
+
children: "ご不明な点やサポートが必要な場合は、このメールに返信してください。私たちがサポートいたします!"
|
|
325
|
+
})
|
|
326
|
+
]
|
|
327
|
+
})
|
|
328
|
+
}) })
|
|
329
|
+
] });
|
|
330
|
+
};
|
|
331
|
+
const WelcomeEmailKO = ({ username, loginLink }) => {
|
|
332
|
+
return /* @__PURE__ */ jsxs(Html, { children: [
|
|
333
|
+
/* @__PURE__ */ jsx(Head, {}),
|
|
334
|
+
/* @__PURE__ */ jsx(Preview, { children: `Intlayer에 오신 것을 환영합니다!` }),
|
|
335
|
+
/* @__PURE__ */ jsx(Tailwind, { children: /* @__PURE__ */ jsx(Body, {
|
|
336
|
+
className: "m-auto px-2 font-sans",
|
|
337
|
+
children: /* @__PURE__ */ jsxs(Container, {
|
|
338
|
+
className: "mx-auto my-[40px] max-w-[465px] rounded-xl border border-[#eaeaea] border-solid bg-white p-[20px]",
|
|
339
|
+
children: [
|
|
340
|
+
/* @__PURE__ */ jsx(Section, {
|
|
341
|
+
className: "mt-[32px]",
|
|
342
|
+
children: /* @__PURE__ */ jsx(Img, {
|
|
343
|
+
src: "https://intlayer.org/apple-touch-icon.png",
|
|
344
|
+
width: "40",
|
|
345
|
+
height: "37",
|
|
346
|
+
alt: "Intlayer",
|
|
347
|
+
className: "mx-auto my-0"
|
|
348
|
+
})
|
|
349
|
+
}),
|
|
350
|
+
/* @__PURE__ */ jsxs(Heading, {
|
|
351
|
+
className: "mx-0 my-[30px] p-0 text-center font-normal text-[24px] text-black",
|
|
352
|
+
children: [/* @__PURE__ */ jsx("strong", { children: "Intlayer" }), "에 오신 것을 환영합니다"]
|
|
353
|
+
}),
|
|
354
|
+
/* @__PURE__ */ jsxs(Text, {
|
|
355
|
+
className: "text-[14px] text-black leading-[24px]",
|
|
356
|
+
children: [
|
|
357
|
+
"안녕하세요 ",
|
|
358
|
+
username,
|
|
359
|
+
"님,"
|
|
360
|
+
]
|
|
361
|
+
}),
|
|
362
|
+
/* @__PURE__ */ jsxs(Text, {
|
|
363
|
+
className: "text-[14px] text-black leading-[24px]",
|
|
364
|
+
children: [
|
|
365
|
+
"가입을 진심으로 환영합니다! ",
|
|
366
|
+
/* @__PURE__ */ jsx("strong", { children: "Intlayer" }),
|
|
367
|
+
" 계정에 로그인하여 시작해 보세요."
|
|
368
|
+
]
|
|
369
|
+
}),
|
|
370
|
+
/* @__PURE__ */ jsx(Section, {
|
|
371
|
+
className: "my-[32px] text-center",
|
|
372
|
+
children: /* @__PURE__ */ jsx(Button, {
|
|
373
|
+
className: "rounded-md bg-[#000000] px-5 py-3 text-center font-semibold text-[12px] text-white no-underline",
|
|
374
|
+
href: loginLink,
|
|
375
|
+
children: "계정에 로그인하기"
|
|
376
|
+
})
|
|
377
|
+
}),
|
|
378
|
+
/* @__PURE__ */ jsx(Text, {
|
|
379
|
+
className: "text-[14px] text-black leading-[24px]",
|
|
380
|
+
children: "또는 다음 URL을 브라우저에 복사하여 붙여넣으세요:"
|
|
381
|
+
}),
|
|
382
|
+
/* @__PURE__ */ jsx(Link, {
|
|
383
|
+
href: loginLink,
|
|
384
|
+
className: "text-[#8a8a8a] text-[10px] no-underline",
|
|
385
|
+
children: loginLink
|
|
386
|
+
}),
|
|
387
|
+
/* @__PURE__ */ jsx(Hr, { className: "mx-0 my-[26px] w-full border border-[#eaeaea] border-solid" }),
|
|
388
|
+
/* @__PURE__ */ jsx(Text, {
|
|
389
|
+
className: "text-[#666666] text-[12px] leading-[24px]",
|
|
390
|
+
children: "궁금한 점이 있거나 도움이 필요하시면 이 이메일에 답장해 주세요. 저희가 도와드리겠습니다!"
|
|
391
|
+
})
|
|
392
|
+
]
|
|
393
|
+
})
|
|
394
|
+
}) })
|
|
395
|
+
] });
|
|
396
|
+
};
|
|
397
|
+
const WelcomeEmailZH = ({ username, loginLink }) => {
|
|
398
|
+
return /* @__PURE__ */ jsxs(Html, { children: [
|
|
399
|
+
/* @__PURE__ */ jsx(Head, {}),
|
|
400
|
+
/* @__PURE__ */ jsx(Preview, { children: `欢迎来到 Intlayer!` }),
|
|
401
|
+
/* @__PURE__ */ jsx(Tailwind, { children: /* @__PURE__ */ jsx(Body, {
|
|
402
|
+
className: "m-auto px-2 font-sans",
|
|
403
|
+
children: /* @__PURE__ */ jsxs(Container, {
|
|
404
|
+
className: "mx-auto my-[40px] max-w-[465px] rounded-xl border border-[#eaeaea] border-solid bg-white p-[20px]",
|
|
405
|
+
children: [
|
|
406
|
+
/* @__PURE__ */ jsx(Section, {
|
|
407
|
+
className: "mt-[32px]",
|
|
408
|
+
children: /* @__PURE__ */ jsx(Img, {
|
|
409
|
+
src: "https://intlayer.org/apple-touch-icon.png",
|
|
410
|
+
width: "40",
|
|
411
|
+
height: "37",
|
|
412
|
+
alt: "Intlayer",
|
|
413
|
+
className: "mx-auto my-0"
|
|
414
|
+
})
|
|
415
|
+
}),
|
|
416
|
+
/* @__PURE__ */ jsxs(Heading, {
|
|
417
|
+
className: "mx-0 my-[30px] p-0 text-center font-normal text-[24px] text-black",
|
|
418
|
+
children: ["欢迎来到 ", /* @__PURE__ */ jsx("strong", { children: "Intlayer" })]
|
|
419
|
+
}),
|
|
420
|
+
/* @__PURE__ */ jsxs(Text, {
|
|
421
|
+
className: "text-[14px] text-black leading-[24px]",
|
|
422
|
+
children: [username, ",您好!"]
|
|
423
|
+
}),
|
|
424
|
+
/* @__PURE__ */ jsxs(Text, {
|
|
425
|
+
className: "text-[14px] text-black leading-[24px]",
|
|
426
|
+
children: [
|
|
427
|
+
"我们很高兴您的加入!请登录您的 ",
|
|
428
|
+
/* @__PURE__ */ jsx("strong", { children: "Intlayer" }),
|
|
429
|
+
" ",
|
|
430
|
+
"账户开始使用。"
|
|
431
|
+
]
|
|
432
|
+
}),
|
|
433
|
+
/* @__PURE__ */ jsx(Section, {
|
|
434
|
+
className: "my-[32px] text-center",
|
|
435
|
+
children: /* @__PURE__ */ jsx(Button, {
|
|
436
|
+
className: "rounded-md bg-[#000000] px-5 py-3 text-center font-semibold text-[12px] text-white no-underline",
|
|
437
|
+
href: loginLink,
|
|
438
|
+
children: "登录您的账户"
|
|
439
|
+
})
|
|
440
|
+
}),
|
|
441
|
+
/* @__PURE__ */ jsx(Text, {
|
|
442
|
+
className: "text-[14px] text-black leading-[24px]",
|
|
443
|
+
children: "或者将此 URL 复制并粘贴到您的浏览器中:"
|
|
444
|
+
}),
|
|
445
|
+
/* @__PURE__ */ jsx(Link, {
|
|
446
|
+
href: loginLink,
|
|
447
|
+
className: "text-[#8a8a8a] text-[10px] no-underline",
|
|
448
|
+
children: loginLink
|
|
449
|
+
}),
|
|
450
|
+
/* @__PURE__ */ jsx(Hr, { className: "mx-0 my-[26px] w-full border border-[#eaeaea] border-solid" }),
|
|
451
|
+
/* @__PURE__ */ jsx(Text, {
|
|
452
|
+
className: "text-[#666666] text-[12px] leading-[24px]",
|
|
453
|
+
children: "如果您有任何问题或需要帮助,请随时回复此邮件。我们随时为您提供帮助!"
|
|
454
|
+
})
|
|
455
|
+
]
|
|
456
|
+
})
|
|
457
|
+
}) })
|
|
458
|
+
] });
|
|
459
|
+
};
|
|
460
|
+
const WelcomeEmailDE = ({ username, loginLink }) => {
|
|
461
|
+
return /* @__PURE__ */ jsxs(Html, { children: [
|
|
462
|
+
/* @__PURE__ */ jsx(Head, {}),
|
|
463
|
+
/* @__PURE__ */ jsx(Preview, { children: `Willkommen bei Intlayer!` }),
|
|
464
|
+
/* @__PURE__ */ jsx(Tailwind, { children: /* @__PURE__ */ jsx(Body, {
|
|
465
|
+
className: "m-auto px-2 font-sans",
|
|
466
|
+
children: /* @__PURE__ */ jsxs(Container, {
|
|
467
|
+
className: "mx-auto my-[40px] max-w-[465px] rounded-xl border border-[#eaeaea] border-solid bg-white p-[20px]",
|
|
468
|
+
children: [
|
|
469
|
+
/* @__PURE__ */ jsx(Section, {
|
|
470
|
+
className: "mt-[32px]",
|
|
471
|
+
children: /* @__PURE__ */ jsx(Img, {
|
|
472
|
+
src: "https://intlayer.org/apple-touch-icon.png",
|
|
473
|
+
width: "40",
|
|
474
|
+
height: "37",
|
|
475
|
+
alt: "Intlayer",
|
|
476
|
+
className: "mx-auto my-0"
|
|
477
|
+
})
|
|
478
|
+
}),
|
|
479
|
+
/* @__PURE__ */ jsxs(Heading, {
|
|
480
|
+
className: "mx-0 my-[30px] p-0 text-center font-normal text-[24px] text-black",
|
|
481
|
+
children: ["Willkommen bei ", /* @__PURE__ */ jsx("strong", { children: "Intlayer" })]
|
|
482
|
+
}),
|
|
483
|
+
/* @__PURE__ */ jsxs(Text, {
|
|
484
|
+
className: "text-[14px] text-black leading-[24px]",
|
|
485
|
+
children: [
|
|
486
|
+
"Hallo ",
|
|
487
|
+
username,
|
|
488
|
+
","
|
|
489
|
+
]
|
|
490
|
+
}),
|
|
491
|
+
/* @__PURE__ */ jsxs(Text, {
|
|
492
|
+
className: "text-[14px] text-black leading-[24px]",
|
|
493
|
+
children: [
|
|
494
|
+
"Wir freuen uns, Sie an Bord zu haben! Melden Sie sich in Ihrem",
|
|
495
|
+
/* @__PURE__ */ jsx("strong", { children: "Intlayer" }),
|
|
496
|
+
"-Konto an, um loszulegen."
|
|
497
|
+
]
|
|
498
|
+
}),
|
|
499
|
+
/* @__PURE__ */ jsx(Section, {
|
|
500
|
+
className: "my-[32px] text-center",
|
|
501
|
+
children: /* @__PURE__ */ jsx(Button, {
|
|
502
|
+
className: "rounded-md bg-[#000000] px-5 py-3 text-center font-semibold text-[12px] text-white no-underline",
|
|
503
|
+
href: loginLink,
|
|
504
|
+
children: "In Ihr Konto einloggen"
|
|
505
|
+
})
|
|
506
|
+
}),
|
|
507
|
+
/* @__PURE__ */ jsx(Text, {
|
|
508
|
+
className: "text-[14px] text-black leading-[24px]",
|
|
509
|
+
children: "oder kopieren Sie diese URL in Ihren Browser:"
|
|
510
|
+
}),
|
|
511
|
+
/* @__PURE__ */ jsx(Link, {
|
|
512
|
+
href: loginLink,
|
|
513
|
+
className: "text-[#8a8a8a] text-[10px] no-underline",
|
|
514
|
+
children: loginLink
|
|
515
|
+
}),
|
|
516
|
+
/* @__PURE__ */ jsx(Hr, { className: "mx-0 my-[26px] w-full border border-[#eaeaea] border-solid" }),
|
|
517
|
+
/* @__PURE__ */ jsx(Text, {
|
|
518
|
+
className: "text-[#666666] text-[12px] leading-[24px]",
|
|
519
|
+
children: "Wenn Sie Fragen haben oder Hilfe beim Einstieg benötigen, können Sie gerne auf diese E-Mail antworten. Wir sind für Sie da!"
|
|
520
|
+
})
|
|
521
|
+
]
|
|
522
|
+
})
|
|
523
|
+
}) })
|
|
524
|
+
] });
|
|
525
|
+
};
|
|
526
|
+
const WelcomeEmailAR = ({ username, loginLink }) => {
|
|
527
|
+
return /* @__PURE__ */ jsxs(Html, {
|
|
528
|
+
dir: "rtl",
|
|
529
|
+
children: [
|
|
530
|
+
/* @__PURE__ */ jsx(Head, {}),
|
|
531
|
+
/* @__PURE__ */ jsx(Preview, { children: `مرحباً بك في Intlayer!` }),
|
|
532
|
+
/* @__PURE__ */ jsx(Tailwind, { children: /* @__PURE__ */ jsx(Body, {
|
|
533
|
+
className: "m-auto px-2 font-sans",
|
|
534
|
+
children: /* @__PURE__ */ jsxs(Container, {
|
|
535
|
+
className: "mx-auto my-[40px] max-w-[465px] rounded-xl border border-[#eaeaea] border-solid bg-white p-[20px]",
|
|
536
|
+
children: [
|
|
537
|
+
/* @__PURE__ */ jsx(Section, {
|
|
538
|
+
className: "mt-[32px]",
|
|
539
|
+
children: /* @__PURE__ */ jsx(Img, {
|
|
540
|
+
src: "https://intlayer.org/apple-touch-icon.png",
|
|
541
|
+
width: "40",
|
|
542
|
+
height: "37",
|
|
543
|
+
alt: "Intlayer",
|
|
544
|
+
className: "mx-auto my-0"
|
|
545
|
+
})
|
|
546
|
+
}),
|
|
547
|
+
/* @__PURE__ */ jsxs(Heading, {
|
|
548
|
+
className: "mx-0 my-[30px] p-0 text-center font-normal text-[24px] text-black",
|
|
549
|
+
children: ["مرحباً بك في ", /* @__PURE__ */ jsx("strong", { children: "Intlayer" })]
|
|
550
|
+
}),
|
|
551
|
+
/* @__PURE__ */ jsxs(Text, {
|
|
552
|
+
className: "text-[14px] text-black leading-[24px]",
|
|
553
|
+
children: [
|
|
554
|
+
"أهلاً ",
|
|
555
|
+
username,
|
|
556
|
+
"،"
|
|
557
|
+
]
|
|
558
|
+
}),
|
|
559
|
+
/* @__PURE__ */ jsxs(Text, {
|
|
560
|
+
className: "text-[14px] text-black leading-[24px]",
|
|
561
|
+
children: [
|
|
562
|
+
"نحن متحمسون لانضمامك إلينا! ابدأ بتسجيل الدخول إلى حساب",
|
|
563
|
+
/* @__PURE__ */ jsx("strong", { children: "Intlayer" }),
|
|
564
|
+
" الخاص بك."
|
|
565
|
+
]
|
|
566
|
+
}),
|
|
567
|
+
/* @__PURE__ */ jsx(Section, {
|
|
568
|
+
className: "my-[32px] text-center",
|
|
569
|
+
children: /* @__PURE__ */ jsx(Button, {
|
|
570
|
+
className: "rounded-md bg-[#000000] px-5 py-3 text-center font-semibold text-[12px] text-white no-underline",
|
|
571
|
+
href: loginLink,
|
|
572
|
+
children: "تسجيل الدخول إلى حسابك"
|
|
573
|
+
})
|
|
574
|
+
}),
|
|
575
|
+
/* @__PURE__ */ jsx(Text, {
|
|
576
|
+
className: "text-[14px] text-black leading-[24px]",
|
|
577
|
+
children: "أو قم بنسخ ولصق هذا الرابط في متصفحك:"
|
|
578
|
+
}),
|
|
579
|
+
/* @__PURE__ */ jsx(Link, {
|
|
580
|
+
href: loginLink,
|
|
581
|
+
className: "text-[#8a8a8a] text-[10px] no-underline",
|
|
582
|
+
children: loginLink
|
|
583
|
+
}),
|
|
584
|
+
/* @__PURE__ */ jsx(Hr, { className: "mx-0 my-[26px] w-full border border-[#eaeaea] border-solid" }),
|
|
585
|
+
/* @__PURE__ */ jsx(Text, {
|
|
586
|
+
className: "text-[#666666] text-[12px] leading-[24px]",
|
|
587
|
+
children: "إذا كان لديك أي أسئلة أو كنت بحاجة إلى مساعدة، فلا تتردد في الرد على هذا البريد الإلكتروني. نحن هنا للمساعدة!"
|
|
588
|
+
})
|
|
589
|
+
]
|
|
590
|
+
})
|
|
591
|
+
}) })
|
|
592
|
+
]
|
|
593
|
+
});
|
|
594
|
+
};
|
|
595
|
+
const WelcomeEmailIT = ({ username, loginLink }) => {
|
|
596
|
+
return /* @__PURE__ */ jsxs(Html, { children: [
|
|
597
|
+
/* @__PURE__ */ jsx(Head, {}),
|
|
598
|
+
/* @__PURE__ */ jsx(Preview, { children: `Benvenuto in Intlayer!` }),
|
|
599
|
+
/* @__PURE__ */ jsx(Tailwind, { children: /* @__PURE__ */ jsx(Body, {
|
|
600
|
+
className: "m-auto px-2 font-sans",
|
|
601
|
+
children: /* @__PURE__ */ jsxs(Container, {
|
|
602
|
+
className: "mx-auto my-[40px] max-w-[465px] rounded-xl border border-[#eaeaea] border-solid bg-white p-[20px]",
|
|
603
|
+
children: [
|
|
604
|
+
/* @__PURE__ */ jsx(Section, {
|
|
605
|
+
className: "mt-[32px]",
|
|
606
|
+
children: /* @__PURE__ */ jsx(Img, {
|
|
607
|
+
src: "https://intlayer.org/apple-touch-icon.png",
|
|
608
|
+
width: "40",
|
|
609
|
+
height: "37",
|
|
610
|
+
alt: "Intlayer",
|
|
611
|
+
className: "mx-auto my-0"
|
|
612
|
+
})
|
|
613
|
+
}),
|
|
614
|
+
/* @__PURE__ */ jsxs(Heading, {
|
|
615
|
+
className: "mx-0 my-[30px] p-0 text-center font-normal text-[24px] text-black",
|
|
616
|
+
children: ["Benvenuto in ", /* @__PURE__ */ jsx("strong", { children: "Intlayer" })]
|
|
617
|
+
}),
|
|
618
|
+
/* @__PURE__ */ jsxs(Text, {
|
|
619
|
+
className: "text-[14px] text-black leading-[24px]",
|
|
620
|
+
children: [
|
|
621
|
+
"Ciao ",
|
|
622
|
+
username,
|
|
623
|
+
","
|
|
624
|
+
]
|
|
625
|
+
}),
|
|
626
|
+
/* @__PURE__ */ jsxs(Text, {
|
|
627
|
+
className: "text-[14px] text-black leading-[24px]",
|
|
628
|
+
children: [
|
|
629
|
+
"Siamo entusiasti di averti con noi! Inizia accedendo al tuo account ",
|
|
630
|
+
/* @__PURE__ */ jsx("strong", { children: "Intlayer" }),
|
|
631
|
+
"."
|
|
632
|
+
]
|
|
633
|
+
}),
|
|
634
|
+
/* @__PURE__ */ jsx(Section, {
|
|
635
|
+
className: "my-[32px] text-center",
|
|
636
|
+
children: /* @__PURE__ */ jsx(Button, {
|
|
637
|
+
className: "rounded-md bg-[#000000] px-5 py-3 text-center font-semibold text-[12px] text-white no-underline",
|
|
638
|
+
href: loginLink,
|
|
639
|
+
children: "Accedi al tuo account"
|
|
640
|
+
})
|
|
641
|
+
}),
|
|
642
|
+
/* @__PURE__ */ jsx(Text, {
|
|
643
|
+
className: "text-[14px] text-black leading-[24px]",
|
|
644
|
+
children: "o copia e incolla questo URL nel tuo browser:"
|
|
645
|
+
}),
|
|
646
|
+
/* @__PURE__ */ jsx(Link, {
|
|
647
|
+
href: loginLink,
|
|
648
|
+
className: "text-[#8a8a8a] text-[10px] no-underline",
|
|
649
|
+
children: loginLink
|
|
650
|
+
}),
|
|
651
|
+
/* @__PURE__ */ jsx(Hr, { className: "mx-0 my-[26px] w-full border border-[#eaeaea] border-solid" }),
|
|
652
|
+
/* @__PURE__ */ jsx(Text, {
|
|
653
|
+
className: "text-[#666666] text-[12px] leading-[24px]",
|
|
654
|
+
children: "Se hai domande o hai bisogno di aiuto per iniziare, non esitare a rispondere a questa e-mail. Siamo qui per aiutarti!"
|
|
655
|
+
})
|
|
656
|
+
]
|
|
657
|
+
})
|
|
658
|
+
}) })
|
|
659
|
+
] });
|
|
660
|
+
};
|
|
661
|
+
const WelcomeEmailEN_GB = ({ username, loginLink }) => {
|
|
662
|
+
return /* @__PURE__ */ jsxs(Html, { children: [
|
|
663
|
+
/* @__PURE__ */ jsx(Head, {}),
|
|
664
|
+
/* @__PURE__ */ jsx(Preview, { children: `Welcome to Intlayer!` }),
|
|
665
|
+
/* @__PURE__ */ jsx(Tailwind, { children: /* @__PURE__ */ jsx(Body, {
|
|
666
|
+
className: "m-auto px-2 font-sans",
|
|
667
|
+
children: /* @__PURE__ */ jsxs(Container, {
|
|
668
|
+
className: "mx-auto my-[40px] max-w-[465px] rounded-xl border border-[#eaeaea] border-solid bg-white p-[20px]",
|
|
669
|
+
children: [
|
|
670
|
+
/* @__PURE__ */ jsx(Section, {
|
|
671
|
+
className: "mt-[32px]",
|
|
672
|
+
children: /* @__PURE__ */ jsx(Img, {
|
|
673
|
+
src: "https://intlayer.org/apple-touch-icon.png",
|
|
674
|
+
width: "40",
|
|
675
|
+
height: "37",
|
|
676
|
+
alt: "Intlayer",
|
|
677
|
+
className: "mx-auto my-0"
|
|
678
|
+
})
|
|
679
|
+
}),
|
|
680
|
+
/* @__PURE__ */ jsxs(Heading, {
|
|
681
|
+
className: "mx-0 my-[30px] p-0 text-center font-normal text-[24px] text-black",
|
|
682
|
+
children: ["Welcome to ", /* @__PURE__ */ jsx("strong", { children: "Intlayer" })]
|
|
683
|
+
}),
|
|
684
|
+
/* @__PURE__ */ jsxs(Text, {
|
|
685
|
+
className: "text-[14px] text-black leading-[24px]",
|
|
686
|
+
children: [
|
|
687
|
+
"Hello ",
|
|
688
|
+
username,
|
|
689
|
+
","
|
|
690
|
+
]
|
|
691
|
+
}),
|
|
692
|
+
/* @__PURE__ */ jsxs(Text, {
|
|
693
|
+
className: "text-[14px] text-black leading-[24px]",
|
|
694
|
+
children: [
|
|
695
|
+
"We're excited to have you on board! Get started by logging in to your ",
|
|
696
|
+
/* @__PURE__ */ jsx("strong", { children: "Intlayer" }),
|
|
697
|
+
" account."
|
|
698
|
+
]
|
|
699
|
+
}),
|
|
700
|
+
/* @__PURE__ */ jsx(Section, {
|
|
701
|
+
className: "my-[32px] text-center",
|
|
702
|
+
children: /* @__PURE__ */ jsx(Button, {
|
|
703
|
+
className: "rounded-md bg-[#000000] px-5 py-3 text-center font-semibold text-[12px] text-white no-underline",
|
|
704
|
+
href: loginLink,
|
|
705
|
+
children: "Log In to Your Account"
|
|
706
|
+
})
|
|
707
|
+
}),
|
|
708
|
+
/* @__PURE__ */ jsx(Text, {
|
|
709
|
+
className: "text-[14px] text-black leading-[24px]",
|
|
710
|
+
children: "or copy and paste this URL into your browser:"
|
|
711
|
+
}),
|
|
712
|
+
/* @__PURE__ */ jsx(Link, {
|
|
713
|
+
href: loginLink,
|
|
714
|
+
className: "text-[#8a8a8a] text-[10px] no-underline",
|
|
715
|
+
children: loginLink
|
|
716
|
+
}),
|
|
717
|
+
/* @__PURE__ */ jsx(Hr, { className: "mx-0 my-[26px] w-full border border-[#eaeaea] border-solid" }),
|
|
718
|
+
/* @__PURE__ */ jsx(Text, {
|
|
719
|
+
className: "text-[#666666] text-[12px] leading-[24px]",
|
|
720
|
+
children: "If you have any questions or need help getting started, feel free to reply to this email. We're here to help!"
|
|
721
|
+
})
|
|
722
|
+
]
|
|
723
|
+
})
|
|
724
|
+
}) })
|
|
725
|
+
] });
|
|
726
|
+
};
|
|
727
|
+
const WelcomeEmailPT = ({ username, loginLink }) => {
|
|
728
|
+
return /* @__PURE__ */ jsxs(Html, { children: [
|
|
729
|
+
/* @__PURE__ */ jsx(Head, {}),
|
|
730
|
+
/* @__PURE__ */ jsx(Preview, { children: `Bem-vindo ao Intlayer!` }),
|
|
731
|
+
/* @__PURE__ */ jsx(Tailwind, { children: /* @__PURE__ */ jsx(Body, {
|
|
732
|
+
className: "m-auto px-2 font-sans",
|
|
733
|
+
children: /* @__PURE__ */ jsxs(Container, {
|
|
734
|
+
className: "mx-auto my-[40px] max-w-[465px] rounded-xl border border-[#eaeaea] border-solid bg-white p-[20px]",
|
|
735
|
+
children: [
|
|
736
|
+
/* @__PURE__ */ jsx(Section, {
|
|
737
|
+
className: "mt-[32px]",
|
|
738
|
+
children: /* @__PURE__ */ jsx(Img, {
|
|
739
|
+
src: "https://intlayer.org/apple-touch-icon.png",
|
|
740
|
+
width: "40",
|
|
741
|
+
height: "37",
|
|
742
|
+
alt: "Intlayer",
|
|
743
|
+
className: "mx-auto my-0"
|
|
744
|
+
})
|
|
745
|
+
}),
|
|
746
|
+
/* @__PURE__ */ jsxs(Heading, {
|
|
747
|
+
className: "mx-0 my-[30px] p-0 text-center font-normal text-[24px] text-black",
|
|
748
|
+
children: ["Bem-vindo ao ", /* @__PURE__ */ jsx("strong", { children: "Intlayer" })]
|
|
749
|
+
}),
|
|
750
|
+
/* @__PURE__ */ jsxs(Text, {
|
|
751
|
+
className: "text-[14px] text-black leading-[24px]",
|
|
752
|
+
children: [
|
|
753
|
+
"Olá ",
|
|
754
|
+
username,
|
|
755
|
+
","
|
|
756
|
+
]
|
|
757
|
+
}),
|
|
758
|
+
/* @__PURE__ */ jsxs(Text, {
|
|
759
|
+
className: "text-[14px] text-black leading-[24px]",
|
|
760
|
+
children: [
|
|
761
|
+
"Estamos felizes em ter você conosco! Comece fazendo login em sua conta ",
|
|
762
|
+
/* @__PURE__ */ jsx("strong", { children: "Intlayer" }),
|
|
763
|
+
"."
|
|
764
|
+
]
|
|
765
|
+
}),
|
|
766
|
+
/* @__PURE__ */ jsx(Section, {
|
|
767
|
+
className: "my-[32px] text-center",
|
|
768
|
+
children: /* @__PURE__ */ jsx(Button, {
|
|
769
|
+
className: "rounded-md bg-[#000000] px-5 py-3 text-center font-semibold text-[12px] text-white no-underline",
|
|
770
|
+
href: loginLink,
|
|
771
|
+
children: "Entrar em sua conta"
|
|
772
|
+
})
|
|
773
|
+
}),
|
|
774
|
+
/* @__PURE__ */ jsx(Text, {
|
|
775
|
+
className: "text-[14px] text-black leading-[24px]",
|
|
776
|
+
children: "ou copie e cole esta URL no seu navegador:"
|
|
777
|
+
}),
|
|
778
|
+
/* @__PURE__ */ jsx(Link, {
|
|
779
|
+
href: loginLink,
|
|
780
|
+
className: "text-[#8a8a8a] text-[10px] no-underline",
|
|
781
|
+
children: loginLink
|
|
782
|
+
}),
|
|
783
|
+
/* @__PURE__ */ jsx(Hr, { className: "mx-0 my-[26px] w-full border border-[#eaeaea] border-solid" }),
|
|
784
|
+
/* @__PURE__ */ jsx(Text, {
|
|
785
|
+
className: "text-[#666666] text-[12px] leading-[24px]",
|
|
786
|
+
children: "Se você tiver alguma dúvida ou precisar de ajuda para começar, sinta-se à vontade para responder a este e-mail. Estamos aqui para ajudar!"
|
|
787
|
+
})
|
|
788
|
+
]
|
|
789
|
+
})
|
|
790
|
+
}) })
|
|
791
|
+
] });
|
|
792
|
+
};
|
|
793
|
+
const WelcomeEmailHI = ({ username, loginLink }) => {
|
|
794
|
+
return /* @__PURE__ */ jsxs(Html, { children: [
|
|
795
|
+
/* @__PURE__ */ jsx(Head, {}),
|
|
796
|
+
/* @__PURE__ */ jsx(Preview, { children: `Intlayer में आपका स्वागत है!` }),
|
|
797
|
+
/* @__PURE__ */ jsx(Tailwind, { children: /* @__PURE__ */ jsx(Body, {
|
|
798
|
+
className: "m-auto px-2 font-sans",
|
|
799
|
+
children: /* @__PURE__ */ jsxs(Container, {
|
|
800
|
+
className: "mx-auto my-[40px] max-w-[465px] rounded-xl border border-[#eaeaea] border-solid bg-white p-[20px]",
|
|
801
|
+
children: [
|
|
802
|
+
/* @__PURE__ */ jsx(Section, {
|
|
803
|
+
className: "mt-[32px]",
|
|
804
|
+
children: /* @__PURE__ */ jsx(Img, {
|
|
805
|
+
src: "https://intlayer.org/apple-touch-icon.png",
|
|
806
|
+
width: "40",
|
|
807
|
+
height: "37",
|
|
808
|
+
alt: "Intlayer",
|
|
809
|
+
className: "mx-auto my-0"
|
|
810
|
+
})
|
|
811
|
+
}),
|
|
812
|
+
/* @__PURE__ */ jsxs(Heading, {
|
|
813
|
+
className: "mx-0 my-[30px] p-0 text-center font-normal text-[24px] text-black",
|
|
814
|
+
children: [/* @__PURE__ */ jsx("strong", { children: "Intlayer" }), " में आपका स्वागत है"]
|
|
815
|
+
}),
|
|
816
|
+
/* @__PURE__ */ jsxs(Text, {
|
|
817
|
+
className: "text-[14px] text-black leading-[24px]",
|
|
818
|
+
children: [
|
|
819
|
+
"नमस्ते ",
|
|
820
|
+
username,
|
|
821
|
+
","
|
|
822
|
+
]
|
|
823
|
+
}),
|
|
824
|
+
/* @__PURE__ */ jsxs(Text, {
|
|
825
|
+
className: "text-[14px] text-black leading-[24px]",
|
|
826
|
+
children: [
|
|
827
|
+
"हमें आपको अपने साथ जोड़कर खुशी हो रही है! अपने ",
|
|
828
|
+
/* @__PURE__ */ jsx("strong", { children: "Intlayer" }),
|
|
829
|
+
" ",
|
|
830
|
+
"खाते में लॉग इन करके शुरुआत करें।"
|
|
831
|
+
]
|
|
832
|
+
}),
|
|
833
|
+
/* @__PURE__ */ jsx(Section, {
|
|
834
|
+
className: "my-[32px] text-center",
|
|
835
|
+
children: /* @__PURE__ */ jsx(Button, {
|
|
836
|
+
className: "rounded-md bg-[#000000] px-5 py-3 text-center font-semibold text-[12px] text-white no-underline",
|
|
837
|
+
href: loginLink,
|
|
838
|
+
children: "अपने खाते में लॉग इन करें"
|
|
839
|
+
})
|
|
840
|
+
}),
|
|
841
|
+
/* @__PURE__ */ jsx(Text, {
|
|
842
|
+
className: "text-[14px] text-black leading-[24px]",
|
|
843
|
+
children: "या इस URL को कॉपी करके अपने ब्राउज़र में पेस्ट करें:"
|
|
844
|
+
}),
|
|
845
|
+
/* @__PURE__ */ jsx(Link, {
|
|
846
|
+
href: loginLink,
|
|
847
|
+
className: "text-[#8a8a8a] text-[10px] no-underline",
|
|
848
|
+
children: loginLink
|
|
849
|
+
}),
|
|
850
|
+
/* @__PURE__ */ jsx(Hr, { className: "mx-0 my-[26px] w-full border border-[#eaeaea] border-solid" }),
|
|
851
|
+
/* @__PURE__ */ jsx(Text, {
|
|
852
|
+
className: "text-[#666666] text-[12px] leading-[24px]",
|
|
853
|
+
children: "यदि आपके कोई प्रश्न हैं या शुरुआत करने में मदद चाहिए, तो बेझिझक इस ईमेल का उत्तर दें। हम आपकी मदद के लिए यहाँ हैं!"
|
|
854
|
+
})
|
|
855
|
+
]
|
|
856
|
+
})
|
|
857
|
+
}) })
|
|
858
|
+
] });
|
|
859
|
+
};
|
|
860
|
+
const WelcomeEmailTR = ({ username, loginLink }) => {
|
|
861
|
+
return /* @__PURE__ */ jsxs(Html, { children: [
|
|
862
|
+
/* @__PURE__ */ jsx(Head, {}),
|
|
863
|
+
/* @__PURE__ */ jsx(Preview, { children: `Intlayer'a Hoş Geldiniz!` }),
|
|
864
|
+
/* @__PURE__ */ jsx(Tailwind, { children: /* @__PURE__ */ jsx(Body, {
|
|
865
|
+
className: "m-auto px-2 font-sans",
|
|
866
|
+
children: /* @__PURE__ */ jsxs(Container, {
|
|
867
|
+
className: "mx-auto my-[40px] max-w-[465px] rounded-xl border border-[#eaeaea] border-solid bg-white p-[20px]",
|
|
868
|
+
children: [
|
|
869
|
+
/* @__PURE__ */ jsx(Section, {
|
|
870
|
+
className: "mt-[32px]",
|
|
871
|
+
children: /* @__PURE__ */ jsx(Img, {
|
|
872
|
+
src: "https://intlayer.org/apple-touch-icon.png",
|
|
873
|
+
width: "40",
|
|
874
|
+
height: "37",
|
|
875
|
+
alt: "Intlayer",
|
|
876
|
+
className: "mx-auto my-0"
|
|
877
|
+
})
|
|
878
|
+
}),
|
|
879
|
+
/* @__PURE__ */ jsxs(Heading, {
|
|
880
|
+
className: "mx-0 my-[30px] p-0 text-center font-normal text-[24px] text-black",
|
|
881
|
+
children: [/* @__PURE__ */ jsx("strong", { children: "Intlayer" }), "'a Hoş Geldiniz"]
|
|
882
|
+
}),
|
|
883
|
+
/* @__PURE__ */ jsxs(Text, {
|
|
884
|
+
className: "text-[14px] text-black leading-[24px]",
|
|
885
|
+
children: [
|
|
886
|
+
"Merhaba ",
|
|
887
|
+
username,
|
|
888
|
+
","
|
|
889
|
+
]
|
|
890
|
+
}),
|
|
891
|
+
/* @__PURE__ */ jsxs(Text, {
|
|
892
|
+
className: "text-[14px] text-black leading-[24px]",
|
|
893
|
+
children: [
|
|
894
|
+
"Sizi aramızda görmekten heyecan duyuyoruz!",
|
|
895
|
+
" ",
|
|
896
|
+
/* @__PURE__ */ jsx("strong", { children: "Intlayer" }),
|
|
897
|
+
" hesabınıza giriş yaparak başlayın."
|
|
898
|
+
]
|
|
899
|
+
}),
|
|
900
|
+
/* @__PURE__ */ jsx(Section, {
|
|
901
|
+
className: "my-[32px] text-center",
|
|
902
|
+
children: /* @__PURE__ */ jsx(Button, {
|
|
903
|
+
className: "rounded-md bg-[#000000] px-5 py-3 text-center font-semibold text-[12px] text-white no-underline",
|
|
904
|
+
href: loginLink,
|
|
905
|
+
children: "Hesabınıza Giriş Yapın"
|
|
906
|
+
})
|
|
907
|
+
}),
|
|
908
|
+
/* @__PURE__ */ jsx(Text, {
|
|
909
|
+
className: "text-[14px] text-black leading-[24px]",
|
|
910
|
+
children: "veya bu URL'yi kopyalayıp tarayıcınıza yapıştırın:"
|
|
911
|
+
}),
|
|
912
|
+
/* @__PURE__ */ jsx(Link, {
|
|
913
|
+
href: loginLink,
|
|
914
|
+
className: "text-[#8a8a8a] text-[10px] no-underline",
|
|
915
|
+
children: loginLink
|
|
916
|
+
}),
|
|
917
|
+
/* @__PURE__ */ jsx(Hr, { className: "mx-0 my-[26px] w-full border border-[#eaeaea] border-solid" }),
|
|
918
|
+
/* @__PURE__ */ jsx(Text, {
|
|
919
|
+
className: "text-[#666666] text-[12px] leading-[24px]",
|
|
920
|
+
children: "Herhangi bir sorunuz varsa veya başlamak için yardıma ihtiyacınız olursa, bu e-postayı yanıtlamaktan çekinmeyin. Yardım etmek için buradayız!"
|
|
921
|
+
})
|
|
922
|
+
]
|
|
923
|
+
})
|
|
924
|
+
}) })
|
|
925
|
+
] });
|
|
926
|
+
};
|
|
927
|
+
const WelcomeEmailPL = ({ username, loginLink }) => {
|
|
928
|
+
return /* @__PURE__ */ jsxs(Html, { children: [
|
|
929
|
+
/* @__PURE__ */ jsx(Head, {}),
|
|
930
|
+
/* @__PURE__ */ jsx(Preview, { children: `Witaj w Intlayer!` }),
|
|
931
|
+
/* @__PURE__ */ jsx(Tailwind, { children: /* @__PURE__ */ jsx(Body, {
|
|
932
|
+
className: "m-auto px-2 font-sans",
|
|
933
|
+
children: /* @__PURE__ */ jsxs(Container, {
|
|
934
|
+
className: "mx-auto my-[40px] max-w-[465px] rounded-xl border border-[#eaeaea] border-solid bg-white p-[20px]",
|
|
935
|
+
children: [
|
|
936
|
+
/* @__PURE__ */ jsx(Section, {
|
|
937
|
+
className: "mt-[32px]",
|
|
938
|
+
children: /* @__PURE__ */ jsx(Img, {
|
|
939
|
+
src: "https://intlayer.org/apple-touch-icon.png",
|
|
940
|
+
width: "40",
|
|
941
|
+
height: "37",
|
|
942
|
+
alt: "Intlayer",
|
|
943
|
+
className: "mx-auto my-0"
|
|
944
|
+
})
|
|
945
|
+
}),
|
|
946
|
+
/* @__PURE__ */ jsxs(Heading, {
|
|
947
|
+
className: "mx-0 my-[30px] p-0 text-center font-normal text-[24px] text-black",
|
|
948
|
+
children: ["Witaj w ", /* @__PURE__ */ jsx("strong", { children: "Intlayer" })]
|
|
949
|
+
}),
|
|
950
|
+
/* @__PURE__ */ jsxs(Text, {
|
|
951
|
+
className: "text-[14px] text-black leading-[24px]",
|
|
952
|
+
children: [
|
|
953
|
+
"Cześć ",
|
|
954
|
+
username,
|
|
955
|
+
","
|
|
956
|
+
]
|
|
957
|
+
}),
|
|
958
|
+
/* @__PURE__ */ jsxs(Text, {
|
|
959
|
+
className: "text-[14px] text-black leading-[24px]",
|
|
960
|
+
children: [
|
|
961
|
+
"Cieszymy się, że jesteś z nami! Zacznij od zalogowania się na swoje konto ",
|
|
962
|
+
/* @__PURE__ */ jsx("strong", { children: "Intlayer" }),
|
|
963
|
+
"."
|
|
964
|
+
]
|
|
965
|
+
}),
|
|
966
|
+
/* @__PURE__ */ jsx(Section, {
|
|
967
|
+
className: "my-[32px] text-center",
|
|
968
|
+
children: /* @__PURE__ */ jsx(Button, {
|
|
969
|
+
className: "rounded-md bg-[#000000] px-5 py-3 text-center font-semibold text-[12px] text-white no-underline",
|
|
970
|
+
href: loginLink,
|
|
971
|
+
children: "Zaloguj się do swojego konta"
|
|
972
|
+
})
|
|
973
|
+
}),
|
|
974
|
+
/* @__PURE__ */ jsx(Text, {
|
|
975
|
+
className: "text-[14px] text-black leading-[24px]",
|
|
976
|
+
children: "lub skopiuj i wklej ten adres URL do swojej przeglądarki:"
|
|
977
|
+
}),
|
|
978
|
+
/* @__PURE__ */ jsx(Link, {
|
|
979
|
+
href: loginLink,
|
|
980
|
+
className: "text-[#8a8a8a] text-[10px] no-underline",
|
|
981
|
+
children: loginLink
|
|
982
|
+
}),
|
|
983
|
+
/* @__PURE__ */ jsx(Hr, { className: "mx-0 my-[26px] w-full border border-[#eaeaea] border-solid" }),
|
|
984
|
+
/* @__PURE__ */ jsx(Text, {
|
|
985
|
+
className: "text-[#666666] text-[12px] leading-[24px]",
|
|
986
|
+
children: "Jeśli masz jakieś pytania lub potrzebujesz pomocy na początek, śmiało odpowiedz na ten e-mail. Jesteśmy tutaj, aby pomóc!"
|
|
987
|
+
})
|
|
988
|
+
]
|
|
989
|
+
})
|
|
990
|
+
}) })
|
|
991
|
+
] });
|
|
992
|
+
};
|
|
993
|
+
const WelcomeEmailID = ({ username, loginLink }) => {
|
|
994
|
+
return /* @__PURE__ */ jsxs(Html, { children: [
|
|
995
|
+
/* @__PURE__ */ jsx(Head, {}),
|
|
996
|
+
/* @__PURE__ */ jsx(Preview, { children: `Selamat datang di Intlayer!` }),
|
|
997
|
+
/* @__PURE__ */ jsx(Tailwind, { children: /* @__PURE__ */ jsx(Body, {
|
|
998
|
+
className: "m-auto px-2 font-sans",
|
|
999
|
+
children: /* @__PURE__ */ jsxs(Container, {
|
|
1000
|
+
className: "mx-auto my-[40px] max-w-[465px] rounded-xl border border-[#eaeaea] border-solid bg-white p-[20px]",
|
|
1001
|
+
children: [
|
|
1002
|
+
/* @__PURE__ */ jsx(Section, {
|
|
1003
|
+
className: "mt-[32px]",
|
|
1004
|
+
children: /* @__PURE__ */ jsx(Img, {
|
|
1005
|
+
src: "https://intlayer.org/apple-touch-icon.png",
|
|
1006
|
+
width: "40",
|
|
1007
|
+
height: "37",
|
|
1008
|
+
alt: "Intlayer",
|
|
1009
|
+
className: "mx-auto my-0"
|
|
1010
|
+
})
|
|
1011
|
+
}),
|
|
1012
|
+
/* @__PURE__ */ jsxs(Heading, {
|
|
1013
|
+
className: "mx-0 my-[30px] p-0 text-center font-normal text-[24px] text-black",
|
|
1014
|
+
children: ["Selamat datang di ", /* @__PURE__ */ jsx("strong", { children: "Intlayer" })]
|
|
1015
|
+
}),
|
|
1016
|
+
/* @__PURE__ */ jsxs(Text, {
|
|
1017
|
+
className: "text-[14px] text-black leading-[24px]",
|
|
1018
|
+
children: [
|
|
1019
|
+
"Halo ",
|
|
1020
|
+
username,
|
|
1021
|
+
","
|
|
1022
|
+
]
|
|
1023
|
+
}),
|
|
1024
|
+
/* @__PURE__ */ jsxs(Text, {
|
|
1025
|
+
className: "text-[14px] text-black leading-[24px]",
|
|
1026
|
+
children: [
|
|
1027
|
+
"Kami senang Anda bergabung! Mulailah dengan masuk ke akun",
|
|
1028
|
+
/* @__PURE__ */ jsx("strong", { children: "Intlayer" }),
|
|
1029
|
+
" Anda."
|
|
1030
|
+
]
|
|
1031
|
+
}),
|
|
1032
|
+
/* @__PURE__ */ jsx(Section, {
|
|
1033
|
+
className: "my-[32px] text-center",
|
|
1034
|
+
children: /* @__PURE__ */ jsx(Button, {
|
|
1035
|
+
className: "rounded-md bg-[#000000] px-5 py-3 text-center font-semibold text-[12px] text-white no-underline",
|
|
1036
|
+
href: loginLink,
|
|
1037
|
+
children: "Masuk ke Akun Anda"
|
|
1038
|
+
})
|
|
1039
|
+
}),
|
|
1040
|
+
/* @__PURE__ */ jsx(Text, {
|
|
1041
|
+
className: "text-[14px] text-black leading-[24px]",
|
|
1042
|
+
children: "atau salin dan tempel URL ini ke browser Anda:"
|
|
1043
|
+
}),
|
|
1044
|
+
/* @__PURE__ */ jsx(Link, {
|
|
1045
|
+
href: loginLink,
|
|
1046
|
+
className: "text-[#8a8a8a] text-[10px] no-underline",
|
|
1047
|
+
children: loginLink
|
|
1048
|
+
}),
|
|
1049
|
+
/* @__PURE__ */ jsx(Hr, { className: "mx-0 my-[26px] w-full border border-[#eaeaea] border-solid" }),
|
|
1050
|
+
/* @__PURE__ */ jsx(Text, {
|
|
1051
|
+
className: "text-[#666666] text-[12px] leading-[24px]",
|
|
1052
|
+
children: "Jika Anda memiliki pertanyaan atau butuh bantuan untuk memulai, jangan ragu untuk membalas email ini. Kami di sini untuk membantu!"
|
|
1053
|
+
})
|
|
1054
|
+
]
|
|
1055
|
+
})
|
|
1056
|
+
}) })
|
|
1057
|
+
] });
|
|
1058
|
+
};
|
|
1059
|
+
const WelcomeEmailVI = ({ username, loginLink }) => {
|
|
1060
|
+
return /* @__PURE__ */ jsxs(Html, { children: [
|
|
1061
|
+
/* @__PURE__ */ jsx(Head, {}),
|
|
1062
|
+
/* @__PURE__ */ jsx(Preview, { children: `Chào mừng bạn đến với Intlayer!` }),
|
|
1063
|
+
/* @__PURE__ */ jsx(Tailwind, { children: /* @__PURE__ */ jsx(Body, {
|
|
1064
|
+
className: "m-auto px-2 font-sans",
|
|
1065
|
+
children: /* @__PURE__ */ jsxs(Container, {
|
|
1066
|
+
className: "mx-auto my-[40px] max-w-[465px] rounded-xl border border-[#eaeaea] border-solid bg-white p-[20px]",
|
|
1067
|
+
children: [
|
|
1068
|
+
/* @__PURE__ */ jsx(Section, {
|
|
1069
|
+
className: "mt-[32px]",
|
|
1070
|
+
children: /* @__PURE__ */ jsx(Img, {
|
|
1071
|
+
src: "https://intlayer.org/apple-touch-icon.png",
|
|
1072
|
+
width: "40",
|
|
1073
|
+
height: "37",
|
|
1074
|
+
alt: "Intlayer",
|
|
1075
|
+
className: "mx-auto my-0"
|
|
1076
|
+
})
|
|
1077
|
+
}),
|
|
1078
|
+
/* @__PURE__ */ jsxs(Heading, {
|
|
1079
|
+
className: "mx-0 my-[30px] p-0 text-center font-normal text-[24px] text-black",
|
|
1080
|
+
children: ["Chào mừng bạn đến với ", /* @__PURE__ */ jsx("strong", { children: "Intlayer" })]
|
|
1081
|
+
}),
|
|
1082
|
+
/* @__PURE__ */ jsxs(Text, {
|
|
1083
|
+
className: "text-[14px] text-black leading-[24px]",
|
|
1084
|
+
children: [
|
|
1085
|
+
"Xin chào ",
|
|
1086
|
+
username,
|
|
1087
|
+
","
|
|
1088
|
+
]
|
|
1089
|
+
}),
|
|
1090
|
+
/* @__PURE__ */ jsxs(Text, {
|
|
1091
|
+
className: "text-[14px] text-black leading-[24px]",
|
|
1092
|
+
children: [
|
|
1093
|
+
"Chúng tôi rất vui mừng khi có bạn đồng hành! Hãy bắt đầu bằng cách đăng nhập vào tài khoản ",
|
|
1094
|
+
/* @__PURE__ */ jsx("strong", { children: "Intlayer" }),
|
|
1095
|
+
" của bạn."
|
|
1096
|
+
]
|
|
1097
|
+
}),
|
|
1098
|
+
/* @__PURE__ */ jsx(Section, {
|
|
1099
|
+
className: "my-[32px] text-center",
|
|
1100
|
+
children: /* @__PURE__ */ jsx(Button, {
|
|
1101
|
+
className: "rounded-md bg-[#000000] px-5 py-3 text-center font-semibold text-[12px] text-white no-underline",
|
|
1102
|
+
href: loginLink,
|
|
1103
|
+
children: "Đăng nhập vào tài khoản của bạn"
|
|
1104
|
+
})
|
|
1105
|
+
}),
|
|
1106
|
+
/* @__PURE__ */ jsx(Text, {
|
|
1107
|
+
className: "text-[14px] text-black leading-[24px]",
|
|
1108
|
+
children: "hoặc sao chép và dán URL này vào trình duyệt của bạn:"
|
|
1109
|
+
}),
|
|
1110
|
+
/* @__PURE__ */ jsx(Link, {
|
|
1111
|
+
href: loginLink,
|
|
1112
|
+
className: "text-[#8a8a8a] text-[10px] no-underline",
|
|
1113
|
+
children: loginLink
|
|
1114
|
+
}),
|
|
1115
|
+
/* @__PURE__ */ jsx(Hr, { className: "mx-0 my-[26px] w-full border border-[#eaeaea] border-solid" }),
|
|
1116
|
+
/* @__PURE__ */ jsx(Text, {
|
|
1117
|
+
className: "text-[#666666] text-[12px] leading-[24px]",
|
|
1118
|
+
children: "Nếu bạn có bất kỳ câu hỏi nào hoặc cần trợ giúp để bắt đầu, đừng ngần ngại trả lời email này. Chúng tôi luôn sẵn sàng hỗ trợ bạn!"
|
|
1119
|
+
})
|
|
1120
|
+
]
|
|
1121
|
+
})
|
|
1122
|
+
}) })
|
|
1123
|
+
] });
|
|
1124
|
+
};
|
|
1125
|
+
const WelcomeEmailUK = ({ username, loginLink }) => {
|
|
1126
|
+
return /* @__PURE__ */ jsxs(Html, { children: [
|
|
1127
|
+
/* @__PURE__ */ jsx(Head, {}),
|
|
1128
|
+
/* @__PURE__ */ jsx(Preview, { children: `Ласкаво просимо до Intlayer!` }),
|
|
1129
|
+
/* @__PURE__ */ jsx(Tailwind, { children: /* @__PURE__ */ jsx(Body, {
|
|
1130
|
+
className: "m-auto px-2 font-sans",
|
|
1131
|
+
children: /* @__PURE__ */ jsxs(Container, {
|
|
1132
|
+
className: "mx-auto my-[40px] max-w-[465px] rounded-xl border border-[#eaeaea] border-solid bg-white p-[20px]",
|
|
1133
|
+
children: [
|
|
1134
|
+
/* @__PURE__ */ jsx(Section, {
|
|
1135
|
+
className: "mt-[32px]",
|
|
1136
|
+
children: /* @__PURE__ */ jsx(Img, {
|
|
1137
|
+
src: "https://intlayer.org/apple-touch-icon.png",
|
|
1138
|
+
width: "40",
|
|
1139
|
+
height: "37",
|
|
1140
|
+
alt: "Intlayer",
|
|
1141
|
+
className: "mx-auto my-0"
|
|
1142
|
+
})
|
|
1143
|
+
}),
|
|
1144
|
+
/* @__PURE__ */ jsxs(Heading, {
|
|
1145
|
+
className: "mx-0 my-[30px] p-0 text-center font-normal text-[24px] text-black",
|
|
1146
|
+
children: ["Ласкаво просимо до ", /* @__PURE__ */ jsx("strong", { children: "Intlayer" })]
|
|
1147
|
+
}),
|
|
1148
|
+
/* @__PURE__ */ jsxs(Text, {
|
|
1149
|
+
className: "text-[14px] text-black leading-[24px]",
|
|
1150
|
+
children: [
|
|
1151
|
+
"Вітаємо, ",
|
|
1152
|
+
username,
|
|
1153
|
+
","
|
|
1154
|
+
]
|
|
1155
|
+
}),
|
|
1156
|
+
/* @__PURE__ */ jsxs(Text, {
|
|
1157
|
+
className: "text-[14px] text-black leading-[24px]",
|
|
1158
|
+
children: [
|
|
1159
|
+
"Ми раді бачити вас у нашій команді! Почніть роботу, увійшовши у свій аккаунт ",
|
|
1160
|
+
/* @__PURE__ */ jsx("strong", { children: "Intlayer" }),
|
|
1161
|
+
"."
|
|
1162
|
+
]
|
|
1163
|
+
}),
|
|
1164
|
+
/* @__PURE__ */ jsx(Section, {
|
|
1165
|
+
className: "my-[32px] text-center",
|
|
1166
|
+
children: /* @__PURE__ */ jsx(Button, {
|
|
1167
|
+
className: "rounded-md bg-[#000000] px-5 py-3 text-center font-semibold text-[12px] text-white no-underline",
|
|
1168
|
+
href: loginLink,
|
|
1169
|
+
children: "Увійти у свій аккаунт"
|
|
1170
|
+
})
|
|
1171
|
+
}),
|
|
1172
|
+
/* @__PURE__ */ jsx(Text, {
|
|
1173
|
+
className: "text-[14px] text-black leading-[24px]",
|
|
1174
|
+
children: "або скопіюйте та вставте це посилання у ваш браузер:"
|
|
1175
|
+
}),
|
|
1176
|
+
/* @__PURE__ */ jsx(Link, {
|
|
1177
|
+
href: loginLink,
|
|
1178
|
+
className: "text-[#8a8a8a] text-[10px] no-underline",
|
|
1179
|
+
children: loginLink
|
|
1180
|
+
}),
|
|
1181
|
+
/* @__PURE__ */ jsx(Hr, { className: "mx-0 my-[26px] w-full border border-[#eaeaea] border-solid" }),
|
|
1182
|
+
/* @__PURE__ */ jsx(Text, {
|
|
1183
|
+
className: "text-[#666666] text-[12px] leading-[24px]",
|
|
1184
|
+
children: "Якщо у вас виникли запитання або потрібна допомога, не соромтеся відповідати на цей лист. Ми тут, щоб допомогти!"
|
|
1185
|
+
})
|
|
1186
|
+
]
|
|
1187
|
+
})
|
|
1188
|
+
}) })
|
|
1189
|
+
] });
|
|
1190
|
+
};
|
|
203
1191
|
const PreviewProps = {
|
|
204
1192
|
username: "alanturing",
|
|
205
1193
|
loginLink: "https://intlayer.org/login"
|
|
@@ -207,7 +1195,22 @@ const PreviewProps = {
|
|
|
207
1195
|
WelcomeEmailEN.PreviewProps = PreviewProps;
|
|
208
1196
|
WelcomeEmailFR.PreviewProps = PreviewProps;
|
|
209
1197
|
WelcomeEmailES.PreviewProps = PreviewProps;
|
|
1198
|
+
WelcomeEmailRU.PreviewProps = PreviewProps;
|
|
1199
|
+
WelcomeEmailJA.PreviewProps = PreviewProps;
|
|
1200
|
+
WelcomeEmailKO.PreviewProps = PreviewProps;
|
|
1201
|
+
WelcomeEmailZH.PreviewProps = PreviewProps;
|
|
1202
|
+
WelcomeEmailDE.PreviewProps = PreviewProps;
|
|
1203
|
+
WelcomeEmailAR.PreviewProps = PreviewProps;
|
|
1204
|
+
WelcomeEmailIT.PreviewProps = PreviewProps;
|
|
1205
|
+
WelcomeEmailEN_GB.PreviewProps = PreviewProps;
|
|
1206
|
+
WelcomeEmailPT.PreviewProps = PreviewProps;
|
|
1207
|
+
WelcomeEmailHI.PreviewProps = PreviewProps;
|
|
1208
|
+
WelcomeEmailTR.PreviewProps = PreviewProps;
|
|
1209
|
+
WelcomeEmailPL.PreviewProps = PreviewProps;
|
|
1210
|
+
WelcomeEmailID.PreviewProps = PreviewProps;
|
|
1211
|
+
WelcomeEmailVI.PreviewProps = PreviewProps;
|
|
1212
|
+
WelcomeEmailUK.PreviewProps = PreviewProps;
|
|
210
1213
|
|
|
211
1214
|
//#endregion
|
|
212
|
-
export { WelcomeEmailEN, WelcomeEmailES, WelcomeEmailFR };
|
|
1215
|
+
export { WelcomeEmailAR, WelcomeEmailDE, WelcomeEmailEN, WelcomeEmailEN_GB, WelcomeEmailES, WelcomeEmailFR, WelcomeEmailHI, WelcomeEmailID, WelcomeEmailIT, WelcomeEmailJA, WelcomeEmailKO, WelcomeEmailPL, WelcomeEmailPT, WelcomeEmailRU, WelcomeEmailTR, WelcomeEmailUK, WelcomeEmailVI, WelcomeEmailZH };
|
|
213
1216
|
//# sourceMappingURL=Welcome.mjs.map
|