react-email 1.0.11 → 1.1.1

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 (151) hide show
  1. package/.eslintrc.js +4 -0
  2. package/.prettierrc.js +3 -0
  3. package/dist/_preview/components.d.ts +4 -0
  4. package/dist/_preview/components.js +41 -0
  5. package/dist/_preview/pages.d.ts +9 -0
  6. package/dist/_preview/pages.js +22 -0
  7. package/dist/_preview/root.d.ts +4 -0
  8. package/dist/_preview/root.js +25 -0
  9. package/dist/_preview/styles.d.ts +4 -0
  10. package/dist/_preview/styles.js +9 -0
  11. package/dist/_preview/utils.d.ts +4 -0
  12. package/dist/_preview/utils.js +17 -0
  13. package/dist/commands/dev.d.ts +1 -0
  14. package/dist/commands/dev.js +135 -0
  15. package/dist/index.d.ts +2 -0
  16. package/dist/index.js +2 -29
  17. package/dist/utils/check-directory-exist.d.ts +1 -0
  18. package/dist/utils/check-directory-exist.js +9 -0
  19. package/dist/utils/check-empty-directory.d.ts +1 -0
  20. package/dist/utils/check-empty-directory.js +12 -0
  21. package/dist/utils/contants.d.ts +11 -0
  22. package/dist/utils/contants.js +24 -0
  23. package/dist/utils/create-directory.d.ts +1 -0
  24. package/dist/utils/create-directory.js +9 -0
  25. package/dist/utils/watcher.d.ts +2 -0
  26. package/dist/utils/watcher.js +22 -0
  27. package/package.json +6 -6
  28. package/preview/package.json +3 -18
  29. package/preview/src/components/layout.tsx +9 -44
  30. package/preview/src/components/sidebar.tsx +70 -66
  31. package/preview/src/components/topbar.tsx +44 -2
  32. package/preview/src/pages/_app.tsx +0 -6
  33. package/preview/src/pages/index.tsx +19 -4
  34. package/preview/src/pages/preview/[slug].tsx +13 -2
  35. package/scripts/prepare-preview.ts +177 -0
  36. package/source/_preview/components.ts +47 -0
  37. package/source/_preview/pages.ts +23 -0
  38. package/source/_preview/root.ts +27 -0
  39. package/source/_preview/styles.ts +6 -0
  40. package/source/_preview/utils.ts +16 -0
  41. package/source/commands/dev.ts +165 -0
  42. package/source/index.ts +16 -0
  43. package/source/utils/check-directory-exist.ts +4 -0
  44. package/source/utils/check-empty-directory.ts +6 -0
  45. package/source/utils/contants.ts +38 -0
  46. package/source/utils/create-directory.ts +4 -0
  47. package/source/utils/watcher.ts +22 -0
  48. package/tsconfig.json +36 -0
  49. package/preview/.next/BUILD_ID +0 -1
  50. package/preview/.next/build-manifest.json +0 -42
  51. package/preview/.next/cache/.tsbuildinfo +0 -1
  52. package/preview/.next/cache/next-server.js.nft.json +0 -290
  53. package/preview/.next/cache/webpack/client-development/0.pack +0 -0
  54. package/preview/.next/cache/webpack/client-development/1.pack +0 -0
  55. package/preview/.next/cache/webpack/client-development/10.pack +0 -0
  56. package/preview/.next/cache/webpack/client-development/11.pack +0 -0
  57. package/preview/.next/cache/webpack/client-development/12.pack +0 -0
  58. package/preview/.next/cache/webpack/client-development/13.pack +0 -0
  59. package/preview/.next/cache/webpack/client-development/14.pack +0 -0
  60. package/preview/.next/cache/webpack/client-development/15.pack +0 -0
  61. package/preview/.next/cache/webpack/client-development/16.pack +0 -0
  62. package/preview/.next/cache/webpack/client-development/2.pack +0 -0
  63. package/preview/.next/cache/webpack/client-development/3.pack +0 -0
  64. package/preview/.next/cache/webpack/client-development/4.pack +0 -0
  65. package/preview/.next/cache/webpack/client-development/5.pack +0 -0
  66. package/preview/.next/cache/webpack/client-development/6.pack +0 -0
  67. package/preview/.next/cache/webpack/client-development/7.pack +0 -0
  68. package/preview/.next/cache/webpack/client-development/8.pack +0 -0
  69. package/preview/.next/cache/webpack/client-development/9.pack +0 -0
  70. package/preview/.next/cache/webpack/client-development/index.pack +0 -0
  71. package/preview/.next/cache/webpack/client-development/index.pack.old +0 -0
  72. package/preview/.next/cache/webpack/client-production/0.pack +0 -0
  73. package/preview/.next/cache/webpack/client-production/index.pack +0 -0
  74. package/preview/.next/cache/webpack/server-development/0.pack +0 -0
  75. package/preview/.next/cache/webpack/server-development/1.pack +0 -0
  76. package/preview/.next/cache/webpack/server-development/10.pack +0 -0
  77. package/preview/.next/cache/webpack/server-development/11.pack +0 -0
  78. package/preview/.next/cache/webpack/server-development/12.pack +0 -0
  79. package/preview/.next/cache/webpack/server-development/13.pack +0 -0
  80. package/preview/.next/cache/webpack/server-development/14.pack +0 -0
  81. package/preview/.next/cache/webpack/server-development/15.pack +0 -0
  82. package/preview/.next/cache/webpack/server-development/16.pack +0 -0
  83. package/preview/.next/cache/webpack/server-development/2.pack +0 -0
  84. package/preview/.next/cache/webpack/server-development/3.pack +0 -0
  85. package/preview/.next/cache/webpack/server-development/4.pack +0 -0
  86. package/preview/.next/cache/webpack/server-development/5.pack +0 -0
  87. package/preview/.next/cache/webpack/server-development/6.pack +0 -0
  88. package/preview/.next/cache/webpack/server-development/7.pack +0 -0
  89. package/preview/.next/cache/webpack/server-development/8.pack +0 -0
  90. package/preview/.next/cache/webpack/server-development/9.pack +0 -0
  91. package/preview/.next/cache/webpack/server-development/index.pack +0 -0
  92. package/preview/.next/cache/webpack/server-development/index.pack.old +0 -0
  93. package/preview/.next/cache/webpack/server-production/0.pack +0 -0
  94. package/preview/.next/cache/webpack/server-production/index.pack +0 -0
  95. package/preview/.next/export-marker.json +0 -6
  96. package/preview/.next/images-manifest.json +0 -22
  97. package/preview/.next/next-server.js.nft.json +0 -290
  98. package/preview/.next/package.json +0 -3
  99. package/preview/.next/prerender-manifest.json +0 -24
  100. package/preview/.next/react-loadable-manifest.json +0 -1
  101. package/preview/.next/required-server-files.json +0 -113
  102. package/preview/.next/routes-manifest.json +0 -48
  103. package/preview/.next/server/chunks/664.js +0 -3836
  104. package/preview/.next/server/chunks/676.js +0 -35
  105. package/preview/.next/server/chunks/759.js +0 -1548
  106. package/preview/.next/server/chunks/font-manifest.json +0 -6
  107. package/preview/.next/server/font-loader-manifest.js +0 -4
  108. package/preview/.next/server/font-loader-manifest.json +0 -6
  109. package/preview/.next/server/font-manifest.json +0 -6
  110. package/preview/.next/server/middleware-build-manifest.js +0 -42
  111. package/preview/.next/server/middleware-manifest.json +0 -6
  112. package/preview/.next/server/middleware-react-loadable-manifest.js +0 -1
  113. package/preview/.next/server/pages/404.html +0 -12
  114. package/preview/.next/server/pages/500.html +0 -12
  115. package/preview/.next/server/pages/_app.js +0 -115
  116. package/preview/.next/server/pages/_app.js.nft.json +0 -29
  117. package/preview/.next/server/pages/_document.js +0 -1335
  118. package/preview/.next/server/pages/_document.js.nft.json +0 -33
  119. package/preview/.next/server/pages/_error.js +0 -195
  120. package/preview/.next/server/pages/_error.js.nft.json +0 -23
  121. package/preview/.next/server/pages/index.html +0 -1
  122. package/preview/.next/server/pages/index.js +0 -310
  123. package/preview/.next/server/pages/index.js.nft.json +0 -132
  124. package/preview/.next/server/pages/index.json +0 -1
  125. package/preview/.next/server/pages/preview/[slug].html +0 -1
  126. package/preview/.next/server/pages/preview/[slug].js +0 -388
  127. package/preview/.next/server/pages/preview/[slug].js.nft.json +0 -179
  128. package/preview/.next/server/pages-manifest.json +0 -8
  129. package/preview/.next/server/webpack-runtime.js +0 -213
  130. package/preview/.next/static/cY9PAzmXyKOoOW2gY4i5N/_buildManifest.js +0 -17
  131. package/preview/.next/static/cY9PAzmXyKOoOW2gY4i5N/_ssgManifest.js +0 -2
  132. package/preview/.next/static/chunks/727-0b09744222e89df8.js +0 -4402
  133. package/preview/.next/static/chunks/759-cdb5c7b41d03d871.js +0 -1135
  134. package/preview/.next/static/chunks/framework-3b5a00d5d7e8d93b.js +0 -9188
  135. package/preview/.next/static/chunks/main-50de763069eba4b2.js +0 -5078
  136. package/preview/.next/static/chunks/pages/_app-76f7305c0a91d681.js +0 -116
  137. package/preview/.next/static/chunks/pages/_error-8353112a01355ec2.js +0 -19
  138. package/preview/.next/static/chunks/pages/index-cd725955236a17bd.js +0 -44
  139. package/preview/.next/static/chunks/pages/preview/[slug]-e24c537be91754b2.js +0 -57
  140. package/preview/.next/static/chunks/polyfills-c67a75d1b6f99dc8.js +0 -6342
  141. package/preview/.next/static/chunks/webpack-0b5d8249fb15f5f3.js +0 -141
  142. package/preview/.next/static/css/8543b02f1dad7784.css +0 -3
  143. package/preview/.next/static/media/2aaf0723e720e8b9.p.woff2 +0 -0
  144. package/preview/.next/static/media/9c4f34569c9b36ca.woff2 +0 -0
  145. package/preview/.next/static/media/ae9ae6716d4f8bf8.woff2 +0 -0
  146. package/preview/.next/static/media/b1db3e28af9ef94a.woff2 +0 -0
  147. package/preview/.next/static/media/b967158bc7d7a9fb.woff2 +0 -0
  148. package/preview/.next/static/media/c0f5ec5bbf5913b7.woff2 +0 -0
  149. package/preview/.next/static/media/d1d9458b69004127.woff2 +0 -0
  150. package/preview/.next/trace +0 -7
  151. package/preview/yarn.lock +0 -1434
@@ -1,6 +0,0 @@
1
- [
2
- {
3
- "url": "https://fonts.googleapis.com/css2?family=Inter:wght@400;500&display=swap",
4
- "content": "@font-face{font-family:'Inter';font-style:normal;font-weight:400;font-display:swap;src:url(https://fonts.gstatic.com/s/inter/v12/UcCO3FwrK3iLTeHuS_fvQtMwCp50KnMw2boKoduKmMEVuLyfMZs.woff) format('woff')}@font-face{font-family:'Inter';font-style:normal;font-weight:500;font-display:swap;src:url(https://fonts.gstatic.com/s/inter/v12/UcCO3FwrK3iLTeHuS_fvQtMwCp50KnMw2boKoduKmMEVuI6fMZs.woff) format('woff')}@font-face{font-family:'Inter';font-style:normal;font-weight:400;font-display:swap;src:url(https://fonts.gstatic.com/s/inter/v12/UcC73FwrK3iLTeHuS_fvQtMwCp50KnMa2JL7W0Q5n-wU.woff2) format('woff2');unicode-range:U+0460-052F,U+1C80-1C88,U+20B4,U+2DE0-2DFF,U+A640-A69F,U+FE2E-FE2F}@font-face{font-family:'Inter';font-style:normal;font-weight:400;font-display:swap;src:url(https://fonts.gstatic.com/s/inter/v12/UcC73FwrK3iLTeHuS_fvQtMwCp50KnMa0ZL7W0Q5n-wU.woff2) format('woff2');unicode-range:U+0301,U+0400-045F,U+0490-0491,U+04B0-04B1,U+2116}@font-face{font-family:'Inter';font-style:normal;font-weight:400;font-display:swap;src:url(https://fonts.gstatic.com/s/inter/v12/UcC73FwrK3iLTeHuS_fvQtMwCp50KnMa2ZL7W0Q5n-wU.woff2) format('woff2');unicode-range:U+1F00-1FFF}@font-face{font-family:'Inter';font-style:normal;font-weight:400;font-display:swap;src:url(https://fonts.gstatic.com/s/inter/v12/UcC73FwrK3iLTeHuS_fvQtMwCp50KnMa1pL7W0Q5n-wU.woff2) format('woff2');unicode-range:U+0370-03FF}@font-face{font-family:'Inter';font-style:normal;font-weight:400;font-display:swap;src:url(https://fonts.gstatic.com/s/inter/v12/UcC73FwrK3iLTeHuS_fvQtMwCp50KnMa2pL7W0Q5n-wU.woff2) format('woff2');unicode-range:U+0102-0103,U+0110-0111,U+0128-0129,U+0168-0169,U+01A0-01A1,U+01AF-01B0,U+1EA0-1EF9,U+20AB}@font-face{font-family:'Inter';font-style:normal;font-weight:400;font-display:swap;src:url(https://fonts.gstatic.com/s/inter/v12/UcC73FwrK3iLTeHuS_fvQtMwCp50KnMa25L7W0Q5n-wU.woff2) format('woff2');unicode-range:U+0100-024F,U+0259,U+1E00-1EFF,U+2020,U+20A0-20AB,U+20AD-20CF,U+2113,U+2C60-2C7F,U+A720-A7FF}@font-face{font-family:'Inter';font-style:normal;font-weight:400;font-display:swap;src:url(https://fonts.gstatic.com/s/inter/v12/UcC73FwrK3iLTeHuS_fvQtMwCp50KnMa1ZL7W0Q5nw.woff2) format('woff2');unicode-range:U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+2000-206F,U+2074,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD}@font-face{font-family:'Inter';font-style:normal;font-weight:500;font-display:swap;src:url(https://fonts.gstatic.com/s/inter/v12/UcC73FwrK3iLTeHuS_fvQtMwCp50KnMa2JL7W0Q5n-wU.woff2) format('woff2');unicode-range:U+0460-052F,U+1C80-1C88,U+20B4,U+2DE0-2DFF,U+A640-A69F,U+FE2E-FE2F}@font-face{font-family:'Inter';font-style:normal;font-weight:500;font-display:swap;src:url(https://fonts.gstatic.com/s/inter/v12/UcC73FwrK3iLTeHuS_fvQtMwCp50KnMa0ZL7W0Q5n-wU.woff2) format('woff2');unicode-range:U+0301,U+0400-045F,U+0490-0491,U+04B0-04B1,U+2116}@font-face{font-family:'Inter';font-style:normal;font-weight:500;font-display:swap;src:url(https://fonts.gstatic.com/s/inter/v12/UcC73FwrK3iLTeHuS_fvQtMwCp50KnMa2ZL7W0Q5n-wU.woff2) format('woff2');unicode-range:U+1F00-1FFF}@font-face{font-family:'Inter';font-style:normal;font-weight:500;font-display:swap;src:url(https://fonts.gstatic.com/s/inter/v12/UcC73FwrK3iLTeHuS_fvQtMwCp50KnMa1pL7W0Q5n-wU.woff2) format('woff2');unicode-range:U+0370-03FF}@font-face{font-family:'Inter';font-style:normal;font-weight:500;font-display:swap;src:url(https://fonts.gstatic.com/s/inter/v12/UcC73FwrK3iLTeHuS_fvQtMwCp50KnMa2pL7W0Q5n-wU.woff2) format('woff2');unicode-range:U+0102-0103,U+0110-0111,U+0128-0129,U+0168-0169,U+01A0-01A1,U+01AF-01B0,U+1EA0-1EF9,U+20AB}@font-face{font-family:'Inter';font-style:normal;font-weight:500;font-display:swap;src:url(https://fonts.gstatic.com/s/inter/v12/UcC73FwrK3iLTeHuS_fvQtMwCp50KnMa25L7W0Q5n-wU.woff2) format('woff2');unicode-range:U+0100-024F,U+0259,U+1E00-1EFF,U+2020,U+20A0-20AB,U+20AD-20CF,U+2113,U+2C60-2C7F,U+A720-A7FF}@font-face{font-family:'Inter';font-style:normal;font-weight:500;font-display:swap;src:url(https://fonts.gstatic.com/s/inter/v12/UcC73FwrK3iLTeHuS_fvQtMwCp50KnMa1ZL7W0Q5nw.woff2) format('woff2');unicode-range:U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+2000-206F,U+2074,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD}"
5
- }
6
- ]
@@ -1,4 +0,0 @@
1
- self.__FONT_LOADER_MANIFEST = {
2
- pages: { '/_app': ['static/media/2aaf0723e720e8b9.p.woff2'] },
3
- app: {},
4
- };
@@ -1,6 +0,0 @@
1
- {
2
- "pages": {
3
- "/_app": ["static/media/2aaf0723e720e8b9.p.woff2"]
4
- },
5
- "app": {}
6
- }
@@ -1,6 +0,0 @@
1
- [
2
- {
3
- "url": "https://fonts.googleapis.com/css2?family=Inter:wght@400;500&display=swap",
4
- "content": "@font-face{font-family:'Inter';font-style:normal;font-weight:400;font-display:swap;src:url(https://fonts.gstatic.com/s/inter/v12/UcCO3FwrK3iLTeHuS_fvQtMwCp50KnMw2boKoduKmMEVuLyfMZs.woff) format('woff')}@font-face{font-family:'Inter';font-style:normal;font-weight:500;font-display:swap;src:url(https://fonts.gstatic.com/s/inter/v12/UcCO3FwrK3iLTeHuS_fvQtMwCp50KnMw2boKoduKmMEVuI6fMZs.woff) format('woff')}@font-face{font-family:'Inter';font-style:normal;font-weight:400;font-display:swap;src:url(https://fonts.gstatic.com/s/inter/v12/UcC73FwrK3iLTeHuS_fvQtMwCp50KnMa2JL7W0Q5n-wU.woff2) format('woff2');unicode-range:U+0460-052F,U+1C80-1C88,U+20B4,U+2DE0-2DFF,U+A640-A69F,U+FE2E-FE2F}@font-face{font-family:'Inter';font-style:normal;font-weight:400;font-display:swap;src:url(https://fonts.gstatic.com/s/inter/v12/UcC73FwrK3iLTeHuS_fvQtMwCp50KnMa0ZL7W0Q5n-wU.woff2) format('woff2');unicode-range:U+0301,U+0400-045F,U+0490-0491,U+04B0-04B1,U+2116}@font-face{font-family:'Inter';font-style:normal;font-weight:400;font-display:swap;src:url(https://fonts.gstatic.com/s/inter/v12/UcC73FwrK3iLTeHuS_fvQtMwCp50KnMa2ZL7W0Q5n-wU.woff2) format('woff2');unicode-range:U+1F00-1FFF}@font-face{font-family:'Inter';font-style:normal;font-weight:400;font-display:swap;src:url(https://fonts.gstatic.com/s/inter/v12/UcC73FwrK3iLTeHuS_fvQtMwCp50KnMa1pL7W0Q5n-wU.woff2) format('woff2');unicode-range:U+0370-03FF}@font-face{font-family:'Inter';font-style:normal;font-weight:400;font-display:swap;src:url(https://fonts.gstatic.com/s/inter/v12/UcC73FwrK3iLTeHuS_fvQtMwCp50KnMa2pL7W0Q5n-wU.woff2) format('woff2');unicode-range:U+0102-0103,U+0110-0111,U+0128-0129,U+0168-0169,U+01A0-01A1,U+01AF-01B0,U+1EA0-1EF9,U+20AB}@font-face{font-family:'Inter';font-style:normal;font-weight:400;font-display:swap;src:url(https://fonts.gstatic.com/s/inter/v12/UcC73FwrK3iLTeHuS_fvQtMwCp50KnMa25L7W0Q5n-wU.woff2) format('woff2');unicode-range:U+0100-024F,U+0259,U+1E00-1EFF,U+2020,U+20A0-20AB,U+20AD-20CF,U+2113,U+2C60-2C7F,U+A720-A7FF}@font-face{font-family:'Inter';font-style:normal;font-weight:400;font-display:swap;src:url(https://fonts.gstatic.com/s/inter/v12/UcC73FwrK3iLTeHuS_fvQtMwCp50KnMa1ZL7W0Q5nw.woff2) format('woff2');unicode-range:U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+2000-206F,U+2074,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD}@font-face{font-family:'Inter';font-style:normal;font-weight:500;font-display:swap;src:url(https://fonts.gstatic.com/s/inter/v12/UcC73FwrK3iLTeHuS_fvQtMwCp50KnMa2JL7W0Q5n-wU.woff2) format('woff2');unicode-range:U+0460-052F,U+1C80-1C88,U+20B4,U+2DE0-2DFF,U+A640-A69F,U+FE2E-FE2F}@font-face{font-family:'Inter';font-style:normal;font-weight:500;font-display:swap;src:url(https://fonts.gstatic.com/s/inter/v12/UcC73FwrK3iLTeHuS_fvQtMwCp50KnMa0ZL7W0Q5n-wU.woff2) format('woff2');unicode-range:U+0301,U+0400-045F,U+0490-0491,U+04B0-04B1,U+2116}@font-face{font-family:'Inter';font-style:normal;font-weight:500;font-display:swap;src:url(https://fonts.gstatic.com/s/inter/v12/UcC73FwrK3iLTeHuS_fvQtMwCp50KnMa2ZL7W0Q5n-wU.woff2) format('woff2');unicode-range:U+1F00-1FFF}@font-face{font-family:'Inter';font-style:normal;font-weight:500;font-display:swap;src:url(https://fonts.gstatic.com/s/inter/v12/UcC73FwrK3iLTeHuS_fvQtMwCp50KnMa1pL7W0Q5n-wU.woff2) format('woff2');unicode-range:U+0370-03FF}@font-face{font-family:'Inter';font-style:normal;font-weight:500;font-display:swap;src:url(https://fonts.gstatic.com/s/inter/v12/UcC73FwrK3iLTeHuS_fvQtMwCp50KnMa2pL7W0Q5n-wU.woff2) format('woff2');unicode-range:U+0102-0103,U+0110-0111,U+0128-0129,U+0168-0169,U+01A0-01A1,U+01AF-01B0,U+1EA0-1EF9,U+20AB}@font-face{font-family:'Inter';font-style:normal;font-weight:500;font-display:swap;src:url(https://fonts.gstatic.com/s/inter/v12/UcC73FwrK3iLTeHuS_fvQtMwCp50KnMa25L7W0Q5n-wU.woff2) format('woff2');unicode-range:U+0100-024F,U+0259,U+1E00-1EFF,U+2020,U+20A0-20AB,U+20AD-20CF,U+2113,U+2C60-2C7F,U+A720-A7FF}@font-face{font-family:'Inter';font-style:normal;font-weight:500;font-display:swap;src:url(https://fonts.gstatic.com/s/inter/v12/UcC73FwrK3iLTeHuS_fvQtMwCp50KnMa1ZL7W0Q5nw.woff2) format('woff2');unicode-range:U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+2000-206F,U+2074,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD}"
5
- }
6
- ]
@@ -1,42 +0,0 @@
1
- self.__BUILD_MANIFEST = {
2
- polyfillFiles: ['static/chunks/polyfills-c67a75d1b6f99dc8.js'],
3
- devFiles: [],
4
- ampDevFiles: [],
5
- lowPriorityFiles: [
6
- 'static/cY9PAzmXyKOoOW2gY4i5N/_buildManifest.js',
7
- 'static/cY9PAzmXyKOoOW2gY4i5N/_ssgManifest.js',
8
- ],
9
- rootMainFiles: [],
10
- pages: {
11
- '/': [
12
- 'static/chunks/webpack-0b5d8249fb15f5f3.js',
13
- 'static/chunks/framework-3b5a00d5d7e8d93b.js',
14
- 'static/chunks/main-50de763069eba4b2.js',
15
- 'static/chunks/727-0b09744222e89df8.js',
16
- 'static/chunks/759-cdb5c7b41d03d871.js',
17
- 'static/chunks/pages/index-cd725955236a17bd.js',
18
- ],
19
- '/_app': [
20
- 'static/chunks/webpack-0b5d8249fb15f5f3.js',
21
- 'static/chunks/framework-3b5a00d5d7e8d93b.js',
22
- 'static/chunks/main-50de763069eba4b2.js',
23
- 'static/css/8543b02f1dad7784.css',
24
- 'static/chunks/pages/_app-76f7305c0a91d681.js',
25
- ],
26
- '/_error': [
27
- 'static/chunks/webpack-0b5d8249fb15f5f3.js',
28
- 'static/chunks/framework-3b5a00d5d7e8d93b.js',
29
- 'static/chunks/main-50de763069eba4b2.js',
30
- 'static/chunks/pages/_error-8353112a01355ec2.js',
31
- ],
32
- '/preview/[slug]': [
33
- 'static/chunks/webpack-0b5d8249fb15f5f3.js',
34
- 'static/chunks/framework-3b5a00d5d7e8d93b.js',
35
- 'static/chunks/main-50de763069eba4b2.js',
36
- 'static/chunks/727-0b09744222e89df8.js',
37
- 'static/chunks/759-cdb5c7b41d03d871.js',
38
- 'static/chunks/pages/preview/[slug]-e24c537be91754b2.js',
39
- ],
40
- },
41
- ampFirstPages: [],
42
- };
@@ -1,6 +0,0 @@
1
- {
2
- "sortedMiddleware": [],
3
- "middleware": {},
4
- "functions": {},
5
- "version": 2
6
- }
@@ -1 +0,0 @@
1
- self.__REACT_LOADABLE_MANIFEST = {};
@@ -1,12 +0,0 @@
1
- <!DOCTYPE html><html lang="en"><head><meta charSet="utf-8"/><meta name="viewport" content="width=device-width"/><link rel="preconnect" href="https://fonts.googleapis.com"/><link rel="preconnect" href="https://fonts.gstatic.com"/><title>404: This page could not be found</title><meta name="next-head-count" content="6"/><link rel="preconnect" href="https://fonts.gstatic.com" crossorigin /><link rel="preload" href="/_next/static/media/2aaf0723e720e8b9.p.woff2" as="font" type="font/woff2" crossorigin="anonymous"/><link rel="preload" href="/_next/static/css/8543b02f1dad7784.css" as="style"/><link rel="stylesheet" href="/_next/static/css/8543b02f1dad7784.css" data-n-g=""/><noscript data-n-css=""></noscript><script defer="" nomodule="" src="/_next/static/chunks/polyfills-c67a75d1b6f99dc8.js"></script><script src="/_next/static/chunks/webpack-0b5d8249fb15f5f3.js" defer=""></script><script src="/_next/static/chunks/framework-3b5a00d5d7e8d93b.js" defer=""></script><script src="/_next/static/chunks/main-50de763069eba4b2.js" defer=""></script><script src="/_next/static/chunks/pages/_app-76f7305c0a91d681.js" defer=""></script><script src="/_next/static/chunks/pages/_error-8353112a01355ec2.js" defer=""></script><script src="/_next/static/cY9PAzmXyKOoOW2gY4i5N/_buildManifest.js" defer=""></script><script src="/_next/static/cY9PAzmXyKOoOW2gY4i5N/_ssgManifest.js" defer=""></script><style data-href="https://fonts.googleapis.com/css2?family=Inter:wght@400;500&display=swap">@font-face{font-family:'Inter';font-style:normal;font-weight:400;font-display:swap;src:url(https://fonts.gstatic.com/s/inter/v12/UcCO3FwrK3iLTeHuS_fvQtMwCp50KnMw2boKoduKmMEVuLyfMZs.woff) format('woff')}@font-face{font-family:'Inter';font-style:normal;font-weight:500;font-display:swap;src:url(https://fonts.gstatic.com/s/inter/v12/UcCO3FwrK3iLTeHuS_fvQtMwCp50KnMw2boKoduKmMEVuI6fMZs.woff) format('woff')}@font-face{font-family:'Inter';font-style:normal;font-weight:400;font-display:swap;src:url(https://fonts.gstatic.com/s/inter/v12/UcC73FwrK3iLTeHuS_fvQtMwCp50KnMa2JL7W0Q5n-wU.woff2) format('woff2');unicode-range:U+0460-052F,U+1C80-1C88,U+20B4,U+2DE0-2DFF,U+A640-A69F,U+FE2E-FE2F}@font-face{font-family:'Inter';font-style:normal;font-weight:400;font-display:swap;src:url(https://fonts.gstatic.com/s/inter/v12/UcC73FwrK3iLTeHuS_fvQtMwCp50KnMa0ZL7W0Q5n-wU.woff2) format('woff2');unicode-range:U+0301,U+0400-045F,U+0490-0491,U+04B0-04B1,U+2116}@font-face{font-family:'Inter';font-style:normal;font-weight:400;font-display:swap;src:url(https://fonts.gstatic.com/s/inter/v12/UcC73FwrK3iLTeHuS_fvQtMwCp50KnMa2ZL7W0Q5n-wU.woff2) format('woff2');unicode-range:U+1F00-1FFF}@font-face{font-family:'Inter';font-style:normal;font-weight:400;font-display:swap;src:url(https://fonts.gstatic.com/s/inter/v12/UcC73FwrK3iLTeHuS_fvQtMwCp50KnMa1pL7W0Q5n-wU.woff2) format('woff2');unicode-range:U+0370-03FF}@font-face{font-family:'Inter';font-style:normal;font-weight:400;font-display:swap;src:url(https://fonts.gstatic.com/s/inter/v12/UcC73FwrK3iLTeHuS_fvQtMwCp50KnMa2pL7W0Q5n-wU.woff2) format('woff2');unicode-range:U+0102-0103,U+0110-0111,U+0128-0129,U+0168-0169,U+01A0-01A1,U+01AF-01B0,U+1EA0-1EF9,U+20AB}@font-face{font-family:'Inter';font-style:normal;font-weight:400;font-display:swap;src:url(https://fonts.gstatic.com/s/inter/v12/UcC73FwrK3iLTeHuS_fvQtMwCp50KnMa25L7W0Q5n-wU.woff2) format('woff2');unicode-range:U+0100-024F,U+0259,U+1E00-1EFF,U+2020,U+20A0-20AB,U+20AD-20CF,U+2113,U+2C60-2C7F,U+A720-A7FF}@font-face{font-family:'Inter';font-style:normal;font-weight:400;font-display:swap;src:url(https://fonts.gstatic.com/s/inter/v12/UcC73FwrK3iLTeHuS_fvQtMwCp50KnMa1ZL7W0Q5nw.woff2) format('woff2');unicode-range:U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+2000-206F,U+2074,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD}@font-face{font-family:'Inter';font-style:normal;font-weight:500;font-display:swap;src:url(https://fonts.gstatic.com/s/inter/v12/UcC73FwrK3iLTeHuS_fvQtMwCp50KnMa2JL7W0Q5n-wU.woff2) format('woff2');unicode-range:U+0460-052F,U+1C80-1C88,U+20B4,U+2DE0-2DFF,U+A640-A69F,U+FE2E-FE2F}@font-face{font-family:'Inter';font-style:normal;font-weight:500;font-display:swap;src:url(https://fonts.gstatic.com/s/inter/v12/UcC73FwrK3iLTeHuS_fvQtMwCp50KnMa0ZL7W0Q5n-wU.woff2) format('woff2');unicode-range:U+0301,U+0400-045F,U+0490-0491,U+04B0-04B1,U+2116}@font-face{font-family:'Inter';font-style:normal;font-weight:500;font-display:swap;src:url(https://fonts.gstatic.com/s/inter/v12/UcC73FwrK3iLTeHuS_fvQtMwCp50KnMa2ZL7W0Q5n-wU.woff2) format('woff2');unicode-range:U+1F00-1FFF}@font-face{font-family:'Inter';font-style:normal;font-weight:500;font-display:swap;src:url(https://fonts.gstatic.com/s/inter/v12/UcC73FwrK3iLTeHuS_fvQtMwCp50KnMa1pL7W0Q5n-wU.woff2) format('woff2');unicode-range:U+0370-03FF}@font-face{font-family:'Inter';font-style:normal;font-weight:500;font-display:swap;src:url(https://fonts.gstatic.com/s/inter/v12/UcC73FwrK3iLTeHuS_fvQtMwCp50KnMa2pL7W0Q5n-wU.woff2) format('woff2');unicode-range:U+0102-0103,U+0110-0111,U+0128-0129,U+0168-0169,U+01A0-01A1,U+01AF-01B0,U+1EA0-1EF9,U+20AB}@font-face{font-family:'Inter';font-style:normal;font-weight:500;font-display:swap;src:url(https://fonts.gstatic.com/s/inter/v12/UcC73FwrK3iLTeHuS_fvQtMwCp50KnMa25L7W0Q5n-wU.woff2) format('woff2');unicode-range:U+0100-024F,U+0259,U+1E00-1EFF,U+2020,U+20A0-20AB,U+20AD-20CF,U+2113,U+2C60-2C7F,U+A720-A7FF}@font-face{font-family:'Inter';font-style:normal;font-weight:500;font-display:swap;src:url(https://fonts.gstatic.com/s/inter/v12/UcC73FwrK3iLTeHuS_fvQtMwCp50KnMa1ZL7W0Q5nw.woff2) format('woff2');unicode-range:U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+2000-206F,U+2074,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD}</style></head><body class="bg-black text-slate-12 font-sans"><div id="__next"><div class="__variable_9c9965 font-sans"><div style="font-family:-apple-system, BlinkMacSystemFont, Roboto, &quot;Segoe UI&quot;, &quot;Fira Sans&quot;, Avenir, &quot;Helvetica Neue&quot;, &quot;Lucida Grande&quot;, sans-serif;height:100vh;text-align:center;display:flex;flex-direction:column;align-items:center;justify-content:center"><div><style>
2
- body { margin: 0; color: #000; background: #fff; }
3
- .next-error-h1 {
4
- border-right: 1px solid rgba(0, 0, 0, .3);
5
- }
6
-
7
- @media (prefers-color-scheme: dark) {
8
- body { color: #fff; background: #000; }
9
- .next-error-h1 {
10
- border-right: 1px solid rgba(255, 255, 255, .3);
11
- }
12
- }</style><h1 class="next-error-h1" style="display:inline-block;margin:0;margin-right:20px;padding:0 23px 0 0;font-size:24px;font-weight:500;vertical-align:top;line-height:49px">404</h1><div style="display:inline-block;text-align:left;line-height:49px;height:49px;vertical-align:middle"><h2 style="font-size:14px;font-weight:normal;line-height:49px;margin:0;padding:0">This page could not be found<!-- -->.</h2></div></div></div></div></div><script id="__NEXT_DATA__" type="application/json">{"props":{"pageProps":{"statusCode":404}},"page":"/_error","query":{},"buildId":"cY9PAzmXyKOoOW2gY4i5N","nextExport":true,"isFallback":false,"gip":true,"scriptLoader":[]}</script></body></html>
@@ -1,12 +0,0 @@
1
- <!DOCTYPE html><html lang="en"><head><meta charSet="utf-8"/><meta name="viewport" content="width=device-width"/><link rel="preconnect" href="https://fonts.googleapis.com"/><link rel="preconnect" href="https://fonts.gstatic.com"/><title>500: Internal Server Error</title><meta name="next-head-count" content="6"/><link rel="preconnect" href="https://fonts.gstatic.com" crossorigin /><link rel="preload" href="/_next/static/media/2aaf0723e720e8b9.p.woff2" as="font" type="font/woff2" crossorigin="anonymous"/><link rel="preload" href="/_next/static/css/8543b02f1dad7784.css" as="style"/><link rel="stylesheet" href="/_next/static/css/8543b02f1dad7784.css" data-n-g=""/><noscript data-n-css=""></noscript><script defer="" nomodule="" src="/_next/static/chunks/polyfills-c67a75d1b6f99dc8.js"></script><script src="/_next/static/chunks/webpack-0b5d8249fb15f5f3.js" defer=""></script><script src="/_next/static/chunks/framework-3b5a00d5d7e8d93b.js" defer=""></script><script src="/_next/static/chunks/main-50de763069eba4b2.js" defer=""></script><script src="/_next/static/chunks/pages/_app-76f7305c0a91d681.js" defer=""></script><script src="/_next/static/chunks/pages/_error-8353112a01355ec2.js" defer=""></script><script src="/_next/static/cY9PAzmXyKOoOW2gY4i5N/_buildManifest.js" defer=""></script><script src="/_next/static/cY9PAzmXyKOoOW2gY4i5N/_ssgManifest.js" defer=""></script><style data-href="https://fonts.googleapis.com/css2?family=Inter:wght@400;500&display=swap">@font-face{font-family:'Inter';font-style:normal;font-weight:400;font-display:swap;src:url(https://fonts.gstatic.com/s/inter/v12/UcCO3FwrK3iLTeHuS_fvQtMwCp50KnMw2boKoduKmMEVuLyfMZs.woff) format('woff')}@font-face{font-family:'Inter';font-style:normal;font-weight:500;font-display:swap;src:url(https://fonts.gstatic.com/s/inter/v12/UcCO3FwrK3iLTeHuS_fvQtMwCp50KnMw2boKoduKmMEVuI6fMZs.woff) format('woff')}@font-face{font-family:'Inter';font-style:normal;font-weight:400;font-display:swap;src:url(https://fonts.gstatic.com/s/inter/v12/UcC73FwrK3iLTeHuS_fvQtMwCp50KnMa2JL7W0Q5n-wU.woff2) format('woff2');unicode-range:U+0460-052F,U+1C80-1C88,U+20B4,U+2DE0-2DFF,U+A640-A69F,U+FE2E-FE2F}@font-face{font-family:'Inter';font-style:normal;font-weight:400;font-display:swap;src:url(https://fonts.gstatic.com/s/inter/v12/UcC73FwrK3iLTeHuS_fvQtMwCp50KnMa0ZL7W0Q5n-wU.woff2) format('woff2');unicode-range:U+0301,U+0400-045F,U+0490-0491,U+04B0-04B1,U+2116}@font-face{font-family:'Inter';font-style:normal;font-weight:400;font-display:swap;src:url(https://fonts.gstatic.com/s/inter/v12/UcC73FwrK3iLTeHuS_fvQtMwCp50KnMa2ZL7W0Q5n-wU.woff2) format('woff2');unicode-range:U+1F00-1FFF}@font-face{font-family:'Inter';font-style:normal;font-weight:400;font-display:swap;src:url(https://fonts.gstatic.com/s/inter/v12/UcC73FwrK3iLTeHuS_fvQtMwCp50KnMa1pL7W0Q5n-wU.woff2) format('woff2');unicode-range:U+0370-03FF}@font-face{font-family:'Inter';font-style:normal;font-weight:400;font-display:swap;src:url(https://fonts.gstatic.com/s/inter/v12/UcC73FwrK3iLTeHuS_fvQtMwCp50KnMa2pL7W0Q5n-wU.woff2) format('woff2');unicode-range:U+0102-0103,U+0110-0111,U+0128-0129,U+0168-0169,U+01A0-01A1,U+01AF-01B0,U+1EA0-1EF9,U+20AB}@font-face{font-family:'Inter';font-style:normal;font-weight:400;font-display:swap;src:url(https://fonts.gstatic.com/s/inter/v12/UcC73FwrK3iLTeHuS_fvQtMwCp50KnMa25L7W0Q5n-wU.woff2) format('woff2');unicode-range:U+0100-024F,U+0259,U+1E00-1EFF,U+2020,U+20A0-20AB,U+20AD-20CF,U+2113,U+2C60-2C7F,U+A720-A7FF}@font-face{font-family:'Inter';font-style:normal;font-weight:400;font-display:swap;src:url(https://fonts.gstatic.com/s/inter/v12/UcC73FwrK3iLTeHuS_fvQtMwCp50KnMa1ZL7W0Q5nw.woff2) format('woff2');unicode-range:U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+2000-206F,U+2074,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD}@font-face{font-family:'Inter';font-style:normal;font-weight:500;font-display:swap;src:url(https://fonts.gstatic.com/s/inter/v12/UcC73FwrK3iLTeHuS_fvQtMwCp50KnMa2JL7W0Q5n-wU.woff2) format('woff2');unicode-range:U+0460-052F,U+1C80-1C88,U+20B4,U+2DE0-2DFF,U+A640-A69F,U+FE2E-FE2F}@font-face{font-family:'Inter';font-style:normal;font-weight:500;font-display:swap;src:url(https://fonts.gstatic.com/s/inter/v12/UcC73FwrK3iLTeHuS_fvQtMwCp50KnMa0ZL7W0Q5n-wU.woff2) format('woff2');unicode-range:U+0301,U+0400-045F,U+0490-0491,U+04B0-04B1,U+2116}@font-face{font-family:'Inter';font-style:normal;font-weight:500;font-display:swap;src:url(https://fonts.gstatic.com/s/inter/v12/UcC73FwrK3iLTeHuS_fvQtMwCp50KnMa2ZL7W0Q5n-wU.woff2) format('woff2');unicode-range:U+1F00-1FFF}@font-face{font-family:'Inter';font-style:normal;font-weight:500;font-display:swap;src:url(https://fonts.gstatic.com/s/inter/v12/UcC73FwrK3iLTeHuS_fvQtMwCp50KnMa1pL7W0Q5n-wU.woff2) format('woff2');unicode-range:U+0370-03FF}@font-face{font-family:'Inter';font-style:normal;font-weight:500;font-display:swap;src:url(https://fonts.gstatic.com/s/inter/v12/UcC73FwrK3iLTeHuS_fvQtMwCp50KnMa2pL7W0Q5n-wU.woff2) format('woff2');unicode-range:U+0102-0103,U+0110-0111,U+0128-0129,U+0168-0169,U+01A0-01A1,U+01AF-01B0,U+1EA0-1EF9,U+20AB}@font-face{font-family:'Inter';font-style:normal;font-weight:500;font-display:swap;src:url(https://fonts.gstatic.com/s/inter/v12/UcC73FwrK3iLTeHuS_fvQtMwCp50KnMa25L7W0Q5n-wU.woff2) format('woff2');unicode-range:U+0100-024F,U+0259,U+1E00-1EFF,U+2020,U+20A0-20AB,U+20AD-20CF,U+2113,U+2C60-2C7F,U+A720-A7FF}@font-face{font-family:'Inter';font-style:normal;font-weight:500;font-display:swap;src:url(https://fonts.gstatic.com/s/inter/v12/UcC73FwrK3iLTeHuS_fvQtMwCp50KnMa1ZL7W0Q5nw.woff2) format('woff2');unicode-range:U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+2000-206F,U+2074,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD}</style></head><body class="bg-black text-slate-12 font-sans"><div id="__next"><div class="__variable_9c9965 font-sans"><div style="font-family:-apple-system, BlinkMacSystemFont, Roboto, &quot;Segoe UI&quot;, &quot;Fira Sans&quot;, Avenir, &quot;Helvetica Neue&quot;, &quot;Lucida Grande&quot;, sans-serif;height:100vh;text-align:center;display:flex;flex-direction:column;align-items:center;justify-content:center"><div><style>
2
- body { margin: 0; color: #000; background: #fff; }
3
- .next-error-h1 {
4
- border-right: 1px solid rgba(0, 0, 0, .3);
5
- }
6
-
7
- @media (prefers-color-scheme: dark) {
8
- body { color: #fff; background: #000; }
9
- .next-error-h1 {
10
- border-right: 1px solid rgba(255, 255, 255, .3);
11
- }
12
- }</style><h1 class="next-error-h1" style="display:inline-block;margin:0;margin-right:20px;padding:0 23px 0 0;font-size:24px;font-weight:500;vertical-align:top;line-height:49px">500</h1><div style="display:inline-block;text-align:left;line-height:49px;height:49px;vertical-align:middle"><h2 style="font-size:14px;font-weight:normal;line-height:49px;margin:0;padding:0">Internal Server Error<!-- -->.</h2></div></div></div></div></div><script id="__NEXT_DATA__" type="application/json">{"props":{"pageProps":{"statusCode":500}},"page":"/_error","query":{},"buildId":"cY9PAzmXyKOoOW2gY4i5N","nextExport":true,"isFallback":false,"gip":true,"scriptLoader":[]}</script></body></html>
@@ -1,115 +0,0 @@
1
- (() => {
2
- var exports = {};
3
- exports.id = 888;
4
- exports.ids = [888];
5
- exports.modules = {
6
- /***/ 413: /***/ (module) => {
7
- // Exports
8
- module.exports = {
9
- style: {
10
- fontFamily: "'__Inter_9c9965', '__Inter_Fallback_9c9965'",
11
- fontStyle: 'normal',
12
- },
13
- className: '__className_9c9965',
14
- variable: '__variable_9c9965',
15
- };
16
-
17
- /***/
18
- },
19
-
20
- /***/ 7653: /***/ (
21
- __unused_webpack_module,
22
- __webpack_exports__,
23
- __webpack_require__,
24
- ) => {
25
- 'use strict';
26
- // ESM COMPAT FLAG
27
- __webpack_require__.r(__webpack_exports__);
28
-
29
- // EXPORTS
30
- __webpack_require__.d(__webpack_exports__, {
31
- default: () => /* binding */ _app,
32
- });
33
-
34
- // EXTERNAL MODULE: external "react/jsx-runtime"
35
- var jsx_runtime_ = __webpack_require__(997);
36
- // EXTERNAL MODULE: ./node_modules/@next/font/google/target.css?{"path":"src/pages/_app.tsx","import":"Inter","arguments":[{"subsets":["latin"],"variable":"--font-inter"}],"variableName":"inter"}
37
- var _app_tsx_import_Inter_arguments_subsets_latin_variable_font_inter_variableName_inter_ =
38
- __webpack_require__(413);
39
- var _app_tsx_import_Inter_arguments_subsets_latin_variable_font_inter_variableName_inter_default =
40
- /*#__PURE__*/ __webpack_require__.n(
41
- _app_tsx_import_Inter_arguments_subsets_latin_variable_font_inter_variableName_inter_,
42
- );
43
- // EXTERNAL MODULE: ./src/styles/globals.css
44
- var globals = __webpack_require__(108);
45
- // EXTERNAL MODULE: external "classnames"
46
- var external_classnames_ = __webpack_require__(9003);
47
- var external_classnames_default =
48
- /*#__PURE__*/ __webpack_require__.n(external_classnames_); // CONCATENATED MODULE: external "next/head"
49
- const head_namespaceObject = require('next/head');
50
- var head_default =
51
- /*#__PURE__*/ __webpack_require__.n(head_namespaceObject); // CONCATENATED MODULE: ./src/pages/_app.tsx
52
- function MyApp({ Component, pageProps }) {
53
- return /*#__PURE__*/ (0, jsx_runtime_.jsxs)('div', {
54
- className: external_classnames_default()(
55
- _app_tsx_import_Inter_arguments_subsets_latin_variable_font_inter_variableName_inter_default()
56
- .variable,
57
- 'font-sans',
58
- ),
59
- children: [
60
- /*#__PURE__*/ (0, jsx_runtime_.jsxs)(head_default(), {
61
- children: [
62
- /*#__PURE__*/ jsx_runtime_.jsx('title', {
63
- children: 'React Email',
64
- }),
65
- /*#__PURE__*/ jsx_runtime_.jsx('link', {
66
- rel: 'preconnect',
67
- href: 'https://fonts.googleapis.com',
68
- }),
69
- /*#__PURE__*/ jsx_runtime_.jsx('link', {
70
- rel: 'preconnect',
71
- href: 'https://fonts.gstatic.com',
72
- }),
73
- /*#__PURE__*/ jsx_runtime_.jsx('link', {
74
- href: 'https://fonts.googleapis.com/css2?family=Inter:wght@400;500&display=swap',
75
- rel: 'stylesheet',
76
- }),
77
- ],
78
- }),
79
- /*#__PURE__*/ jsx_runtime_.jsx(Component, {
80
- ...pageProps,
81
- }),
82
- ],
83
- });
84
- }
85
- /* harmony default export */ const _app = MyApp;
86
-
87
- /***/
88
- },
89
-
90
- /***/ 108: /***/ () => {
91
- /***/
92
- },
93
-
94
- /***/ 9003: /***/ (module) => {
95
- 'use strict';
96
- module.exports = require('classnames');
97
-
98
- /***/
99
- },
100
-
101
- /***/ 997: /***/ (module) => {
102
- 'use strict';
103
- module.exports = require('react/jsx-runtime');
104
-
105
- /***/
106
- },
107
- };
108
- // load runtime
109
- var __webpack_require__ = require('../webpack-runtime.js');
110
- __webpack_require__.C(exports);
111
- var __webpack_exec__ = (moduleId) =>
112
- __webpack_require__((__webpack_require__.s = moduleId));
113
- var __webpack_exports__ = __webpack_exec__(7653);
114
- module.exports = __webpack_exports__;
115
- })();
@@ -1,29 +0,0 @@
1
- {
2
- "version": 1,
3
- "files": [
4
- "../webpack-runtime.js",
5
- "../../package.json",
6
- "../../../node_modules/classnames/package.json",
7
- "../../../node_modules/next/dist/shared/lib/head.js",
8
- "../../../node_modules/next/dist/shared/lib/head-manager-context.js",
9
- "../../../node_modules/classnames/index.js",
10
- "../../../node_modules/next/head.js",
11
- "../../../node_modules/next/package.json",
12
- "../../../node_modules/react/package.json",
13
- "../../../node_modules/react/index.js",
14
- "../../../node_modules/react/jsx-runtime.js",
15
- "../../../node_modules/react/cjs/react.production.min.js",
16
- "../../../node_modules/react/cjs/react.development.js",
17
- "../../../node_modules/react/cjs/react-jsx-runtime.production.min.js",
18
- "../../../node_modules/react/cjs/react-jsx-runtime.development.js",
19
- "../../../node_modules/next/dist/shared/lib/amp-context.js",
20
- "../../../node_modules/next/dist/shared/lib/side-effect.js",
21
- "../../../node_modules/next/dist/shared/lib/amp-mode.js",
22
- "../../../node_modules/next/dist/shared/lib/utils/warn-once.js",
23
- "../../../node_modules/@swc/helpers/lib/_interop_require_default.js",
24
- "../../../node_modules/@swc/helpers/package.json",
25
- "../../../node_modules/@swc/helpers/lib/_interop_require_wildcard.js",
26
- "../../../node_modules/@swc/helpers/lib/_extends.js",
27
- "../../../package.json"
28
- ]
29
- }