react-email 4.0.0-alpha.6 → 4.0.0-alpha.8

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 (110) hide show
  1. package/CHANGELOG.md +13 -0
  2. package/dist/cli/index.js +18 -13
  3. package/dist/cli/index.mjs +26 -21
  4. package/dist/preview/.next/BUILD_ID +1 -1
  5. package/dist/preview/.next/app-build-manifest.json +14 -13
  6. package/dist/preview/.next/build-manifest.json +3 -3
  7. package/dist/preview/.next/cache/.rscinfo +1 -1
  8. package/dist/preview/.next/cache/webpack/client-production/0.pack +0 -0
  9. package/dist/preview/.next/cache/webpack/client-production/index.pack +0 -0
  10. package/dist/preview/.next/cache/webpack/edge-server-production/index.pack +0 -0
  11. package/dist/preview/.next/cache/webpack/server-production/0.pack +0 -0
  12. package/dist/preview/.next/cache/webpack/server-production/index.pack +0 -0
  13. package/dist/preview/.next/next-minimal-server.js.nft.json +1 -1
  14. package/dist/preview/.next/next-server.js.nft.json +1 -1
  15. package/dist/preview/.next/prerender-manifest.json +3 -3
  16. package/dist/preview/.next/required-server-files.json +3 -3
  17. package/dist/preview/.next/server/app/_not-found/page.js +1 -1
  18. package/dist/preview/.next/server/app/_not-found/page_client-reference-manifest.js +1 -1
  19. package/dist/preview/.next/server/app/favicon.ico/route.js +1 -1
  20. package/dist/preview/.next/server/app/page.js +1 -1
  21. package/dist/preview/.next/server/app/page.js.nft.json +1 -1
  22. package/dist/preview/.next/server/app/page_client-reference-manifest.js +1 -1
  23. package/dist/preview/.next/server/app/preview/[...slug]/page.js +133 -25
  24. package/dist/preview/.next/server/app/preview/[...slug]/page.js.nft.json +1 -1
  25. package/dist/preview/.next/server/app/preview/[...slug]/page_client-reference-manifest.js +1 -1
  26. package/dist/preview/.next/server/chunks/42.js +1 -0
  27. package/dist/preview/.next/server/chunks/600.js +3 -3
  28. package/dist/preview/.next/server/chunks/{171.js → 816.js} +6 -6
  29. package/dist/preview/.next/server/middleware-build-manifest.js +1 -1
  30. package/dist/preview/.next/server/next-font-manifest.js +1 -1
  31. package/dist/preview/.next/server/next-font-manifest.json +1 -1
  32. package/dist/preview/.next/server/pages/500.html +1 -1
  33. package/dist/preview/.next/server/pages-manifest.json +1 -1
  34. package/dist/preview/.next/server/server-reference-manifest.js +1 -1
  35. package/dist/preview/.next/server/server-reference-manifest.json +1 -1
  36. package/dist/preview/.next/static/chunks/287-7864b805e6bdc854.js +1 -0
  37. package/dist/preview/.next/static/chunks/412-31817e53b50a3e73.js +1 -0
  38. package/dist/preview/.next/static/chunks/683-b769e5d91bdf9a82.js +1 -0
  39. package/dist/preview/.next/static/chunks/880-9c0b721328117b8b.js +1 -0
  40. package/dist/preview/.next/static/chunks/app/layout-7dee682873546401.js +1 -0
  41. package/dist/preview/.next/static/chunks/app/page-9ea0bd45cd6294b0.js +1 -0
  42. package/dist/preview/.next/static/chunks/app/preview/[...slug]/page-a610d641c64448cc.js +1 -0
  43. package/dist/preview/.next/static/chunks/{main-app-c2e686acf8d370d7.js → main-app-256b213b179a95cc.js} +1 -1
  44. package/dist/preview/.next/static/css/e68ebc9bb8f7b3f4.css +3 -0
  45. package/dist/preview/.next/trace +26 -26
  46. package/dist/preview/.next/types/app/layout.ts +1 -1
  47. package/dist/preview/.next/types/app/page.ts +84 -0
  48. package/dist/preview/.next/types/app/preview/[...slug]/page.ts +1 -1
  49. package/package.json +1 -1
  50. package/src/actions/email-validation/check-compatibility.ts +16 -5
  51. package/src/actions/email-validation/check-images.spec.tsx +13 -11
  52. package/src/actions/email-validation/check-images.ts +6 -0
  53. package/src/actions/email-validation/check-links.spec.tsx +23 -11
  54. package/src/actions/email-validation/check-links.ts +6 -0
  55. package/src/actions/email-validation/get-code-location-from-ast-element.ts +18 -0
  56. package/src/actions/render-email-by-path.tsx +2 -2
  57. package/src/app/env.ts +3 -0
  58. package/src/app/preview/[...slug]/page.tsx +24 -11
  59. package/src/app/preview/[...slug]/preview.tsx +15 -12
  60. package/src/components/code-container.tsx +90 -71
  61. package/src/components/code.tsx +106 -42
  62. package/src/components/icons/icon-info.tsx +18 -0
  63. package/src/components/icons/icon-reload.tsx +13 -14
  64. package/src/components/logo.tsx +3 -2
  65. package/src/components/resizable-wrapper.tsx +1 -4
  66. package/src/components/sidebar/file-tree-directory-children.tsx +13 -2
  67. package/src/components/sidebar/file-tree-directory.tsx +26 -18
  68. package/src/components/sidebar/file-tree.tsx +2 -2
  69. package/src/components/sidebar/sidebar.tsx +16 -19
  70. package/src/components/toolbar/code-preview-line-link.tsx +40 -0
  71. package/src/components/toolbar/compatibility.tsx +113 -0
  72. package/src/components/toolbar/linter.tsx +69 -111
  73. package/src/components/toolbar/results.tsx +5 -2
  74. package/src/components/toolbar/spam-assassin.tsx +31 -20
  75. package/src/components/toolbar/toolbar-button.tsx +4 -2
  76. package/src/components/toolbar/use-cached-state.ts +2 -2
  77. package/src/components/toolbar.tsx +152 -30
  78. package/src/components/tooltip-content.tsx +1 -1
  79. package/src/components/topbar/view-size-controls.tsx +1 -2
  80. package/src/components/topbar.tsx +1 -20
  81. package/src/contexts/fragment-identifier.tsx +46 -0
  82. package/src/hooks/use-fragment-identifier.ts +14 -0
  83. package/src/utils/__snapshots__/get-email-component.spec.ts.snap +1 -1
  84. package/src/utils/caniemail/ast/__snapshots__/get-object-variables.spec.ts.snap +74 -0
  85. package/src/utils/caniemail/ast/__snapshots__/get-used-style-properties.spec.ts.snap +24 -0
  86. package/src/utils/caniemail/ast/get-object-variables.spec.ts +19 -0
  87. package/src/utils/caniemail/ast/get-used-style-properties.spec.ts +23 -0
  88. package/src/utils/caniemail/get-css-property-with-value.ts +2 -2
  89. package/src/utils/caniemail/tailwind/get-tailwind-config.ts +0 -2
  90. package/src/utils/get-email-component.ts +1 -1
  91. package/src/utils/get-line-and-column-from-offset.spec.ts +11 -0
  92. package/src/utils/get-line-and-column-from-offset.ts +11 -0
  93. package/src/utils/index.ts +1 -0
  94. package/src/utils/linting.ts +5 -30
  95. package/src/utils/load-stream.ts +15 -0
  96. package/src/utils/sanitize.ts +6 -0
  97. package/dist/preview/.next/server/chunks/833.js +0 -1
  98. package/dist/preview/.next/static/chunks/416-56f79fc7e689f06f.js +0 -1
  99. package/dist/preview/.next/static/chunks/683-8bbfd191e5105f01.js +0 -1
  100. package/dist/preview/.next/static/chunks/87-38e35f08507de015.js +0 -1
  101. package/dist/preview/.next/static/chunks/app/layout-a6640e62690d8fd6.js +0 -1
  102. package/dist/preview/.next/static/chunks/app/page-ba68f50b287e7478.js +0 -1
  103. package/dist/preview/.next/static/chunks/app/preview/[...slug]/page-4a5b026ab543e27f.js +0 -1
  104. package/dist/preview/.next/static/css/d7df9cfc3e182163.css +0 -3
  105. package/src/actions/email-validation/get-line-and-column-from-index.spec.ts +0 -22
  106. package/src/actions/email-validation/get-line-and-column-from-index.ts +0 -43
  107. package/src/components/icons/icon-scanner.tsx +0 -19
  108. package/src/components/icons/icon-scissors.tsx +0 -19
  109. /package/dist/preview/.next/static/{gFk9UfWL8joM4iD7-wlKF → SoPVDfPAp9R983pBBriVn}/_buildManifest.js +0 -0
  110. /package/dist/preview/.next/static/{gFk9UfWL8joM4iD7-wlKF → SoPVDfPAp9R983pBBriVn}/_ssgManifest.js +0 -0
@@ -1 +1 @@
1
- (()=>{var e={};e.id=974,e.ids=[974],e.modules={3295:e=>{"use strict";e.exports=require("next/dist/server/app-render/after-task-async-storage.external.js")},4274:(e,r,t)=>{Promise.resolve().then(t.t.bind(t,5233,23)),Promise.resolve().then(t.t.bind(t,89928,23)),Promise.resolve().then(t.bind(t,62809)),Promise.resolve().then(t.bind(t,10178)),Promise.resolve().then(t.bind(t,79844)),Promise.resolve().then(t.bind(t,17264)),Promise.resolve().then(t.bind(t,22969))},10846:e=>{"use strict";e.exports=require("next/dist/compiled/next-server/app-page.runtime.prod.js")},19121:e=>{"use strict";e.exports=require("next/dist/server/app-render/action-async-storage.external.js")},21820:e=>{"use strict";e.exports=require("os")},27910:e=>{"use strict";e.exports=require("stream")},28354:e=>{"use strict";e.exports=require("util")},29021:e=>{"use strict";e.exports=require("fs")},29294:e=>{"use strict";e.exports=require("next/dist/server/app-render/work-async-storage.external.js")},33873:e=>{"use strict";e.exports=require("path")},34631:e=>{"use strict";e.exports=require("tls")},45875:(e,r,t)=>{"use strict";t.r(r),t.d(r,{GlobalError:()=>n.a,__next_app__:()=>l,pages:()=>d,routeModule:()=>c,tree:()=>u});var s=t(81680),i=t(28015),o=t(29415),n=t.n(o),a=t(94200),p={};for(let e in a)0>["default","tree","pages","GlobalError","__next_app__","routeModule"].indexOf(e)&&(p[e]=()=>a[e]);t.d(r,p);let u={children:["",{children:["__PAGE__",{},{page:[()=>Promise.resolve().then(t.bind(t,62993)),"/home/gabriel/Projects/Resend/react-email.git/4.0/packages/react-email/src/app/page.tsx"],metadata:{icon:[async e=>(await Promise.resolve().then(t.bind(t,53289))).default(e)],apple:[],openGraph:[],twitter:[],manifest:void 0}}]},{layout:[()=>Promise.resolve().then(t.bind(t,36011)),"/home/gabriel/Projects/Resend/react-email.git/4.0/packages/react-email/src/app/layout.tsx"],"not-found":[()=>Promise.resolve().then(t.t.bind(t,74597,23)),"next/dist/client/components/not-found-error"],forbidden:[()=>Promise.resolve().then(t.t.bind(t,57160,23)),"next/dist/client/components/forbidden-error"],unauthorized:[()=>Promise.resolve().then(t.t.bind(t,12297,23)),"next/dist/client/components/unauthorized-error"],metadata:{icon:[async e=>(await Promise.resolve().then(t.bind(t,53289))).default(e)],apple:[],openGraph:[],twitter:[],manifest:void 0}}]}.children,d=["/home/gabriel/Projects/Resend/react-email.git/4.0/packages/react-email/src/app/page.tsx"],l={require:t,loadChunk:()=>Promise.resolve()},c=new s.AppPageRouteModule({definition:{kind:i.RouteKind.APP_PAGE,page:"/page",pathname:"/",bundlePath:"",filename:"",appPaths:[]},userland:{loaderTree:u}})},55511:e=>{"use strict";e.exports=require("crypto")},55591:e=>{"use strict";e.exports=require("https")},63033:e=>{"use strict";e.exports=require("next/dist/server/app-render/work-unit-async-storage.external.js")},64522:(e,r,t)=>{Promise.resolve().then(t.t.bind(t,85187,23)),Promise.resolve().then(t.t.bind(t,24814,23)),Promise.resolve().then(t.bind(t,26361)),Promise.resolve().then(t.bind(t,3250)),Promise.resolve().then(t.bind(t,42846)),Promise.resolve().then(t.bind(t,79505)),Promise.resolve().then(t.bind(t,63954))},73024:e=>{"use strict";e.exports=require("node:fs")},74075:e=>{"use strict";e.exports=require("zlib")},76760:e=>{"use strict";e.exports=require("node:path")},79428:e=>{"use strict";e.exports=require("buffer")},79551:e=>{"use strict";e.exports=require("url")},79646:e=>{"use strict";e.exports=require("child_process")},81630:e=>{"use strict";e.exports=require("http")},83997:e=>{"use strict";e.exports=require("tty")},91645:e=>{"use strict";e.exports=require("net")},94735:e=>{"use strict";e.exports=require("events")}};var r=require("../webpack-runtime.js");r.C(e);var t=e=>r(r.s=e),s=r.X(0,[811,600,171,833],()=>t(45875));module.exports=s})();
1
+ (()=>{var e={};e.id=974,e.ids=[974],e.modules={3250:(e,t,r)=>{"use strict";r.r(t),r.d(t,{Button:()=>i});let i=(0,r(86188).registerClientReference)(function(){throw Error("Attempted to call Button() from the server but Button is on the client. It's not possible to invoke a client function from the server, it can only be rendered as a Component or passed to props of a Client Component.")},"/home/gabriel/Projects/Resend/react-email/packages/react-email/src/components/button.tsx","Button")},3295:e=>{"use strict";e.exports=require("next/dist/server/app-render/after-task-async-storage.external.js")},4175:(e,t)=>{"use strict";Object.defineProperty(t,"__esModule",{value:!0}),Object.defineProperty(t,"warnOnce",{enumerable:!0,get:function(){return r}});let r=e=>{}},6533:(e,t)=>{"use strict";Object.defineProperty(t,"__esModule",{value:!0}),!function(e,t){for(var r in t)Object.defineProperty(e,r,{enumerable:!0,get:t[r]})}(t,{VALID_LOADERS:function(){return r},imageConfigDefault:function(){return i}});let r=["default","imgix","cloudinary","akamai","custom"],i={deviceSizes:[640,750,828,1080,1200,1920,2048,3840],imageSizes:[16,32,48,64,96,128,256,384],path:"/_next/image",loader:"default",loaderFile:"",domains:[],disableStaticImages:!1,minimumCacheTTL:60,formats:["image/webp"],dangerouslyAllowSVG:!1,contentSecurityPolicy:"script-src 'none'; frame-src 'none'; sandbox;",contentDispositionType:"attachment",localPatterns:void 0,remotePatterns:[],qualities:void 0,unoptimized:!1}},6553:(e,t)=>{"use strict";function r(e){let{widthInt:t,heightInt:r,blurWidth:i,blurHeight:n,blurDataURL:s,objectFit:o}=e,a=i?40*i:t,l=n?40*n:r,d=a&&l?"viewBox='0 0 "+a+" "+l+"'":"";return"%3Csvg xmlns='http://www.w3.org/2000/svg' "+d+"%3E%3Cfilter id='b' color-interpolation-filters='sRGB'%3E%3CfeGaussianBlur stdDeviation='20'/%3E%3CfeColorMatrix values='1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 100 -1' result='s'/%3E%3CfeFlood x='0' y='0' width='100%25' height='100%25'/%3E%3CfeComposite operator='out' in='s'/%3E%3CfeComposite in2='SourceGraphic'/%3E%3CfeGaussianBlur stdDeviation='20'/%3E%3C/filter%3E%3Cimage width='100%25' height='100%25' x='0' y='0' preserveAspectRatio='"+(d?"none":"contain"===o?"xMidYMid":"cover"===o?"xMidYMid slice":"none")+"' style='filter: url(%23b);' href='"+s+"'/%3E%3C/svg%3E"}Object.defineProperty(t,"__esModule",{value:!0}),Object.defineProperty(t,"getImageBlurSvg",{enumerable:!0,get:function(){return r}})},10846:e=>{"use strict";e.exports=require("next/dist/compiled/next-server/app-page.runtime.prod.js")},15614:(e,t)=>{"use strict";function r(e){var t;let{config:r,src:i,width:n,quality:s}=e,o=s||(null==(t=r.qualities)?void 0:t.reduce((e,t)=>Math.abs(t-75)<Math.abs(e-75)?t:e))||75;return r.path+"?url="+encodeURIComponent(i)+"&w="+n+"&q="+o+(i.startsWith("/_next/static/media/"),"")}Object.defineProperty(t,"__esModule",{value:!0}),Object.defineProperty(t,"default",{enumerable:!0,get:function(){return i}}),r.__next_img_default=!0;let i=r},17076:(e,t)=>{"use strict";function r(e){var t;let{config:r,src:i,width:n,quality:s}=e,o=s||(null==(t=r.qualities)?void 0:t.reduce((e,t)=>Math.abs(t-75)<Math.abs(e-75)?t:e))||75;return r.path+"?url="+encodeURIComponent(i)+"&w="+n+"&q="+o+(i.startsWith("/_next/static/media/"),"")}Object.defineProperty(t,"__esModule",{value:!0}),Object.defineProperty(t,"default",{enumerable:!0,get:function(){return i}}),r.__next_img_default=!0;let i=r},19121:e=>{"use strict";e.exports=require("next/dist/server/app-render/action-async-storage.external.js")},20884:(e,t,r)=>{"use strict";e.exports=r(55738).vendored.contexts.HeadManagerContext},21820:e=>{"use strict";e.exports=require("os")},24814:(e,t,r)=>{let{createProxy:i}=r(91339);e.exports=i("/home/gabriel/Projects/Resend/react-email/node_modules/.pnpm/next@15.2.2_@babel+core@7.26.10_react-dom@19.0.0_react@19.0.0__react@19.0.0/node_modules/next/dist/client/image-component.js")},26361:(e,t,r)=>{"use strict";r.r(t),r.d(t,{default:()=>i});let i={src:"/_next/static/media/logo.2ce2a759.png",height:359,width:359,blurDataURL:"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAgAAAAICAMAAADz0U65AAAAP1BMVEUYQFEbSV8SNEQUOUokYn4fVW4XR1scTWQjS14UOUkPLjwaT2ckXnhdgZFlj6JXi6JVk69Kb4A8hqc5c45WosQu6WxiAAAACnRSTlP+2N7/Vv557P7zZszF7AAAAAlwSFlzAAALEwAACxMBAJqcGAAAAD5JREFUeJwVxkcSwDAIALFNcAXc/f+3ZqKTCNlitBzIWsyKPkDrvQFSxlrjj8xzpoCy790iVHV315dUAWr6AErQAhJo4AeDAAAAAElFTkSuQmCC",blurWidth:8,blurHeight:8}},27910:e=>{"use strict";e.exports=require("stream")},28354:e=>{"use strict";e.exports=require("util")},29021:e=>{"use strict";e.exports=require("fs")},29294:e=>{"use strict";e.exports=require("next/dist/server/app-render/work-async-storage.external.js")},33139:(e,t)=>{"use strict";Object.defineProperty(t,"__esModule",{value:!0}),!function(e,t){for(var r in t)Object.defineProperty(e,r,{enumerable:!0,get:t[r]})}(t,{VALID_LOADERS:function(){return r},imageConfigDefault:function(){return i}});let r=["default","imgix","cloudinary","akamai","custom"],i={deviceSizes:[640,750,828,1080,1200,1920,2048,3840],imageSizes:[16,32,48,64,96,128,256,384],path:"/_next/image",loader:"default",loaderFile:"",domains:[],disableStaticImages:!1,minimumCacheTTL:60,formats:["image/webp"],dangerouslyAllowSVG:!1,contentSecurityPolicy:"script-src 'none'; frame-src 'none'; sandbox;",contentDispositionType:"attachment",localPatterns:void 0,remotePatterns:[],qualities:void 0,unoptimized:!1}},33873:e=>{"use strict";e.exports=require("path")},34631:e=>{"use strict";e.exports=require("tls")},36538:(e,t,r)=>{"use strict";Object.defineProperty(t,"__esModule",{value:!0}),Object.defineProperty(t,"default",{enumerable:!0,get:function(){return o}});let i=r(91307),n=()=>{},s=()=>{};function o(e){var t;let{headManager:r,reduceComponentsToState:o}=e;function a(){if(r&&r.mountedInstances){let t=i.Children.toArray(Array.from(r.mountedInstances).filter(Boolean));r.updateHead(o(t,e))}}return null==r||null==(t=r.mountedInstances)||t.add(e.children),a(),n(()=>{var t;return null==r||null==(t=r.mountedInstances)||t.add(e.children),()=>{var t;null==r||null==(t=r.mountedInstances)||t.delete(e.children)}}),n(()=>(r&&(r._pendingUpdate=a),()=>{r&&(r._pendingUpdate=a)})),s(()=>(r&&r._pendingUpdate&&(r._pendingUpdate(),r._pendingUpdate=null),()=>{r&&r._pendingUpdate&&(r._pendingUpdate(),r._pendingUpdate=null)})),null}},41495:(e,t)=>{"use strict";function r(e){let{widthInt:t,heightInt:r,blurWidth:i,blurHeight:n,blurDataURL:s,objectFit:o}=e,a=i?40*i:t,l=n?40*n:r,d=a&&l?"viewBox='0 0 "+a+" "+l+"'":"";return"%3Csvg xmlns='http://www.w3.org/2000/svg' "+d+"%3E%3Cfilter id='b' color-interpolation-filters='sRGB'%3E%3CfeGaussianBlur stdDeviation='20'/%3E%3CfeColorMatrix values='1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 100 -1' result='s'/%3E%3CfeFlood x='0' y='0' width='100%25' height='100%25'/%3E%3CfeComposite operator='out' in='s'/%3E%3CfeComposite in2='SourceGraphic'/%3E%3CfeGaussianBlur stdDeviation='20'/%3E%3C/filter%3E%3Cimage width='100%25' height='100%25' x='0' y='0' preserveAspectRatio='"+(d?"none":"contain"===o?"xMidYMid":"cover"===o?"xMidYMid slice":"none")+"' style='filter: url(%23b);' href='"+s+"'/%3E%3C/svg%3E"}Object.defineProperty(t,"__esModule",{value:!0}),Object.defineProperty(t,"getImageBlurSvg",{enumerable:!0,get:function(){return r}})},43918:(e,t,r)=>{"use strict";r.r(t),r.d(t,{default:()=>R});var i=r(65800),n=r(76760),s=r.n(n),o=r(47952),a=r.n(o),l=r(85187),d=r.n(l),c=r(3250);r(88209);var u=r(32185),p=u.forwardRef((e,t)=>{let{children:r,...n}=e,s=u.Children.toArray(r),o=s.find(h);if(o){let e=o.props.children,r=s.map(t=>t!==o?t:u.Children.count(e)>1?u.Children.only(null):u.isValidElement(e)?e.props.children:null);return(0,i.jsx)(f,{...n,ref:t,children:u.isValidElement(e)?u.cloneElement(e,void 0,r):null})}return(0,i.jsx)(f,{...n,ref:t,children:r})});p.displayName="Slot";var f=u.forwardRef((e,t)=>{let{children:r,...i}=e;if(u.isValidElement(r)){let e=function(e){let t=Object.getOwnPropertyDescriptor(e.props,"ref")?.get,r=t&&"isReactWarning"in t&&t.isReactWarning;return r?e.ref:(r=(t=Object.getOwnPropertyDescriptor(e,"ref")?.get)&&"isReactWarning"in t&&t.isReactWarning)?e.props.ref:e.props.ref||e.ref}(r);return u.cloneElement(r,{...function(e,t){let r={...t};for(let i in t){let n=e[i],s=t[i];/^on[A-Z]/.test(i)?n&&s?r[i]=(...e)=>{s(...e),n(...e)}:n&&(r[i]=n):"style"===i?r[i]={...n,...s}:"className"===i&&(r[i]=[n,s].filter(Boolean).join(" "))}return{...e,...r}}(i,r.props),ref:t?function(...e){return t=>e.forEach(e=>{"function"==typeof e?e(t):null!=e&&(e.current=t)})}(t,e):e})}return u.Children.count(r)>1?u.Children.only(null):null});f.displayName="SlotClone";var m=({children:e})=>(0,i.jsx)(i.Fragment,{children:e});function h(e){return u.isValidElement(e)&&e.type===m}var g=r(56413);let b=u.forwardRef(({as:e="h1",size:t="3",className:r,color:n="white",children:s,weight:o="bold",...a},l)=>(0,i.jsx)(p,{className:(0,g.cn)(r,x(t),v(n),y(o)),ref:l,...a,children:(0,i.jsx)(e,{children:s})})),x=e=>{switch(e){case"1":return"text-xs";case"2":return"text-sm";case void 0:case"3":return"text-base";case"4":return"text-lg";case"5":return"text-xl tracking-[-0.16px]";case"6":return"text-2xl tracking-[-0.288px]";case"7":return"text-[28px] leading-[34px] tracking-[-0.416px]";case"8":return"text-[35px] leading-[42px] tracking-[-0.64px]";case"9":return"text-6xl leading-[73px] tracking-[-0.896px]";case"10":return["text-[38px] leading-[46px]","md:text-[70px] md:leading-[85px] tracking-[-1.024px;]"];default:return(0,g.unreachable)(e)}},v=e=>{switch(e){case"gray":return"text-slate-11";case"white":case void 0:return"text-slate-12";default:return(0,g.unreachable)(e)}},y=e=>{switch(e){case"medium":return"font-medium";case"bold":case void 0:return"font-bold";default:return(0,g.unreachable)(e)}};b.displayName="Heading",r(79505);let _=u.forwardRef(({as:e="span",size:t="2",color:r="gray",transform:n,weight:s="normal",className:o,children:a,...l},d)=>(0,i.jsx)(p,{className:(0,g.cn)(o,n,w(t),A(r),j(s)),ref:d,...l,children:(0,i.jsx)(e,{children:a})})),w=e=>{switch(e){case"1":return"text-xs";case void 0:case"2":return"text-sm";case"3":return"text-base";case"4":return"text-lg";case"5":return["text-17px","md:text-xl tracking-[-0.16px]"];case"6":return"text-2xl tracking-[-0.288px]";case"7":return"text-[28px] leading-[34px] tracking-[-0.416px]";case"8":return"text-[35px] leading-[42px] tracking-[-0.64px]";case"9":return"text-6xl leading-[73px] tracking-[-0.896px]";default:return(0,g.unreachable)(e)}},A=e=>{switch(e){case"white":return"text-slate-12";case void 0:case"gray":return"text-slate-11";default:return(0,g.unreachable)(e)}},j=e=>{switch(e){case void 0:case"normal":return"font-normal";case"medium":return"font-medium";default:return(0,g.unreachable)(e)}};_.displayName="Text",r(63954);let P=({children:e})=>(0,i.jsx)("code",{className:"m-0.5 inline-block rounded-md bg-white/10 p-1 font-mono leading-none text-slate-12",children:e});var C=r(42846),E=r(81548),S=r(26361);let R=()=>{let e=s().basename(E.Z8);return(0,i.jsx)(C.Shell,{children:(0,i.jsx)(C.ShellContent,{className:"mx-auto flex max-w-lg items-center justify-center p-8",children:(0,i.jsxs)("div",{className:"-mt-10 relative flex flex-col items-center gap-3 text-center",children:[(0,i.jsx)(a(),{alt:"React Email Icon",className:"mb-8",height:144,src:S.default,style:{borderRadius:34,boxShadow:"0 .625rem 12.5rem 1.25rem #2B7CA080"},width:141}),(0,i.jsx)(b,{as:"h2",size:"6",weight:"medium",children:"Welcome to React Email"}),(0,i.jsxs)(_,{as:"p",children:["To start developing your emails, you can create a",(0,i.jsx)("br",{}),(0,i.jsx)(P,{children:".jsx"})," or ",(0,i.jsx)(P,{children:".tsx"})," ","file under your ",(0,i.jsx)(P,{children:e})," ","folder."]}),(0,i.jsx)(c.Button,{asChild:!0,className:"mt-3",size:"3",children:(0,i.jsx)(d(),{href:"https://react.email/docs",children:"Check the docs"})})]})})})}},47320:(e,t,r)=>{"use strict";Object.defineProperty(t,"__esModule",{value:!0}),Object.defineProperty(t,"getImgProps",{enumerable:!0,get:function(){return a}}),r(23873);let i=r(41495),n=r(33139);function s(e){return void 0!==e.default}function o(e){return void 0===e?e:"number"==typeof e?Number.isFinite(e)?e:NaN:"string"==typeof e&&/^[0-9]+$/.test(e)?parseInt(e,10):NaN}function a(e,t){var r,a;let l,d,c,{src:u,sizes:p,unoptimized:f=!1,priority:m=!1,loading:h,className:g,quality:b,width:x,height:v,fill:y=!1,style:_,overrideSrc:w,onLoad:A,onLoadingComplete:j,placeholder:P="empty",blurDataURL:C,fetchPriority:E,decoding:S="async",layout:R,objectFit:O,objectPosition:k,lazyBoundary:z,lazyRoot:M,...I}=e,{imgConf:N,showAltText:D,blurComplete:q,defaultLoader:T}=t,U=N||n.imageConfigDefault;if("allSizes"in U)l=U;else{let e=[...U.deviceSizes,...U.imageSizes].sort((e,t)=>e-t),t=U.deviceSizes.sort((e,t)=>e-t),i=null==(r=U.qualities)?void 0:r.sort((e,t)=>e-t);l={...U,allSizes:e,deviceSizes:t,qualities:i}}if(void 0===T)throw Object.defineProperty(Error("images.loaderFile detected but the file is missing default export.\nRead more: https://nextjs.org/docs/messages/invalid-images-config"),"__NEXT_ERROR_CODE",{value:"E163",enumerable:!1,configurable:!0});let F=I.loader||T;delete I.loader,delete I.srcSet;let W="__next_img_default"in F;if(W){if("custom"===l.loader)throw Object.defineProperty(Error('Image with src "'+u+'" is missing "loader" prop.\nRead more: https://nextjs.org/docs/messages/next-image-missing-loader'),"__NEXT_ERROR_CODE",{value:"E252",enumerable:!1,configurable:!0})}else{let e=F;F=t=>{let{config:r,...i}=t;return e(i)}}if(R){"fill"===R&&(y=!0);let e={intrinsic:{maxWidth:"100%",height:"auto"},responsive:{width:"100%",height:"auto"}}[R];e&&(_={..._,...e});let t={responsive:"100vw",fill:"100vw"}[R];t&&!p&&(p=t)}let V="",B=o(x),G=o(v);if((a=u)&&"object"==typeof a&&(s(a)||void 0!==a.src)){let e=s(u)?u.default:u;if(!e.src)throw Object.defineProperty(Error("An object should only be passed to the image component src parameter if it comes from a static image import. It must include src. Received "+JSON.stringify(e)),"__NEXT_ERROR_CODE",{value:"E460",enumerable:!1,configurable:!0});if(!e.height||!e.width)throw Object.defineProperty(Error("An object should only be passed to the image component src parameter if it comes from a static image import. It must include height and width. Received "+JSON.stringify(e)),"__NEXT_ERROR_CODE",{value:"E48",enumerable:!1,configurable:!0});if(d=e.blurWidth,c=e.blurHeight,C=C||e.blurDataURL,V=e.src,!y){if(B||G){if(B&&!G){let t=B/e.width;G=Math.round(e.height*t)}else if(!B&&G){let t=G/e.height;B=Math.round(e.width*t)}}else B=e.width,G=e.height}}let L=!m&&("lazy"===h||void 0===h);(!(u="string"==typeof u?u:V)||u.startsWith("data:")||u.startsWith("blob:"))&&(f=!0,L=!1),l.unoptimized&&(f=!0),W&&!l.dangerouslyAllowSVG&&u.split("?",1)[0].endsWith(".svg")&&(f=!0);let X=o(b),J=Object.assign(y?{position:"absolute",height:"100%",width:"100%",left:0,top:0,right:0,bottom:0,objectFit:O,objectPosition:k}:{},D?{}:{color:"transparent"},_),Q=q||"empty"===P?null:"blur"===P?'url("data:image/svg+xml;charset=utf-8,'+(0,i.getImageBlurSvg)({widthInt:B,heightInt:G,blurWidth:d,blurHeight:c,blurDataURL:C||"",objectFit:J.objectFit})+'")':'url("'+P+'")',H=Q?{backgroundSize:J.objectFit||"cover",backgroundPosition:J.objectPosition||"50% 50%",backgroundRepeat:"no-repeat",backgroundImage:Q}:{},K=function(e){let{config:t,src:r,unoptimized:i,width:n,quality:s,sizes:o,loader:a}=e;if(i)return{src:r,srcSet:void 0,sizes:void 0};let{widths:l,kind:d}=function(e,t,r){let{deviceSizes:i,allSizes:n}=e;if(r){let e=/(^|\s)(1?\d?\d)vw/g,t=[];for(let i;i=e.exec(r);i)t.push(parseInt(i[2]));if(t.length){let e=.01*Math.min(...t);return{widths:n.filter(t=>t>=i[0]*e),kind:"w"}}return{widths:n,kind:"w"}}return"number"!=typeof t?{widths:i,kind:"w"}:{widths:[...new Set([t,2*t].map(e=>n.find(t=>t>=e)||n[n.length-1]))],kind:"x"}}(t,n,o),c=l.length-1;return{sizes:o||"w"!==d?o:"100vw",srcSet:l.map((e,i)=>a({config:t,src:r,quality:s,width:e})+" "+("w"===d?e:i+1)+d).join(", "),src:a({config:t,src:r,quality:s,width:l[c]})}}({config:l,src:u,unoptimized:f,width:B,quality:X,sizes:p,loader:F});return{props:{...I,loading:L?"lazy":h,fetchPriority:E,width:B,height:G,decoding:S,className:g,style:{...J,...H},sizes:K.sizes,srcSet:K.srcSet,src:w||K.src},meta:{unoptimized:f,priority:m,placeholder:P,fill:y}}}},47952:(e,t,r)=>{"use strict";Object.defineProperty(t,"__esModule",{value:!0}),!function(e,t){for(var r in t)Object.defineProperty(e,r,{enumerable:!0,get:t[r]})}(t,{default:function(){return l},getImageProps:function(){return a}});let i=r(9908),n=r(78258),s=r(24814),o=i._(r(17076));function a(e){let{props:t}=(0,n.getImgProps)(e,{defaultLoader:o.default,imgConf:{deviceSizes:[640,750,828,1080,1200,1920,2048,3840],imageSizes:[16,32,48,64,96,128,256,384],path:"/_next/image",loader:"default",dangerouslyAllowSVG:!1,unoptimized:!1}});for(let[e,r]of Object.entries(t))void 0===r&&delete t[e];return{props:t}}let l=s.Image},52350:(e,t,r)=>{"use strict";e.exports=r(55738).vendored.contexts.ImageConfigContext},55511:e=>{"use strict";e.exports=require("crypto")},55591:e=>{"use strict";e.exports=require("https")},61076:(e,t,r)=>{"use strict";e.exports=r(55738).vendored.contexts.AmpContext},62809:(e,t,r)=>{"use strict";r.r(t),r.d(t,{default:()=>i});let i={src:"/_next/static/media/logo.2ce2a759.png",height:359,width:359,blurDataURL:"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAgAAAAICAMAAADz0U65AAAAP1BMVEUYQFEbSV8SNEQUOUokYn4fVW4XR1scTWQjS14UOUkPLjwaT2ckXnhdgZFlj6JXi6JVk69Kb4A8hqc5c45WosQu6WxiAAAACnRSTlP+2N7/Vv557P7zZszF7AAAAAlwSFlzAAALEwAACxMBAJqcGAAAAD5JREFUeJwVxkcSwDAIALFNcAXc/f+3ZqKTCNlitBzIWsyKPkDrvQFSxlrjj8xzpoCy790iVHV315dUAWr6AErQAhJo4AeDAAAAAElFTkSuQmCC",blurWidth:8,blurHeight:8}},63033:e=>{"use strict";e.exports=require("next/dist/server/app-render/work-unit-async-storage.external.js")},63954:(e,t,r)=>{"use strict";r.r(t),r.d(t,{Topbar:()=>i});let i=(0,r(86188).registerClientReference)(function(){throw Error("Attempted to call Topbar() from the server but Topbar is on the client. It's not possible to invoke a client function from the server, it can only be rendered as a Component or passed to props of a Client Component.")},"/home/gabriel/Projects/Resend/react-email/packages/react-email/src/components/topbar.tsx","Topbar")},68543:(e,t)=>{"use strict";function r(e){let{ampFirst:t=!1,hybrid:r=!1,hasQuery:i=!1}=void 0===e?{}:e;return t||r&&i}Object.defineProperty(t,"__esModule",{value:!0}),Object.defineProperty(t,"isInAmpMode",{enumerable:!0,get:function(){return r}})},70147:(e,t,r)=>{Promise.resolve().then(r.t.bind(r,5233,23)),Promise.resolve().then(r.t.bind(r,89928,23)),Promise.resolve().then(r.bind(r,62809)),Promise.resolve().then(r.bind(r,10178)),Promise.resolve().then(r.bind(r,79110)),Promise.resolve().then(r.bind(r,79844)),Promise.resolve().then(r.bind(r,17264)),Promise.resolve().then(r.bind(r,22969))},72743:(e,t,r)=>{"use strict";Object.defineProperty(t,"__esModule",{value:!0}),!function(e,t){for(var r in t)Object.defineProperty(e,r,{enumerable:!0,get:t[r]})}(t,{default:function(){return h},defaultHead:function(){return u}});let i=r(52302),n=r(91161),s=r(7666),o=n._(r(91307)),a=i._(r(36538)),l=r(61076),d=r(20884),c=r(68543);function u(e){void 0===e&&(e=!1);let t=[(0,s.jsx)("meta",{charSet:"utf-8"},"charset")];return e||t.push((0,s.jsx)("meta",{name:"viewport",content:"width=device-width"},"viewport")),t}function p(e,t){return"string"==typeof t||"number"==typeof t?e:t.type===o.default.Fragment?e.concat(o.default.Children.toArray(t.props.children).reduce((e,t)=>"string"==typeof t||"number"==typeof t?e:e.concat(t),[])):e.concat(t)}r(23873);let f=["name","httpEquiv","charSet","itemProp"];function m(e,t){let{inAmpMode:r}=t;return e.reduce(p,[]).reverse().concat(u(r).reverse()).filter(function(){let e=new Set,t=new Set,r=new Set,i={};return n=>{let s=!0,o=!1;if(n.key&&"number"!=typeof n.key&&n.key.indexOf("$")>0){o=!0;let t=n.key.slice(n.key.indexOf("$")+1);e.has(t)?s=!1:e.add(t)}switch(n.type){case"title":case"base":t.has(n.type)?s=!1:t.add(n.type);break;case"meta":for(let e=0,t=f.length;e<t;e++){let t=f[e];if(n.props.hasOwnProperty(t)){if("charSet"===t)r.has(t)?s=!1:r.add(t);else{let e=n.props[t],r=i[t]||new Set;("name"!==t||!o)&&r.has(e)?s=!1:(r.add(e),i[t]=r)}}}}return s}}()).reverse().map((e,t)=>{let i=e.key||t;if(process.env.__NEXT_OPTIMIZE_FONTS&&!r&&"link"===e.type&&e.props.href&&["https://fonts.googleapis.com/css","https://use.typekit.net/"].some(t=>e.props.href.startsWith(t))){let t={...e.props||{}};return t["data-href"]=t.href,t.href=void 0,t["data-optimized-fonts"]=!0,o.default.cloneElement(e,t)}return o.default.cloneElement(e,{key:i})})}let h=function(e){let{children:t}=e,r=(0,o.useContext)(l.AmpStateContext),i=(0,o.useContext)(d.HeadManagerContext);return(0,s.jsx)(a.default,{reduceComponentsToState:m,headManager:i,inAmpMode:(0,c.isInAmpMode)(r),children:t})};("function"==typeof t.default||"object"==typeof t.default&&null!==t.default)&&void 0===t.default.__esModule&&(Object.defineProperty(t.default,"__esModule",{value:!0}),Object.assign(t.default,t),e.exports=t.default)},73024:e=>{"use strict";e.exports=require("node:fs")},74075:e=>{"use strict";e.exports=require("zlib")},76760:e=>{"use strict";e.exports=require("node:path")},78258:(e,t,r)=>{"use strict";Object.defineProperty(t,"__esModule",{value:!0}),Object.defineProperty(t,"getImgProps",{enumerable:!0,get:function(){return a}}),r(4175);let i=r(6553),n=r(6533);function s(e){return void 0!==e.default}function o(e){return void 0===e?e:"number"==typeof e?Number.isFinite(e)?e:NaN:"string"==typeof e&&/^[0-9]+$/.test(e)?parseInt(e,10):NaN}function a(e,t){var r,a;let l,d,c,{src:u,sizes:p,unoptimized:f=!1,priority:m=!1,loading:h,className:g,quality:b,width:x,height:v,fill:y=!1,style:_,overrideSrc:w,onLoad:A,onLoadingComplete:j,placeholder:P="empty",blurDataURL:C,fetchPriority:E,decoding:S="async",layout:R,objectFit:O,objectPosition:k,lazyBoundary:z,lazyRoot:M,...I}=e,{imgConf:N,showAltText:D,blurComplete:q,defaultLoader:T}=t,U=N||n.imageConfigDefault;if("allSizes"in U)l=U;else{let e=[...U.deviceSizes,...U.imageSizes].sort((e,t)=>e-t),t=U.deviceSizes.sort((e,t)=>e-t),i=null==(r=U.qualities)?void 0:r.sort((e,t)=>e-t);l={...U,allSizes:e,deviceSizes:t,qualities:i}}if(void 0===T)throw Object.defineProperty(Error("images.loaderFile detected but the file is missing default export.\nRead more: https://nextjs.org/docs/messages/invalid-images-config"),"__NEXT_ERROR_CODE",{value:"E163",enumerable:!1,configurable:!0});let F=I.loader||T;delete I.loader,delete I.srcSet;let W="__next_img_default"in F;if(W){if("custom"===l.loader)throw Object.defineProperty(Error('Image with src "'+u+'" is missing "loader" prop.\nRead more: https://nextjs.org/docs/messages/next-image-missing-loader'),"__NEXT_ERROR_CODE",{value:"E252",enumerable:!1,configurable:!0})}else{let e=F;F=t=>{let{config:r,...i}=t;return e(i)}}if(R){"fill"===R&&(y=!0);let e={intrinsic:{maxWidth:"100%",height:"auto"},responsive:{width:"100%",height:"auto"}}[R];e&&(_={..._,...e});let t={responsive:"100vw",fill:"100vw"}[R];t&&!p&&(p=t)}let V="",B=o(x),G=o(v);if((a=u)&&"object"==typeof a&&(s(a)||void 0!==a.src)){let e=s(u)?u.default:u;if(!e.src)throw Object.defineProperty(Error("An object should only be passed to the image component src parameter if it comes from a static image import. It must include src. Received "+JSON.stringify(e)),"__NEXT_ERROR_CODE",{value:"E460",enumerable:!1,configurable:!0});if(!e.height||!e.width)throw Object.defineProperty(Error("An object should only be passed to the image component src parameter if it comes from a static image import. It must include height and width. Received "+JSON.stringify(e)),"__NEXT_ERROR_CODE",{value:"E48",enumerable:!1,configurable:!0});if(d=e.blurWidth,c=e.blurHeight,C=C||e.blurDataURL,V=e.src,!y){if(B||G){if(B&&!G){let t=B/e.width;G=Math.round(e.height*t)}else if(!B&&G){let t=G/e.height;B=Math.round(e.width*t)}}else B=e.width,G=e.height}}let L=!m&&("lazy"===h||void 0===h);(!(u="string"==typeof u?u:V)||u.startsWith("data:")||u.startsWith("blob:"))&&(f=!0,L=!1),l.unoptimized&&(f=!0),W&&!l.dangerouslyAllowSVG&&u.split("?",1)[0].endsWith(".svg")&&(f=!0);let X=o(b),J=Object.assign(y?{position:"absolute",height:"100%",width:"100%",left:0,top:0,right:0,bottom:0,objectFit:O,objectPosition:k}:{},D?{}:{color:"transparent"},_),Q=q||"empty"===P?null:"blur"===P?'url("data:image/svg+xml;charset=utf-8,'+(0,i.getImageBlurSvg)({widthInt:B,heightInt:G,blurWidth:d,blurHeight:c,blurDataURL:C||"",objectFit:J.objectFit})+'")':'url("'+P+'")',H=Q?{backgroundSize:J.objectFit||"cover",backgroundPosition:J.objectPosition||"50% 50%",backgroundRepeat:"no-repeat",backgroundImage:Q}:{},K=function(e){let{config:t,src:r,unoptimized:i,width:n,quality:s,sizes:o,loader:a}=e;if(i)return{src:r,srcSet:void 0,sizes:void 0};let{widths:l,kind:d}=function(e,t,r){let{deviceSizes:i,allSizes:n}=e;if(r){let e=/(^|\s)(1?\d?\d)vw/g,t=[];for(let i;i=e.exec(r);i)t.push(parseInt(i[2]));if(t.length){let e=.01*Math.min(...t);return{widths:n.filter(t=>t>=i[0]*e),kind:"w"}}return{widths:n,kind:"w"}}return"number"!=typeof t?{widths:i,kind:"w"}:{widths:[...new Set([t,2*t].map(e=>n.find(t=>t>=e)||n[n.length-1]))],kind:"x"}}(t,n,o),c=l.length-1;return{sizes:o||"w"!==d?o:"100vw",srcSet:l.map((e,i)=>a({config:t,src:r,quality:s,width:e})+" "+("w"===d?e:i+1)+d).join(", "),src:a({config:t,src:r,quality:s,width:l[c]})}}({config:l,src:u,unoptimized:f,width:B,quality:X,sizes:p,loader:F});return{props:{...I,loading:L?"lazy":h,fetchPriority:E,width:B,height:G,decoding:S,className:g,style:{...J,...H},sizes:K.sizes,srcSet:K.srcSet,src:w||K.src},meta:{unoptimized:f,priority:m,placeholder:P,fill:y}}}},79428:e=>{"use strict";e.exports=require("buffer")},79505:(e,t,r)=>{"use strict";r.r(t),r.d(t,{Sidebar:()=>i});let i=(0,r(86188).registerClientReference)(function(){throw Error("Attempted to call Sidebar() from the server but Sidebar is on the client. It's not possible to invoke a client function from the server, it can only be rendered as a Component or passed to props of a Client Component.")},"/home/gabriel/Projects/Resend/react-email/packages/react-email/src/components/sidebar/sidebar.tsx","Sidebar")},79551:e=>{"use strict";e.exports=require("url")},79646:e=>{"use strict";e.exports=require("child_process")},80917:(e,t,r)=>{"use strict";e.exports=r(55738).vendored.contexts.RouterContext},81630:e=>{"use strict";e.exports=require("http")},83997:e=>{"use strict";e.exports=require("tty")},85187:(e,t,r)=>{let{createProxy:i}=r(91339);e.exports=i("/home/gabriel/Projects/Resend/react-email/node_modules/.pnpm/next@15.2.2_@babel+core@7.26.10_react-dom@19.0.0_react@19.0.0__react@19.0.0/node_modules/next/dist/client/app-dir/link.js")},88209:(e,t,r)=>{"use strict";r.r(t),r.d(t,{Code:()=>i});let i=(0,r(86188).registerClientReference)(function(){throw Error("Attempted to call Code() from the server but Code is on the client. It's not possible to invoke a client function from the server, it can only be rendered as a Component or passed to props of a Client Component.")},"/home/gabriel/Projects/Resend/react-email/packages/react-email/src/components/code.tsx","Code")},89928:(e,t,r)=>{"use strict";Object.defineProperty(t,"__esModule",{value:!0}),Object.defineProperty(t,"Image",{enumerable:!0,get:function(){return y}});let i=r(52302),n=r(91161),s=r(7666),o=n._(r(91307)),a=i._(r(67746)),l=i._(r(72743)),d=r(47320),c=r(33139),u=r(52350);r(23873);let p=r(80917),f=i._(r(15614)),m=r(65793),h={deviceSizes:[640,750,828,1080,1200,1920,2048,3840],imageSizes:[16,32,48,64,96,128,256,384],path:"/_next/image",loader:"default",dangerouslyAllowSVG:!1,unoptimized:!1};function g(e,t,r,i,n,s,o){let a=null==e?void 0:e.src;e&&e["data-loaded-src"]!==a&&(e["data-loaded-src"]=a,("decode"in e?e.decode():Promise.resolve()).catch(()=>{}).then(()=>{if(e.parentElement&&e.isConnected){if("empty"!==t&&n(!0),null==r?void 0:r.current){let t=new Event("load");Object.defineProperty(t,"target",{writable:!1,value:e});let i=!1,n=!1;r.current({...t,nativeEvent:t,currentTarget:e,target:e,isDefaultPrevented:()=>i,isPropagationStopped:()=>n,persist:()=>{},preventDefault:()=>{i=!0,t.preventDefault()},stopPropagation:()=>{n=!0,t.stopPropagation()}})}(null==i?void 0:i.current)&&i.current(e)}}))}function b(e){return o.use?{fetchPriority:e}:{fetchpriority:e}}globalThis.__NEXT_IMAGE_IMPORTED=!0;let x=(0,o.forwardRef)((e,t)=>{let{src:r,srcSet:i,sizes:n,height:a,width:l,decoding:d,className:c,style:u,fetchPriority:p,placeholder:f,loading:h,unoptimized:x,fill:v,onLoadRef:y,onLoadingCompleteRef:_,setBlurComplete:w,setShowAltText:A,sizesInput:j,onLoad:P,onError:C,...E}=e,S=(0,o.useCallback)(e=>{e&&(C&&(e.src=e.src),e.complete&&g(e,f,y,_,w,x,j))},[r,f,y,_,w,C,x,j]),R=(0,m.useMergedRef)(t,S);return(0,s.jsx)("img",{...E,...b(p),loading:h,width:l,height:a,decoding:d,"data-nimg":v?"fill":"1",className:c,style:u,sizes:n,srcSet:i,src:r,ref:R,onLoad:e=>{g(e.currentTarget,f,y,_,w,x,j)},onError:e=>{A(!0),"empty"!==f&&w(!0),C&&C(e)}})});function v(e){let{isAppRouter:t,imgAttributes:r}=e,i={as:"image",imageSrcSet:r.srcSet,imageSizes:r.sizes,crossOrigin:r.crossOrigin,referrerPolicy:r.referrerPolicy,...b(r.fetchPriority)};return t&&a.default.preload?(a.default.preload(r.src,i),null):(0,s.jsx)(l.default,{children:(0,s.jsx)("link",{rel:"preload",href:r.srcSet?void 0:r.src,...i},"__nimg-"+r.src+r.srcSet+r.sizes)})}let y=(0,o.forwardRef)((e,t)=>{let r=(0,o.useContext)(p.RouterContext),i=(0,o.useContext)(u.ImageConfigContext),n=(0,o.useMemo)(()=>{var e;let t=h||i||c.imageConfigDefault,r=[...t.deviceSizes,...t.imageSizes].sort((e,t)=>e-t),n=t.deviceSizes.sort((e,t)=>e-t),s=null==(e=t.qualities)?void 0:e.sort((e,t)=>e-t);return{...t,allSizes:r,deviceSizes:n,qualities:s}},[i]),{onLoad:a,onLoadingComplete:l}=e,m=(0,o.useRef)(a);(0,o.useEffect)(()=>{m.current=a},[a]);let g=(0,o.useRef)(l);(0,o.useEffect)(()=>{g.current=l},[l]);let[b,y]=(0,o.useState)(!1),[_,w]=(0,o.useState)(!1),{props:A,meta:j}=(0,d.getImgProps)(e,{defaultLoader:f.default,imgConf:n,blurComplete:b,showAltText:_});return(0,s.jsxs)(s.Fragment,{children:[(0,s.jsx)(x,{...A,unoptimized:j.unoptimized,placeholder:j.placeholder,fill:j.fill,onLoadRef:m,onLoadingCompleteRef:g,setBlurComplete:y,setShowAltText:w,sizesInput:e.sizes,ref:t}),j.priority?(0,s.jsx)(v,{isAppRouter:!r,imgAttributes:A}):null]})});("function"==typeof t.default||"object"==typeof t.default&&null!==t.default)&&void 0===t.default.__esModule&&(Object.defineProperty(t.default,"__esModule",{value:!0}),Object.assign(t.default,t),e.exports=t.default)},91645:e=>{"use strict";e.exports=require("net")},94123:(e,t,r)=>{Promise.resolve().then(r.t.bind(r,85187,23)),Promise.resolve().then(r.t.bind(r,24814,23)),Promise.resolve().then(r.bind(r,26361)),Promise.resolve().then(r.bind(r,3250)),Promise.resolve().then(r.bind(r,88209)),Promise.resolve().then(r.bind(r,42846)),Promise.resolve().then(r.bind(r,79505)),Promise.resolve().then(r.bind(r,63954))},94735:e=>{"use strict";e.exports=require("events")},96074:(e,t,r)=>{"use strict";r.r(t),r.d(t,{GlobalError:()=>o.a,__next_app__:()=>u,pages:()=>c,routeModule:()=>p,tree:()=>d});var i=r(81680),n=r(28015),s=r(29415),o=r.n(s),a=r(94200),l={};for(let e in a)0>["default","tree","pages","GlobalError","__next_app__","routeModule"].indexOf(e)&&(l[e]=()=>a[e]);r.d(t,l);let d={children:["",{children:["__PAGE__",{},{page:[()=>Promise.resolve().then(r.bind(r,43918)),"/home/gabriel/Projects/Resend/react-email/packages/react-email/src/app/page.tsx"],metadata:{icon:[async e=>(await Promise.resolve().then(r.bind(r,53289))).default(e)],apple:[],openGraph:[],twitter:[],manifest:void 0}}]},{layout:[()=>Promise.resolve().then(r.bind(r,36011)),"/home/gabriel/Projects/Resend/react-email/packages/react-email/src/app/layout.tsx"],"not-found":[()=>Promise.resolve().then(r.t.bind(r,74597,23)),"next/dist/client/components/not-found-error"],forbidden:[()=>Promise.resolve().then(r.t.bind(r,57160,23)),"next/dist/client/components/forbidden-error"],unauthorized:[()=>Promise.resolve().then(r.t.bind(r,12297,23)),"next/dist/client/components/unauthorized-error"],metadata:{icon:[async e=>(await Promise.resolve().then(r.bind(r,53289))).default(e)],apple:[],openGraph:[],twitter:[],manifest:void 0}}]}.children,c=["/home/gabriel/Projects/Resend/react-email/packages/react-email/src/app/page.tsx"],u={require:r,loadChunk:()=>Promise.resolve()},p=new i.AppPageRouteModule({definition:{kind:n.RouteKind.APP_PAGE,page:"/page",pathname:"/",bundlePath:"",filename:"",appPaths:[]},userland:{loaderTree:d}})}};var t=require("../webpack-runtime.js");t.C(e);var r=e=>t(t.s=e),i=t.X(0,[811,600,816,42],()=>r(96074));module.exports=i})();
@@ -1 +1 @@
1
- {"version":1,"files":["../../../../../node_modules/.pnpm/next@15.2.2_@babel+core@7.26.10_react-dom@19.0.0_react@19.0.0__react@19.0.0/node_modules/next/dist/compiled/@opentelemetry/api/index.js","../../../../../node_modules/.pnpm/next@15.2.2_@babel+core@7.26.10_react-dom@19.0.0_react@19.0.0__react@19.0.0/node_modules/next/dist/compiled/@opentelemetry/api/package.json","../../../../../node_modules/.pnpm/next@15.2.2_@babel+core@7.26.10_react-dom@19.0.0_react@19.0.0__react@19.0.0/node_modules/next/dist/compiled/next-server/app-page.runtime.prod.js","../../../../../node_modules/.pnpm/next@15.2.2_@babel+core@7.26.10_react-dom@19.0.0_react@19.0.0__react@19.0.0/node_modules/next/dist/server/app-render/action-async-storage-instance.js","../../../../../node_modules/.pnpm/next@15.2.2_@babel+core@7.26.10_react-dom@19.0.0_react@19.0.0__react@19.0.0/node_modules/next/dist/server/app-render/action-async-storage.external.js","../../../../../node_modules/.pnpm/next@15.2.2_@babel+core@7.26.10_react-dom@19.0.0_react@19.0.0__react@19.0.0/node_modules/next/dist/server/app-render/after-task-async-storage-instance.js","../../../../../node_modules/.pnpm/next@15.2.2_@babel+core@7.26.10_react-dom@19.0.0_react@19.0.0__react@19.0.0/node_modules/next/dist/server/app-render/after-task-async-storage.external.js","../../../../../node_modules/.pnpm/next@15.2.2_@babel+core@7.26.10_react-dom@19.0.0_react@19.0.0__react@19.0.0/node_modules/next/dist/server/app-render/async-local-storage.js","../../../../../node_modules/.pnpm/next@15.2.2_@babel+core@7.26.10_react-dom@19.0.0_react@19.0.0__react@19.0.0/node_modules/next/dist/server/app-render/clean-async-snapshot-instance.js","../../../../../node_modules/.pnpm/next@15.2.2_@babel+core@7.26.10_react-dom@19.0.0_react@19.0.0__react@19.0.0/node_modules/next/dist/server/app-render/clean-async-snapshot.external.js","../../../../../node_modules/.pnpm/next@15.2.2_@babel+core@7.26.10_react-dom@19.0.0_react@19.0.0__react@19.0.0/node_modules/next/dist/server/app-render/work-async-storage-instance.js","../../../../../node_modules/.pnpm/next@15.2.2_@babel+core@7.26.10_react-dom@19.0.0_react@19.0.0__react@19.0.0/node_modules/next/dist/server/app-render/work-async-storage.external.js","../../../../../node_modules/.pnpm/next@15.2.2_@babel+core@7.26.10_react-dom@19.0.0_react@19.0.0__react@19.0.0/node_modules/next/dist/server/app-render/work-unit-async-storage-instance.js","../../../../../node_modules/.pnpm/next@15.2.2_@babel+core@7.26.10_react-dom@19.0.0_react@19.0.0__react@19.0.0/node_modules/next/dist/server/app-render/work-unit-async-storage.external.js","../../../../../node_modules/.pnpm/next@15.2.2_@babel+core@7.26.10_react-dom@19.0.0_react@19.0.0__react@19.0.0/node_modules/next/dist/server/lib/trace/constants.js","../../../../../node_modules/.pnpm/next@15.2.2_@babel+core@7.26.10_react-dom@19.0.0_react@19.0.0__react@19.0.0/node_modules/next/dist/server/lib/trace/tracer.js","../../../../../node_modules/.pnpm/next@15.2.2_@babel+core@7.26.10_react-dom@19.0.0_react@19.0.0__react@19.0.0/node_modules/next/dist/shared/lib/is-thenable.js","../../../../../node_modules/.pnpm/next@15.2.2_@babel+core@7.26.10_react-dom@19.0.0_react@19.0.0__react@19.0.0/node_modules/next/package.json","../../../../../package.json","../../../node_modules/next","../../../package.json","../../package.json","../chunks/171.js","../chunks/600.js","../chunks/811.js","../chunks/833.js","../webpack-runtime.js","page_client-reference-manifest.js"]}
1
+ {"version":1,"files":["../../../../../node_modules/.pnpm/next@15.2.2_@babel+core@7.26.10_react-dom@19.0.0_react@19.0.0__react@19.0.0/node_modules/next/dist/compiled/@opentelemetry/api/index.js","../../../../../node_modules/.pnpm/next@15.2.2_@babel+core@7.26.10_react-dom@19.0.0_react@19.0.0__react@19.0.0/node_modules/next/dist/compiled/@opentelemetry/api/package.json","../../../../../node_modules/.pnpm/next@15.2.2_@babel+core@7.26.10_react-dom@19.0.0_react@19.0.0__react@19.0.0/node_modules/next/dist/compiled/next-server/app-page.runtime.prod.js","../../../../../node_modules/.pnpm/next@15.2.2_@babel+core@7.26.10_react-dom@19.0.0_react@19.0.0__react@19.0.0/node_modules/next/dist/server/app-render/action-async-storage-instance.js","../../../../../node_modules/.pnpm/next@15.2.2_@babel+core@7.26.10_react-dom@19.0.0_react@19.0.0__react@19.0.0/node_modules/next/dist/server/app-render/action-async-storage.external.js","../../../../../node_modules/.pnpm/next@15.2.2_@babel+core@7.26.10_react-dom@19.0.0_react@19.0.0__react@19.0.0/node_modules/next/dist/server/app-render/after-task-async-storage-instance.js","../../../../../node_modules/.pnpm/next@15.2.2_@babel+core@7.26.10_react-dom@19.0.0_react@19.0.0__react@19.0.0/node_modules/next/dist/server/app-render/after-task-async-storage.external.js","../../../../../node_modules/.pnpm/next@15.2.2_@babel+core@7.26.10_react-dom@19.0.0_react@19.0.0__react@19.0.0/node_modules/next/dist/server/app-render/async-local-storage.js","../../../../../node_modules/.pnpm/next@15.2.2_@babel+core@7.26.10_react-dom@19.0.0_react@19.0.0__react@19.0.0/node_modules/next/dist/server/app-render/clean-async-snapshot-instance.js","../../../../../node_modules/.pnpm/next@15.2.2_@babel+core@7.26.10_react-dom@19.0.0_react@19.0.0__react@19.0.0/node_modules/next/dist/server/app-render/clean-async-snapshot.external.js","../../../../../node_modules/.pnpm/next@15.2.2_@babel+core@7.26.10_react-dom@19.0.0_react@19.0.0__react@19.0.0/node_modules/next/dist/server/app-render/work-async-storage-instance.js","../../../../../node_modules/.pnpm/next@15.2.2_@babel+core@7.26.10_react-dom@19.0.0_react@19.0.0__react@19.0.0/node_modules/next/dist/server/app-render/work-async-storage.external.js","../../../../../node_modules/.pnpm/next@15.2.2_@babel+core@7.26.10_react-dom@19.0.0_react@19.0.0__react@19.0.0/node_modules/next/dist/server/app-render/work-unit-async-storage-instance.js","../../../../../node_modules/.pnpm/next@15.2.2_@babel+core@7.26.10_react-dom@19.0.0_react@19.0.0__react@19.0.0/node_modules/next/dist/server/app-render/work-unit-async-storage.external.js","../../../../../node_modules/.pnpm/next@15.2.2_@babel+core@7.26.10_react-dom@19.0.0_react@19.0.0__react@19.0.0/node_modules/next/dist/server/lib/trace/constants.js","../../../../../node_modules/.pnpm/next@15.2.2_@babel+core@7.26.10_react-dom@19.0.0_react@19.0.0__react@19.0.0/node_modules/next/dist/server/lib/trace/tracer.js","../../../../../node_modules/.pnpm/next@15.2.2_@babel+core@7.26.10_react-dom@19.0.0_react@19.0.0__react@19.0.0/node_modules/next/dist/shared/lib/is-thenable.js","../../../../../node_modules/.pnpm/next@15.2.2_@babel+core@7.26.10_react-dom@19.0.0_react@19.0.0__react@19.0.0/node_modules/next/package.json","../../../../../package.json","../../../node_modules/next","../../../package.json","../../package.json","../chunks/42.js","../chunks/600.js","../chunks/811.js","../chunks/816.js","../webpack-runtime.js","page_client-reference-manifest.js"]}
@@ -1 +1 @@
1
- globalThis.__RSC_MANIFEST=(globalThis.__RSC_MANIFEST||{});globalThis.__RSC_MANIFEST["/page"]={"moduleLoading":{"prefix":"/_next/","crossOrigin":null},"ssrModuleMapping":{"382":{"*":{"id":"79844","name":"*","chunks":[],"async":false}},"825":{"*":{"id":"11701","name":"*","chunks":[],"async":false}},"1412":{"*":{"id":"89928","name":"*","chunks":[],"async":false}},"2739":{"*":{"id":"22969","name":"*","chunks":[],"async":false}},"3254":{"*":{"id":"88624","name":"*","chunks":[],"async":false}},"3700":{"*":{"id":"62809","name":"*","chunks":[],"async":false}},"4106":{"*":{"id":"6042","name":"*","chunks":[],"async":false}},"4181":{"*":{"id":"17264","name":"*","chunks":[],"async":false}},"4914":{"*":{"id":"30460","name":"*","chunks":[],"async":false}},"4957":{"*":{"id":"79293","name":"*","chunks":[],"async":false}},"4982":{"*":{"id":"76198","name":"*","chunks":[],"async":false}},"5286":{"*":{"id":"42580","name":"*","chunks":[],"async":false}},"5428":{"*":{"id":"60424","name":"*","chunks":[],"async":false}},"5887":{"*":{"id":"98861","name":"*","chunks":[],"async":false}},"6691":{"*":{"id":"90194","name":"*","chunks":[],"async":false}},"6987":{"*":{"id":"10178","name":"*","chunks":[],"async":false}},"8277":{"*":{"id":"65034","name":"*","chunks":[],"async":false}},"9811":{"*":{"id":"5233","name":"*","chunks":[],"async":false}},"9998":{"*":{"id":"59628","name":"*","chunks":[],"async":false}}},"edgeSSRModuleMapping":{},"clientModules":{"/home/gabriel/Projects/Resend/react-email.git/4.0/node_modules/.pnpm/next@15.2.2_@babel+core@7.26.10_react-dom@19.0.0_react@19.0.0__react@19.0.0/node_modules/next/dist/client/components/client-page.js":{"id":5887,"name":"*","chunks":[],"async":false},"/home/gabriel/Projects/Resend/react-email.git/4.0/node_modules/.pnpm/next@15.2.2_@babel+core@7.26.10_react-dom@19.0.0_react@19.0.0__react@19.0.0/node_modules/next/dist/esm/client/components/client-page.js":{"id":5887,"name":"*","chunks":[],"async":false},"/home/gabriel/Projects/Resend/react-email.git/4.0/node_modules/.pnpm/next@15.2.2_@babel+core@7.26.10_react-dom@19.0.0_react@19.0.0__react@19.0.0/node_modules/next/dist/client/components/client-segment.js":{"id":4957,"name":"*","chunks":[],"async":false},"/home/gabriel/Projects/Resend/react-email.git/4.0/node_modules/.pnpm/next@15.2.2_@babel+core@7.26.10_react-dom@19.0.0_react@19.0.0__react@19.0.0/node_modules/next/dist/esm/client/components/client-segment.js":{"id":4957,"name":"*","chunks":[],"async":false},"/home/gabriel/Projects/Resend/react-email.git/4.0/node_modules/.pnpm/next@15.2.2_@babel+core@7.26.10_react-dom@19.0.0_react@19.0.0__react@19.0.0/node_modules/next/dist/client/components/error-boundary.js":{"id":825,"name":"*","chunks":[],"async":false},"/home/gabriel/Projects/Resend/react-email.git/4.0/node_modules/.pnpm/next@15.2.2_@babel+core@7.26.10_react-dom@19.0.0_react@19.0.0__react@19.0.0/node_modules/next/dist/esm/client/components/error-boundary.js":{"id":825,"name":"*","chunks":[],"async":false},"/home/gabriel/Projects/Resend/react-email.git/4.0/node_modules/.pnpm/next@15.2.2_@babel+core@7.26.10_react-dom@19.0.0_react@19.0.0__react@19.0.0/node_modules/next/dist/client/components/http-access-fallback/error-boundary.js":{"id":5286,"name":"*","chunks":[],"async":false},"/home/gabriel/Projects/Resend/react-email.git/4.0/node_modules/.pnpm/next@15.2.2_@babel+core@7.26.10_react-dom@19.0.0_react@19.0.0__react@19.0.0/node_modules/next/dist/esm/client/components/http-access-fallback/error-boundary.js":{"id":5286,"name":"*","chunks":[],"async":false},"/home/gabriel/Projects/Resend/react-email.git/4.0/node_modules/.pnpm/next@15.2.2_@babel+core@7.26.10_react-dom@19.0.0_react@19.0.0__react@19.0.0/node_modules/next/dist/client/components/layout-router.js":{"id":9998,"name":"*","chunks":[],"async":false},"/home/gabriel/Projects/Resend/react-email.git/4.0/node_modules/.pnpm/next@15.2.2_@babel+core@7.26.10_react-dom@19.0.0_react@19.0.0__react@19.0.0/node_modules/next/dist/esm/client/components/layout-router.js":{"id":9998,"name":"*","chunks":[],"async":false},"/home/gabriel/Projects/Resend/react-email.git/4.0/node_modules/.pnpm/next@15.2.2_@babel+core@7.26.10_react-dom@19.0.0_react@19.0.0__react@19.0.0/node_modules/next/dist/client/components/metadata/async-metadata.js":{"id":3254,"name":"*","chunks":[],"async":false},"/home/gabriel/Projects/Resend/react-email.git/4.0/node_modules/.pnpm/next@15.2.2_@babel+core@7.26.10_react-dom@19.0.0_react@19.0.0__react@19.0.0/node_modules/next/dist/esm/client/components/metadata/async-metadata.js":{"id":3254,"name":"*","chunks":[],"async":false},"/home/gabriel/Projects/Resend/react-email.git/4.0/node_modules/.pnpm/next@15.2.2_@babel+core@7.26.10_react-dom@19.0.0_react@19.0.0__react@19.0.0/node_modules/next/dist/client/components/metadata/metadata-boundary.js":{"id":4982,"name":"*","chunks":[],"async":false},"/home/gabriel/Projects/Resend/react-email.git/4.0/node_modules/.pnpm/next@15.2.2_@babel+core@7.26.10_react-dom@19.0.0_react@19.0.0__react@19.0.0/node_modules/next/dist/esm/client/components/metadata/metadata-boundary.js":{"id":4982,"name":"*","chunks":[],"async":false},"/home/gabriel/Projects/Resend/react-email.git/4.0/node_modules/.pnpm/next@15.2.2_@babel+core@7.26.10_react-dom@19.0.0_react@19.0.0__react@19.0.0/node_modules/next/dist/client/components/render-from-template-context.js":{"id":5428,"name":"*","chunks":[],"async":false},"/home/gabriel/Projects/Resend/react-email.git/4.0/node_modules/.pnpm/next@15.2.2_@babel+core@7.26.10_react-dom@19.0.0_react@19.0.0__react@19.0.0/node_modules/next/dist/esm/client/components/render-from-template-context.js":{"id":5428,"name":"*","chunks":[],"async":false},"/home/gabriel/Projects/Resend/react-email.git/4.0/packages/react-email/src/app/globals.css":{"id":6665,"name":"*","chunks":["744","static/chunks/744-79730358b37b2212.js","177","static/chunks/app/layout-a6640e62690d8fd6.js"],"async":false},"/home/gabriel/Projects/Resend/react-email.git/4.0/node_modules/.pnpm/next@15.2.2_@babel+core@7.26.10_react-dom@19.0.0_react@19.0.0__react@19.0.0/node_modules/next/font/google/target.css?{\"path\":\"src/app/fonts.ts\",\"import\":\"Inter\",\"arguments\":[{\"subsets\":[\"latin\"],\"variable\":\"--font-inter\",\"display\":\"swap\"}],\"variableName\":\"inter\"}":{"id":372,"name":"*","chunks":["744","static/chunks/744-79730358b37b2212.js","177","static/chunks/app/layout-a6640e62690d8fd6.js"],"async":false},"/home/gabriel/Projects/Resend/react-email.git/4.0/node_modules/.pnpm/next@15.2.2_@babel+core@7.26.10_react-dom@19.0.0_react@19.0.0__react@19.0.0/node_modules/next/font/local/target.css?{\"path\":\"src/app/fonts.ts\",\"import\":\"\",\"arguments\":[{\"src\":[{\"path\":\"./fonts/SFMono/SFMonoLight.otf\",\"weight\":\"300\"},{\"path\":\"./fonts/SFMono/SFMonoRegular.otf\",\"weight\":\"400\"},{\"path\":\"./fonts/SFMono/SFMonoMedium.otf\",\"weight\":\"500\"},{\"path\":\"./fonts/SFMono/SFMonoSemibold.otf\",\"weight\":\"600\"},{\"path\":\"./fonts/SFMono/SFMonoBold.otf\",\"weight\":\"700\"},{\"path\":\"./fonts/SFMono/SFMonoHeavy.otf\",\"weight\":\"800\"}],\"variable\":\"--font-sf-mono\",\"display\":\"swap\"}],\"variableName\":\"sfMono\"}":{"id":9687,"name":"*","chunks":["744","static/chunks/744-79730358b37b2212.js","177","static/chunks/app/layout-a6640e62690d8fd6.js"],"async":false},"/home/gabriel/Projects/Resend/react-email.git/4.0/packages/react-email/src/contexts/emails.tsx":{"id":6691,"name":"*","chunks":["744","static/chunks/744-79730358b37b2212.js","177","static/chunks/app/layout-a6640e62690d8fd6.js"],"async":false},"/home/gabriel/Projects/Resend/react-email.git/4.0/node_modules/.pnpm/next@15.2.2_@babel+core@7.26.10_react-dom@19.0.0_react@19.0.0__react@19.0.0/node_modules/next/dist/client/app-dir/link.js":{"id":9811,"name":"*","chunks":["486","static/chunks/afa401a5-3e949a1cfd317dd3.js","744","static/chunks/744-79730358b37b2212.js","87","static/chunks/87-38e35f08507de015.js","416","static/chunks/416-56f79fc7e689f06f.js","974","static/chunks/app/page-ba68f50b287e7478.js"],"async":false},"/home/gabriel/Projects/Resend/react-email.git/4.0/node_modules/.pnpm/next@15.2.2_@babel+core@7.26.10_react-dom@19.0.0_react@19.0.0__react@19.0.0/node_modules/next/dist/esm/client/app-dir/link.js":{"id":9811,"name":"*","chunks":["486","static/chunks/afa401a5-3e949a1cfd317dd3.js","744","static/chunks/744-79730358b37b2212.js","87","static/chunks/87-38e35f08507de015.js","416","static/chunks/416-56f79fc7e689f06f.js","974","static/chunks/app/page-ba68f50b287e7478.js"],"async":false},"/home/gabriel/Projects/Resend/react-email.git/4.0/node_modules/.pnpm/next@15.2.2_@babel+core@7.26.10_react-dom@19.0.0_react@19.0.0__react@19.0.0/node_modules/next/dist/client/image-component.js":{"id":1412,"name":"*","chunks":["486","static/chunks/afa401a5-3e949a1cfd317dd3.js","744","static/chunks/744-79730358b37b2212.js","87","static/chunks/87-38e35f08507de015.js","416","static/chunks/416-56f79fc7e689f06f.js","974","static/chunks/app/page-ba68f50b287e7478.js"],"async":false},"/home/gabriel/Projects/Resend/react-email.git/4.0/node_modules/.pnpm/next@15.2.2_@babel+core@7.26.10_react-dom@19.0.0_react@19.0.0__react@19.0.0/node_modules/next/dist/esm/client/image-component.js":{"id":1412,"name":"*","chunks":["486","static/chunks/afa401a5-3e949a1cfd317dd3.js","744","static/chunks/744-79730358b37b2212.js","87","static/chunks/87-38e35f08507de015.js","416","static/chunks/416-56f79fc7e689f06f.js","974","static/chunks/app/page-ba68f50b287e7478.js"],"async":false},"/home/gabriel/Projects/Resend/react-email.git/4.0/packages/react-email/src/app/logo.png":{"id":3700,"name":"*","chunks":["486","static/chunks/afa401a5-3e949a1cfd317dd3.js","744","static/chunks/744-79730358b37b2212.js","87","static/chunks/87-38e35f08507de015.js","416","static/chunks/416-56f79fc7e689f06f.js","974","static/chunks/app/page-ba68f50b287e7478.js"],"async":false},"/home/gabriel/Projects/Resend/react-email.git/4.0/packages/react-email/src/components/button.tsx":{"id":6987,"name":"*","chunks":["486","static/chunks/afa401a5-3e949a1cfd317dd3.js","744","static/chunks/744-79730358b37b2212.js","87","static/chunks/87-38e35f08507de015.js","416","static/chunks/416-56f79fc7e689f06f.js","974","static/chunks/app/page-ba68f50b287e7478.js"],"async":false},"/home/gabriel/Projects/Resend/react-email.git/4.0/packages/react-email/src/components/shell.tsx":{"id":382,"name":"*","chunks":["486","static/chunks/afa401a5-3e949a1cfd317dd3.js","744","static/chunks/744-79730358b37b2212.js","87","static/chunks/87-38e35f08507de015.js","416","static/chunks/416-56f79fc7e689f06f.js","974","static/chunks/app/page-ba68f50b287e7478.js"],"async":false},"/home/gabriel/Projects/Resend/react-email.git/4.0/packages/react-email/src/components/sidebar/sidebar.tsx":{"id":4181,"name":"*","chunks":["486","static/chunks/afa401a5-3e949a1cfd317dd3.js","744","static/chunks/744-79730358b37b2212.js","87","static/chunks/87-38e35f08507de015.js","416","static/chunks/416-56f79fc7e689f06f.js","974","static/chunks/app/page-ba68f50b287e7478.js"],"async":false},"/home/gabriel/Projects/Resend/react-email.git/4.0/packages/react-email/src/components/topbar.tsx":{"id":2739,"name":"*","chunks":["486","static/chunks/afa401a5-3e949a1cfd317dd3.js","744","static/chunks/744-79730358b37b2212.js","87","static/chunks/87-38e35f08507de015.js","416","static/chunks/416-56f79fc7e689f06f.js","974","static/chunks/app/page-ba68f50b287e7478.js"],"async":false},"/home/gabriel/Projects/Resend/react-email.git/4.0/packages/react-email/src/app/preview/[...slug]/preview.tsx":{"id":8277,"name":"*","chunks":[],"async":false},"/home/gabriel/Projects/Resend/react-email.git/4.0/packages/react-email/src/components/toolbar.tsx":{"id":4914,"name":"*","chunks":[],"async":false},"/home/gabriel/Projects/Resend/react-email.git/4.0/packages/react-email/src/contexts/preview.tsx":{"id":4106,"name":"*","chunks":[],"async":false}},"entryCSSFiles":{"/home/gabriel/Projects/Resend/react-email.git/4.0/packages/react-email/src/":[],"/home/gabriel/Projects/Resend/react-email.git/4.0/packages/react-email/src/app/layout":[{"inlined":false,"path":"static/css/d7df9cfc3e182163.css"}],"/home/gabriel/Projects/Resend/react-email.git/4.0/packages/react-email/src/app/page":[]},"rscModuleMapping":{"382":{"*":{"id":"42846","name":"*","chunks":[],"async":false}},"825":{"*":{"id":"29415","name":"*","chunks":[],"async":false}},"1412":{"*":{"id":"24814","name":"*","chunks":[],"async":false}},"2739":{"*":{"id":"63954","name":"*","chunks":[],"async":false}},"3254":{"*":{"id":"37926","name":"*","chunks":[],"async":false}},"3700":{"*":{"id":"26361","name":"*","chunks":[],"async":false}},"4106":{"*":{"id":"89432","name":"*","chunks":[],"async":false}},"4181":{"*":{"id":"79505","name":"*","chunks":[],"async":false}},"4914":{"*":{"id":"93849","name":"*","chunks":[],"async":false}},"4957":{"*":{"id":"3619","name":"*","chunks":[],"async":false}},"4982":{"*":{"id":"73628","name":"*","chunks":[],"async":false}},"5286":{"*":{"id":"70118","name":"*","chunks":[],"async":false}},"5428":{"*":{"id":"27814","name":"*","chunks":[],"async":false}},"5887":{"*":{"id":"53775","name":"*","chunks":[],"async":false}},"6665":{"*":{"id":"37314","name":"*","chunks":[],"async":false}},"6691":{"*":{"id":"56057","name":"*","chunks":[],"async":false}},"6987":{"*":{"id":"3250","name":"*","chunks":[],"async":false}},"8277":{"*":{"id":"99186","name":"*","chunks":[],"async":false}},"9811":{"*":{"id":"85187","name":"*","chunks":[],"async":false}},"9998":{"*":{"id":"36178","name":"*","chunks":[],"async":false}}},"edgeRscModuleMapping":{"825":{"*":{"id":"11701","name":"*","chunks":[],"async":false}},"1412":{"*":{"id":"89928","name":"*","chunks":[],"async":false}},"3254":{"*":{"id":"88624","name":"*","chunks":[],"async":false}},"4957":{"*":{"id":"79293","name":"*","chunks":[],"async":false}},"4982":{"*":{"id":"76198","name":"*","chunks":[],"async":false}},"5286":{"*":{"id":"42580","name":"*","chunks":[],"async":false}},"5428":{"*":{"id":"60424","name":"*","chunks":[],"async":false}},"5887":{"*":{"id":"98861","name":"*","chunks":[],"async":false}},"9811":{"*":{"id":"5233","name":"*","chunks":[],"async":false}},"9998":{"*":{"id":"59628","name":"*","chunks":[],"async":false}}}}
1
+ globalThis.__RSC_MANIFEST=(globalThis.__RSC_MANIFEST||{});globalThis.__RSC_MANIFEST["/page"]={"moduleLoading":{"prefix":"/_next/","crossOrigin":null},"ssrModuleMapping":{"382":{"*":{"id":"79844","name":"*","chunks":[],"async":false}},"825":{"*":{"id":"11701","name":"*","chunks":[],"async":false}},"1412":{"*":{"id":"89928","name":"*","chunks":[],"async":false}},"2739":{"*":{"id":"22969","name":"*","chunks":[],"async":false}},"3254":{"*":{"id":"88624","name":"*","chunks":[],"async":false}},"3700":{"*":{"id":"62809","name":"*","chunks":[],"async":false}},"4181":{"*":{"id":"17264","name":"*","chunks":[],"async":false}},"4567":{"*":{"id":"51924","name":"*","chunks":[],"async":false}},"4957":{"*":{"id":"79293","name":"*","chunks":[],"async":false}},"4982":{"*":{"id":"76198","name":"*","chunks":[],"async":false}},"5286":{"*":{"id":"42580","name":"*","chunks":[],"async":false}},"5428":{"*":{"id":"60424","name":"*","chunks":[],"async":false}},"5575":{"*":{"id":"79110","name":"*","chunks":[],"async":false}},"5887":{"*":{"id":"98861","name":"*","chunks":[],"async":false}},"6474":{"*":{"id":"30792","name":"*","chunks":[],"async":false}},"6634":{"*":{"id":"91641","name":"*","chunks":[],"async":false}},"6987":{"*":{"id":"10178","name":"*","chunks":[],"async":false}},"7374":{"*":{"id":"77043","name":"*","chunks":[],"async":false}},"9811":{"*":{"id":"5233","name":"*","chunks":[],"async":false}},"9998":{"*":{"id":"59628","name":"*","chunks":[],"async":false}}},"edgeSSRModuleMapping":{},"clientModules":{"/home/gabriel/Projects/Resend/react-email/node_modules/.pnpm/next@15.2.2_@babel+core@7.26.10_react-dom@19.0.0_react@19.0.0__react@19.0.0/node_modules/next/dist/client/components/client-page.js":{"id":5887,"name":"*","chunks":[],"async":false},"/home/gabriel/Projects/Resend/react-email/node_modules/.pnpm/next@15.2.2_@babel+core@7.26.10_react-dom@19.0.0_react@19.0.0__react@19.0.0/node_modules/next/dist/esm/client/components/client-page.js":{"id":5887,"name":"*","chunks":[],"async":false},"/home/gabriel/Projects/Resend/react-email/node_modules/.pnpm/next@15.2.2_@babel+core@7.26.10_react-dom@19.0.0_react@19.0.0__react@19.0.0/node_modules/next/dist/client/components/client-segment.js":{"id":4957,"name":"*","chunks":[],"async":false},"/home/gabriel/Projects/Resend/react-email/node_modules/.pnpm/next@15.2.2_@babel+core@7.26.10_react-dom@19.0.0_react@19.0.0__react@19.0.0/node_modules/next/dist/esm/client/components/client-segment.js":{"id":4957,"name":"*","chunks":[],"async":false},"/home/gabriel/Projects/Resend/react-email/node_modules/.pnpm/next@15.2.2_@babel+core@7.26.10_react-dom@19.0.0_react@19.0.0__react@19.0.0/node_modules/next/dist/client/components/error-boundary.js":{"id":825,"name":"*","chunks":[],"async":false},"/home/gabriel/Projects/Resend/react-email/node_modules/.pnpm/next@15.2.2_@babel+core@7.26.10_react-dom@19.0.0_react@19.0.0__react@19.0.0/node_modules/next/dist/esm/client/components/error-boundary.js":{"id":825,"name":"*","chunks":[],"async":false},"/home/gabriel/Projects/Resend/react-email/node_modules/.pnpm/next@15.2.2_@babel+core@7.26.10_react-dom@19.0.0_react@19.0.0__react@19.0.0/node_modules/next/dist/client/components/http-access-fallback/error-boundary.js":{"id":5286,"name":"*","chunks":[],"async":false},"/home/gabriel/Projects/Resend/react-email/node_modules/.pnpm/next@15.2.2_@babel+core@7.26.10_react-dom@19.0.0_react@19.0.0__react@19.0.0/node_modules/next/dist/esm/client/components/http-access-fallback/error-boundary.js":{"id":5286,"name":"*","chunks":[],"async":false},"/home/gabriel/Projects/Resend/react-email/node_modules/.pnpm/next@15.2.2_@babel+core@7.26.10_react-dom@19.0.0_react@19.0.0__react@19.0.0/node_modules/next/dist/client/components/layout-router.js":{"id":9998,"name":"*","chunks":[],"async":false},"/home/gabriel/Projects/Resend/react-email/node_modules/.pnpm/next@15.2.2_@babel+core@7.26.10_react-dom@19.0.0_react@19.0.0__react@19.0.0/node_modules/next/dist/esm/client/components/layout-router.js":{"id":9998,"name":"*","chunks":[],"async":false},"/home/gabriel/Projects/Resend/react-email/node_modules/.pnpm/next@15.2.2_@babel+core@7.26.10_react-dom@19.0.0_react@19.0.0__react@19.0.0/node_modules/next/dist/client/components/metadata/async-metadata.js":{"id":3254,"name":"*","chunks":[],"async":false},"/home/gabriel/Projects/Resend/react-email/node_modules/.pnpm/next@15.2.2_@babel+core@7.26.10_react-dom@19.0.0_react@19.0.0__react@19.0.0/node_modules/next/dist/esm/client/components/metadata/async-metadata.js":{"id":3254,"name":"*","chunks":[],"async":false},"/home/gabriel/Projects/Resend/react-email/node_modules/.pnpm/next@15.2.2_@babel+core@7.26.10_react-dom@19.0.0_react@19.0.0__react@19.0.0/node_modules/next/dist/client/components/metadata/metadata-boundary.js":{"id":4982,"name":"*","chunks":[],"async":false},"/home/gabriel/Projects/Resend/react-email/node_modules/.pnpm/next@15.2.2_@babel+core@7.26.10_react-dom@19.0.0_react@19.0.0__react@19.0.0/node_modules/next/dist/esm/client/components/metadata/metadata-boundary.js":{"id":4982,"name":"*","chunks":[],"async":false},"/home/gabriel/Projects/Resend/react-email/node_modules/.pnpm/next@15.2.2_@babel+core@7.26.10_react-dom@19.0.0_react@19.0.0__react@19.0.0/node_modules/next/dist/client/components/render-from-template-context.js":{"id":5428,"name":"*","chunks":[],"async":false},"/home/gabriel/Projects/Resend/react-email/node_modules/.pnpm/next@15.2.2_@babel+core@7.26.10_react-dom@19.0.0_react@19.0.0__react@19.0.0/node_modules/next/dist/esm/client/components/render-from-template-context.js":{"id":5428,"name":"*","chunks":[],"async":false},"/home/gabriel/Projects/Resend/react-email/packages/react-email/src/app/globals.css":{"id":6665,"name":"*","chunks":["744","static/chunks/744-79730358b37b2212.js","177","static/chunks/app/layout-7dee682873546401.js"],"async":false},"/home/gabriel/Projects/Resend/react-email/node_modules/.pnpm/next@15.2.2_@babel+core@7.26.10_react-dom@19.0.0_react@19.0.0__react@19.0.0/node_modules/next/font/google/target.css?{\"path\":\"src/app/fonts.ts\",\"import\":\"Inter\",\"arguments\":[{\"subsets\":[\"latin\"],\"variable\":\"--font-inter\",\"display\":\"swap\"}],\"variableName\":\"inter\"}":{"id":372,"name":"*","chunks":["744","static/chunks/744-79730358b37b2212.js","177","static/chunks/app/layout-7dee682873546401.js"],"async":false},"/home/gabriel/Projects/Resend/react-email/node_modules/.pnpm/next@15.2.2_@babel+core@7.26.10_react-dom@19.0.0_react@19.0.0__react@19.0.0/node_modules/next/font/local/target.css?{\"path\":\"src/app/fonts.ts\",\"import\":\"\",\"arguments\":[{\"src\":[{\"path\":\"./fonts/SFMono/SFMonoLight.otf\",\"weight\":\"300\"},{\"path\":\"./fonts/SFMono/SFMonoRegular.otf\",\"weight\":\"400\"},{\"path\":\"./fonts/SFMono/SFMonoMedium.otf\",\"weight\":\"500\"},{\"path\":\"./fonts/SFMono/SFMonoSemibold.otf\",\"weight\":\"600\"},{\"path\":\"./fonts/SFMono/SFMonoBold.otf\",\"weight\":\"700\"},{\"path\":\"./fonts/SFMono/SFMonoHeavy.otf\",\"weight\":\"800\"}],\"variable\":\"--font-sf-mono\",\"display\":\"swap\"}],\"variableName\":\"sfMono\"}":{"id":9687,"name":"*","chunks":["744","static/chunks/744-79730358b37b2212.js","177","static/chunks/app/layout-7dee682873546401.js"],"async":false},"/home/gabriel/Projects/Resend/react-email/packages/react-email/src/contexts/emails.tsx":{"id":4567,"name":"*","chunks":["744","static/chunks/744-79730358b37b2212.js","177","static/chunks/app/layout-7dee682873546401.js"],"async":false},"/home/gabriel/Projects/Resend/react-email/node_modules/.pnpm/next@15.2.2_@babel+core@7.26.10_react-dom@19.0.0_react@19.0.0__react@19.0.0/node_modules/next/dist/client/app-dir/link.js":{"id":9811,"name":"*","chunks":["486","static/chunks/afa401a5-3e949a1cfd317dd3.js","744","static/chunks/744-79730358b37b2212.js","880","static/chunks/880-9c0b721328117b8b.js","412","static/chunks/412-31817e53b50a3e73.js","683","static/chunks/683-b769e5d91bdf9a82.js","974","static/chunks/app/page-9ea0bd45cd6294b0.js"],"async":false},"/home/gabriel/Projects/Resend/react-email/node_modules/.pnpm/next@15.2.2_@babel+core@7.26.10_react-dom@19.0.0_react@19.0.0__react@19.0.0/node_modules/next/dist/esm/client/app-dir/link.js":{"id":9811,"name":"*","chunks":["486","static/chunks/afa401a5-3e949a1cfd317dd3.js","744","static/chunks/744-79730358b37b2212.js","880","static/chunks/880-9c0b721328117b8b.js","412","static/chunks/412-31817e53b50a3e73.js","683","static/chunks/683-b769e5d91bdf9a82.js","974","static/chunks/app/page-9ea0bd45cd6294b0.js"],"async":false},"/home/gabriel/Projects/Resend/react-email/node_modules/.pnpm/next@15.2.2_@babel+core@7.26.10_react-dom@19.0.0_react@19.0.0__react@19.0.0/node_modules/next/dist/client/image-component.js":{"id":1412,"name":"*","chunks":["486","static/chunks/afa401a5-3e949a1cfd317dd3.js","744","static/chunks/744-79730358b37b2212.js","880","static/chunks/880-9c0b721328117b8b.js","412","static/chunks/412-31817e53b50a3e73.js","683","static/chunks/683-b769e5d91bdf9a82.js","974","static/chunks/app/page-9ea0bd45cd6294b0.js"],"async":false},"/home/gabriel/Projects/Resend/react-email/node_modules/.pnpm/next@15.2.2_@babel+core@7.26.10_react-dom@19.0.0_react@19.0.0__react@19.0.0/node_modules/next/dist/esm/client/image-component.js":{"id":1412,"name":"*","chunks":["486","static/chunks/afa401a5-3e949a1cfd317dd3.js","744","static/chunks/744-79730358b37b2212.js","880","static/chunks/880-9c0b721328117b8b.js","412","static/chunks/412-31817e53b50a3e73.js","683","static/chunks/683-b769e5d91bdf9a82.js","974","static/chunks/app/page-9ea0bd45cd6294b0.js"],"async":false},"/home/gabriel/Projects/Resend/react-email/packages/react-email/src/app/logo.png":{"id":3700,"name":"*","chunks":["486","static/chunks/afa401a5-3e949a1cfd317dd3.js","744","static/chunks/744-79730358b37b2212.js","880","static/chunks/880-9c0b721328117b8b.js","412","static/chunks/412-31817e53b50a3e73.js","683","static/chunks/683-b769e5d91bdf9a82.js","974","static/chunks/app/page-9ea0bd45cd6294b0.js"],"async":false},"/home/gabriel/Projects/Resend/react-email/packages/react-email/src/components/button.tsx":{"id":6987,"name":"*","chunks":["486","static/chunks/afa401a5-3e949a1cfd317dd3.js","744","static/chunks/744-79730358b37b2212.js","880","static/chunks/880-9c0b721328117b8b.js","412","static/chunks/412-31817e53b50a3e73.js","683","static/chunks/683-b769e5d91bdf9a82.js","974","static/chunks/app/page-9ea0bd45cd6294b0.js"],"async":false},"/home/gabriel/Projects/Resend/react-email/packages/react-email/src/components/code.tsx":{"id":5575,"name":"*","chunks":["486","static/chunks/afa401a5-3e949a1cfd317dd3.js","744","static/chunks/744-79730358b37b2212.js","880","static/chunks/880-9c0b721328117b8b.js","412","static/chunks/412-31817e53b50a3e73.js","683","static/chunks/683-b769e5d91bdf9a82.js","974","static/chunks/app/page-9ea0bd45cd6294b0.js"],"async":false},"/home/gabriel/Projects/Resend/react-email/packages/react-email/src/components/shell.tsx":{"id":382,"name":"*","chunks":["486","static/chunks/afa401a5-3e949a1cfd317dd3.js","744","static/chunks/744-79730358b37b2212.js","880","static/chunks/880-9c0b721328117b8b.js","412","static/chunks/412-31817e53b50a3e73.js","683","static/chunks/683-b769e5d91bdf9a82.js","974","static/chunks/app/page-9ea0bd45cd6294b0.js"],"async":false},"/home/gabriel/Projects/Resend/react-email/packages/react-email/src/components/sidebar/sidebar.tsx":{"id":4181,"name":"*","chunks":["486","static/chunks/afa401a5-3e949a1cfd317dd3.js","744","static/chunks/744-79730358b37b2212.js","880","static/chunks/880-9c0b721328117b8b.js","412","static/chunks/412-31817e53b50a3e73.js","683","static/chunks/683-b769e5d91bdf9a82.js","974","static/chunks/app/page-9ea0bd45cd6294b0.js"],"async":false},"/home/gabriel/Projects/Resend/react-email/packages/react-email/src/components/topbar.tsx":{"id":2739,"name":"*","chunks":["486","static/chunks/afa401a5-3e949a1cfd317dd3.js","744","static/chunks/744-79730358b37b2212.js","880","static/chunks/880-9c0b721328117b8b.js","412","static/chunks/412-31817e53b50a3e73.js","683","static/chunks/683-b769e5d91bdf9a82.js","974","static/chunks/app/page-9ea0bd45cd6294b0.js"],"async":false},"/home/gabriel/Projects/Resend/react-email/packages/react-email/src/app/preview/[...slug]/preview.tsx":{"id":6474,"name":"*","chunks":[],"async":false},"/home/gabriel/Projects/Resend/react-email/packages/react-email/src/components/toolbar.tsx":{"id":6634,"name":"*","chunks":[],"async":false},"/home/gabriel/Projects/Resend/react-email/packages/react-email/src/contexts/preview.tsx":{"id":7374,"name":"*","chunks":[],"async":false}},"entryCSSFiles":{"/home/gabriel/Projects/Resend/react-email/packages/react-email/src/":[],"/home/gabriel/Projects/Resend/react-email/packages/react-email/src/app/layout":[{"inlined":false,"path":"static/css/e68ebc9bb8f7b3f4.css"}],"/home/gabriel/Projects/Resend/react-email/packages/react-email/src/app/page":[]},"rscModuleMapping":{"382":{"*":{"id":"42846","name":"*","chunks":[],"async":false}},"825":{"*":{"id":"29415","name":"*","chunks":[],"async":false}},"1412":{"*":{"id":"24814","name":"*","chunks":[],"async":false}},"2739":{"*":{"id":"63954","name":"*","chunks":[],"async":false}},"3254":{"*":{"id":"37926","name":"*","chunks":[],"async":false}},"3700":{"*":{"id":"26361","name":"*","chunks":[],"async":false}},"4181":{"*":{"id":"79505","name":"*","chunks":[],"async":false}},"4567":{"*":{"id":"56057","name":"*","chunks":[],"async":false}},"4957":{"*":{"id":"3619","name":"*","chunks":[],"async":false}},"4982":{"*":{"id":"73628","name":"*","chunks":[],"async":false}},"5286":{"*":{"id":"70118","name":"*","chunks":[],"async":false}},"5428":{"*":{"id":"27814","name":"*","chunks":[],"async":false}},"5575":{"*":{"id":"88209","name":"*","chunks":[],"async":false}},"5887":{"*":{"id":"53775","name":"*","chunks":[],"async":false}},"6474":{"*":{"id":"99186","name":"*","chunks":[],"async":false}},"6634":{"*":{"id":"93849","name":"*","chunks":[],"async":false}},"6665":{"*":{"id":"37314","name":"*","chunks":[],"async":false}},"6987":{"*":{"id":"3250","name":"*","chunks":[],"async":false}},"7374":{"*":{"id":"89432","name":"*","chunks":[],"async":false}},"9811":{"*":{"id":"85187","name":"*","chunks":[],"async":false}},"9998":{"*":{"id":"36178","name":"*","chunks":[],"async":false}}},"edgeRscModuleMapping":{"825":{"*":{"id":"11701","name":"*","chunks":[],"async":false}},"1412":{"*":{"id":"89928","name":"*","chunks":[],"async":false}},"3254":{"*":{"id":"88624","name":"*","chunks":[],"async":false}},"4957":{"*":{"id":"79293","name":"*","chunks":[],"async":false}},"4982":{"*":{"id":"76198","name":"*","chunks":[],"async":false}},"5286":{"*":{"id":"42580","name":"*","chunks":[],"async":false}},"5428":{"*":{"id":"60424","name":"*","chunks":[],"async":false}},"5887":{"*":{"id":"98861","name":"*","chunks":[],"async":false}},"9811":{"*":{"id":"5233","name":"*","chunks":[],"async":false}},"9998":{"*":{"id":"59628","name":"*","chunks":[],"async":false}}}}