ghost 4.34.2 → 4.36.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 (70) hide show
  1. package/README.md +1 -1
  2. package/core/built/assets/ghost-dark-abde961aa8d00ab2696e3ceb0a2ca24b.css +1 -0
  3. package/core/built/assets/ghost.min-46e075517808b53170b8d9ab0b96d796.css +1 -0
  4. package/core/built/assets/{ghost.min-4886fb099a526cb6ca5b733bbfbb5d3a.js → ghost.min-f10401ea8fdfee5dcc88cf4dff785a88.js} +1756 -1487
  5. package/core/built/assets/icons/get-started-members.svg +6 -0
  6. package/core/built/assets/icons/get-started-migrations.svg +6 -0
  7. package/core/built/assets/icons/get-started.svg +3 -0
  8. package/core/built/assets/icons/members-placeholder.svg +5 -1
  9. package/core/built/assets/icons/pages-placeholder.svg +3 -1
  10. package/core/built/assets/icons/posts-placeholder.svg +4 -1
  11. package/core/built/assets/icons/tags-placeholder.svg +5 -1
  12. package/core/built/assets/img/marketing/members-1-8b89a1f48fe7b336754e91a429531f65.jpg +0 -0
  13. package/core/built/assets/img/marketing/members-2-791205c82d5cf221f8c99a74f9ee1739.jpg +0 -0
  14. package/core/built/assets/{vendor.min-079fa61c64e24f0984f2cd7d2ebbf3c3.js → vendor.min-3aa87b4d7b43675386a96b869ed00493.js} +1509 -1441
  15. package/core/frontend/helpers/cancel_link.js +1 -1
  16. package/core/frontend/helpers/prev_post.js +1 -1
  17. package/core/frontend/helpers/products.js +2 -6
  18. package/core/frontend/helpers/tpl/content-cta.hbs +1 -1
  19. package/core/frontend/meta/asset-url.js +11 -0
  20. package/core/frontend/services/routing/controllers/email-post.js +1 -1
  21. package/core/frontend/services/routing/controllers/preview.js +1 -1
  22. package/core/frontend/services/routing/controllers/static.js +1 -1
  23. package/core/frontend/services/routing/helpers/entry-lookup.js +1 -1
  24. package/core/frontend/services/routing/helpers/fetch-data.js +1 -1
  25. package/core/frontend/views/unsubscribe.hbs +4 -2
  26. package/core/server/api/canary/authentication.js +4 -0
  27. package/core/server/api/canary/email-post.js +1 -1
  28. package/core/server/api/canary/pages-public.js +1 -1
  29. package/core/server/api/canary/pages.js +1 -1
  30. package/core/server/api/canary/posts-public.js +1 -1
  31. package/core/server/api/canary/posts.js +1 -1
  32. package/core/server/api/canary/utils/serializers/input/pages.js +1 -9
  33. package/core/server/api/canary/utils/serializers/input/posts.js +1 -9
  34. package/core/server/api/canary/utils/serializers/output/email-posts.js +2 -2
  35. package/core/server/api/canary/utils/serializers/output/pages.js +9 -5
  36. package/core/server/api/canary/utils/serializers/output/posts.js +9 -5
  37. package/core/server/api/canary/utils/serializers/output/preview.js +3 -2
  38. package/core/server/api/canary/utils/serializers/output/products.js +2 -0
  39. package/core/server/api/canary/utils/serializers/output/utils/clean.js +0 -9
  40. package/core/server/api/canary/utils/serializers/output/utils/mapper.js +18 -3
  41. package/core/server/api/canary/utils/validators/input/pages.js +1 -1
  42. package/core/server/api/canary/utils/validators/input/posts.js +1 -1
  43. package/core/server/data/exporter/table-lists.js +1 -0
  44. package/core/server/data/migrations/versions/4.35/2022-01-20-05-55-add-post-products-table.js +8 -0
  45. package/core/server/data/migrations/versions/4.35/2022-01-30-15-17-set-welcome-page-url-from-settings.js +45 -0
  46. package/core/server/data/migrations/versions/4.35/2022-02-01-11-48-update-email-recipient-filter-column-type.js +18 -0
  47. package/core/server/data/migrations/versions/4.35/2022-02-01-12-03-update-recipient-filter-column-type.js +18 -0
  48. package/core/server/data/migrations/versions/4.35/2022-02-02-10-38-add-default-content-visibility-tiers-setting.js +8 -0
  49. package/core/server/data/migrations/versions/4.35/2022-02-02-13-10-transform-specific-tiers-default-content-visibility.js +147 -0
  50. package/core/server/data/migrations/versions/4.35/2022-02-04-04-34-populate-empty-portal-products.js +60 -0
  51. package/core/server/data/migrations/versions/4.36/2022-02-07-14-34-add-last-seen-at-column-to-members.js +10 -0
  52. package/core/server/data/schema/default-settings.json +4 -0
  53. package/core/server/data/schema/schema.js +11 -4
  54. package/core/server/models/post.js +29 -5
  55. package/core/server/models/settings.js +46 -48
  56. package/core/server/services/auth/setup.js +37 -1
  57. package/core/server/services/bulk-email/bulk-email-processor.js +1 -0
  58. package/core/server/services/mega/template.js +1 -1
  59. package/core/server/services/members/content-gating.js +9 -1
  60. package/core/server/services/members/middleware.js +21 -4
  61. package/core/server/services/members/service.js +30 -4
  62. package/core/server/services/posts/posts-service.js +25 -1
  63. package/core/server/web/admin/views/default-prod.html +4 -4
  64. package/core/server/web/admin/views/default.html +4 -4
  65. package/core/shared/labs.js +3 -2
  66. package/jsconfig.json +1 -1
  67. package/package.json +46 -47
  68. package/yarn.lock +1925 -1842
  69. package/core/built/assets/ghost-dark-2de4c728f3d2deae25e45092ea0e811f.css +0 -1
  70. package/core/built/assets/ghost.min-b1d3e45166f2023dd56b35f720636979.css +0 -1
@@ -0,0 +1,6 @@
1
+ <svg width="48" height="48" viewBox="0 0 48 48" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M19.4943 20.6922C22.1161 20.6922 24.2415 18.5226 24.2415 15.8461C24.2415 13.1697 22.1161 11 19.4943 11C16.8725 11 14.7471 13.1697 14.7471 15.8461C14.7471 18.5226 16.8725 20.6922 19.4943 20.6922Z" stroke="#707B8B" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
3
+ <path d="M28.9889 36.8458H10V34.692C10 32.1215 11.0003 29.6562 12.7809 27.8385C14.5614 26.0209 16.9764 24.9998 19.4944 24.9998C22.0125 24.9998 24.4275 26.0209 26.208 27.8385C27.9886 29.6562 28.9889 32.1215 28.9889 34.692V36.8458Z" stroke="#707B8B" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
4
+ <path d="M27.9336 11C29.1926 11 30.4001 11.5106 31.2904 12.4194C32.1807 13.3282 32.6808 14.5608 32.6808 15.8461C32.6808 17.1314 32.1807 18.364 31.2904 19.2728C30.4001 20.1817 29.1926 20.6922 27.9336 20.6922" stroke="#707B8B" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
5
+ <path d="M31.3096 25.4092C33.1068 26.1071 34.6541 27.3457 35.7467 28.961C36.8393 30.5764 37.4257 32.4923 37.4282 34.4553V36.846H34.2634" stroke="#707B8B" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
6
+ </svg>
@@ -0,0 +1,6 @@
1
+ <svg width="48" height="48" viewBox="0 0 48 48" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M13 27L29 11" stroke="#707B8B" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
3
+ <path d="M29 18V11H22" stroke="#707B8B" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
4
+ <path d="M35 20.9999L19 36.9998" stroke="#707B8B" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
5
+ <path d="M19 30V37H26" stroke="#707B8B" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
6
+ </svg>
@@ -0,0 +1,3 @@
1
+ <svg width="48" height="48" viewBox="0 0 48 48" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M10.4705 27.4726L18.8636 34.8949L37.6302 12.3727" stroke="#30CF43" stroke-width="2.5" stroke-linecap="round" stroke-linejoin="round"/>
3
+ </svg>
@@ -1 +1,5 @@
1
- <svg width="138" height="138" viewBox="0 0 138 138" xmlns="http://www.w3.org/2000/svg"><title>Combined Shape</title><g fill="none" fill-rule="evenodd"><path d="M69 .5c37.832 0 68.5 30.668 68.5 68.5s-30.668 68.5-68.5 68.5S.5 106.832.5 69 31.168.5 69 .5zM24.82 98.183h50.347C75.025 88.69 70.84 81.579 62.58 76.79c-8.404-4.871-16.772-4.871-25.175 0-8.26 4.788-12.445 11.899-12.586 21.392zm50.347 0h.503l-.5.5c0-.168 0-.335-.003-.5zm-.663-21.045c5.182 5.666 8.348 12.685 9.498 21.044h28.848c-.14-9.492-4.325-16.603-12.585-21.391-8.404-4.871-16.772-4.871-25.176 0-.198.115-.393.23-.585.347zM49.994 37.58c-4.173 0-7.72 1.475-10.67 4.437s-4.42 6.525-4.42 10.714c0 4.19 1.47 7.752 4.42 10.714 2.95 2.962 6.497 4.437 10.67 4.437 4.171 0 7.718-1.475 10.669-4.437 2.95-2.962 4.42-6.524 4.42-10.714s-1.47-7.752-4.42-10.714c-2.95-2.962-6.498-4.437-10.67-4.437zm37.683 0c-4.172 0-7.719 1.475-10.67 4.437-2.95 2.962-4.42 6.525-4.42 10.714 0 4.19 1.47 7.752 4.42 10.714 2.951 2.962 6.498 4.437 10.67 4.437s7.72-1.475 10.67-4.437 4.42-6.524 4.42-10.714-1.47-7.752-4.42-10.714c-2.95-2.962-6.498-4.437-10.67-4.437z" stroke="#9BAEB8" fill-opacity=".1" fill="#9BAEB8" stroke-linecap="square"/><path stroke-opacity=".012" stroke="#000" stroke-width="0" d="M25 25h88v88H25z"/><path d="M62.832 76.358C71.39 81.32 75.67 88.761 75.67 98.683H24.316c0-9.922 4.28-17.364 12.839-22.325 8.559-4.96 17.118-4.96 25.677 0zm37.684 0c8.559 4.961 12.838 12.403 12.838 22.325l-29.79-.001c-1.114-8.672-4.394-15.888-9.84-21.648.363-.23.734-.455 1.115-.676 8.559-4.96 17.118-4.96 25.677 0zM49.993 37.08c4.305 0 7.98 1.528 11.024 4.584 3.044 3.056 4.566 6.745 4.566 11.067s-1.522 8.01-4.566 11.067c-3.044 3.056-6.719 4.584-11.024 4.584-4.305 0-7.98-1.528-11.023-4.584-3.044-3.056-4.566-6.745-4.566-11.067s1.522-8.01 4.566-11.067c3.044-3.056 6.718-4.584 11.023-4.584zm37.684 0c4.305 0 7.98 1.528 11.024 4.584 3.044 3.056 4.566 6.745 4.566 11.067s-1.522 8.01-4.566 11.067c-3.044 3.056-6.719 4.584-11.024 4.584-4.305 0-7.98-1.528-11.023-4.584-3.045-3.056-4.567-6.745-4.567-11.067s1.522-8.01 4.567-11.067c3.044-3.056 6.718-4.584 11.023-4.584z" stroke="#9BAEB8" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/></g></svg>
1
+ <svg width="24" height="24" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M9.525 1.275a3.5 3.5 0 1 1 4.95 4.95 3.5 3.5 0 0 1-4.95-4.95ZM12 1.25a2.5 2.5 0 1 0 0 5 2.5 2.5 0 0 0 0-5Z"/>
3
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M8.995 8.995A4.25 4.25 0 0 1 16.25 12v2.25a.5.5 0 0 1-.5.5h-1.059l-.695 5.562a.5.5 0 0 1-.496.438h-3a.5.5 0 0 1-.496-.438l-.695-5.562H8.25a.5.5 0 0 1-.5-.5V12a4.25 4.25 0 0 1 1.245-3.005ZM12 8.75A3.25 3.25 0 0 0 8.75 12v1.75h1a.5.5 0 0 1 .496.438l.695 5.562h2.118l.695-5.562a.5.5 0 0 1 .496-.438h1V12A3.25 3.25 0 0 0 12 8.75ZM2.555 4.055a2.75 2.75 0 1 1 3.89 3.89 2.75 2.75 0 0 1-3.89-3.89ZM4.5 4.25a1.75 1.75 0 1 0 0 3.5 1.75 1.75 0 0 0 0-3.5ZM3.872 9.298c.667-.1 1.348-.04 1.987.175a.5.5 0 0 1-.318.948A3.252 3.252 0 0 0 1.25 13.5v.249h1a.5.5 0 0 1 .493.418l.68 4.082h2.153l.307-1.838a.5.5 0 1 1 .986.164l-.376 2.256A.5.5 0 0 1 6 19.25H3a.5.5 0 0 1-.493-.418l-.68-4.082H.75a.5.5 0 0 1-.5-.5v-.75a4.255 4.255 0 0 1 3.622-4.202ZM17.555 4.055a2.75 2.75 0 1 1 3.89 3.89 2.75 2.75 0 0 1-3.89-3.89Zm1.945.195a1.75 1.75 0 1 0 0 3.5 1.75 1.75 0 0 0 0-3.5ZM19.979 10.287a3.252 3.252 0 0 0-1.52.134.5.5 0 0 1-.32-.948 4.253 4.253 0 0 1 5.61 4.026v.751a.5.5 0 0 1-.5.5h-1.076l-.68 4.082a.5.5 0 0 1-.494.418h-3a.5.5 0 0 1-.493-.418l-.376-2.256a.5.5 0 1 1 .986-.164l.307 1.838h2.153l.68-4.082a.5.5 0 0 1 .493-.418h1v-.25a3.253 3.253 0 0 0-2.77-3.213Z"/>
4
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M1.249 20.99v.003-.002Zm.001.005a.5.5 0 0 0-1 .005c0 .337.173.61.38.811.204.2.48.37.79.517.623.294 1.493.547 2.527.753 2.077.416 4.924.669 8.053.669 3.13 0 5.976-.253 8.053-.669 1.034-.206 1.904-.459 2.527-.753.31-.147.586-.316.79-.517.207-.201.38-.474.38-.811a.5.5 0 0 0-1-.006m0 0a.05.05 0 0 0 0 .006v-.006a.303.303 0 0 1-.078.102c-.095.092-.26.205-.52.328-.515.244-1.294.477-2.295.677-1.995.399-4.773.649-7.857.649-3.084 0-5.862-.25-7.857-.65-1.001-.2-1.78-.432-2.295-.676-.26-.123-.425-.236-.52-.328a.304.304 0 0 1-.078-.102m21.5-.003v.002-.002Z"/>
5
+ </svg>
@@ -1 +1,3 @@
1
- <svg width="135" height="135" viewBox="0 0 135 135" xmlns="http://www.w3.org/2000/svg"><title>Group 93 Copy 2</title><g fill="none" fill-rule="evenodd"><path d="M27.05 121.033l26.088-2.742-.017.035c19.625.686 44.306 1.502 56.815 1.93C98.456 129.48 83.873 135 68 135c-15.422 0-29.627-5.21-40.95-13.967zm-6.754-5.987C8.364 102.948 1 86.334 1 68c0-13.298 3.874-25.692 10.556-36.113l8.74 83.16zm2.832-96.801C35.006 7.525 50.741 1 68 1c16.93 0 32.393 6.28 44.187 16.635l-9.047-.315-.085.171-.352-3.351c-.245-2.326-2.329-4.014-4.655-3.769l-74.92 7.874zm97.977 8.898C129.818 38.451 135 52.62 135 68c0 17.06-6.376 32.63-16.874 44.458l2.98-85.315z" fill-opacity=".1" fill="#9BAEB8"/><path d="M102.703 14.14c-.245-2.326-2.329-4.014-4.655-3.769l-83.572 8.783c-2.326.245-4.014 2.329-3.77 4.655l9.843 93.649c.245 2.326 2.329 4.014 4.655 3.77 15.353-1.615 68.219-7.171 83.572-8.785 2.326-.244 4.014-2.328 3.769-4.654l-9.842-93.649zM27.16 43.081l61.594-6.473M26.746 40.014l61.593-6.474" stroke="#9BAEB8" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/><path stroke="#9BAEB8" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round" d="M12.404 31.893l47.358-4.973-1.345-12.303M73.125 13.36l1.32 12.016 28.764-3.001M16.516 25.015l17.614-1.849M63.06 20.283l6.63-.696M77.884 18.652l6.63-.696M90 17.405l6.631-.696M33.58 97.203l61.593-6.474M34.526 106.213l61.594-6.474M71.46 47.824l18.994-1.996M72.41 56.846l18.992-1.996M73.357 65.867l18.993-1.996M74.305 74.889l18.993-1.996M32.653 88.388l61.594-6.474M64.2 48.587l-35.34 3.715 2.84 27.022 35.34-3.714z"/><path stroke="#9BAEB8" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round" d="M35.189 73.927l27.317-2.871-23.741 2.495 6.4-7.903 4.191 3.395"/><path stroke="#9BAEB8" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round" d="M47.38 67.442l4.223-5.215 10.903 8.829M38.139 56.417c1.972-.207 3.741 1.225 3.948 3.197.208 1.973-1.225 3.742-3.197 3.949-1.972.207-3.741-1.225-3.949-3.197-.207-1.972 1.226-3.742 3.198-3.949z"/><path d="M53.12 118.326c21.793.761 49.819 1.684 60.491 2.057 2.338.082 4.299-1.747 4.381-4.085l3.286-94.107c.082-2.338-1.747-4.299-4.085-4.381l-14.053-.49" stroke="#9BAEB8"/><g opacity=".6" stroke="#9BAEB8" stroke-linecap="round" stroke-linejoin="round"><path d="M67.706 1c17.084 0 32.303 6.018 44.11 16.595M121.213 27.886c8.29 11.117 13.2 24.9 13.2 39.82 0 16.741-5.801 31.827-16.002 43.545M108.418 120.538c-11.268 8.698-25.39 13.875-40.712 13.875-14.783 0-28.45-4.82-39.512-12.971M20.239 114.555C8.345 102.506 1 85.957 1 67.707c0-13.115 3.793-25.35 10.34-35.669M23.087 18.136c5.9-5.314 12.752-9.592 20.268-12.544M43.355 5.592C50.9 2.628 59.115 1 67.706 1"/></g></g></svg>
1
+ <svg width="48" height="48" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M10.5 2.492a2 2 0 0 0-2 2v33a2 2 0 0 0 2 2h33a2 2 0 0 0 2-2v-33a2 2 0 0 0-2-2h-33Zm-4 2a4 4 0 0 1 4-4h33a4 4 0 0 1 4 4v33a4 4 0 0 1-4 4h-33a4 4 0 0 1-4-4v-33Zm-5 2a1 1 0 0 1 1 1v36a2 2 0 0 0 2 2h36a1 1 0 1 1 0 2h-36a4 4 0 0 1-4-4v-36a1 1 0 0 1 1-1ZM14 11a2 2 0 0 1 2-2h22a2 2 0 0 1 2 2v6a2 2 0 0 1-2 2H16a2 2 0 0 1-2-2v-6Zm24 0H16v6h22v-6ZM15.5 24a1 1 0 0 1 1-1h21a1 1 0 1 1 0 2h-21a1 1 0 0 1-1-1Zm0 6.492a1 1 0 0 1 1-1h15a1 1 0 1 1 0 2h-15a1 1 0 0 1-1-1Z"/>
3
+ </svg>
@@ -1 +1,4 @@
1
- <svg width="155" height="138" viewBox="0 0 155 138" xmlns="http://www.w3.org/2000/svg"><title>Group 78 Copy 2</title><g fill="none" fill-rule="evenodd"><path d="M20.003 29C32.367 12.03 52.396 1 75 1c26.702 0 49.81 15.39 60.935 37.785L110 64V29H20.003zM142.1 57.901c.593 3.612.901 7.32.901 11.099 0 24.755-13.227 46.42-33 58.313V90l32.099-32.099z" fill-opacity=".1" fill="#9BAEB8"/><path d="M141.781 58.044c.66 3.5.73 6.77.73 10.712 0 37.395-30.36 67.756-67.755 67.756C37.36 136.512 7 106.152 7 68.756S37.36 1 74.756 1c26.482 0 49.437 15.226 60.578 37.392" stroke="#9BAEB8"/><path stroke="#9BAEB8" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round" d="M20.4 28.906h89.465L110 64M151.691 47.805L99.632 99.86 87.195 87.423l51.725-51.71c3.52-3.682 7.4-4.113 11.642-1.292 2.218 1.575 3.44 3.72 3.67 6.43.229 2.71-.619 5.029-2.54 6.954zM147.814 52.767c8.994 9.093-10.38 13.362-15.677 18.659l-1.62 4.727M128.367 46.248l12.44 12.44M124.142 50.473l12.44 12.44M93.213 86.015l2.599 2.599M95.978 83.25l2.599 2.598M98.743 80.485l2.599 2.598M101.509 77.72l2.598 2.598M104.274 74.955l2.598 2.598M98.405 91.207l2.598 2.598M101.17 88.442l2.599 2.598M103.935 85.677l2.599 2.598M106.7 82.912l2.6 2.598M109.466 80.147l2.597 2.598M88.994 89.775l-3.806 3.807 8.383 8.383 3.806-3.807M91.282 100.061s-8.137 5.997-9.196 4.945c-1.058-1.052 4.908-9.136 4.908-9.136M109.865 89.785v36.61M18.069 105.13h15.155M41.09 105.13h40.87M11.174 90.318h65.564M8.168 75.507h20.52M35.836 75.507h32.827M8.168 60.695h38.115M54.963 60.695h30.703"/></g></svg>
1
+ <svg width="48" height="48" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M38.104 2.11a5.5 5.5 0 1 1 7.778 7.78L23.35 32.42a1 1 0 0 1-1.414 0l-6.364-6.364a1 1 0 0 1 0-1.414L38.104 2.11Zm3.89.39a3.5 3.5 0 0 0-2.476 1.025L17.693 25.35l4.95 4.95L44.468 8.475A3.5 3.5 0 0 0 41.993 2.5Z"/>
3
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M35.855 4.36a1 1 0 0 1 1.414 0l6.364 6.365a1 1 0 0 1-1.414 1.414l-6.364-6.364a1 1 0 0 1 0-1.414ZM16.038 24.38a1 1 0 0 1 .95.263l6.363 6.364a1 1 0 0 1-.416 1.663l-9.15 2.786a1 1 0 0 1-1.248-1.247l2.786-9.15a1 1 0 0 1 .715-.68Zm.713 2.855-1.754 5.762 5.762-1.754-4.008-4.008ZM2.111 38.111A5.5 5.5 0 0 1 6 36.5h1.494a1 1 0 1 1 0 2H6a3.5 3.5 0 1 0 0 7h31.5a1 1 0 1 1 0 2H6a5.5 5.5 0 0 1-3.89-9.39Z"/>
4
+ </svg>
@@ -1 +1,5 @@
1
- <svg width="135" height="136" viewBox="0 0 135 136" xmlns="http://www.w3.org/2000/svg"><title>Group 10</title><g fill="none" fill-rule="evenodd"><path d="M116.733 23.243c10.973 11.89 17.68 27.775 17.68 45.215 0 36.816-29.89 66.706-66.707 66.706C30.89 135.164 1 105.274 1 68.458 1 31.64 30.89 1.75 67.706 1.75c7.034 0 13.814 1.091 20.182 3.113L73.86 7.846c-1.716.365-3.211 1.411-4.141 2.9L23.937 84.018c-.64 1.023-.846 2.258-.575 3.433.272 1.175.999 2.195 2.022 2.834l41.738 26.079c1.023.639 2.257.845 3.433.574 1.175-.271 2.194-.999 2.833-2.021l45.796-73.295c.922-1.475 1.211-3.26.801-4.95l-3.252-13.429z" fill-opacity=".1" fill="#9BAEB8"/><path d="M116.733 23.243c10.973 11.89 17.68 27.775 17.68 45.215 0 36.816-29.89 66.706-66.707 66.706C30.89 135.164 1 105.274 1 68.458 1 31.64 30.89 1.75 67.706 1.75c7.034 0 13.814 1.091 20.182 3.113L73.86 7.846c-1.716.365-3.211 1.411-4.141 2.9L23.937 84.018c-.64 1.023-.846 2.258-.575 3.433.272 1.175.999 2.195 2.022 2.834l41.738 26.079c1.023.639 2.257.845 3.433.574 1.175-.271 2.194-.999 2.833-2.021l45.796-73.295c.922-1.475 1.211-3.26.801-4.95l-3.252-13.429z" stroke="#9BAEB8"/><path d="M119.184 41.622c.922-1.475 1.211-3.26.801-4.95l-7.856-32.443c-.58-2.392-2.958-3.889-5.366-3.378L73.86 7.846c-1.716.365-3.211 1.411-4.141 2.9L23.937 84.018c-.64 1.023-.846 2.258-.575 3.433.272 1.175.999 2.195 2.022 2.834l41.738 26.079c1.023.639 2.257.845 3.433.574 1.175-.271 2.194-.999 2.833-2.021l45.796-73.295z" stroke="#9BAEB8" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/><path d="M94.13 62.655c1.199-1.917.616-4.442-1.302-5.64L67.454 41.16c-1.918-1.198-4.443-.615-5.64 1.303L38.158 80.319c-1.198 1.918-.614 4.443 1.303 5.641l25.374 15.855c1.918 1.198 4.443.614 5.64-1.303l23.655-37.857z" stroke="#9BAEB8" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/><path d="M102.363 13.523c-2.298-1.435-5.33-.735-6.766 1.562-1.436 2.298-.736 5.33 1.562 6.766 2.298 1.435 5.33.735 6.765-1.563 1.436-2.297.736-5.33-1.561-6.765z" stroke="#9BAEB8" stroke-width="1.5" fill-opacity=".1" fill="#9BAEB8"/><path d="M116.76 46.219c1.696 14.422-1.407 26.564-7.065 27.305-5.78.758-12.05-10.666-13.995-25.496-1.945-14.83 1.168-27.485 6.948-28.243.675-.088 1.357-.01 2.038.219M50.595 81.166L58.5 68.5M63.972 89.489L76.4 69.565M57.116 85.223L73.787 58.5M61.553 63.601l5.713-9.159" stroke="#9BAEB8" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/></g></svg>
1
+ <svg width="48" height="48" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M8 2.706a1 1 0 0 1 1-1h15a1 1 0 0 1 .707.293l21 21a1 1 0 0 1-1.414 1.414L23.586 3.706H9a1 1 0 0 1-1-1Z"/>
3
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M3.172 8.878A4 4 0 0 1 6 7.706h12.258a4 4 0 0 1 2.827 1.17l18.328 18.327a4.001 4.001 0 0 1-1.424 6.573l-7.213 2.707-2.71 7.21a4.002 4.002 0 0 1-6.573 1.424L3.171 26.791A4 4 0 0 1 2 23.962V11.706a4 4 0 0 1 1.172-2.828ZM6 9.706a2 2 0 0 0-2 2v12.256a2.003 2.003 0 0 0 .585 1.415l18.322 18.326a2 2 0 0 0 3.287-.712l2.87-7.637a1 1 0 0 1 .585-.584l7.638-2.866a2 2 0 0 0 .712-3.287L19.67 10.291a2 2 0 0 0-1.413-.585H6Z"/>
4
+ <path d="M12.25 15.956a2 2 0 1 0 0 4 2 2 0 0 0 0-4"/>
5
+ </svg>