brookmind-emails 0.1.9 → 0.1.11
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.
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"WelcomeEmail.d.ts","sourceRoot":"","sources":["../../../src/modelfy/templates/WelcomeEmail.tsx"],"names":[],"mappings":"AAeA,MAAM,WAAW,iBAAiB;IAChC,KAAK,EAAE,MAAM,CAAC;CACf;
|
|
1
|
+
{"version":3,"file":"WelcomeEmail.d.ts","sourceRoot":"","sources":["../../../src/modelfy/templates/WelcomeEmail.tsx"],"names":[],"mappings":"AAeA,MAAM,WAAW,iBAAiB;IAChC,KAAK,EAAE,MAAM,CAAC;CACf;AAmVD,wBAAgB,YAAY,CAAC,EAAE,KAA0B,EAAE,EAAE,iBAAiB,2CA+P7E;AAED,eAAe,YAAY,CAAC"}
|
|
@@ -254,6 +254,7 @@ const styles = {
|
|
|
254
254
|
// Image pools for random selection
|
|
255
255
|
const campaignImages = Array.from({ length: 33 }, (_, i) => `https://bucket.modelfy.ai/app-media/campaign/campaign${i + 1}.jpeg`);
|
|
256
256
|
const campaignProImages = Array.from({ length: 15 }, (_, i) => `https://bucket.modelfy.ai/app-media/campaign-pro/campaign-pro-${i + 1}.jpg`);
|
|
257
|
+
const studioImages = Array.from({ length: 31 }, (_, i) => `https://bucket.modelfy.ai/app-media/studio/studio${i + 1}.jpeg`);
|
|
257
258
|
const colorSwapImages = Array.from({ length: 10 }, (_, i) => `https://modelfy.ai/images/color-swap/studio-color-change${i + 1}.jpg`);
|
|
258
259
|
const modelImages = [
|
|
259
260
|
"https://modelfy.ai/images/result-model-1.jpg",
|
|
@@ -288,7 +289,7 @@ const features = [
|
|
|
288
289
|
titleHighlight: "Product",
|
|
289
290
|
titleAfter: "Shots",
|
|
290
291
|
description: "Clean backgrounds, perfect lighting. E-commerce ready in seconds.",
|
|
291
|
-
getImage: () => getRandomImage(
|
|
292
|
+
getImage: () => getRandomImage(studioImages),
|
|
292
293
|
isVideo: false,
|
|
293
294
|
},
|
|
294
295
|
{
|
|
@@ -319,15 +320,6 @@ const features = [
|
|
|
319
320
|
getImage: () => "https://bucket.modelfy.ai/app-media/emails/subtitles.png",
|
|
320
321
|
isVideo: false,
|
|
321
322
|
},
|
|
322
|
-
{
|
|
323
|
-
eyebrow: "EXPORT",
|
|
324
|
-
titleBefore: "Every",
|
|
325
|
-
titleHighlight: "Format",
|
|
326
|
-
titleAfter: "You Need",
|
|
327
|
-
description: "Stories, Reels, Posts, Square, Landscape, Portrait. Up to 4K resolution.",
|
|
328
|
-
getImage: () => getRandomImage(campaignProImages),
|
|
329
|
-
isVideo: false,
|
|
330
|
-
},
|
|
331
323
|
];
|
|
332
324
|
export function WelcomeEmail({ email = "user@example.com" }) {
|
|
333
325
|
return (_jsxs(Html, { lang: "en", children: [_jsxs(Head, { children: [_jsx(Font, { fontFamily: "Inter", fallbackFontFamily: "Arial", webFont: {
|
package/package.json
CHANGED
|
@@ -278,6 +278,10 @@ const campaignProImages = Array.from(
|
|
|
278
278
|
{ length: 15 },
|
|
279
279
|
(_, i) => `https://bucket.modelfy.ai/app-media/campaign-pro/campaign-pro-${i + 1}.jpg`
|
|
280
280
|
);
|
|
281
|
+
const studioImages = Array.from(
|
|
282
|
+
{ length: 31 },
|
|
283
|
+
(_, i) => `https://bucket.modelfy.ai/app-media/studio/studio${i + 1}.jpeg`
|
|
284
|
+
);
|
|
281
285
|
const colorSwapImages = Array.from(
|
|
282
286
|
{ length: 10 },
|
|
283
287
|
(_, i) => `https://modelfy.ai/images/color-swap/studio-color-change${i + 1}.jpg`
|
|
@@ -317,7 +321,7 @@ const features = [
|
|
|
317
321
|
titleHighlight: "Product",
|
|
318
322
|
titleAfter: "Shots",
|
|
319
323
|
description: "Clean backgrounds, perfect lighting. E-commerce ready in seconds.",
|
|
320
|
-
getImage: () => getRandomImage(
|
|
324
|
+
getImage: () => getRandomImage(studioImages),
|
|
321
325
|
isVideo: false,
|
|
322
326
|
},
|
|
323
327
|
{
|
|
@@ -348,15 +352,6 @@ const features = [
|
|
|
348
352
|
getImage: () => "https://bucket.modelfy.ai/app-media/emails/subtitles.png",
|
|
349
353
|
isVideo: false,
|
|
350
354
|
},
|
|
351
|
-
{
|
|
352
|
-
eyebrow: "EXPORT",
|
|
353
|
-
titleBefore: "Every",
|
|
354
|
-
titleHighlight: "Format",
|
|
355
|
-
titleAfter: "You Need",
|
|
356
|
-
description: "Stories, Reels, Posts, Square, Landscape, Portrait. Up to 4K resolution.",
|
|
357
|
-
getImage: () => getRandomImage(campaignProImages),
|
|
358
|
-
isVideo: false,
|
|
359
|
-
},
|
|
360
355
|
];
|
|
361
356
|
|
|
362
357
|
export function WelcomeEmail({ email = "user@example.com" }: WelcomeEmailProps) {
|