docus 2.1.0 → 3.0.0-beta.3

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 (274) hide show
  1. package/README.md +6 -4
  2. package/app/router.options.ts +18 -0
  3. package/assets/css/fonts.css +84 -0
  4. package/assets/css/main.css +11 -0
  5. package/assets/css/tailwind.css +282 -0
  6. package/components/app/Container.vue +25 -0
  7. package/components/app/Footer.vue +40 -0
  8. package/components/app/Navbar.vue +26 -0
  9. package/components/app/NavbarLogo.vue +33 -0
  10. package/components/app/Page.vue +7 -0
  11. package/components/app/PoweredByDocus.vue +11 -0
  12. package/components/content/Alert.vue +124 -0
  13. package/components/content/BlockHero.vue +54 -0
  14. package/components/content/ButtonLink.vue +45 -0
  15. package/components/content/Card.vue +46 -0
  16. package/components/content/CardGrid.vue +23 -0
  17. package/components/content/CodeBlock.vue +47 -0
  18. package/components/content/CodeGroup.vue +135 -0
  19. package/components/content/CopyButton.vue +49 -0
  20. package/{dist/runtime/app/components/prose/ProseOl.vue → components/content/List.vue} +2 -2
  21. package/components/content/NeedContribution.vue +23 -0
  22. package/components/content/ReadMore.vue +25 -0
  23. package/components/content/Sandbox.vue +102 -0
  24. package/components/content/TabsHeader.vue +44 -0
  25. package/components/content/Terminal.vue +64 -0
  26. package/components/content/VideoPlayer.vue +115 -0
  27. package/components/docs/DocsAside.vue +21 -0
  28. package/components/docs/DocsAsideTree.vue +102 -0
  29. package/components/docs/DocsHero.vue +39 -0
  30. package/components/docs/DocsPage.vue +22 -0
  31. package/components/docs/DocsPageContent.vue +31 -0
  32. package/components/docs/DocsToc.vue +74 -0
  33. package/components/globals/Icon.vue +24 -0
  34. package/{dist/runtime/app/components/prose/ProseHr.vue → components/globals/Logo.vue} +1 -1
  35. package/components/globals/NuxtImg.vue +45 -0
  36. package/components/globals/SocialIcons.vue +45 -0
  37. package/components/globals/ThemeSelect.vue +35 -0
  38. package/components/icons/IconAlgolia.vue +8 -0
  39. package/components/icons/IconArrowLeft.vue +10 -0
  40. package/components/icons/IconArrowRight.vue +10 -0
  41. package/components/icons/IconBadgeCheck.vue +14 -0
  42. package/components/icons/IconCheck.vue +10 -0
  43. package/components/icons/IconCheckCircle.vue +10 -0
  44. package/components/icons/IconChevronRight.vue +12 -0
  45. package/components/icons/IconClipboardCheck.vue +14 -0
  46. package/components/icons/IconClipboardCopy.vue +14 -0
  47. package/components/icons/IconCodeSandbox.vue +8 -0
  48. package/components/icons/IconCopy.vue +17 -0
  49. package/components/icons/IconDots.vue +10 -0
  50. package/components/icons/IconEdit.vue +18 -0
  51. package/components/icons/IconExclamationCircle.vue +12 -0
  52. package/components/icons/IconExclamationTriangle.vue +10 -0
  53. package/components/icons/IconExternalLink.vue +12 -0
  54. package/components/icons/IconGit.vue +7 -0
  55. package/components/icons/IconGitHub.vue +10 -0
  56. package/components/icons/IconHeart.vue +9 -0
  57. package/components/icons/IconInformationCircle.vue +10 -0
  58. package/components/icons/IconLighthouse.vue +83 -0
  59. package/components/icons/IconLine.vue +10 -0
  60. package/components/icons/IconMarkdown.vue +13 -0
  61. package/components/icons/IconMenu.vue +12 -0
  62. package/components/icons/IconMenuAlt.vue +10 -0
  63. package/components/icons/IconMinus.vue +10 -0
  64. package/components/icons/IconMoon.vue +10 -0
  65. package/components/icons/IconNuxt.vue +14 -0
  66. package/components/icons/IconNuxtContent.vue +20 -0
  67. package/components/icons/IconNuxtLabs.vue +21 -0
  68. package/components/icons/IconPlus.vue +10 -0
  69. package/components/icons/IconPuzzle.vue +8 -0
  70. package/components/icons/IconSSG.vue +7 -0
  71. package/components/icons/IconSearch.vue +12 -0
  72. package/components/icons/IconSun.vue +10 -0
  73. package/components/icons/IconTocBack.vue +21 -0
  74. package/components/icons/IconTocCurrent.vue +21 -0
  75. package/components/icons/IconTocNext.vue +8 -0
  76. package/components/icons/IconTranslate.vue +14 -0
  77. package/components/icons/IconTwitter.vue +8 -0
  78. package/components/icons/IconVite.vue +30 -0
  79. package/components/icons/IconVue.vue +6 -0
  80. package/components/icons/IconVueTelescope.vue +11 -0
  81. package/components/icons/IconWindi.vue +17 -0
  82. package/components/icons/IconX.vue +12 -0
  83. package/components/icons/IconXCircle.vue +10 -0
  84. package/components/icons/IconZap.vue +8 -0
  85. package/components/prose/ProseA.vue +66 -0
  86. package/components/prose/ProseBlockquote.vue +21 -0
  87. package/components/prose/ProseCode.vue +68 -0
  88. package/components/prose/ProseCodeInline.vue +38 -0
  89. package/components/prose/ProseEm.vue +11 -0
  90. package/components/prose/ProseH1.vue +22 -0
  91. package/components/prose/ProseH2.vue +22 -0
  92. package/components/prose/ProseH3.vue +24 -0
  93. package/components/prose/ProseH4.vue +24 -0
  94. package/components/prose/ProseHr.vue +13 -0
  95. package/components/prose/ProseImg.vue +30 -0
  96. package/components/prose/ProseLi.vue +31 -0
  97. package/components/prose/ProseOl.vue +16 -0
  98. package/components/prose/ProseP.vue +14 -0
  99. package/components/prose/ProseStrong.vue +14 -0
  100. package/components/prose/ProseTable.vue +13 -0
  101. package/{dist/runtime/app/components → components}/prose/ProseTbody.vue +0 -0
  102. package/components/prose/ProseTd.vue +11 -0
  103. package/components/prose/ProseTh.vue +11 -0
  104. package/components/prose/ProseThead.vue +11 -0
  105. package/components/prose/ProseTr.vue +11 -0
  106. package/components/prose/ProseUl.vue +15 -0
  107. package/composables/useContent.ts +156 -0
  108. package/composables/useMenu.ts +22 -0
  109. package/composables/useScrollToHeading.ts +35 -0
  110. package/composables/useScrollspy.ts +46 -0
  111. package/composables/useTheme.ts +12 -0
  112. package/layouts/default.vue +29 -0
  113. package/layouts/page.vue +11 -0
  114. package/nuxt.config.ts +151 -0
  115. package/package.json +46 -83
  116. package/pages/[...slug].vue +26 -0
  117. package/public/android-chrome-192x192.png +0 -0
  118. package/public/android-chrome-512x512.png +0 -0
  119. package/public/apple-touch-icon.png +0 -0
  120. package/public/favicon-16x16.png +0 -0
  121. package/public/favicon-32x32.png +0 -0
  122. package/public/favicon.ico +0 -0
  123. package/public/site.webmanifest +1 -0
  124. package/LICENSE +0 -21
  125. package/dist/index.cjs +0 -549
  126. package/dist/index.d.ts +0 -25
  127. package/dist/index.mjs +0 -523
  128. package/dist/runtime/app/components/DocusContent.vue +0 -215
  129. package/dist/runtime/app/components/DocusContent.vue.d.ts +0 -25
  130. package/dist/runtime/app/components/Error.vue +0 -19
  131. package/dist/runtime/app/components/Error.vue.d.ts +0 -9
  132. package/dist/runtime/app/components/Markdown.vue +0 -56
  133. package/dist/runtime/app/components/Markdown.vue.d.ts +0 -25
  134. package/dist/runtime/app/components/Page.vue +0 -29
  135. package/dist/runtime/app/components/Page.vue.d.ts +0 -2
  136. package/dist/runtime/app/components/Props.vue +0 -130
  137. package/dist/runtime/app/components/Props.vue.d.ts +0 -80
  138. package/dist/runtime/app/components/prose/ProseA.vue +0 -41
  139. package/dist/runtime/app/components/prose/ProseA.vue.d.ts +0 -23
  140. package/dist/runtime/app/components/prose/ProseBlockquote.vue +0 -5
  141. package/dist/runtime/app/components/prose/ProseCode.vue +0 -5
  142. package/dist/runtime/app/components/prose/ProseCodeInline.vue +0 -5
  143. package/dist/runtime/app/components/prose/ProseEm.vue +0 -5
  144. package/dist/runtime/app/components/prose/ProseH1.vue +0 -3
  145. package/dist/runtime/app/components/prose/ProseH2.vue +0 -3
  146. package/dist/runtime/app/components/prose/ProseH3.vue +0 -3
  147. package/dist/runtime/app/components/prose/ProseH4.vue +0 -3
  148. package/dist/runtime/app/components/prose/ProseH5.vue +0 -3
  149. package/dist/runtime/app/components/prose/ProseH6.vue +0 -3
  150. package/dist/runtime/app/components/prose/ProseImg.vue +0 -32
  151. package/dist/runtime/app/components/prose/ProseImg.vue.d.ts +0 -21
  152. package/dist/runtime/app/components/prose/ProseLi.vue +0 -3
  153. package/dist/runtime/app/components/prose/ProseParagraph.vue +0 -3
  154. package/dist/runtime/app/components/prose/ProseStrong.vue +0 -5
  155. package/dist/runtime/app/components/prose/ProseTable.vue +0 -5
  156. package/dist/runtime/app/components/prose/ProseTd.vue +0 -5
  157. package/dist/runtime/app/components/prose/ProseTh.vue +0 -5
  158. package/dist/runtime/app/components/prose/ProseThead.vue +0 -5
  159. package/dist/runtime/app/components/prose/ProseTr.vue +0 -5
  160. package/dist/runtime/app/components/prose/ProseUl.vue +0 -5
  161. package/dist/runtime/app/composables/helpers.d.ts +0 -4
  162. package/dist/runtime/app/composables/helpers.js +0 -66
  163. package/dist/runtime/app/composables/helpers.mjs +0 -40
  164. package/dist/runtime/app/composables/index.d.ts +0 -90
  165. package/dist/runtime/app/composables/index.js +0 -108
  166. package/dist/runtime/app/composables/index.mjs +0 -63
  167. package/dist/runtime/app/composables/navigation.d.ts +0 -37
  168. package/dist/runtime/app/composables/navigation.js +0 -227
  169. package/dist/runtime/app/composables/navigation.mjs +0 -148
  170. package/dist/runtime/app/composables/store.d.ts +0 -7
  171. package/dist/runtime/app/composables/store.js +0 -52
  172. package/dist/runtime/app/composables/store.mjs +0 -35
  173. package/dist/runtime/app/composables/style.d.ts +0 -11
  174. package/dist/runtime/app/composables/style.js +0 -117
  175. package/dist/runtime/app/composables/style.mjs +0 -71
  176. package/dist/runtime/app/composables/theme-colors.d.ts +0 -30
  177. package/dist/runtime/app/composables/theme-colors.js +0 -80
  178. package/dist/runtime/app/composables/theme-colors.mjs +0 -48
  179. package/dist/runtime/app/composables/websocket.d.ts +0 -3
  180. package/dist/runtime/app/composables/websocket.js +0 -79
  181. package/dist/runtime/app/composables/websocket.mjs +0 -63
  182. package/dist/runtime/app/layouts/default.vue +0 -5
  183. package/dist/runtime/app/layouts/error.vue +0 -33
  184. package/dist/runtime/app/layouts/error.vue.d.ts +0 -21
  185. package/dist/runtime/app/pages/_.vue +0 -222
  186. package/dist/runtime/app/pages/_.vue.d.ts +0 -2
  187. package/dist/runtime/context.d.ts +0 -1
  188. package/dist/runtime/context.js +0 -17
  189. package/dist/runtime/context.mjs +0 -5
  190. package/dist/runtime/database/Query.d.ts +0 -18
  191. package/dist/runtime/database/Query.js +0 -68
  192. package/dist/runtime/database/Query.mjs +0 -49
  193. package/dist/runtime/database/index.d.ts +0 -4
  194. package/dist/runtime/database/index.js +0 -45
  195. package/dist/runtime/database/index.mjs +0 -25
  196. package/dist/runtime/database/providers/local/Query.d.ts +0 -14
  197. package/dist/runtime/database/providers/local/Query.js +0 -85
  198. package/dist/runtime/database/providers/local/Query.mjs +0 -60
  199. package/dist/runtime/database/providers/local/index.d.ts +0 -3
  200. package/dist/runtime/database/providers/local/index.js +0 -63
  201. package/dist/runtime/database/providers/local/index.mjs +0 -39
  202. package/dist/runtime/database/providers/local/operations.d.ts +0 -2
  203. package/dist/runtime/database/providers/local/operations.js +0 -83
  204. package/dist/runtime/database/providers/local/operations.mjs +0 -53
  205. package/dist/runtime/database/providers/local/utils.d.ts +0 -8
  206. package/dist/runtime/database/providers/local/utils.js +0 -28
  207. package/dist/runtime/database/providers/local/utils.mjs +0 -17
  208. package/dist/runtime/index.d.ts +0 -3
  209. package/dist/runtime/index.js +0 -44
  210. package/dist/runtime/index.mjs +0 -3
  211. package/dist/runtime/navigation.d.ts +0 -4
  212. package/dist/runtime/navigation.js +0 -176
  213. package/dist/runtime/navigation.mjs +0 -137
  214. package/dist/runtime/server/api/get.d.ts +0 -10
  215. package/dist/runtime/server/api/get.js +0 -24
  216. package/dist/runtime/server/api/get.mjs +0 -13
  217. package/dist/runtime/server/api/list.d.ts +0 -9
  218. package/dist/runtime/server/api/list.js +0 -34
  219. package/dist/runtime/server/api/list.mjs +0 -18
  220. package/dist/runtime/server/api/navigation.d.ts +0 -7
  221. package/dist/runtime/server/api/navigation.js +0 -20
  222. package/dist/runtime/server/api/navigation.mjs +0 -10
  223. package/dist/runtime/server/api/preview.d.ts +0 -3
  224. package/dist/runtime/server/api/preview.js +0 -54
  225. package/dist/runtime/server/api/preview.mjs +0 -31
  226. package/dist/runtime/server/api/reload.d.ts +0 -6
  227. package/dist/runtime/server/api/reload.js +0 -27
  228. package/dist/runtime/server/api/reload.mjs +0 -11
  229. package/dist/runtime/server/api/search.d.ts +0 -6
  230. package/dist/runtime/server/api/search.js +0 -27
  231. package/dist/runtime/server/api/search.mjs +0 -13
  232. package/dist/runtime/server/content.d.ts +0 -46
  233. package/dist/runtime/server/content.js +0 -175
  234. package/dist/runtime/server/content.mjs +0 -114
  235. package/dist/runtime/server/socket.d.ts +0 -9
  236. package/dist/runtime/server/socket.js +0 -33
  237. package/dist/runtime/server/socket.mjs +0 -20
  238. package/dist/runtime/server/utils/cache.d.ts +0 -19
  239. package/dist/runtime/server/utils/cache.js +0 -110
  240. package/dist/runtime/server/utils/cache.mjs +0 -75
  241. package/dist/runtime/server/utils/index.d.ts +0 -4
  242. package/dist/runtime/server/utils/index.js +0 -18
  243. package/dist/runtime/server/utils/index.mjs +0 -8
  244. package/dist/runtime/transformers/index.d.ts +0 -1
  245. package/dist/runtime/transformers/index.js +0 -26
  246. package/dist/runtime/transformers/index.mjs +0 -11
  247. package/dist/runtime/transformers/json.d.ts +0 -3
  248. package/dist/runtime/transformers/json.js +0 -15
  249. package/dist/runtime/transformers/json.mjs +0 -5
  250. package/dist/runtime/transformers/markdown/index.d.ts +0 -8
  251. package/dist/runtime/transformers/markdown/index.js +0 -25
  252. package/dist/runtime/transformers/markdown/index.mjs +0 -16
  253. package/dist/runtime/transformers/utils/index.d.ts +0 -1
  254. package/dist/runtime/transformers/utils/index.js +0 -18
  255. package/dist/runtime/transformers/utils/index.mjs +0 -1
  256. package/dist/runtime/transformers/utils/path.d.ts +0 -26
  257. package/dist/runtime/transformers/utils/path.js +0 -88
  258. package/dist/runtime/transformers/utils/path.mjs +0 -56
  259. package/dist/runtime/utils/index.d.ts +0 -1
  260. package/dist/runtime/utils/index.js +0 -18
  261. package/dist/runtime/utils/index.mjs +0 -1
  262. package/dist/runtime/utils/log.d.ts +0 -1
  263. package/dist/runtime/utils/log.js +0 -14
  264. package/dist/runtime/utils/log.mjs +0 -2
  265. package/dist/runtime/utils/object.d.ts +0 -9
  266. package/dist/runtime/utils/object.js +0 -22
  267. package/dist/runtime/utils/object.mjs +0 -4
  268. package/dist/templates/content.mjs +0 -50
  269. package/dist/templates/docus.mjs +0 -13
  270. package/dist/templates/hot.mjs +0 -16
  271. package/dist/templates/i18n.mjs +0 -23
  272. package/dist/templates/options.mjs +0 -46
  273. package/shims.d.ts +0 -24
  274. package/types.d.ts +0 -397
@@ -0,0 +1,14 @@
1
+ <template>
2
+ <svg
3
+ fill="none"
4
+ stroke-linecap="round"
5
+ stroke-linejoin="round"
6
+ stroke-width="2"
7
+ viewBox="0 0 24 24"
8
+ stroke="currentColor"
9
+ >
10
+ <path
11
+ d="M8 5H6a2 2 0 00-2 2v12a2 2 0 002 2h10a2 2 0 002-2v-1M8 5a2 2 0 002 2h2a2 2 0 002-2M8 5a2 2 0 012-2h2a2 2 0 012 2m0 0h2a2 2 0 012 2v3m2 4H10m0 0l3-3m-3 3l3 3"
12
+ />
13
+ </svg>
14
+ </template>
@@ -0,0 +1,8 @@
1
+ <template>
2
+ <svg preserveAspectRatio="xMidYMid meet" viewBox="0 0 256 296">
3
+ <path
4
+ d="M115.498 261.088v-106.61L23.814 101.73v60.773l41.996 24.347v45.7l49.688 28.54zm23.814.627l50.605-29.151V185.78l42.269-24.495v-60.011l-92.874 53.621v106.82zm80.66-180.887l-48.817-28.289l-42.863 24.872l-43.188-24.897l-49.252 28.667l91.914 52.882l92.206-53.235zM0 222.212V74.495L127.987 0L256 74.182v147.797l-128.016 73.744L0 222.212z"
5
+ fill="currentColor"
6
+ />
7
+ </svg>
8
+ </template>
@@ -0,0 +1,17 @@
1
+ <template>
2
+ <svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
3
+ <path
4
+ d="M19.0781 6H8.67187C7.19624 6 6 7.19624 6 8.67187V19.0781C6 20.5538 7.19624 21.75 8.67187 21.75H19.0781C20.5538 21.75 21.75 20.5538 21.75 19.0781V8.67187C21.75 7.19624 20.5538 6 19.0781 6Z"
5
+ stroke="currentColor"
6
+ stroke-width="1.49375"
7
+ stroke-linejoin="round"
8
+ />
9
+ <path
10
+ d="M17.9766 6L18 4.875C17.998 4.17942 17.7208 3.51289 17.229 3.02103C16.7371 2.52918 16.0706 2.25198 15.375 2.25H5.25C4.45507 2.25235 3.69338 2.56917 3.13128 3.13128C2.56917 3.69338 2.25235 4.45507 2.25 5.25V15.375C2.25198 16.0706 2.52918 16.7371 3.02103 17.229C3.51289 17.7208 4.17942 17.998 4.875 18H6"
11
+ stroke="currentColor"
12
+ stroke-width="1.49375"
13
+ stroke-linecap="round"
14
+ stroke-linejoin="round"
15
+ />
16
+ </svg>
17
+ </template>
@@ -0,0 +1,10 @@
1
+ <template>
2
+ <svg viewBox="0 0 15 15" fill="none" xmlns="http://www.w3.org/2000/svg">
3
+ <path
4
+ d="M3.625 7.5C3.625 8.12132 3.12132 8.625 2.5 8.625C1.87868 8.625 1.375 8.12132 1.375 7.5C1.375 6.87868 1.87868 6.375 2.5 6.375C3.12132 6.375 3.625 6.87868 3.625 7.5ZM8.625 7.5C8.625 8.12132 8.12132 8.625 7.5 8.625C6.87868 8.625 6.375 8.12132 6.375 7.5C6.375 6.87868 6.87868 6.375 7.5 6.375C8.12132 6.375 8.625 6.87868 8.625 7.5ZM12.5 8.625C13.1213 8.625 13.625 8.12132 13.625 7.5C13.625 6.87868 13.1213 6.375 12.5 6.375C11.8787 6.375 11.375 6.87868 11.375 7.5C11.375 8.12132 11.8787 8.625 12.5 8.625Z"
5
+ fill="currentColor"
6
+ fill-rule="evenodd"
7
+ clip-rule="evenodd"
8
+ />
9
+ </svg>
10
+ </template>
@@ -0,0 +1,18 @@
1
+ <template>
2
+ <svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
3
+ <path
4
+ d="M11 4H4C3.46957 4 2.96086 4.21071 2.58579 4.58579C2.21071 4.96086 2 5.46957 2 6V20C2 20.5304 2.21071 21.0391 2.58579 21.4142C2.96086 21.7893 3.46957 22 4 22H18C18.5304 22 19.0391 21.7893 19.4142 21.4142C19.7893 21.0391 20 20.5304 20 20V13"
5
+ stroke="currentColor"
6
+ stroke-width="2"
7
+ stroke-linecap="round"
8
+ stroke-linejoin="round"
9
+ />
10
+ <path
11
+ d="M18.5 2.5C18.8978 2.10217 19.4374 1.87868 20 1.87868C20.5626 1.87868 21.1022 2.10217 21.5 2.5C21.8978 2.89782 22.1213 3.43739 22.1213 4C22.1213 4.56261 21.8978 5.10217 21.5 5.5L12 15L8 16L9 12L18.5 2.5Z"
12
+ stroke="currentColor"
13
+ stroke-width="2"
14
+ stroke-linecap="round"
15
+ stroke-linejoin="round"
16
+ />
17
+ </svg>
18
+ </template>
@@ -0,0 +1,12 @@
1
+ <template>
2
+ <svg
3
+ fill="none"
4
+ stroke-linecap="round"
5
+ stroke-linejoin="round"
6
+ stroke-width="2"
7
+ viewBox="0 0 24 24"
8
+ stroke="currentColor"
9
+ >
10
+ <path d="M12 8v4m0 4h.01M21 12a9 9 0 11-18 0 9 9 0 0118 0z" />
11
+ </svg>
12
+ </template>
@@ -0,0 +1,10 @@
1
+ <template>
2
+ <svg viewBox="0 0 15 15" fill="none" xmlns="http://www.w3.org/2000/svg">
3
+ <path
4
+ d="M8.4449 0.608765C8.0183 -0.107015 6.9817 -0.107015 6.55509 0.608766L0.161178 11.3368C-0.275824 12.07 0.252503 13 1.10608 13H13.8939C14.7475 13 15.2758 12.07 14.8388 11.3368L8.4449 0.608765ZM7.4141 1.12073C7.45288 1.05566 7.54712 1.05566 7.5859 1.12073L13.9798 11.8488C14.0196 11.9154 13.9715 12 13.8939 12H1.10608C1.02849 12 0.980454 11.9154 1.02018 11.8488L7.4141 1.12073ZM6.8269 4.48611C6.81221 4.10423 7.11783 3.78663 7.5 3.78663C7.88217 3.78663 8.18778 4.10423 8.1731 4.48612L8.01921 8.48701C8.00848 8.766 7.7792 8.98664 7.5 8.98664C7.2208 8.98664 6.99151 8.766 6.98078 8.48701L6.8269 4.48611ZM8.24989 10.476C8.24989 10.8902 7.9141 11.226 7.49989 11.226C7.08567 11.226 6.74989 10.8902 6.74989 10.476C6.74989 10.0618 7.08567 9.72599 7.49989 9.72599C7.9141 9.72599 8.24989 10.0618 8.24989 10.476Z"
5
+ fill="currentColor"
6
+ fill-rule="evenodd"
7
+ clip-rule="evenodd"
8
+ />
9
+ </svg>
10
+ </template>
@@ -0,0 +1,12 @@
1
+ <template>
2
+ <svg
3
+ fill="none"
4
+ stroke-linecap="round"
5
+ stroke-linejoin="round"
6
+ stroke-width="2"
7
+ viewBox="0 0 24 24"
8
+ stroke="currentColor"
9
+ >
10
+ <path d="M10 6H6a2 2 0 00-2 2v10a2 2 0 002 2h10a2 2 0 002-2v-4M14 4h6m0 0v6m0-6L10 14" />
11
+ </svg>
12
+ </template>
@@ -0,0 +1,7 @@
1
+ <template>
2
+ <svg fill="currentColor" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width="24px" height="24px">
3
+ <path
4
+ d="M 6 2 C 4.346 2 3 3.346 3 5 C 3 6.3016094 3.8387486 7.4021391 5 7.8164062 L 5 15 C 5 17.749516 7.2504839 20 10 20 L 11 20 L 11 21.025391 C 11 21.512391 11.588594 21.757109 11.933594 21.412109 L 13.755859 19.591797 C 14.082859 19.264797 14.082859 18.735203 13.755859 18.408203 L 11.933594 16.587891 C 11.588594 16.243891 11 16.487609 11 16.974609 L 11 18 L 10 18 C 8.3315161 18 7 16.668484 7 15 L 7 7.8164062 C 8.1612514 7.4021391 9 6.3016094 9 5 C 9 3.346 7.654 2 6 2 z M 12.357422 2.4335938 C 12.253687 2.4514844 12.152656 2.5018906 12.066406 2.5878906 L 10.244141 4.4082031 C 9.9171406 4.7352031 9.9171406 5.2647969 10.244141 5.5917969 L 12.066406 7.4121094 C 12.411406 7.7571094 13 7.5123906 13 7.0253906 L 13 6 L 14 6 C 15.668484 6 17 7.3315161 17 9 L 17 16.183594 C 15.838749 16.597861 15 17.698391 15 19 C 15 20.654 16.346 22 18 22 C 19.654 22 21 20.654 21 19 C 21 17.698391 20.161251 16.597861 19 16.183594 L 19 9 C 19 6.2504839 16.749516 4 14 4 L 13 4 L 13 2.9746094 C 13 2.6093594 12.668625 2.3799219 12.357422 2.4335938 z"
5
+ />
6
+ </svg>
7
+ </template>
@@ -0,0 +1,10 @@
1
+ <template>
2
+ <svg viewBox="0 0 124 124" fill="none" xmlns="http://www.w3.org/2000/svg">
3
+ <path
4
+ fill-rule="evenodd"
5
+ clip-rule="evenodd"
6
+ d="M62 20C38.795 20 20 39.2704 20 63.0622C20 82.1176 32.0225 98.2121 48.7175 103.918C50.8175 104.295 51.605 103.003 51.605 101.872C51.605 100.85 51.5525 97.4586 51.5525 93.852C41 95.8437 38.27 91.2144 37.43 88.7923C36.9575 87.5541 34.91 83.7321 33.125 82.7094C31.655 81.9022 29.555 79.9105 33.0725 79.8568C36.38 79.803 38.7425 82.9786 39.53 84.2706C43.31 90.7839 49.3475 88.9536 51.7625 87.8234C52.13 85.024 53.2325 83.1404 54.44 82.0635C45.095 80.987 35.33 77.2729 35.33 60.8018C35.33 56.1188 36.9575 52.243 39.635 49.2286C39.215 48.152 37.745 43.7381 40.055 37.817C40.055 37.817 43.5725 36.6867 51.605 42.231C54.965 41.2621 58.535 40.7776 62.105 40.7776C65.675 40.7776 69.245 41.2621 72.605 42.231C80.6375 36.6329 84.155 37.817 84.155 37.817C86.465 43.7381 84.995 48.152 84.575 49.2286C87.2525 52.243 88.88 56.0646 88.88 60.8018C88.88 77.3267 79.0625 80.987 69.7175 82.0635C71.24 83.4096 72.5525 85.993 72.5525 90.03C72.5525 95.7899 72.5 100.419 72.5 101.872C72.5 103.003 73.2875 104.348 75.3875 103.918C83.7253 101.032 90.9703 95.5379 96.1032 88.2089C101.236 80.8799 103.998 72.0851 104 63.0622C104 39.2704 85.205 20 62 20Z"
7
+ fill="currentColor"
8
+ />
9
+ </svg>
10
+ </template>
@@ -0,0 +1,9 @@
1
+ <template>
2
+ <svg xmlns="http://www.w3.org/2000/svg" width="18" height="18" viewBox="0 0 24 24">
3
+ <path
4
+ class="icon"
5
+ fill="currentColor"
6
+ d="M12 21.638h-.014C9.403 21.59 1.95 14.856 1.95 8.478c0-3.064 2.525-5.754 5.403-5.754 2.29 0 3.83 1.58 4.646 2.73.813-1.148 2.353-2.73 4.644-2.73 2.88 0 5.404 2.69 5.404 5.755 0 6.375-7.454 13.11-10.037 13.156H12zM7.354 4.225c-2.08 0-3.903 1.988-3.903 4.255 0 5.74 7.035 11.596 8.55 11.658 1.52-.062 8.55-5.917 8.55-11.658 0-2.267-1.822-4.255-3.902-4.255-2.528 0-3.94 2.936-3.952 2.965-.23.562-1.156.562-1.387 0-.015-.03-1.426-2.965-3.955-2.965z"
7
+ />
8
+ </svg>
9
+ </template>
@@ -0,0 +1,10 @@
1
+ <template>
2
+ <svg viewBox="0 0 15 15" fill="none" xmlns="http://www.w3.org/2000/svg">
3
+ <path
4
+ d="M7.49991 0.876892C3.84222 0.876892 0.877075 3.84204 0.877075 7.49972C0.877075 11.1574 3.84222 14.1226 7.49991 14.1226C11.1576 14.1226 14.1227 11.1574 14.1227 7.49972C14.1227 3.84204 11.1576 0.876892 7.49991 0.876892ZM1.82707 7.49972C1.82707 4.36671 4.36689 1.82689 7.49991 1.82689C10.6329 1.82689 13.1727 4.36671 13.1727 7.49972C13.1727 10.6327 10.6329 13.1726 7.49991 13.1726C4.36689 13.1726 1.82707 10.6327 1.82707 7.49972ZM8.24992 4.49999C8.24992 4.9142 7.91413 5.24999 7.49992 5.24999C7.08571 5.24999 6.74992 4.9142 6.74992 4.49999C6.74992 4.08577 7.08571 3.74999 7.49992 3.74999C7.91413 3.74999 8.24992 4.08577 8.24992 4.49999ZM6.00003 5.99999H6.50003H7.50003C7.77618 5.99999 8.00003 6.22384 8.00003 6.49999V9.99999H8.50003H9.00003V11H8.50003H7.50003H6.50003H6.00003V9.99999H6.50003H7.00003V6.99999H6.50003H6.00003V5.99999Z"
5
+ fill="currentColor"
6
+ fill-rule="evenodd"
7
+ clip-rule="evenodd"
8
+ />
9
+ </svg>
10
+ </template>
@@ -0,0 +1,83 @@
1
+ <template>
2
+ <svg height="64" viewBox="0 0 512 548.20728733" width="64" xmlns="http://www.w3.org/2000/svg">
3
+ <g fill="none" fill-rule="evenodd">
4
+ <circle cx="256" cy="256" fill="#0535c1" fill-rule="nonzero" r="256" />
5
+ <path d="m311.273 116.364h151.272v151.272h-151.272z" />
6
+ <path
7
+ d="m424.727 179.386h-15.313c-7.62-21.77-29.847-34.855-52.58-30.955s-39.326 23.646-39.254 46.71c.006 26.11 21.17 47.273 47.278 47.28h59.87c16.998-.566 30.485-14.51 30.485-31.518s-13.487-30.951-30.486-31.517z"
8
+ fill="#eaeaea"
9
+ fill-rule="nonzero"
10
+ />
11
+ <path
12
+ d="m456.25 211.293v-.384c-.006-17.407-14.116-31.516-31.523-31.523h-15.755v.791h15.755c17.248-.001 31.294 13.859 31.523 31.104z"
13
+ fill="#fff"
14
+ fill-opacity=".2"
15
+ fill-rule="nonzero"
16
+ />
17
+ <g fill-rule="nonzero">
18
+ <path
19
+ d="m364.858 147.887 25.554 80.71c8.54-8.577 21.713-20.4 21.713-33.444-.006-26.108-21.17-47.272-47.278-47.278z"
20
+ fill="#e1e1e1"
21
+ />
22
+ <circle cx="364.858" cy="195.153" fill="#eee" r="47.279" />
23
+ <path
24
+ d="m364.858 148.666c25.955.012 47.05 20.94 47.267 46.895v-.384c.01-26.108-21.147-47.28-47.255-47.29s-47.28 21.147-47.29 47.255v.384c.236-25.945 21.332-46.855 47.278-46.86z"
25
+ fill="#fff"
26
+ fill-opacity=".2"
27
+ />
28
+ <path
29
+ d="m424.727 241.63h-59.88c-25.955-.013-47.05-20.942-47.267-46.895v.384c.012 26.104 21.174 47.26 47.278 47.266h59.87c17.402-.006 31.51-14.108 31.522-31.51v-.385c-.216 17.257-14.265 31.134-31.523 31.14z"
30
+ fill="#212121"
31
+ fill-opacity=".1"
32
+ />
33
+ <path d="m186.182 107.636h133.818v116.364h-133.818z" fill="#fff176" />
34
+ <path d="m171.636 285.09h160v160h-160z" fill="#fff" />
35
+ <g fill="#f4481e">
36
+ <path
37
+ d="m349.09 212.364h23.274v46.545h-232.728v-46.545h23.273v-93.091l93.091-58.183 93.09 58.182zm-46.545 0v-67.294l-46.545-29.09-46.545 29.09v67.294z"
38
+ />
39
+ <path
40
+ d="m129.303 478.499 39.424-266.135h174.546l39.424 266.135a254.836 254.836 0 0 1 -126.697 33.501 254.836 254.836 0 0 1 -126.697-33.501zm178.817-185.833-109.499 35.574-13.311 89.83 134.889-43.834z"
41
+ />
42
+ </g>
43
+ </g>
44
+ <path d="m55.273 165.818h174.545v174.546h-174.545z" />
45
+ <g fill-rule="nonzero">
46
+ <path
47
+ d="m186.182 238.545h-17.676c-8.83-25.075-34.455-40.129-60.657-35.632-26.202 4.498-45.341 27.235-45.304 53.82.02 30.118 24.434 54.527 54.552 54.54h69.085c19.725-.5 35.455-16.633 35.455-36.364s-15.73-35.865-35.455-36.364z"
48
+ fill="#fafafa"
49
+ />
50
+ <path
51
+ d="m222.545 275.34v-.43c0-20.074-16.29-36.365-36.363-36.365h-18.188v.908h18.188c19.895.005 36.096 15.993 36.363 35.887z"
52
+ fill="#fff"
53
+ fill-opacity=".2"
54
+ />
55
+ <path
56
+ d="m117.097 202.182 29.475 93.114c9.856-9.89 25.053-23.529 25.053-38.586-.02-30.114-24.426-54.52-54.54-54.54z"
57
+ fill="#e1e1e1"
58
+ />
59
+ <circle cx="117.097" cy="256.733" fill="#fff" r="54.551" />
60
+ <path
61
+ d="m117.097 203.09c29.946.018 54.284 24.163 54.54 54.109v-.431a54.545 54.545 0 1 0 -109.092-.035v.43c.269-29.938 24.612-54.068 54.552-54.074z"
62
+ fill="#fff"
63
+ fill-opacity=".2"
64
+ />
65
+ <path
66
+ d="m186.182 310.365h-69.097c-29.946-.018-54.284-24.164-54.54-54.109v.43c.013 30.123 24.43 54.539 54.552 54.552h69.085c20.073 0 36.363-16.291 36.363-36.364v-.442c-.242 19.912-16.45 35.928-36.363 35.933z"
67
+ fill="#212121"
68
+ fill-opacity=".1"
69
+ />
70
+ <path
71
+ d="m256 2.676c140.94 0 255.244 113.885 255.977 254.662l.023-1.338c0-141.382-114.618-256-256-256s-256 114.618-256 256c0 .442.035.873.035 1.338.721-140.765 115.002-254.662 255.965-254.662z"
72
+ fill="#fff"
73
+ fill-opacity=".2"
74
+ />
75
+ <path
76
+ d="m511.977 254.662c-.745 140.777-115.037 254.662-255.977 254.662-140.951 0-255.244-113.897-255.965-254.662 0 .465-.035.896-.035 1.338 0 141.382 114.618 256 256 256s256-114.618 256-256z"
77
+ fill="#263238"
78
+ fill-opacity=".2"
79
+ />
80
+ </g>
81
+ </g>
82
+ </svg>
83
+ </template>
@@ -0,0 +1,10 @@
1
+ <template>
2
+ <svg viewBox="0 0 15 15" fill="none" xmlns="http://www.w3.org/2000/svg">
3
+ <path
4
+ fill-rule="evenodd"
5
+ clip-rule="evenodd"
6
+ d="M2 7.5C2 7.22386 2.22386 7 2.5 7H12.5C12.7761 7 13 7.22386 13 7.5C13 7.77614 12.7761 8 12.5 8H2.5C2.22386 8 2 7.77614 2 7.5Z"
7
+ fill="currentColor"
8
+ />
9
+ </svg>
10
+ </template>
@@ -0,0 +1,13 @@
1
+ <template>
2
+ <svg
3
+ xmlns="http://www.w3.org/2000/svg"
4
+ viewBox="0 0 26 26"
5
+ height="64"
6
+ fill="currentColor"
7
+ class="text-gray-900 dark:text-gray-100"
8
+ >
9
+ <path
10
+ d="M 24 5 L 2 5 C 1 5 0 5.9375 0 6.875 L 0 18 C 0 18.9375 1 20 2 20 L 24 20 C 25 20 26 18.9375 26 18 L 26 6.875 C 26 5.9375 25 5 24 5 Z M 14 17 L 12 17 L 12 11 L 9 14.039063 L 6 11 L 6 17 L 4 17 L 4 8 L 6 8 L 9 11.398438 L 12 8 L 14 8 Z M 20 17 L 17 13 L 19 13 L 19 8 L 21 8 L 21 13 L 23 13 Z"
11
+ />
12
+ </svg>
13
+ </template>
@@ -0,0 +1,12 @@
1
+ <template>
2
+ <svg
3
+ fill="none"
4
+ stroke-linecap="round"
5
+ stroke-linejoin="round"
6
+ stroke-width="2"
7
+ viewBox="0 0 24 24"
8
+ stroke="currentColor"
9
+ >
10
+ <path d="M4 6h16M4 12h16M4 18h16" />
11
+ </svg>
12
+ </template>
@@ -0,0 +1,10 @@
1
+ <template>
2
+ <svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor">
3
+ <path
4
+ d="M4 6H20M4 12H20M4 18C5.36683 18 6.13317 18 7.5 18C8.86683 18 11 18 11 18"
5
+ stroke-width="2"
6
+ stroke-linecap="round"
7
+ stroke-linejoin="round"
8
+ />
9
+ </svg>
10
+ </template>
@@ -0,0 +1,10 @@
1
+ <template>
2
+ <svg viewBox="0 0 15 15" fill="none" xmlns="http://www.w3.org/2000/svg">
3
+ <path
4
+ d="M2.25 7.5C2.25 7.22386 2.47386 7 2.75 7H12.25C12.5261 7 12.75 7.22386 12.75 7.5C12.75 7.77614 12.5261 8 12.25 8H2.75C2.47386 8 2.25 7.77614 2.25 7.5Z"
5
+ fill="currentColor"
6
+ fill-rule="evenodd"
7
+ clip-rule="evenodd"
8
+ />
9
+ </svg>
10
+ </template>
@@ -0,0 +1,10 @@
1
+ <template>
2
+ <svg viewBox="0 0 15 15" fill="none" xmlns="http://www.w3.org/2000/svg">
3
+ <path
4
+ d="M13.995 9.77054C12.7688 10.2636 11.4249 10.3854 10.1301 10.1209C8.83526 9.85639 7.64675 9.21716 6.71228 8.28269C5.7778 7.34821 5.13857 6.15971 4.87405 4.86491C4.60952 3.57011 4.73136 2.22612 5.22442 1C3.77244 1.58485 2.56911 2.65657 1.82072 4.03143C1.07234 5.40628 0.82551 6.99866 1.12255 8.53556C1.41959 10.0725 2.24199 11.4582 3.44878 12.4552C4.65557 13.4522 6.17158 13.9983 7.73693 14C9.08301 14 10.3983 13.5973 11.5136 12.8435C12.6288 12.0898 13.493 11.0196 13.995 9.77054Z"
5
+ stroke="currentColor"
6
+ stroke-linecap="round"
7
+ stroke-linejoin="round"
8
+ />
9
+ </svg>
10
+ </template>
@@ -0,0 +1,14 @@
1
+ <template>
2
+ <svg viewBox="0 0 124 124" fill="none" xmlns="http://www.w3.org/2000/svg">
3
+ <path
4
+ fill-rule="evenodd"
5
+ clip-rule="evenodd"
6
+ d="M55.7498 27.1551C52.5277 21.615 44.4723 21.6149 41.2502 27.1551L6.13404 87.5346C2.91191 93.0748 6.93956 100 13.3838 100H40.7975C38.0438 97.5934 37.0241 93.4303 39.1079 89.8584L65.7033 44.2694L55.7498 27.1551Z"
7
+ fill="currentColor"
8
+ />
9
+ <path
10
+ d="M78.0002 40.3997C80.6668 35.8668 87.3332 35.8668 89.9998 40.3997L119.061 89.801C121.728 94.3339 118.395 100 113.062 100H54.9383C49.6052 100 46.2719 94.3339 48.9385 89.801L78.0002 40.3997Z"
11
+ fill="currentColor"
12
+ />
13
+ </svg>
14
+ </template>
@@ -0,0 +1,20 @@
1
+ <template>
2
+ <svg viewBox="0 0 100 100" fill="none" xmlns="http://www.w3.org/2000/svg">
3
+ <path
4
+ d="M53.0214 38.137C55.1705 41.8324 52.4842 46.4516 48.1861 46.4516H21.5917C17.2936 46.4516 14.6073 41.8323 16.7564 38.137L30.0536 15.272C32.2026 11.5766 37.5752 11.5766 39.7242 15.272L53.0214 38.137Z"
5
+ fill="#00CD81"
6
+ />
7
+ <path
8
+ d="M60.3763 68.7869C62.5253 65.0919 67.8979 65.0919 70.047 68.7869L83.3442 91.6497C85.4932 95.3447 82.8069 99.9634 78.5088 99.9634H51.9144C47.6164 99.9634 44.9301 95.3447 47.0791 91.6497L60.3763 68.7869Z"
9
+ fill="#003E27"
10
+ />
11
+ <path
12
+ d="M70.047 31.1765C67.8979 34.8716 62.5253 34.8716 60.3763 31.1765L47.0791 8.31374C44.9301 4.6187 47.6164 0 51.9144 0H78.5088C82.8069 0 85.4932 4.6187 83.3442 8.31374L70.047 31.1765Z"
13
+ fill="#99EBCD"
14
+ />
15
+ <path
16
+ d="M48.1861 55.0018C52.4842 55.0018 55.1705 59.621 53.0214 63.3164L39.7242 86.1814C37.5752 89.8769 32.2026 89.8767 30.0536 86.1814L16.7564 63.3164C14.6073 59.621 17.2936 55.0018 21.5917 55.0018H48.1861Z"
17
+ fill="#007B4D"
18
+ />
19
+ </svg>
20
+ </template>
@@ -0,0 +1,21 @@
1
+ <template>
2
+ <svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
3
+ <path
4
+ fill-rule="evenodd"
5
+ clip-rule="evenodd"
6
+ d="M5.28998 8.12497V8.32496V8.46247V11.9H7.59998V8.46247H9.9375V11.9H11.0092L11.0092 11.9H10.6562H10.6479H9.9375V12.5187V12.5198H9.93814L11.4677 15.1692L10.2027 17.3685C9.51725 18.5034 8.73855 18.9169 7.52946 18.9169L7.53344 18.9161H3.94681L7.60004 12.5669V11.9H5.29616L1.19865 19.0225C1.06863 19.2482 1.00011 19.5042 1 19.7649C0.999889 20.0256 1.06818 20.2817 1.19801 20.5074C1.32783 20.7332 1.51461 20.9207 1.73957 21.051C1.96452 21.1814 2.21971 21.25 2.47948 21.25H7.61315C9.64717 21.25 11.1472 20.3534 12.1793 18.6042L14.6852 14.2493L16.0274 11.9187L20.0556 18.9193H14.6852L13.3422 21.25H21.5205C21.7803 21.25 22.0355 21.1814 22.2604 21.051C22.4854 20.9207 22.6722 20.7332 22.802 20.5074C22.9318 20.2817 23.0001 20.0256 23 19.7649C22.9999 19.5042 22.9314 19.2482 22.8014 19.0225L17.309 9.4761C17.1792 9.25038 16.9925 9.06294 16.7675 8.93261C16.5426 8.80229 16.2875 8.73367 16.0278 8.73367C15.7681 8.73367 15.5129 8.80229 15.288 8.93261C15.0631 9.06294 14.8764 9.25038 14.7466 9.4761L13.4723 11.6925L13.4743 11.6937L12.8173 12.8317L12.275 11.8924V8.32496H12.275V8.12497C12.275 7.0204 11.3795 6.12497 10.275 6.12497H7.28998C6.18541 6.12497 5.28998 7.0204 5.28998 8.12497Z"
7
+ fill="currentColor"
8
+ />
9
+ <ellipse
10
+ cx="9.71554"
11
+ cy="4.26256"
12
+ rx="0.825"
13
+ ry="0.825"
14
+ transform="rotate(-15.506 9.71554 4.26256)"
15
+ fill="#00DC82"
16
+ />
17
+ <circle cx="5.12499" cy="2.825" r="0.825" fill="#00DC82" />
18
+ <circle cx="8.00203" cy="2.95201" r="0.55" transform="rotate(-15.506 8.00203 2.95201)" fill="#00DC82" />
19
+ <circle cx="6.90205" cy="4.87702" r="0.55" transform="rotate(-15.506 6.90205 4.87702)" fill="#00DC82" />
20
+ </svg>
21
+ </template>
@@ -0,0 +1,10 @@
1
+ <template>
2
+ <svg viewBox="0 0 15 15" fill="none" xmlns="http://www.w3.org/2000/svg">
3
+ <path
4
+ d="M8 2.75C8 2.47386 7.77614 2.25 7.5 2.25C7.22386 2.25 7 2.47386 7 2.75V7H2.75C2.47386 7 2.25 7.22386 2.25 7.5C2.25 7.77614 2.47386 8 2.75 8H7V12.25C7 12.5261 7.22386 12.75 7.5 12.75C7.77614 12.75 8 12.5261 8 12.25V8H12.25C12.5261 8 12.75 7.77614 12.75 7.5C12.75 7.22386 12.5261 7 12.25 7H8V2.75Z"
5
+ fill="currentColor"
6
+ fill-rule="evenodd"
7
+ clip-rule="evenodd"
8
+ />
9
+ </svg>
10
+ </template>
@@ -0,0 +1,8 @@
1
+ <template>
2
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 64 64" width="64" height="64">
3
+ <path
4
+ fill="#00DC82"
5
+ d="M48,27v-5c0-2.761-2.239-5-5-5h-5c-1.105,0-2-0.895-2-2v-2c0-3.866-3.134-7-7-7h0 c-3.866,0-7,3.134-7,7v2c0,1.105-0.895,2-2,2h-5c-2.761,0-5,2.239-5,5v5c0,1.105,0.895,2,2,2h2c3.866,0,7,3.134,7,7v0 c0,3.866-3.134,7-7,7h-2c-1.105,0-2,0.895-2,2v5c0,2.761,2.239,5,5,5h28c2.761,0,5-2.239,5-5v-5c0-1.105,0.895-2,2-2h2 c3.866,0,7-3.134,7-7v0c0-3.866-3.134-7-7-7h-2C48.895,29,48,28.105,48,27z"
6
+ />
7
+ </svg>
8
+ </template>
@@ -0,0 +1,7 @@
1
+ <template>
2
+ <svg fill="currentColor" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 48 48" width="64" height="64">
3
+ <path
4
+ d="M 10.5 6 C 10.3105 6 10.124082 6.0104805 9.9394531 6.0292969 C 9.571481 6.0667987 9.2141905 6.1413291 8.8710938 6.2480469 C 7.1472189 6.7842455 5.7842455 8.1472189 5.2480469 9.8710938 C 5.1413291 10.21419 5.0667987 10.571481 5.0292969 10.939453 C 5.0292305 10.940097 5.0293631 10.940762 5.0292969 10.941406 C 5.0106094 11.125412 5 11.311158 5 11.5 L 5 13.5 L 5 36.5 C 5 39.519774 7.4802259 42 10.5 42 L 37.5 42 C 40.519774 42 43 39.519774 43 36.5 L 43 13.5 L 43 11.5 C 43 11.310603 42.989737 11.124126 42.970703 10.939453 C 42.933201 10.571481 42.858671 10.21419 42.751953 9.8710938 C 42.215754 8.1472189 40.852781 6.7842455 39.128906 6.2480469 C 38.78581 6.1413291 38.428519 6.0667987 38.060547 6.0292969 C 38.059905 6.0292315 38.059235 6.029362 38.058594 6.0292969 C 37.874547 6.0103939 37.688736 6 37.5 6 L 10.5 6 z M 10.5 9 C 11.328 9 12 9.672 12 10.5 C 12 11.328 11.328 12 10.5 12 C 9.672 12 9 11.328 9 10.5 C 9 9.672 9.672 9 10.5 9 z M 15.5 9 C 16.328 9 17 9.672 17 10.5 C 17 11.328 16.328 12 15.5 12 C 14.672 12 14 11.328 14 10.5 C 14 9.672 14.672 9 15.5 9 z M 21.5 9 L 37.5 9 C 38.328 9 39 9.672 39 10.5 C 39 11.328 38.328 12 37.5 12 L 21.5 12 C 20.672 12 20 11.328 20 10.5 C 20 9.672 20.672 9 21.5 9 z M 8 15 L 40 15 L 40 32.945312 L 32.990234 26.140625 A 1.50015 1.50015 0 0 0 32.986328 26.136719 C 32.208181 25.38535 31.18685 25 30.173828 25 C 29.16122 25 28.13988 25.385387 27.361328 26.138672 L 25.3125 28.121094 L 19.132812 22.142578 C 18.35636 21.389748 17.336076 21 16.318359 21 C 15.299078 21 14.280986 21.392173 13.505859 22.140625 A 1.50015 1.50015 0 0 0 13.501953 22.144531 L 8 27.490234 L 8 15 z M 29 18 A 2 2 0 0 0 29 22 A 2 2 0 0 0 29 18 z M 16.318359 24 C 16.578643 24 16.835328 24.09366 17.044922 24.296875 A 1.50015 1.50015 0 0 0 17.046875 24.298828 L 23.154297 30.207031 L 14.064453 39 L 10.5 39 C 9.1017741 39 8 37.898226 8 36.5 L 8 31.671875 L 15.591797 24.294922 L 15.589844 24.298828 C 15.802758 24.093293 16.059641 24 16.318359 24 z M 30.173828 28 C 30.438806 28 30.692485 28.09229 30.902344 28.294922 L 39.933594 37.0625 C 39.683303 38.182061 38.703903 39 37.5 39 L 18.380859 39 L 29.447266 28.294922 C 29.654714 28.094207 29.910436 28 30.173828 28 z"
5
+ />
6
+ </svg>
7
+ </template>
@@ -0,0 +1,12 @@
1
+ <template>
2
+ <svg
3
+ fill="none"
4
+ stroke-linecap="round"
5
+ stroke-linejoin="round"
6
+ stroke-width="2"
7
+ viewBox="0 0 24 24"
8
+ stroke="currentColor"
9
+ >
10
+ <path d="M21 21l-6-6m2-5a7 7 0 11-14 0 7 7 0 0114 0z" />
11
+ </svg>
12
+ </template>
@@ -0,0 +1,10 @@
1
+ <template>
2
+ <svg fill="none" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 15 15">
3
+ <path
4
+ fill-rule="evenodd"
5
+ clip-rule="evenodd"
6
+ d="M7.5 0C7.77614 0 8 0.223858 8 0.5V2.5C8 2.77614 7.77614 3 7.5 3C7.22386 3 7 2.77614 7 2.5V0.5C7 0.223858 7.22386 0 7.5 0ZM2.1967 2.1967C2.39196 2.00144 2.70854 2.00144 2.90381 2.1967L4.31802 3.61091C4.51328 3.80617 4.51328 4.12276 4.31802 4.31802C4.12276 4.51328 3.80617 4.51328 3.61091 4.31802L2.1967 2.90381C2.00144 2.70854 2.00144 2.39196 2.1967 2.1967ZM0.5 7C0.223858 7 0 7.22386 0 7.5C0 7.77614 0.223858 8 0.5 8H2.5C2.77614 8 3 7.77614 3 7.5C3 7.22386 2.77614 7 2.5 7H0.5ZM2.1967 12.8033C2.00144 12.608 2.00144 12.2915 2.1967 12.0962L3.61091 10.682C3.80617 10.4867 4.12276 10.4867 4.31802 10.682C4.51328 10.8772 4.51328 11.1938 4.31802 11.3891L2.90381 12.8033C2.70854 12.9986 2.39196 12.9986 2.1967 12.8033ZM12.5 7C12.2239 7 12 7.22386 12 7.5C12 7.77614 12.2239 8 12.5 8H14.5C14.7761 8 15 7.77614 15 7.5C15 7.22386 14.7761 7 14.5 7H12.5ZM10.682 4.31802C10.4867 4.12276 10.4867 3.80617 10.682 3.61091L12.0962 2.1967C12.2915 2.00144 12.608 2.00144 12.8033 2.1967C12.9986 2.39196 12.9986 2.70854 12.8033 2.90381L11.3891 4.31802C11.1938 4.51328 10.8772 4.51328 10.682 4.31802ZM8 12.5C8 12.2239 7.77614 12 7.5 12C7.22386 12 7 12.2239 7 12.5V14.5C7 14.7761 7.22386 15 7.5 15C7.77614 15 8 14.7761 8 14.5V12.5ZM10.682 10.682C10.8772 10.4867 11.1938 10.4867 11.3891 10.682L12.8033 12.0962C12.9986 12.2915 12.9986 12.608 12.8033 12.8033C12.608 12.9986 12.2915 12.9986 12.0962 12.8033L10.682 11.3891C10.4867 11.1938 10.4867 10.8772 10.682 10.682ZM5.5 7.5C5.5 6.39543 6.39543 5.5 7.5 5.5C8.60457 5.5 9.5 6.39543 9.5 7.5C9.5 8.60457 8.60457 9.5 7.5 9.5C6.39543 9.5 5.5 8.60457 5.5 7.5ZM7.5 4.5C5.84315 4.5 4.5 5.84315 4.5 7.5C4.5 9.15685 5.84315 10.5 7.5 10.5C9.15685 10.5 10.5 9.15685 10.5 7.5C10.5 5.84315 9.15685 4.5 7.5 4.5Z"
7
+ fill="currentColor"
8
+ />
9
+ </svg>
10
+ </template>
@@ -0,0 +1,21 @@
1
+ <template>
2
+ <svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
3
+ <rect
4
+ x="0.5"
5
+ y="0.5"
6
+ width="23"
7
+ height="23"
8
+ rx="5.5"
9
+ fill="#F1F5F9"
10
+ />
11
+ <rect
12
+ x="0.5"
13
+ y="0.5"
14
+ width="23"
15
+ height="23"
16
+ rx="5.5"
17
+ stroke="#F1F5F9"
18
+ />
19
+ <path d="M10.756 15.8657C10.8765 15.9461 11.0166 15.9923 11.1612 15.9993C11.3059 16.0063 11.4497 15.9739 11.5774 15.9056C11.7051 15.8373 11.8119 15.7356 11.8863 15.6113C11.9608 15.4871 12.0001 15.345 12 15.2001V12.9617L16.356 15.8657C16.4765 15.9461 16.6166 15.9923 16.7612 15.9993C16.9059 16.0063 17.0497 15.9739 17.1774 15.9056C17.3051 15.8373 17.4119 15.7356 17.4863 15.6113C17.5608 15.4871 17.6001 15.345 17.6 15.2001V8.80012C17.6001 8.65529 17.5608 8.51316 17.4863 8.38891C17.4119 8.26466 17.3051 8.16295 17.1774 8.09462C17.0497 8.02629 16.9059 7.99392 16.7612 8.00094C16.6166 8.00797 16.4765 8.05414 16.356 8.13452L12 11.0385V8.80012C12.0001 8.65529 11.9608 8.51316 11.8863 8.38891C11.8119 8.26466 11.7051 8.16295 11.5774 8.09462C11.4497 8.02629 11.3059 7.99392 11.1612 8.00094C11.0166 8.00797 10.8765 8.05414 10.756 8.13452L5.95603 11.3345C5.84647 11.4076 5.75663 11.5066 5.6945 11.6227C5.63236 11.7388 5.59985 11.8684 5.59985 12.0001C5.59985 12.1318 5.63236 12.2615 5.6945 12.3776C5.75663 12.4937 5.84647 12.5927 5.95603 12.6657L10.756 15.8657Z" fill="#94A3B8" />
20
+ </svg>
21
+ </template>
@@ -0,0 +1,21 @@
1
+ <template>
2
+ <svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
3
+ <rect
4
+ x="0.5"
5
+ y="0.5"
6
+ width="23"
7
+ height="23"
8
+ rx="5.5"
9
+ fill="#1E293B"
10
+ />
11
+ <rect
12
+ x="0.5"
13
+ y="0.5"
14
+ width="23"
15
+ height="23"
16
+ rx="5.5"
17
+ stroke="#1E293B"
18
+ />
19
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M12.0001 18.4001C13.6975 18.4001 15.3253 17.7258 16.5256 16.5256C17.7258 15.3253 18.4001 13.6975 18.4001 12.0001C18.4001 10.3027 17.7258 8.67485 16.5256 7.47461C15.3253 6.27438 13.6975 5.6001 12.0001 5.6001C10.3027 5.6001 8.67485 6.27438 7.47461 7.47461C6.27438 8.67485 5.6001 10.3027 5.6001 12.0001C5.6001 13.6975 6.27438 15.3253 7.47461 16.5256C8.67485 17.7258 10.3027 18.4001 12.0001 18.4001V18.4001ZM11.6441 9.7345C11.5236 9.65411 11.3836 9.60795 11.2389 9.60092C11.0942 9.59389 10.9504 9.62627 10.8227 9.6946C10.695 9.76293 10.5882 9.86464 10.5138 9.98889C10.4394 10.1131 10.4001 10.2553 10.4001 10.4001V13.6001C10.4001 13.7449 10.4394 13.8871 10.5138 14.0113C10.5882 14.1356 10.695 14.2373 10.8227 14.3056C10.9504 14.3739 11.0942 14.4063 11.2389 14.3993C11.3836 14.3922 11.5236 14.3461 11.6441 14.2657L14.0441 12.6657C14.1537 12.5926 14.2435 12.4937 14.3056 12.3776C14.3678 12.2614 14.4003 12.1318 14.4003 12.0001C14.4003 11.8684 14.3678 11.7388 14.3056 11.6226C14.2435 11.5065 14.1537 11.4076 14.0441 11.3345L11.6441 9.7345V9.7345Z" fill="white" />
20
+ </svg>
21
+ </template>
@@ -0,0 +1,8 @@
1
+ <template>
2
+ <svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
3
+ <rect width="24" height="24" rx="6" fill="#F1F5F9" />
4
+ <g opacity="0.6">
5
+ <path d="M7.6439 9.13452C7.52342 9.05414 7.38338 9.00797 7.23872 9.00094C7.09405 8.99392 6.95019 9.02629 6.82249 9.09462C6.69479 9.16295 6.58803 9.26466 6.5136 9.38891C6.43918 9.51316 6.39988 9.65529 6.3999 9.80012V16.2001C6.39988 16.345 6.43918 16.4871 6.5136 16.6113C6.58803 16.7356 6.69479 16.8373 6.82249 16.9056C6.95019 16.9739 7.09405 17.0063 7.23872 16.9993C7.38338 16.9923 7.52342 16.9461 7.6439 16.8657L11.9999 13.9617V16.2001C11.9999 16.345 12.0392 16.4871 12.1136 16.6113C12.188 16.7356 12.2948 16.8373 12.4225 16.9056C12.5502 16.9739 12.6941 17.0063 12.8387 16.9993C12.9834 16.9923 13.1234 16.9461 13.2439 16.8657L18.0439 13.6657C18.1535 13.5927 18.2433 13.4937 18.3054 13.3776C18.3676 13.2615 18.4001 13.1318 18.4001 13.0001C18.4001 12.8684 18.3676 12.7388 18.3054 12.6227C18.2433 12.5066 18.1535 12.4076 18.0439 12.3345L13.2439 9.13452C13.1234 9.05414 12.9834 9.00797 12.8387 9.00094C12.6941 8.99392 12.5502 9.02629 12.4225 9.09462C12.2948 9.16295 12.188 9.26466 12.1136 9.38891C12.0392 9.51316 11.9999 9.65529 11.9999 9.80012V12.0385L7.6439 9.13452Z" fill="#94A3B8" />
6
+ </g>
7
+ </svg>
8
+ </template>
@@ -0,0 +1,14 @@
1
+ <template>
2
+ <svg
3
+ fill="none"
4
+ stroke-linecap="round"
5
+ stroke-linejoin="round"
6
+ stroke-width="2"
7
+ stroke="currentColor"
8
+ viewBox="0 0 24 24"
9
+ >
10
+ <path
11
+ d="M3 5h12M9 3v2m1.048 9.5A18.022 18.022 0 016.412 9m6.088 9h7M11 21l5-10 5 10M12.751 5C11.783 10.77 8.07 15.61 3 18.129"
12
+ />
13
+ </svg>
14
+ </template>
@@ -0,0 +1,8 @@
1
+ <template>
2
+ <svg viewBox="0 0 124 124" fill="none" xmlns="http://www.w3.org/2000/svg">
3
+ <path
4
+ d="M109 33.1157C105.542 34.6633 101.825 35.7055 97.9237 36.1754C101.907 33.7711 104.966 29.9613 106.403 25.4213C102.678 27.6479 98.5505 29.2665 94.1557 30.139C90.6425 26.3609 85.6252 24 80.0793 24C67.6284 24 58.4788 35.7095 61.2912 47.8651C45.268 47.0558 31.0583 39.3179 21.5448 27.5571C16.4923 36.2938 18.9245 47.723 27.5098 53.5105C24.353 53.4079 21.3763 52.5354 18.7796 51.0787C18.5681 60.0838 24.9718 68.5088 34.2465 70.384C31.5322 71.126 28.5595 71.2999 25.5358 70.7155C27.9877 78.4378 35.1082 84.0555 43.5525 84.2136C35.445 90.6208 25.2303 93.4832 15 92.2674C23.5344 97.7826 33.6747 101 44.563 101C80.3692 101 100.599 70.5181 99.3768 43.1789C103.144 40.4351 106.415 37.0123 109 33.1157Z"
5
+ fill="currentColor"
6
+ />
7
+ </svg>
8
+ </template>
@@ -0,0 +1,30 @@
1
+ <template>
2
+ <svg fill="none" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 410 404">
3
+ <defs>
4
+ <linearGradient id="paint0_linear" x1="6" y1="33" x2="235" y2="344" gradientUnits="userSpaceOnUse">
5
+ <stop stop-color="#41D1FF" />
6
+ <stop offset="1" stop-color="#BD34FE" />
7
+ </linearGradient>
8
+ <linearGradient
9
+ id="paint1_linear"
10
+ x1="194.651"
11
+ y1="8.818"
12
+ x2="236.076"
13
+ y2="292.989"
14
+ gradientUnits="userSpaceOnUse"
15
+ >
16
+ <stop stop-color="#FFEA83" />
17
+ <stop offset=".083" stop-color="#FFDD35" />
18
+ <stop offset="1" stop-color="#FFA800" />
19
+ </linearGradient>
20
+ </defs>
21
+ <path
22
+ d="M399.641 59.525l-183.998 329.02c-3.799 6.793-13.559 6.833-17.415.073L10.582 59.556C6.38 52.19 12.68 43.266 21.028 44.76l184.195 32.923c1.175.21 2.378.208 3.553-.006l180.343-32.87c8.32-1.517 14.649 7.337 10.522 14.719z"
23
+ fill="url(#paint0_linear)"
24
+ />
25
+ <path
26
+ d="M292.965 1.574L156.801 28.255a5 5 0 00-4.03 4.611l-8.376 141.464c-.197 3.332 2.863 5.918 6.115 5.168l37.91-8.749c3.547-.818 6.752 2.306 6.023 5.873l-11.263 55.153c-.758 3.712 2.727 6.886 6.352 5.785l23.415-7.114c3.63-1.102 7.118 2.081 6.35 5.796l-17.899 86.633c-1.12 5.419 6.088 8.374 9.094 3.728l2.008-3.103 110.954-221.428c1.858-3.707-1.346-7.935-5.418-7.15l-39.022 7.532c-3.667.707-6.787-2.708-5.752-6.296l25.469-88.291c1.036-3.594-2.095-7.012-5.766-6.293z"
27
+ fill="url(#paint1_linear)"
28
+ />
29
+ </svg>
30
+ </template>
@@ -0,0 +1,6 @@
1
+ <template>
2
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 48 48" fill="currentColor">
3
+ <polygon fill="#81c784" points="23.987,17 18.734,8 2.974,8 23.987,44 45,8 29.24,8" />
4
+ <polygon fill="#455a64" points="29.24,8 23.987,17 18.734,8 11.146,8 23.987,30 36.828,8" />
5
+ </svg>
6
+ </template>
@@ -0,0 +1,11 @@
1
+ <template>
2
+ <svg viewBox="0 0 124 124" fill="none" xmlns="http://www.w3.org/2000/svg">
3
+ <path
4
+ d="M48 82.5887L57.1066 98.175C59.3073 101.942 64.8092 101.942 67.0102 98.175L101 40H72.8834L48 82.5887Z"
5
+ fill="currentColor"
6
+ />
7
+ <path d="M77 33H104.936L105.23 32.4924C107.417 28.718 104.684 24 100.31 24H82.2142L77 33Z" fill="currentColor" />
8
+ <path d="M74 24L68.7601 33H19.0689L18.7734 32.4924C16.5759 28.718 19.3228 24 23.7177 24H74Z" fill="currentColor" />
9
+ <path d="M65 40L44 76L23 40H65Z" fill="currentColor" />
10
+ </svg>
11
+ </template>
@@ -0,0 +1,17 @@
1
+ <template>
2
+ <svg viewBox="0 0 128 128" fill="none" xmlns="http://www.w3.org/2000/svg">
3
+ <path
4
+ d="M67.0788 31.5813C67.0788 21.8864 59.1923 14 49.4975 14C39.2803 14 33.1721 21.6604 33.1721 29.0696H43.2185C43.2185 26.985 45.1675 24.0464 49.4975 24.0464C53.6517 24.0464 57.0323 27.4271 57.0323 31.5813C57.0323 35.7355 54 39.1161 46.3533 39.1161H19V49.1625H46.3533C59.259 49.1625 67.0788 41.2761 67.0788 31.5813ZM67.0788 31.5813C67.0788 21.8864 59.1923 14 49.4975 14C39.2803 14 33.1721 21.6604 33.1721 29.0696H43.2185C43.2185 26.985 45.1675 24.0464 49.4975 24.0464C53.6517 24.0464 57.0323 27.4271 57.0323 31.5813C57.0323 35.7355 54 39.1161 46.3533 39.1161H19V49.1625H46.3533C59.259 49.1625 67.0788 41.2761 67.0788 31.5813Z"
5
+ fill="#42A4EF"
6
+ />
7
+ <path
8
+ d="M89.3666 96.4187C89.3666 106.114 81.4801 114 71.7853 114C61.5681 114 55.4598 106.34 55.4598 98.9304H65.5063C65.5063 101.015 67.4553 103.954 71.7853 103.954C75.9395 103.954 79.3201 100.573 79.3201 96.4187C79.3201 92.2645 75.4999 88.8839 68.6411 88.8839H38.2878V78.8375H68.6411C81.5468 78.8375 89.3666 86.7239 89.3666 96.4187ZM89.3666 96.4187C89.3666 106.114 81.4801 114 71.7853 114C61.5681 114 55.4598 106.34 55.4598 98.9304H65.5063C65.5063 101.015 67.4553 103.954 71.7853 103.954C75.9395 103.954 79.3201 100.573 79.3201 96.4187C79.3201 92.2645 75.4999 88.8839 68.6411 88.8839H38.2878V78.8375H68.6411C81.5468 78.8375 89.3666 86.7239 89.3666 96.4187Z"
9
+ fill="#42A4EF"
10
+ />
11
+ <path
12
+ d="M92 29.5C80.9188 29.5 73.102 37.9269 73.102 49.0081H82C82 43.5 86 39.5 92 39.5C98 39.5 101 43.5 101 49.0081C101 54.5162 97.1036 59.0545 86.5 59.0545H19V69.101H88C103.703 69.101 111 59.0081 111 49.0081C111 37.9269 103.5 29.5 92 29.5Z"
13
+ fill="#42A4EF"
14
+ />
15
+ <path d="M32.1701 78.8375H19V88.9683H32.1701V78.8375Z" fill="#42A4EF" />
16
+ </svg>
17
+ </template>
@@ -0,0 +1,12 @@
1
+ <template>
2
+ <svg
3
+ fill="none"
4
+ stroke-linecap="round"
5
+ stroke-linejoin="round"
6
+ stroke-width="2"
7
+ viewBox="0 0 24 24"
8
+ stroke="currentColor"
9
+ >
10
+ <path d="M6 18L18 6M6 6l12 12" />
11
+ </svg>
12
+ </template>