adata-ui 0.3.98 → 2.0.0

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 (535) hide show
  1. package/-error.vue +170 -0
  2. package/.editorconfig +12 -0
  3. package/.eslintrc.cjs +4 -0
  4. package/.gitlab-ci.yml +16 -0
  5. package/.nuxtrc +1 -0
  6. package/.nvmrc +1 -0
  7. package/.playground/app.config.ts +5 -0
  8. package/.playground/nuxt.config.ts +4 -0
  9. package/.prettierignore +24 -0
  10. package/.prettierrc +10 -0
  11. package/README.md +75 -7
  12. package/app.config.ts +27 -0
  13. package/app.vue +7 -0
  14. package/assets/img/adata-mobile.png +0 -0
  15. package/assets/img/analytics-mobile.png +0 -0
  16. package/assets/img/compliance-mobile.png +0 -0
  17. package/assets/img/empty-box.png +0 -0
  18. package/assets/img/fea-mobile.png +0 -0
  19. package/assets/img/fines-mobile.png +0 -0
  20. package/assets/img/pk-mobile.png +0 -0
  21. package/assets/img/tenders-mobile.png +0 -0
  22. package/assets/img/work-mobile.png +0 -0
  23. package/assets/styles/index.scss +101 -0
  24. package/assets/styles/modules/_base.scss +5 -0
  25. package/assets/styles/modules/_typography.scss +152 -0
  26. package/components/elements/README.md +1 -0
  27. package/components/elements/a-select-row/index.vue +140 -0
  28. package/components/elements/accordion/AAccordion.vue +196 -0
  29. package/components/elements/accordion/AAccordionGroup/AAccordionGroup.vue +145 -0
  30. package/components/elements/accordion/AAccordionGroup/types.ts +20 -0
  31. package/components/elements/accordion/AAccordionGroup/ui.config.ts +22 -0
  32. package/components/elements/accordion/types.ts +14 -0
  33. package/components/elements/accordion/ui.config.ts +22 -0
  34. package/components/elements/alert/AAlert.vue +65 -0
  35. package/components/elements/banner/ABanner.vue +49 -0
  36. package/components/elements/bg-block/ABgBlock.vue +11 -0
  37. package/components/elements/button/AButton.vue +188 -0
  38. package/components/elements/button/types.ts +24 -0
  39. package/components/elements/calendar/ACalendar.vue +83 -0
  40. package/components/elements/carousel/ACarousel.vue +159 -0
  41. package/components/elements/carousel/config.ui.ts +15 -0
  42. package/components/elements/carousel/types.ts +18 -0
  43. package/components/elements/chip-wrapper/AChipWrapper.vue +80 -0
  44. package/components/elements/chip-wrapper/types.ts +12 -0
  45. package/components/elements/chips/AChips.vue +32 -0
  46. package/components/elements/companies/AOurClients.vue +42 -0
  47. package/components/elements/curve-block/ACurveBlock.vue +196 -0
  48. package/components/elements/digit-badge/ADigitBadge.vue +83 -0
  49. package/components/elements/error-template/index.vue +48 -0
  50. package/components/elements/error-template/types.ts +23 -0
  51. package/components/elements/feature-description/AFeatureDescription.vue +112 -0
  52. package/components/elements/illustrations/noAccess.vue +62 -0
  53. package/components/elements/infinite-carousel/AInfiniteCarousel.vue +55 -0
  54. package/components/elements/infinite-scroll/AInfiniteScroll.vue +33 -0
  55. package/components/elements/leave-note/ALeaveNote.vue +77 -0
  56. package/components/elements/pagination/APagination.vue +110 -0
  57. package/components/elements/photos-animation/APhotosAnimation.vue +83 -0
  58. package/components/elements/select/ASelect.vue +389 -0
  59. package/components/elements/select/ASelectMobile.vue +186 -0
  60. package/components/elements/select/ui/select-button.vue +112 -0
  61. package/components/elements/select/ui/select-list.vue +99 -0
  62. package/components/elements/show-more/AShowMore.vue +35 -0
  63. package/components/elements/skeleton/ASkeleton.vue +44 -0
  64. package/components/elements/star-rating/AStarRating.vue +181 -0
  65. package/components/elements/star-rating/types.ts +8 -0
  66. package/components/elements/star-rating/ui/Star.vue +74 -0
  67. package/components/elements/status-badge/AStatusBadge.vue +74 -0
  68. package/components/elements/table/ATable.vue +93 -0
  69. package/components/elements/table/table.config.ts +32 -0
  70. package/components/elements/tree-select/ATreeSelect.vue +169 -0
  71. package/components/elements/tree-select/TreeService.ts +249 -0
  72. package/components/elements/tree-select/components/tree-select-nodes.vue +90 -0
  73. package/components/elements/tree-select/types.ts +34 -0
  74. package/components/elements/tree-select-mobile/ATreeSelectMobile.vue +79 -0
  75. package/components/elements/tree-select-mobile/components/ATreeSelectNodesMobile.vue +175 -0
  76. package/components/features/color-mode/AColorMode.client.vue +53 -0
  77. package/components/features/dropdown/ADropdown.vue +124 -0
  78. package/components/features/go-top/GoTop.vue +58 -0
  79. package/components/features/lang-switcher/lang-switcher.vue +56 -0
  80. package/components/features/pk-mobile-services/APkMobileServices.vue +130 -0
  81. package/components/features//321/201hange-version/AChangeVersion.vue +20 -0
  82. package/components/forms/README.md +1 -0
  83. package/components/forms/checkbox/ACheckbox.vue +151 -0
  84. package/components/forms/feedback-form/FeedbackForm.vue +171 -0
  85. package/components/forms/input/button/AInputButton.vue +53 -0
  86. package/components/forms/input/date/AInputDate.vue +213 -0
  87. package/components/forms/input/password/AInputPassword.vue +53 -0
  88. package/components/forms/input/standard/AInputStandard.vue +412 -0
  89. package/components/forms/input/textarea/ATextarea.vue +200 -0
  90. package/components/forms/radio-button/ARadioButton.vue +87 -0
  91. package/components/forms/request-demo/ARequestDemo.vue +90 -0
  92. package/components/forms/toggle/AToggle.vue +157 -0
  93. package/components/forms/toggle/types.ts +16 -0
  94. package/components/modals/AboutTariffModal.vue +113 -0
  95. package/components/modals/AnotherDeviceModal.vue +59 -0
  96. package/components/modals/ApplicationAcceptedModal.vue +47 -0
  97. package/components/modals/AuthModal.vue +50 -0
  98. package/components/modals/ConnectingTariffModal.vue +68 -0
  99. package/components/modals/ContactsMobileModel.vue +182 -0
  100. package/components/modals/ContentNavigationModal.vue +282 -0
  101. package/components/modals/Insufficient-funds-modal.vue +74 -0
  102. package/components/modals/LimitReachedModal.vue +29 -0
  103. package/components/modals/NoAccessModal.vue +37 -0
  104. package/components/modals/PaymentMethodModal.vue +101 -0
  105. package/components/modals/RedirectsBanksModal.vue +69 -0
  106. package/components/modals/ReplenishModal.vue +132 -0
  107. package/components/modals/ReportBugConfirmModal.vue +30 -0
  108. package/components/modals/ReportBugModal.vue +156 -0
  109. package/components/modals/SubmitApplicationModal.vue +111 -0
  110. package/components/navigation/README.md +1 -0
  111. package/components/navigation/bottom-navigation/ABottomNavigation.vue +101 -0
  112. package/components/navigation/breadcrumbs/ABreadcrumbs.vue +66 -0
  113. package/components/navigation/breadcrumbs/types.ts +4 -0
  114. package/components/navigation/footer/AFooter.vue +126 -0
  115. package/components/navigation/footer/NewFooter.vue +276 -0
  116. package/components/navigation/footer/ui/footer-acccordion.vue +119 -0
  117. package/components/navigation/footer/ui/new-footer-accordion.vue +120 -0
  118. package/components/navigation/header/AHeader.vue +187 -0
  119. package/components/navigation/header/AlmatyContacts.vue +143 -0
  120. package/components/navigation/header/AstanaContacts.vue +65 -0
  121. package/components/navigation/header/CardGallery.vue +248 -0
  122. package/components/navigation/header/ContactMenu.vue +114 -0
  123. package/components/navigation/header/HeaderLink.vue +247 -0
  124. package/components/navigation/header/ListItem.vue +31 -0
  125. package/components/navigation/header/NavCard.vue +41 -0
  126. package/components/navigation/header/NavList.vue +115 -0
  127. package/components/navigation/header/NotificationsMenu.vue +51 -0
  128. package/components/navigation/header/ProductMenu.vue +212 -0
  129. package/components/navigation/header/ProfileMenu.vue +189 -0
  130. package/components/navigation/header/TopHeader.vue +181 -0
  131. package/components/navigation/header/types.ts +28 -0
  132. package/components/navigation/line-tabs/ALineTabs.vue +111 -0
  133. package/components/navigation/line-tabs/types.ts +21 -0
  134. package/components/navigation/mobile-navigation/AMobileNavigation.vue +104 -0
  135. package/components/navigation/pill-tabs/APillTabs.vue +157 -0
  136. package/components/navigation/pill-tabs/types.ts +22 -0
  137. package/components/navigation/side-navigation/ASideNavigation.vue +404 -0
  138. package/components/overlays/README.md +1 -0
  139. package/components/overlays/modal/AModal.vue +332 -0
  140. package/components/overlays/sideover/ASlideover.vue +351 -0
  141. package/components/overlays/tooltip/ATooltip.vue +242 -0
  142. package/components/transitions/ATransitionHeight.vue +67 -0
  143. package/components/utils/index.ts +19 -0
  144. package/composables/highlight.ts +18 -0
  145. package/composables/modalsState.ts +8 -0
  146. package/composables/projectState.ts +2 -0
  147. package/composables/useAdaptive.ts +46 -0
  148. package/composables/useCarouselScroll.ts +49 -0
  149. package/composables/useHeaderNavigationLinks.ts +576 -0
  150. package/composables/useUIValidation.ts +16 -0
  151. package/histoire.config.ts +10 -0
  152. package/i18n/i18n.config.ts +21 -0
  153. package/i18n.config.ts +21 -0
  154. package/icons/adata-logo.vue +17 -0
  155. package/icons/arrow/arrow-bottom-left-on-square.vue +5 -0
  156. package/icons/arrow/arrow-circle-down.vue +20 -0
  157. package/icons/arrow/arrow-circle-reset.vue +16 -0
  158. package/icons/arrow/arrow-corner.vue +9 -0
  159. package/icons/arrow/arrow-graph-down.vue +13 -0
  160. package/icons/arrow/arrow-graph-up.vue +14 -0
  161. package/icons/arrow/arrow-square-down.vue +15 -0
  162. package/icons/arrow/arrow-top-right-on-square.vue +6 -0
  163. package/icons/arrow-currency-gray.vue +5 -0
  164. package/icons/arrow-currency-green.vue +5 -0
  165. package/icons/arrow-currency-red.vue +5 -0
  166. package/icons/arrow-side-up.vue +6 -0
  167. package/icons/avatar.vue +12 -0
  168. package/icons/block.vue +16 -0
  169. package/icons/bookmark/bookmark-filled.vue +18 -0
  170. package/icons/bookmark/bookmark.vue +5 -0
  171. package/icons/browsers/browser-duck.vue +65 -0
  172. package/icons/browsers/browser-google.vue +24 -0
  173. package/icons/browsers/browser-yandex.vue +13 -0
  174. package/icons/building-vector.vue +7 -0
  175. package/icons/calculator.vue +7 -0
  176. package/icons/calendar.vue +24 -0
  177. package/icons/car.vue +7 -0
  178. package/icons/check/check-circle.vue +6 -0
  179. package/icons/check/check-shield.vue +14 -0
  180. package/icons/check/check.vue +17 -0
  181. package/icons/check/checkmark-circle.vue +6 -0
  182. package/icons/checkbox/checkbox-active.vue +17 -0
  183. package/icons/checkbox/checkbox-empty.vue +10 -0
  184. package/icons/checkbox/checkbox-intermediate.vue +7 -0
  185. package/icons/chevron/chevron-down.vue +5 -0
  186. package/icons/chevron/chevron-left.vue +5 -0
  187. package/icons/chevron/chevron-right.vue +5 -0
  188. package/icons/chevron/chevron-up.vue +5 -0
  189. package/icons/chevron/double-chevron-right.vue +12 -0
  190. package/icons/clipboard-text.vue +7 -0
  191. package/icons/clock.vue +9 -0
  192. package/icons/company/company-bazis.vue +21 -0
  193. package/icons/company/company-bereke.vue +25 -0
  194. package/icons/company/company-bigroup.vue +16 -0
  195. package/icons/company/company-erg.vue +17 -0
  196. package/icons/company/company-forte.vue +23 -0
  197. package/icons/company/company-halyk.vue +15 -0
  198. package/icons/company/company-jusan.vue +14 -0
  199. package/icons/company/company-kaspi.vue +14 -0
  200. package/icons/company/company-mycar.vue +13 -0
  201. package/icons/company/company-samruk.vue +21 -0
  202. package/icons/company-egov-small.vue +15 -0
  203. package/icons/company.vue +8 -0
  204. package/icons/copy.vue +7 -0
  205. package/icons/currency/currency-dollar.vue +16 -0
  206. package/icons/currency/currency-down.vue +22 -0
  207. package/icons/currency/currency-eur.vue +57 -0
  208. package/icons/currency/currency-rub.vue +7 -0
  209. package/icons/currency/currency-usd.vue +221 -0
  210. package/icons/currency/currency-yuan.vue +25 -0
  211. package/icons/delete.vue +7 -0
  212. package/icons/document.vue +5 -0
  213. package/icons/download.vue +11 -0
  214. package/icons/edit.vue +7 -0
  215. package/icons/education.vue +16 -0
  216. package/icons/egov-small.vue +7 -0
  217. package/icons/expand-window.vue +7 -0
  218. package/icons/eye-closed.vue +26 -0
  219. package/icons/eye-open.vue +7 -0
  220. package/icons/eye-opened.vue +23 -0
  221. package/icons/file/file.vue +16 -0
  222. package/icons/file/files.vue +16 -0
  223. package/icons/filter.vue +5 -0
  224. package/icons/flag.vue +7 -0
  225. package/icons/gift.vue +8 -0
  226. package/icons/globe.vue +16 -0
  227. package/icons/graph-pie.vue +14 -0
  228. package/icons/hand/hand-thumb-up-filled.vue +5 -0
  229. package/icons/hand/hand-thumb-up.vue +5 -0
  230. package/icons/hand-with-phone/hand-with-phone-dark.vue +52 -0
  231. package/icons/hand-with-phone/hand-with-phone-light.vue +52 -0
  232. package/icons/handshake.vue +5 -0
  233. package/icons/hcheck.vue +14 -0
  234. package/icons/hdocument.vue +7 -0
  235. package/icons/history.vue +5 -0
  236. package/icons/horizontal-more.vue +13 -0
  237. package/icons/hummer.vue +16 -0
  238. package/icons/id.vue +7 -0
  239. package/icons/info/info-circle.vue +29 -0
  240. package/icons/invoice.vue +7 -0
  241. package/icons/judge.vue +14 -0
  242. package/icons/link-chain.vue +28 -0
  243. package/icons/link.vue +7 -0
  244. package/icons/linkedin.vue +24 -0
  245. package/icons/loader-circle.vue +27 -0
  246. package/icons/location.vue +8 -0
  247. package/icons/lock.vue +5 -0
  248. package/icons/logo.vue +15 -0
  249. package/icons/logout.vue +16 -0
  250. package/icons/magnify/magnifying-glass-minus.vue +8 -0
  251. package/icons/magnify/magnifying-glass-plus.vue +9 -0
  252. package/icons/magnify/magnifying-glass.vue +9 -0
  253. package/icons/mail.vue +7 -0
  254. package/icons/main-filter.vue +5 -0
  255. package/{dist/img/location.807c7100.svg → icons/map/map-pin-filled.vue} +7 -4
  256. package/icons/map/map-pin-rect.vue +15 -0
  257. package/{src/assets/location.svg → icons/map/map-pin.vue} +7 -4
  258. package/icons/map-marker-start.vue +7 -0
  259. package/icons/map-paper.vue +5 -0
  260. package/icons/medal.vue +7 -0
  261. package/icons/menu-filled.vue +20 -0
  262. package/icons/menu.vue +8 -0
  263. package/icons/message/message.vue +12 -0
  264. package/icons/minus/minus-circle.vue +10 -0
  265. package/icons/money.vue +5 -0
  266. package/icons/monitoring.vue +10 -0
  267. package/icons/moon.vue +8 -0
  268. package/icons/more.vue +29 -0
  269. package/icons/note-pencil.vue +14 -0
  270. package/icons/note.vue +14 -0
  271. package/icons/notification.vue +16 -0
  272. package/icons/paperclip.vue +7 -0
  273. package/icons/payment/payment-card.vue +6 -0
  274. package/icons/payment/payment-kaspi.vue +11 -0
  275. package/icons/person-vector.vue +7 -0
  276. package/icons/person-with-briefcase.vue +10 -0
  277. package/icons/phone-filled.vue +5 -0
  278. package/icons/phone.vue +7 -0
  279. package/icons/plus/plus-circle.vue +8 -0
  280. package/icons/plus/plus.vue +13 -0
  281. package/icons/profile.vue +5 -0
  282. package/icons/radio/radio-check.vue +8 -0
  283. package/icons/radio/radio-empty.vue +10 -0
  284. package/icons/receipt.vue +8 -0
  285. package/icons/robot.vue +14 -0
  286. package/icons/scales/scale.vue +16 -0
  287. package/icons/scales/scales.vue +5 -0
  288. package/icons/scales/standing-scales.vue +15 -0
  289. package/icons/search.vue +15 -0
  290. package/icons/share/share-alt.vue +5 -0
  291. package/icons/share/share.vue +14 -0
  292. package/icons/ship.vue +8 -0
  293. package/icons/socials/face-book.vue +15 -0
  294. package/icons/socials/instagram.vue +19 -0
  295. package/icons/socials/telegram.vue +15 -0
  296. package/icons/socials/tik-tok.vue +15 -0
  297. package/icons/socials/youtube.vue +16 -0
  298. package/icons/sort/sort-asc.vue +15 -0
  299. package/icons/sort/sort-desc.vue +15 -0
  300. package/icons/splitting-arrows.vue +8 -0
  301. package/icons/star/star-filled.vue +40 -0
  302. package/icons/star/star-half-filled.vue +20 -0
  303. package/icons/star/star.vue +25 -0
  304. package/icons/sun.vue +14 -0
  305. package/icons/sviazi.vue +5 -0
  306. package/icons/tag.vue +30 -0
  307. package/icons/tender-search.vue +11 -0
  308. package/icons/toasts/check-circle-toast.vue +6 -0
  309. package/icons/toasts/warning-triangle-toast.vue +7 -0
  310. package/icons/trash.vue +13 -0
  311. package/icons/triangle.vue +10 -0
  312. package/icons/truck.vue +7 -0
  313. package/icons/user-square.vue +14 -0
  314. package/icons/user.vue +22 -0
  315. package/icons/users-focus.vue +8 -0
  316. package/icons/users-three.vue +7 -0
  317. package/icons/users.vue +8 -0
  318. package/icons/warning/warning-circle.vue +29 -0
  319. package/icons/warning/warning-triangle-filled.vue +12 -0
  320. package/icons/warning/warning-triangle.vue +28 -0
  321. package/icons/whatsapp.vue +8 -0
  322. package/icons/work-bag.vue +11 -0
  323. package/icons/work-search.vue +10 -0
  324. package/icons/work.vue +5 -0
  325. package/icons/x-mark.vue +15 -0
  326. package/illustrations/address-location.vue +38 -0
  327. package/illustrations/ball-with-chain.vue +120 -0
  328. package/illustrations/bill.vue +133 -0
  329. package/illustrations/buildings.vue +82 -0
  330. package/illustrations/calendar.vue +156 -0
  331. package/illustrations/chains.vue +152 -0
  332. package/illustrations/coin-percent.vue +126 -0
  333. package/illustrations/coins-stack.vue +202 -0
  334. package/illustrations/delete-dark.vue +31 -0
  335. package/illustrations/delete.vue +32 -0
  336. package/illustrations/doc-with-stamp.vue +126 -0
  337. package/illustrations/document.vue +64 -0
  338. package/illustrations/door.vue +74 -0
  339. package/illustrations/empty-box.vue +77 -0
  340. package/illustrations/empty-wallet.vue +161 -0
  341. package/illustrations/graph-in-coin.vue +119 -0
  342. package/illustrations/hammer.vue +156 -0
  343. package/illustrations/hand-cash.vue +108 -0
  344. package/illustrations/info.vue +39 -0
  345. package/illustrations/mail.vue +68 -0
  346. package/illustrations/ok.vue +62 -0
  347. package/illustrations/people-group.vue +237 -0
  348. package/illustrations/person-with-phone.vue +187 -0
  349. package/illustrations/person.vue +159 -0
  350. package/illustrations/phone-check.vue +90 -0
  351. package/illustrations/phone-payment-method.vue +223 -0
  352. package/illustrations/stop-hand.vue +77 -0
  353. package/illustrations/stop-sign.vue +34 -0
  354. package/illustrations/suit.vue +111 -0
  355. package/illustrations/suitcase.vue +105 -0
  356. package/illustrations/terminal-dark.vue +48 -0
  357. package/illustrations/terminal.vue +234 -0
  358. package/illustrations/trash-can.vue +108 -0
  359. package/illustrations/turn-on-tariff.vue +38 -0
  360. package/illustrations/two-persons.vue +169 -0
  361. package/lang/en.ts +593 -0
  362. package/lang/kk.ts +594 -0
  363. package/lang/ru.ts +595 -0
  364. package/layouts/default.vue +13 -0
  365. package/nuxt.config.ts +64 -0
  366. package/package.json +65 -76
  367. package/plugins/maska.ts +5 -0
  368. package/plugins/toast.client.ts +58 -0
  369. package/public/error-illustrations/401.webp +0 -0
  370. package/public/error-illustrations/403.webp +0 -0
  371. package/public/error-illustrations/404.webp +0 -0
  372. package/public/error-illustrations/500.webp +0 -0
  373. package/public/error-illustrations/502.webp +0 -0
  374. package/public/error-illustrations/503.webp +0 -0
  375. package/public/error-illustrations/504.webp +0 -0
  376. package/public/header/compliance.webp +0 -0
  377. package/public/header/unload.webp +0 -0
  378. package/public/header/ved.webp +0 -0
  379. package/public/mode/dark-analytics-en.webp +0 -0
  380. package/public/mode/dark-analytics-kk.webp +0 -0
  381. package/public/mode/dark-analytics-ru.webp +0 -0
  382. package/public/mode/dark-complience-en.webp +0 -0
  383. package/public/mode/dark-complience-kk.webp +0 -0
  384. package/public/mode/dark-complience-ru.webp +0 -0
  385. package/public/mode/dark-fea-en.webp +0 -0
  386. package/public/mode/dark-fea-kk.webp +0 -0
  387. package/public/mode/dark-fea-ru.webp +0 -0
  388. package/public/mode/dark-fines-en.webp +0 -0
  389. package/public/mode/dark-fines-kk.webp +0 -0
  390. package/public/mode/dark-fines-ru.webp +0 -0
  391. package/public/mode/dark-pk-en.webp +0 -0
  392. package/public/mode/dark-pk-kk.webp +0 -0
  393. package/public/mode/dark-pk-ru.webp +0 -0
  394. package/public/mode/dark-tenders-en.webp +0 -0
  395. package/public/mode/dark-tenders-kk.webp +0 -0
  396. package/public/mode/dark-tenders-ru.webp +0 -0
  397. package/public/mode/dark-work-en.webp +0 -0
  398. package/public/mode/dark-work-kk.webp +0 -0
  399. package/public/mode/dark-work-ru.webp +0 -0
  400. package/public/mode/light-analytics-en.webp +0 -0
  401. package/public/mode/light-analytics-kk.webp +0 -0
  402. package/public/mode/light-analytics-ru.webp +0 -0
  403. package/public/mode/light-complience-en.webp +0 -0
  404. package/public/mode/light-complience-kk.webp +0 -0
  405. package/public/mode/light-complience-ru.webp +0 -0
  406. package/public/mode/light-fea-en.webp +0 -0
  407. package/public/mode/light-fea-kk.webp +0 -0
  408. package/public/mode/light-fea-ru.webp +0 -0
  409. package/public/mode/light-fines-en.webp +0 -0
  410. package/public/mode/light-fines-kk.webp +0 -0
  411. package/public/mode/light-fines-ru.webp +0 -0
  412. package/public/mode/light-pk-en.webp +0 -0
  413. package/public/mode/light-pk-kk.webp +0 -0
  414. package/public/mode/light-pk-ru.webp +0 -0
  415. package/public/mode/light-tenders-en.webp +0 -0
  416. package/public/mode/light-tenders-kk.webp +0 -0
  417. package/public/mode/light-tenders-ru.webp +0 -0
  418. package/public/mode/light-work-en.webp +0 -0
  419. package/public/mode/light-work-kk.webp +0 -0
  420. package/public/mode/light-work-ru.webp +0 -0
  421. package/public/tariff/subtract.png +0 -0
  422. package/shared/constans/pages.ts +73 -0
  423. package/tailwind.config.ts +163 -0
  424. package/tests/AButton.test.ts +81 -0
  425. package/tsconfig.json +6 -0
  426. package/utils/getMaxZindex.ts +25 -0
  427. package/utils/localizedNavigation.ts +36 -0
  428. package/vitest.config.ts +14 -0
  429. package/babel.config.js +0 -5
  430. package/dist/adata-ui.common.js +0 -10910
  431. package/dist/adata-ui.common.js.map +0 -1
  432. package/dist/adata-ui.css +0 -1
  433. package/dist/adata-ui.umd.js +0 -10920
  434. package/dist/adata-ui.umd.js.map +0 -1
  435. package/dist/adata-ui.umd.min.js +0 -7
  436. package/dist/adata-ui.umd.min.js.map +0 -1
  437. package/dist/demo.html +0 -10
  438. package/dist/img/expand-window.39c851da.svg +0 -3
  439. package/dist/img/facebook.797d820f.svg +0 -4
  440. package/dist/img/instagram.8a77381c.svg +0 -6
  441. package/dist/img/linkedIn.607d9542.svg +0 -13
  442. package/dist/img/logo-desktop-main.4d169395.svg +0 -8
  443. package/dist/img/logo-mobile-main.397bce24.svg +0 -4
  444. package/dist/img/logo-white-desktop.7d0e3481.svg +0 -8
  445. package/dist/img/mail.e4826575.svg +0 -3
  446. package/dist/img/phone.ae6c1746.svg +0 -3
  447. package/dist/img/telegram.be0d1008.svg +0 -4
  448. package/dist/img/tiktok.eaeb39cb.svg +0 -4
  449. package/dist/img/up-down.e2b28f72.svg +0 -3
  450. package/dist/img/youtube.125aace6.svg +0 -5
  451. package/package-lock.json +0 -27138
  452. package/public/favicon.ico +0 -0
  453. package/public/index.html +0 -17
  454. package/public/logo.svg +0 -4
  455. package/src/App.vue +0 -31
  456. package/src/assets/_text_field.scss +0 -225
  457. package/src/assets/expand-window.svg +0 -3
  458. package/src/assets/facebook.svg +0 -4
  459. package/src/assets/instagram.svg +0 -6
  460. package/src/assets/linkedIn.svg +0 -13
  461. package/src/assets/logo-desktop-main.svg +0 -8
  462. package/src/assets/logo-desktop.svg +0 -9
  463. package/src/assets/logo-desktop.webp +0 -0
  464. package/src/assets/logo-mobile-main.svg +0 -4
  465. package/src/assets/logo-mobile.svg +0 -9
  466. package/src/assets/logo-mobile.webp +0 -0
  467. package/src/assets/logo-white-desktop.svg +0 -8
  468. package/src/assets/mail.svg +0 -3
  469. package/src/assets/phone.svg +0 -3
  470. package/src/assets/style.scss +0 -1
  471. package/src/assets/telegram.svg +0 -4
  472. package/src/assets/tiktok.svg +0 -4
  473. package/src/assets/up-down.svg +0 -3
  474. package/src/assets/youtube.svg +0 -5
  475. package/src/components/Alert/Alert.stories.js +0 -17
  476. package/src/components/Alert/Alert.vue +0 -63
  477. package/src/components/BottomNavigationBar/ABottomNavigationBar.vue +0 -160
  478. package/src/components/BottomNavigationBar/BottomNavigationBar.stories.js +0 -25
  479. package/src/components/Button/AButton.vue +0 -231
  480. package/src/components/Button/Button.stories.js +0 -23
  481. package/src/components/Checkbox/ACheckbox.vue +0 -114
  482. package/src/components/Checkbox/Checkbox.stories.js +0 -15
  483. package/src/components/CheckboxMenu/CheckboxMenu.stories.js +0 -24
  484. package/src/components/CheckboxMenu/CheckboxMenu.vue +0 -108
  485. package/src/components/ErrorPages/BadGateway.vue +0 -224
  486. package/src/components/ErrorPages/Forbidden.vue +0 -468
  487. package/src/components/ErrorPages/InternalServerError.vue +0 -275
  488. package/src/components/ErrorPages/NotFound.vue +0 -995
  489. package/src/components/ErrorPages/Unavailable.vue +0 -3705
  490. package/src/components/Footer/Footer.stories.js +0 -20
  491. package/src/components/Footer/Footer.vue +0 -292
  492. package/src/components/Header/ChildLinks.vue +0 -144
  493. package/src/components/Header/Header.stories.js +0 -56
  494. package/src/components/Header/Header.vue +0 -1306
  495. package/src/components/Header/InfoHeader.vue +0 -319
  496. package/src/components/Header/Profile.vue +0 -670
  497. package/src/components/Header/ProfileMenu.vue +0 -293
  498. package/src/components/Header/ProfileMobile.vue +0 -308
  499. package/src/components/Header/ProfileOld.vue +0 -781
  500. package/src/components/InternalServerError/InternalServerError.stories.js +0 -17
  501. package/src/components/InternalServerError/InternalServerError.vue +0 -262
  502. package/src/components/Introduction.stories.mdx +0 -7
  503. package/src/components/Loader/Loader.stories.js +0 -25
  504. package/src/components/Loader/Loader.vue +0 -325
  505. package/src/components/MailTo/MailTo.stories.js +0 -15
  506. package/src/components/MailTo/MailTo.vue +0 -258
  507. package/src/components/NavIcon/ANavIcon.vue +0 -50
  508. package/src/components/NavIcon/NavIcon.stories.js +0 -15
  509. package/src/components/PasswordField/PasswordField.stories.js +0 -16
  510. package/src/components/PasswordField/PasswordField.vue +0 -77
  511. package/src/components/SearchTextField/SearchTextField.stories.js +0 -78
  512. package/src/components/SearchTextField/SearchTextField.vue +0 -230
  513. package/src/components/ServiceSlider/AServiceSlider.vue +0 -793
  514. package/src/components/ServiceSlider/ServiceSlider.stories.js +0 -20
  515. package/src/components/Table/ATable.vue +0 -117
  516. package/src/components/Table/Table.stories.js +0 -15
  517. package/src/components/TextArea/TextArea.stories.js +0 -17
  518. package/src/components/TextArea/TextArea.vue +0 -116
  519. package/src/components/TextError/TextError.stories.js +0 -15
  520. package/src/components/TextError/TextError.vue +0 -57
  521. package/src/components/TextField/TextField.stories.js +0 -17
  522. package/src/components/TextField/TextField.vue +0 -107
  523. package/src/components/index.js +0 -56
  524. package/src/components/newComponents/FooterNew/FooterBottom.vue +0 -153
  525. package/src/components/newComponents/FooterNew/FooterItem.vue +0 -114
  526. package/src/components/newComponents/FooterNew/FooterNew.stories.js +0 -20
  527. package/src/components/newComponents/FooterNew/FooterNew.vue +0 -39
  528. package/src/components/newComponents/FooterNew/FooterTop.vue +0 -321
  529. package/src/components/newComponents/FooterRedesign/FooterAccordion.vue +0 -221
  530. package/src/components/newComponents/FooterRedesign/FooterRedesign.vue +0 -430
  531. package/src/components/transitions/SlideToggle.vue +0 -55
  532. package/src/components/transitions/VerticalMobileToggle.vue +0 -75
  533. package/src/configs/icons.js +0 -112
  534. package/src/configs/profileDropDown.js +0 -134
  535. package/src/main.js +0 -12
@@ -0,0 +1,126 @@
1
+ <template>
2
+ <svg
3
+ fill="none"
4
+ height="155"
5
+ viewBox="0 0 156 155"
6
+ width="156"
7
+ xmlns="https://www.w3.org/2000/svg"
8
+ >
9
+ <circle cx="77.7027" cy="76.9998" fill="#BDC7CE" fill-opacity="0.15" r="64.5833" />
10
+ <g clip-path="url(#clip0_2708_133533)">
11
+ <path
12
+ d="M126.54 27.8906V73.9773V137.631H36.0076V54.2923L62.293 27.8906H126.54Z"
13
+ class="fill-white dark:fill-gray-900"
14
+ opacity="0.2"
15
+ />
16
+ <path
17
+ d="M118.494 16.9373V63.0239V129.261H27.9736V43.3389L54.259 16.9373H118.494Z"
18
+ class="fill-white dark:fill-gray-900"
19
+ stroke="#9DA3AC"
20
+ stroke-miterlimit="10"
21
+ stroke-width="1.29167"
22
+ />
23
+ <path
24
+ d="M54.259 16.9373V48.0793H27.9736V43.3389L54.259 16.9373Z"
25
+ fill="#BDC7CE"
26
+ opacity="0.2"
27
+ />
28
+ <path
29
+ d="M47.426 102.924H73.2335"
30
+ stroke="#9DA3AC"
31
+ stroke-linecap="round"
32
+ stroke-linejoin="round"
33
+ stroke-width="1.29167"
34
+ />
35
+ <path
36
+ d="M47.426 82.8123H101.896"
37
+ stroke="#9DA3AC"
38
+ stroke-linecap="round"
39
+ stroke-linejoin="round"
40
+ stroke-width="1.29167"
41
+ />
42
+ <path
43
+ d="M47.426 62.7009H101.896"
44
+ stroke="#9DA3AC"
45
+ stroke-linecap="round"
46
+ stroke-linejoin="round"
47
+ stroke-width="1.29167"
48
+ />
49
+ <path
50
+ d="M27.9736 43.3389H54.259V16.9373L27.9736 43.3389Z"
51
+ class="fill-white dark:fill-gray-900"
52
+ stroke="#9DA3AC"
53
+ stroke-linecap="round"
54
+ stroke-linejoin="round"
55
+ stroke-width="1.29167"
56
+ />
57
+ <path
58
+ d="M97.9819 119.728C105.708 119.728 111.971 113.465 111.971 105.739C111.971 98.0135 105.708 91.7505 97.9819 91.7505C90.2561 91.7505 83.9932 98.0135 83.9932 105.739C83.9932 113.465 90.2561 119.728 97.9819 119.728Z"
59
+ class="fill-white dark:fill-gray-900"
60
+ stroke="#9DA3AC"
61
+ stroke-linecap="round"
62
+ stroke-miterlimit="10"
63
+ stroke-width="1.29167"
64
+ />
65
+ <path
66
+ d="M89.4954 99.3974C90.6292 97.8812 92.1484 96.6962 93.8949 95.9655C95.6415 95.2348 97.5518 94.985 99.4276 95.242C101.303 95.499 103.076 96.2535 104.562 97.4272C106.047 98.6008 107.192 100.151 107.876 101.916"
67
+ stroke="#9DA3AC"
68
+ stroke-linecap="round"
69
+ stroke-miterlimit="10"
70
+ stroke-width="1.29167"
71
+ />
72
+ <path
73
+ d="M98.4984 101.193C98.6219 101.331 98.7302 101.483 98.8213 101.645C99.0738 102.14 99.1291 102.712 98.9763 103.246C98.9627 103.285 98.9569 103.327 98.9593 103.368C98.9617 103.409 98.9722 103.45 98.9902 103.487C99.0082 103.524 99.0333 103.557 99.0642 103.585C99.095 103.612 99.131 103.633 99.17 103.647C99.209 103.66 99.2503 103.666 99.2915 103.664C99.3328 103.661 99.3732 103.651 99.4103 103.633C99.4475 103.615 99.4808 103.59 99.5083 103.559C99.5357 103.528 99.5568 103.492 99.5704 103.453C99.6823 103.11 99.7241 102.748 99.693 102.388C99.6619 102.029 99.5587 101.679 99.3896 101.361C99.2801 101.151 99.1457 100.956 98.9892 100.779L99.8029 100.069C99.8408 100.043 99.8729 100.009 99.8968 99.9701C99.9207 99.9309 99.936 99.887 99.9416 99.8414C99.9471 99.7958 99.943 99.7495 99.9293 99.7057C99.9155 99.6619 99.8926 99.6214 99.862 99.5871C99.8314 99.5528 99.7939 99.5255 99.7519 99.5069C99.7099 99.4883 99.6644 99.4788 99.6185 99.4791C99.5725 99.4795 99.5272 99.4896 99.4855 99.5089C99.4438 99.5282 99.4067 99.5562 99.3767 99.591L98.4984 100.353C97.9893 100.002 97.4201 99.7484 96.8191 99.6038C94.6497 99.1353 92.3874 99.3706 90.3608 100.276C88.5367 100.937 86.965 102.151 85.8658 103.75C85.5432 104.204 85.3943 104.759 85.4465 105.314C85.4986 105.869 85.7484 106.386 86.15 106.773C86.4595 107.075 86.858 107.27 87.2867 107.328C88.798 107.573 91.1617 106.631 94.2617 104.486C95.7283 103.46 97.1423 102.361 98.4984 101.193ZM86.5375 106.359C86.2364 106.072 86.0516 105.685 86.0182 105.27C85.9849 104.855 86.1053 104.443 86.3567 104.112C87.6483 101.735 92.3629 99.5264 96.0312 100.133C96.2403 100.164 96.4474 100.207 96.6513 100.263C97.1076 100.381 97.5432 100.568 97.943 100.818C96.9096 101.683 95.3596 102.898 93.7837 103.996C90.1542 106.476 87.5709 107.315 86.5375 106.321V106.359Z"
74
+ fill="#9DA3AC"
75
+ stroke="#9DA3AC"
76
+ stroke-linejoin="round"
77
+ stroke-width="0.322917"
78
+ />
79
+ <path
80
+ d="M96.8582 103.789C96.8929 103.759 96.9209 103.722 96.9402 103.68C96.9594 103.638 96.9696 103.593 96.97 103.547C96.9703 103.501 96.9609 103.456 96.9423 103.414C96.9237 103.372 96.8963 103.334 96.862 103.304C96.8277 103.273 96.7873 103.25 96.7435 103.236C96.6996 103.223 96.6534 103.218 96.6078 103.224C96.5622 103.23 96.5183 103.245 96.479 103.269C96.4398 103.293 96.4061 103.325 96.3802 103.363C94.9955 104.617 93.4849 105.725 91.8723 106.669C91.8205 106.706 91.7806 106.757 91.7577 106.817C91.7348 106.876 91.73 106.941 91.7438 107.003C91.7576 107.065 91.7894 107.122 91.8352 107.166C91.8811 107.21 91.9389 107.239 92.0015 107.251C92.0726 107.275 92.1499 107.275 92.221 107.251C93.8742 106.248 95.427 105.089 96.8582 103.789Z"
81
+ fill="#9DA3AC"
82
+ stroke="#9DA3AC"
83
+ stroke-linejoin="round"
84
+ stroke-width="0.322917"
85
+ />
86
+ <path
87
+ d="M97.7235 104.215C97.5944 103.983 97.3231 103.957 96.9098 104.138C96.8707 104.155 96.8354 104.179 96.8057 104.21C96.7761 104.24 96.7528 104.277 96.7372 104.316C96.7216 104.356 96.7139 104.398 96.7147 104.441C96.7156 104.483 96.7248 104.525 96.7419 104.564C96.7612 104.617 96.7975 104.663 96.8452 104.693C96.1569 105.345 95.4325 105.957 94.6752 106.528C94.6443 106.557 94.6197 106.592 94.6029 106.63C94.586 106.669 94.5774 106.711 94.5774 106.754C94.5774 106.796 94.586 106.838 94.6029 106.877C94.6197 106.916 94.6443 106.951 94.6752 106.98C94.7229 107.041 94.7921 107.083 94.869 107.096C94.9476 107.128 95.0358 107.128 95.1144 107.096C96.1348 106.295 96.871 105.675 97.3102 105.262C97.7494 104.848 97.9044 104.513 97.7235 104.215Z"
88
+ fill="#9DA3AC"
89
+ stroke="#9DA3AC"
90
+ stroke-linejoin="round"
91
+ stroke-width="0.322917"
92
+ />
93
+ <path
94
+ d="M109.904 108.297L104.634 108.684C104.593 108.688 104.553 108.699 104.517 108.718C104.481 108.736 104.448 108.762 104.422 108.793C104.396 108.824 104.376 108.861 104.363 108.9C104.351 108.939 104.346 108.98 104.35 109.02C104.352 109.092 104.379 109.161 104.426 109.215C104.473 109.269 104.537 109.305 104.608 109.317H104.686L109.956 108.93C109.996 108.927 110.036 108.915 110.073 108.897C110.109 108.878 110.141 108.852 110.168 108.821C110.194 108.79 110.214 108.754 110.226 108.715C110.239 108.676 110.243 108.635 110.24 108.594C110.238 108.552 110.228 108.511 110.21 108.473C110.192 108.435 110.167 108.401 110.135 108.374C110.104 108.346 110.067 108.325 110.028 108.312C109.988 108.298 109.946 108.293 109.904 108.297Z"
95
+ fill="#9DA3AC"
96
+ stroke="#9DA3AC"
97
+ stroke-linejoin="round"
98
+ stroke-width="0.322917"
99
+ />
100
+ <path
101
+ d="M105.939 106.579C108.522 105.288 109.271 104.68 109.349 104.125C109.362 104.021 109.348 103.916 109.31 103.819C109.272 103.722 109.209 103.636 109.129 103.57C108.793 103.26 108.264 103.57 107.476 104.267C106.972 104.693 106.339 105.288 105.564 106.063L105.293 106.192C103.691 107.005 103.265 106.85 103.187 106.812C103.11 106.773 103.187 106.812 103.187 106.812C103.194 106.758 103.187 106.704 103.167 106.654C103.147 106.604 103.113 106.561 103.071 106.528C103.024 106.502 102.97 106.488 102.916 106.488C102.862 106.488 102.809 106.502 102.761 106.528C102.402 106.669 102.036 106.789 101.663 106.889C101.871 106.783 102.032 106.604 102.115 106.385C102.133 106.308 102.125 106.227 102.093 106.155C102.06 106.082 102.004 106.023 101.934 105.985C101.56 105.791 100.94 106.476 100.875 106.553C100.762 106.604 100.646 106.647 100.527 106.683C100.195 106.816 99.8363 106.869 99.4802 106.838C99.5784 106.594 99.7335 106.377 99.9324 106.205C99.9817 106.145 100.009 106.069 100.009 105.991C100.009 105.914 99.9817 105.838 99.9324 105.778C99.8836 105.715 99.8129 105.672 99.7342 105.658C99.6554 105.643 99.5741 105.659 99.5061 105.701C98.7201 106.235 97.8453 106.624 96.9228 106.851C97.4227 106.171 98.0342 105.582 98.7311 105.107C98.7726 105.085 98.809 105.056 98.8378 105.019C98.8666 104.982 98.8872 104.94 98.898 104.895C98.9089 104.849 98.9098 104.802 98.9007 104.756C98.8916 104.711 98.8728 104.667 98.8454 104.63C98.8181 104.592 98.7829 104.561 98.7422 104.538C98.7016 104.515 98.6566 104.501 98.6101 104.497C98.5637 104.494 98.5169 104.5 98.4732 104.516C98.4294 104.532 98.3896 104.557 98.3565 104.59C97.8786 104.939 96.3157 106.153 96.264 106.876C96.2541 106.953 96.2617 107.032 96.2863 107.106C96.3109 107.18 96.3519 107.247 96.4061 107.303C96.7032 107.625 97.3102 107.535 98.434 106.993L98.744 106.838C98.7445 106.929 98.767 107.019 98.8097 107.1C98.8524 107.181 98.9141 107.251 98.9895 107.303C99.3382 107.561 100.061 107.419 100.539 107.303C100.733 107.587 101.147 107.651 102.542 107.16C102.588 107.233 102.65 107.295 102.722 107.341C102.953 107.449 103.204 107.504 103.459 107.504C103.713 107.504 103.964 107.449 104.195 107.341C102.632 108.943 100.862 110.855 99.3382 112.508C99.3363 112.226 99.3103 111.946 99.2607 111.668C99.177 110.956 98.8428 110.297 98.3178 109.808L100.901 109.615C100.948 109.624 100.996 109.623 101.043 109.612C101.089 109.6 101.133 109.579 101.17 109.548C101.207 109.518 101.237 109.48 101.257 109.437C101.278 109.393 101.288 109.346 101.288 109.298C101.288 109.25 101.278 109.203 101.257 109.16C101.237 109.117 101.207 109.078 101.17 109.048C101.133 109.018 101.089 108.996 101.043 108.985C100.996 108.973 100.948 108.972 100.901 108.982L97.1552 109.253C97.0804 109.258 97.0098 109.29 96.9556 109.342C96.9014 109.394 96.867 109.463 96.8582 109.537C96.8491 109.613 96.8675 109.69 96.9101 109.754C96.9528 109.818 97.0168 109.865 97.0907 109.886C97.5114 109.997 97.8865 110.237 98.1625 110.574C98.4385 110.91 98.6013 111.325 98.6278 111.759C98.7109 112.285 98.7109 112.821 98.6278 113.348C98.6164 113.416 98.6264 113.486 98.6565 113.549C98.6865 113.611 98.7351 113.663 98.7957 113.696H98.899C98.9513 113.705 99.0048 113.7 99.0546 113.682C99.1043 113.664 99.1486 113.633 99.1832 113.593C100.914 111.707 103.136 109.305 105.009 107.406L105.939 106.579ZM108.599 104.215C108.382 104.429 108.139 104.615 107.876 104.771C108.105 104.57 108.346 104.384 108.599 104.215Z"
102
+ fill="#9DA3AC"
103
+ stroke="#9DA3AC"
104
+ stroke-linejoin="round"
105
+ stroke-width="0.322917"
106
+ />
107
+ <path
108
+ d="M106.804 111.629C105.706 113.269 104.173 114.569 102.377 115.385C100.581 116.201 98.5923 116.5 96.6356 116.247C94.6789 115.995 92.8315 115.202 91.3009 113.957C89.7703 112.712 88.6172 111.065 87.9714 109.201"
109
+ stroke="#9DA3AC"
110
+ stroke-width="1.29167"
111
+ stroke-miterlimit="10"
112
+ stroke-linecap="round"
113
+ />
114
+ </g>
115
+ <defs>
116
+ <clipPath id="clip0_2708_133533">
117
+ <rect
118
+ width="99.2129"
119
+ height="121.339"
120
+ class="fill-white dark:fill-gray-900"
121
+ transform="translate(27.3276 16.2915)"
122
+ />
123
+ </clipPath>
124
+ </defs>
125
+ </svg>
126
+ </template>
@@ -0,0 +1,64 @@
1
+ <template>
2
+ <svg
3
+ width="120"
4
+ height="120"
5
+ viewBox="0 0 120 120"
6
+ fill="none"
7
+ xmlns="https://www.w3.org/2000/svg"
8
+ >
9
+ <circle cx="60" cy="60" r="50" fill="#BDC7CE" fill-opacity="0.15" />
10
+ <g clip-path="url(#clip0_409_78973)">
11
+ <path
12
+ opacity="0.2"
13
+ d="M97.3509 25V60.7028V110.014H28V45.4531L48.1354 25H97.3509Z"
14
+ fill="#BDC7CE"
15
+ />
16
+ <path
17
+ d="M91.8361 18.5801V54.2829V105.596H22.4951V39.0331L42.6305 18.5801H91.8361Z"
18
+ class="fill-white dark:fill-gray-900"
19
+ stroke="#9DA3AC"
20
+ stroke-miterlimit="10"
21
+ />
22
+ <path
23
+ opacity="0.2"
24
+ d="M42.6305 18.5801V42.7055H22.4951V39.0331L42.6305 18.5801Z"
25
+ fill="#BDC7CE"
26
+ />
27
+ <path
28
+ d="M37.3955 85.1924H57.1648"
29
+ stroke="#9DA3AC"
30
+ stroke-linecap="round"
31
+ stroke-linejoin="round"
32
+ />
33
+ <path
34
+ d="M37.3955 69.6123H79.1208"
35
+ stroke="#9DA3AC"
36
+ stroke-linecap="round"
37
+ stroke-linejoin="round"
38
+ />
39
+ <path
40
+ d="M37.3955 54.0327H79.1208"
41
+ stroke="#9DA3AC"
42
+ stroke-linecap="round"
43
+ stroke-linejoin="round"
44
+ />
45
+ <path
46
+ d="M22.4951 39.0331H42.6305V18.5801L22.4951 39.0331Z"
47
+ class="fill-white dark:fill-gray-900"
48
+ stroke="#9DA3AC"
49
+ stroke-linecap="round"
50
+ stroke-linejoin="round"
51
+ />
52
+ </g>
53
+ <defs>
54
+ <clipPath id="clip0_409_78973">
55
+ <rect
56
+ width="76"
57
+ height="94"
58
+ class="fill-white dark:fill-gray-900"
59
+ transform="translate(22 18.0796)"
60
+ />
61
+ </clipPath>
62
+ </defs>
63
+ </svg>
64
+ </template>
@@ -0,0 +1,74 @@
1
+ <template>
2
+ <svg
3
+ fill="none"
4
+ height="120"
5
+ viewBox="0 0 121 120"
6
+ width="121"
7
+ xmlns="https://www.w3.org/2000/svg"
8
+ >
9
+ <circle
10
+ cx="50"
11
+ cy="50"
12
+ fill="#BDC7CE"
13
+ fill-opacity="0.15"
14
+ r="50"
15
+ transform="matrix(-1 0 0 1 110.5 10)"
16
+ />
17
+ <g clip-path="url(#clip0_9349_30210)">
18
+ <path
19
+ d="M57.2411 109.514L93.0039 101.607V20.426L57.2411 10.4863V109.514Z"
20
+ class="fill-white dark:fill-gray-900"
21
+ stroke="#9DA3AC"
22
+ stroke-linecap="round"
23
+ stroke-linejoin="round"
24
+ />
25
+ <path
26
+ d="M86.767 96.0144V18.6948L93.0039 20.426V101.607L57.2411 109.514V102.54L86.767 96.0144Z"
27
+ fill="#BDC7CE"
28
+ opacity="0.2"
29
+ />
30
+ <path
31
+ d="M64.6992 60.5737H74.6306"
32
+ stroke="#9DA3AC"
33
+ stroke-linecap="round"
34
+ stroke-linejoin="round"
35
+ />
36
+ <path d="M50.9941 19.3174H35.6204V102.044H50.9941" class="fill-white dark:fill-gray-900" />
37
+ <path
38
+ d="M50.9941 19.3174H35.6204V102.044H50.9941"
39
+ stroke="#9DA3AC"
40
+ stroke-linecap="round"
41
+ stroke-linejoin="round"
42
+ />
43
+ <ellipse
44
+ cx="1.98627"
45
+ cy="1.94514"
46
+ fill="#9DA3AC"
47
+ rx="1.98627"
48
+ ry="1.94514"
49
+ transform="matrix(-1 0 0 1 66.6855 58.6289)"
50
+ />
51
+ </g>
52
+ <path
53
+ d="M35.6206 69.8329C41.2098 69.8329 45.7407 65.3958 45.7407 59.9224C45.7407 54.4489 41.2098 50.0118 35.6206 50.0118C30.0314 50.0118 25.5005 54.4489 25.5005 59.9224C25.5005 65.3958 30.0314 69.8329 35.6206 69.8329Z"
54
+ fill="#BDC7CE"
55
+ />
56
+ <path
57
+ d="M30.3873 59.7086H40.8549"
58
+ class="stroke-white dark:stroke-[#26282B]"
59
+ stroke-linecap="round"
60
+ stroke-linejoin="round"
61
+ />
62
+ <path
63
+ d="M36.4947 55.3708L40.8546 59.7085L36.4947 64.4741"
64
+ class="stroke-white dark:stroke-[#26282B]"
65
+ stroke-linecap="round"
66
+ stroke-linejoin="round"
67
+ />
68
+ <defs>
69
+ <clipPath id="clip0_9349_30210">
70
+ <rect width="68" height="100" fill="white" transform="matrix(-1 0 0 1 93.5 10)" />
71
+ </clipPath>
72
+ </defs>
73
+ </svg>
74
+ </template>
@@ -0,0 +1,77 @@
1
+ <template>
2
+ <svg
3
+ fill="none"
4
+ height="120"
5
+ viewBox="0 0 120 120"
6
+ width="120"
7
+ xmlns="https://www.w3.org/2000/svg"
8
+ >
9
+ <circle cx="60" cy="60" fill="#BDC7CE" fill-opacity="0.15" r="50" />
10
+ <g clip-path="url(#clip0_3500_21978)">
11
+ <path
12
+ d="M59.59 101.1C83.8905 101.1 103.59 98.7629 103.59 95.88C103.59 92.9971 83.8905 90.66 59.59 90.66C35.2895 90.66 15.59 92.9971 15.59 95.88C15.59 98.7629 35.2895 101.1 59.59 101.1Z"
13
+ fill="#BDC7CE"
14
+ opacity="0.2"
15
+ />
16
+ <path
17
+ d="M89.73 52.01H28.95L22.37 67.3H42.62V71.2C42.6187 71.7392 42.7238 72.2735 42.9292 72.7721C43.1347 73.2707 43.4365 73.7238 43.8173 74.1056C44.1982 74.4874 44.6506 74.7903 45.1487 74.997C45.6468 75.2036 46.1807 75.31 46.72 75.31H72.6C73.1388 75.31 73.6723 75.2036 74.1698 74.9968C74.6673 74.79 75.1191 74.4869 75.4992 74.105C75.8792 73.7231 76.1801 73.2699 76.3844 72.7713C76.5888 72.2728 76.6927 71.7388 76.69 71.2V67.3H96.35L89.73 52.01Z"
18
+ class="fill-white dark:fill-gray-900"
19
+ />
20
+ <path
21
+ d="M99.44 67.3V67.09L89.77 42.09H28.95L19.26 67.09V67.3H10.5L23.28 38.17C23.4174 37.6877 23.7086 37.2635 24.1094 36.962C24.5102 36.6605 24.9985 36.4983 25.5 36.5H93.66C94.1611 36.4987 94.6492 36.6598 95.0512 36.959C95.4531 37.2583 95.7474 37.6796 95.89 38.16L108.82 67.3H99.44Z"
22
+ class="fill-white dark:fill-gray-900"
23
+ stroke="#9DA3AC"
24
+ stroke-linecap="round"
25
+ stroke-linejoin="round"
26
+ />
27
+ <path
28
+ d="M89.77 42.08H28.95V52.01H89.77V42.08Z"
29
+ class="fill-white dark:fill-gray-900"
30
+ stroke="#9DA3AC"
31
+ stroke-linecap="round"
32
+ stroke-linejoin="round"
33
+ />
34
+ <path
35
+ d="M28.95 42.08V52.02L23.83 67.3H19.26V67.09L28.95 42.08Z"
36
+ fill="#BDC7CE"
37
+ stroke="#9DA3AC"
38
+ stroke-linecap="round"
39
+ stroke-linejoin="round"
40
+ />
41
+ <path
42
+ d="M89.7695 42.08V52.02L94.8895 67.3H99.4595V67.09L89.7695 42.08Z"
43
+ fill="#BDC7CE"
44
+ stroke="#9DA3AC"
45
+ stroke-linecap="round"
46
+ stroke-linejoin="round"
47
+ />
48
+ <path d="M19.26 85.28V67.3" stroke="black" stroke-linecap="round" stroke-linejoin="round" />
49
+ <path
50
+ d="M99.4396 67.3V81.68L98.6796 78.16L96.3496 67.3H99.4396Z"
51
+ class="fill-white dark:fill-gray-900"
52
+ stroke="black"
53
+ stroke-linecap="round"
54
+ stroke-linejoin="round"
55
+ />
56
+ <path
57
+ d="M89.7296 52.01H29.7296L24.5996 67.3H43.3896V71.2C43.3896 72.29 43.8226 73.3355 44.5934 74.1062C45.3642 74.877 46.4096 75.31 47.4996 75.31H71.9996C73.0897 75.31 74.135 74.877 74.9058 74.1062C75.6766 73.3355 76.1096 72.29 76.1096 71.2V67.3H94.8996L89.7296 52.01Z"
58
+ fill="#BDC7CE"
59
+ opacity="0.2"
60
+ />
61
+ <path
62
+ d="M108.82 67.3L99.44 77.34L98.68 78.16L97.3 79.63H37.5L20.31 76.8L19.26 76.63L10.5 75.19V67.3"
63
+ stroke="black"
64
+ stroke-linecap="round"
65
+ stroke-linejoin="round"
66
+ />
67
+ <path
68
+ d="M108.82 67.3V81.16C108.82 82.4861 108.294 83.7579 107.356 84.6956C106.418 85.6332 105.146 86.16 103.82 86.16H15.5303C14.2042 86.16 12.9324 85.6332 11.9948 84.6956C11.0571 83.7579 10.5303 82.4861 10.5303 81.16V67.3H42.6503V71.2C42.649 71.7393 42.7541 72.2735 42.9595 72.7721C43.165 73.2707 43.4667 73.7239 43.8476 74.1057C44.2284 74.4874 44.6809 74.7903 45.179 74.997C45.677 75.2037 46.211 75.3101 46.7503 75.3101H72.6303C73.1691 75.3101 73.7025 75.2036 74.2001 74.9968C74.6976 74.79 75.1494 74.487 75.5294 74.105C75.9095 73.7231 76.2104 73.2699 76.4147 72.7714C76.6191 72.2728 76.7229 71.7388 76.7203 71.2V67.3H108.82Z"
69
+ class="fill-white dark:fill-gray-900"
70
+ stroke="#9DA3AC"
71
+ stroke-linecap="round"
72
+ stroke-linejoin="round"
73
+ />
74
+ </g>
75
+ </svg>
76
+ </template>
77
+ <script setup lang="ts"></script>
@@ -0,0 +1,161 @@
1
+ <script lang="ts" setup></script>
2
+
3
+ <template>
4
+ <svg
5
+ fill="none"
6
+ height="100"
7
+ viewBox="0 0 100 100"
8
+ width="100"
9
+ xmlns="https://www.w3.org/2000/svg"
10
+ >
11
+ <circle cx="50" cy="50" fill="#BDC7CE" fill-opacity="0.15" r="50" />
12
+ <g clip-path="url(#clip0_7183_8385)">
13
+ <path
14
+ d="M68.5287 75.8083C68.5287 75.8083 94.9901 91.6834 94.4792 89.769L93.8039 74.0023C93.8039 74.0023 77.6625 54.6146 75.3357 35.4074C74.4232 28.1833 77.6168 18.0153 77.6168 18.0153C75.7214 16.9324 74.0446 15.5118 72.6713 13.8253L72.8081 13.7079C70.6 11.1976 68.5926 8.47043 65.8643 7.05269C62.8714 5.49951 59.8877 4.89449 44.1933 4.54231H44.0017L41.0544 4.93063L40.9905 4.88546L35.8078 1.9597L4.78399 0.424559C4.18177 0.361348 4.31864 0.785762 5.4501 1.86035C20.2411 15.7939 37.3863 58.6871 37.3863 58.6871L42.6147 61.5768L42.1037 62.2812C41.1924 63.5102 40.735 65.0116 40.8081 66.5344C41.6202 82.0482 39.7587 83.484 41.4194 86.4007C43.9469 90.8526 50.1243 93.1824 52.8161 97.9322L72.3063 92.3968H72.3519C73.0307 91.2367 73.4653 89.9528 73.6294 88.6221C74.0856 85.4706 73.456 80.6395 68.0177 75.2755L68.5287 75.8083Z"
15
+ class="fill-white dark:fill-gray-900"
16
+ />
17
+ <path
18
+ d="M54.7692 56.7365V56.583L43.3634 57.1248L43.5185 60.5382C43.0531 61.2245 42.606 61.8205 42.2502 62.3442C41.3388 63.5733 40.8814 65.0746 40.9545 66.5974C41.7574 82.1112 39.9051 83.547 41.5658 86.4638C44.0933 90.9156 50.2616 93.2454 52.9534 97.9953L72.3158 92.4237C72.3158 92.4237 77.4713 84.6578 67.9816 75.2664C59.9337 67.3289 56.9043 58.8315 56.6945 56.1134C55.995 56.0631 55.3035 56.2869 54.7692 56.7365Z"
19
+ class="fill-white dark:fill-gray-900"
20
+ />
21
+ <path
22
+ d="M35.5353 23.0902C38.2727 23.2257 46.9502 25.9709 55.208 33.7187C64.9258 42.8302 72.6178 37.5114 72.6178 37.5114L73.2109 34.983C73.2109 34.983 65.528 40.3017 55.8011 31.1903C47.9357 23.8126 39.6961 20.9681 36.5664 20.6069C36.2055 20.9084 35.9234 21.2915 35.7439 21.7238C35.5644 22.1561 35.4929 22.6248 35.5353 23.0902Z"
23
+ fill="#BDC7CE"
24
+ opacity="0.2"
25
+ />
26
+ <path
27
+ d="M45.6721 58.5244C45.1976 59.2107 44.7596 59.8157 44.3946 60.3304C43.4824 61.5587 43.0278 63.0615 43.1081 64.5837C43.911 80.0975 42.0496 81.5243 43.7103 84.45C46.2378 88.9019 53.7474 91.8728 57.6527 100.009L52.8623 97.9772C50.1249 93.2273 43.9932 90.8976 41.4656 86.4457C39.8141 83.5199 41.6664 82.0932 40.8634 66.5794C40.7817 65.057 41.2364 63.5537 42.15 62.3261C42.5241 61.8114 42.9529 61.2154 43.4274 60.5201L45.6721 58.5244Z"
28
+ fill="#BDC7CE"
29
+ opacity="0.2"
30
+ />
31
+ <path
32
+ d="M56.7762 56.1404C56.9861 58.8495 60.0154 67.3559 68.0634 75.3025C77.553 84.6487 72.3976 92.4146 72.3976 92.4146L69.8609 93.0738C69.8609 93.0738 75.0163 85.3169 65.5267 75.9165C57.862 68.3402 54.7505 60.2763 54.2852 57.188C54.5866 56.8303 54.9697 56.5487 55.4029 56.3666C55.836 56.1844 56.3068 56.1069 56.7762 56.1404Z"
33
+ fill="#BDC7CE"
34
+ opacity="0.2"
35
+ />
36
+ <path
37
+ d="M72.5884 37.3304C72.5884 37.3304 64.8963 42.6492 55.1786 33.5377C46.9208 25.7989 38.2524 23.0447 35.5058 22.9183C35.5058 22.9183 35.2139 21.5999 36.7833 20.2092C41.7288 15.7754 52.4959 23.8213 55.7899 20.9046"
38
+ stroke="#9DA3AC"
39
+ stroke-linecap="round"
40
+ stroke-linejoin="round"
41
+ stroke-width="0.9"
42
+ />
43
+ <path
44
+ d="M65.9107 7.06165C68.6481 8.47939 70.6464 11.2065 72.8637 13.7169L72.7086 13.8433C71.4201 12.2754 69.8559 10.9508 68.0915 9.93324C65.0165 8.3349 61.9689 7.71183 45.8913 7.35063L29.5217 9.53591C28.8571 8.69821 28.3924 7.72277 28.1621 6.6824L44.2215 4.55127C59.9341 4.89442 62.9178 5.49944 65.9107 7.06165Z"
45
+ fill="#BDC7CE"
46
+ opacity="0.2"
47
+ />
48
+ <path
49
+ d="M59.1396 12.2451C57.8221 15.9673 55.2427 19.1231 51.8398 21.176"
50
+ stroke="#9DA3AC"
51
+ stroke-linecap="round"
52
+ stroke-linejoin="round"
53
+ stroke-width="0.9"
54
+ />
55
+ <path
56
+ d="M72.3987 92.4148C72.3987 92.4148 77.5542 84.6579 68.0645 75.3026C60.0166 67.3561 56.9872 58.8587 56.7774 56.1406C56.7774 56.1406 55.436 55.8878 54.04 57.4861C49.7058 62.5069 58.1734 72.9277 55.2809 76.2688"
57
+ stroke="#9DA3AC"
58
+ stroke-linecap="round"
59
+ stroke-linejoin="round"
60
+ stroke-width="0.9"
61
+ />
62
+ <path
63
+ d="M53.0354 97.9863C50.298 93.2454 44.1754 90.9156 41.6478 86.4547C39.9872 83.538 41.8395 82.1022 41.0365 66.5884C40.9635 65.0628 41.4208 63.5586 42.3322 62.3262"
64
+ stroke="#9DA3AC"
65
+ stroke-linecap="round"
66
+ stroke-linejoin="round"
67
+ stroke-width="0.9"
68
+ />
69
+ <path
70
+ d="M44.8418 79.9261C49.1214 77.8967 52.7108 74.6772 55.1709 70.6611"
71
+ stroke="#9DA3AC"
72
+ stroke-linecap="round"
73
+ stroke-linejoin="round"
74
+ stroke-width="0.9"
75
+ />
76
+ <path
77
+ d="M63.839 70.5346C63.839 70.5346 89.0777 86.0665 84.2417 81.2986C69.3685 66.6517 63.4375 38.604 63.4375 38.604"
78
+ stroke="#9DA3AC"
79
+ stroke-linecap="round"
80
+ stroke-linejoin="round"
81
+ stroke-width="0.9"
82
+ />
83
+ <path
84
+ d="M68.4743 56.4206L49.3856 47.1556L39.3485 23.8036C38.2083 23.1782 36.9197 22.8664 35.6165 22.9006C35.5237 22.3038 35.6303 21.6933 35.9202 21.1619C36.2101 20.6306 36.6673 20.2074 37.2224 19.9568L35.7534 19.424C35.7534 19.424 15.597 6.5831 13.1973 7.6306C26.647 26.4946 39.6587 56.9082 39.6587 56.9082L53.2088 64.5748C53.2088 64.5748 50.9185 57.0256 56.7674 56.1316C57.8112 60.3957 59.6091 64.4434 62.0779 68.0875L64.1857 70.7966L84.853 81.9037C84.853 81.9037 78.7304 75.9799 73.0914 65.1979L68.4743 56.4206Z"
85
+ fill="#BDC7CE"
86
+ opacity="0.2"
87
+ />
88
+ <path
89
+ d="M39.396 18.9183C39.396 18.9183 -2.57733 -5.67985 5.4706 1.86936C20.2616 15.8029 37.4068 58.6961 37.4068 58.6961L53.9133 67.8347"
90
+ stroke="#9DA3AC"
91
+ stroke-linecap="round"
92
+ stroke-linejoin="round"
93
+ stroke-width="0.9"
94
+ />
95
+ <path
96
+ d="M68.5735 75.8084C68.5735 75.8084 99.0589 94.0673 93.9673 89.0556C68.9476 64.4123 66.2832 38.8569 66.2832 38.8569"
97
+ stroke="#9DA3AC"
98
+ stroke-linecap="round"
99
+ stroke-linejoin="round"
100
+ stroke-width="0.9"
101
+ />
102
+ <path
103
+ d="M37.0588 19.9656C37.0588 19.9656 7.85991 2.09493 13.4442 8.47023C25.0507 21.7355 39.3125 56.6281 39.3125 56.6281L52.8626 64.3037"
104
+ stroke="#9DA3AC"
105
+ stroke-linecap="round"
106
+ stroke-linejoin="round"
107
+ stroke-width="0.9"
108
+ />
109
+ <path
110
+ d="M4.89453 0.469727L35.8362 1.99582L41.019 4.9216"
111
+ stroke="#9DA3AC"
112
+ stroke-linecap="round"
113
+ stroke-linejoin="round"
114
+ stroke-width="0.9"
115
+ />
116
+ <path
117
+ d="M94.4989 89.6878L93.8511 74.0024C93.8511 74.0024 77.0617 54.6869 75.3828 35.4165"
118
+ stroke="#9DA3AC"
119
+ stroke-linecap="round"
120
+ stroke-linejoin="round"
121
+ stroke-width="0.9"
122
+ />
123
+ <path
124
+ d="M38.5742 18.4483C38.5742 18.4483 42.4522 13.2289 45.7918 11.3867"
125
+ stroke="#9DA3AC"
126
+ stroke-linecap="round"
127
+ stroke-linejoin="round"
128
+ stroke-width="0.9"
129
+ />
130
+ <path
131
+ d="M45.5898 19.6042L48.6648 17.4189L53.8568 19.7307"
132
+ stroke="#9DA3AC"
133
+ stroke-linecap="round"
134
+ stroke-linejoin="round"
135
+ stroke-width="0.9"
136
+ />
137
+ <path
138
+ d="M77.6629 18.0155C72.7903 15.487 70.2628 9.44586 65.6913 7.07093C62.6893 5.51774 59.7056 4.91272 44.0203 4.56055L27.9336 6.70069C28.2697 8.21796 29.0982 9.58472 30.2926 10.5924C31.4871 11.6 32.9819 12.1932 34.549 12.2813L45.6536 11.3783L53.3275 13.7081"
139
+ stroke="#9DA3AC"
140
+ stroke-linecap="round"
141
+ stroke-linejoin="round"
142
+ stroke-width="0.9"
143
+ />
144
+ <path
145
+ d="M81.548 25.6764C86.6831 25.6764 90.846 21.5567 90.846 16.4747C90.846 11.3927 86.6831 7.27295 81.548 7.27295C76.4129 7.27295 72.25 11.3927 72.25 16.4747C72.25 21.5567 76.4129 25.6764 81.548 25.6764Z"
146
+ fill="#BDC7CE"
147
+ />
148
+ <path
149
+ d="M85.1513 16.4653C85.1561 17.2283 85.0889 17.9902 84.9506 18.7409C84.8393 19.3408 84.6264 19.9178 84.321 20.4475C84.0495 20.893 83.6618 21.258 83.1987 21.5041C82.6819 21.7633 82.1079 21.8905 81.5289 21.8743C80.7986 21.9019 80.0817 21.6751 79.5032 21.2332C78.9287 20.7445 78.5154 20.0965 78.317 19.3729C78.0424 18.4282 77.9132 17.448 77.9337 16.4653C77.9151 15.4844 78.0349 14.5057 78.2896 13.5575C78.4675 12.8362 78.8658 12.1866 79.4302 11.6973C80.0329 11.2483 80.7752 11.0215 81.5289 11.0562C82.2625 11.0241 82.9838 11.2513 83.5636 11.6973C84.1333 12.1695 84.5492 12.7979 84.759 13.5034C85.0414 14.4651 85.1737 15.4639 85.1513 16.4653ZM79.6766 16.4653C79.6634 17.2095 79.7215 17.9533 79.8499 18.6867C79.9203 19.1775 80.1255 19.6397 80.443 20.0231C80.7391 20.3067 81.135 20.4653 81.5471 20.4653C81.9592 20.4653 82.3551 20.3067 82.6512 20.0231C82.9705 19.6433 83.1787 19.1842 83.2534 18.6957C83.4967 17.2245 83.4967 15.724 83.2534 14.2529C83.1793 13.7604 82.9747 13.2961 82.6603 12.9074C82.5181 12.7584 82.3449 12.6417 82.1528 12.5653C81.9606 12.4889 81.7539 12.4546 81.5471 12.4649C81.3416 12.4547 81.1364 12.4891 80.9457 12.5655C80.755 12.6419 80.5835 12.7586 80.443 12.9074C80.1287 13.2961 79.924 13.7604 79.8499 14.2529C79.7155 14.9827 79.6514 15.7235 79.6583 16.4653H79.6766Z"
150
+ class="fill-white dark:fill-gray-900"
151
+ />
152
+ </g>
153
+ <defs>
154
+ <clipPath id="clip0_7183_8385">
155
+ <rect width="91" height="100" fill="white" transform="translate(4)" />
156
+ </clipPath>
157
+ </defs>
158
+ </svg>
159
+ </template>
160
+
161
+ <style scoped></style>
@@ -0,0 +1,119 @@
1
+ <template>
2
+ <svg
3
+ width="155"
4
+ height="155"
5
+ viewBox="0 0 155 155"
6
+ fill="none"
7
+ xmlns="https://www.w3.org/2000/svg"
8
+ >
9
+ <circle cx="77.5001" cy="77.4998" r="64.5833" fill="#BDC7CE" fill-opacity="0.15" />
10
+ <g clip-path="url(#clip0_2864_87974)">
11
+ <path
12
+ d="M130.11 85.3113C130.867 81.8669 131.245 78.4224 131.245 74.855C131.245 57.2637 122.288 41.6407 108.662 32.1684C108.284 32.0454 108.031 31.7994 107.779 31.6764C107.653 31.5534 107.527 31.4304 107.4 31.4304C106.77 31.0613 106.139 30.5692 105.382 30.2002C104.625 29.8311 103.868 29.3391 103.237 28.97C103.237 28.97 103.111 28.97 103.111 28.847C102.48 28.478 101.723 28.1089 101.092 27.8629C100.966 27.7399 100.84 27.7399 100.714 27.6169C100.083 27.3708 99.4521 27.0018 98.8213 26.7558C98.6951 26.7558 98.569 26.6327 98.4428 26.6327C96.9289 26.0177 95.4149 25.4026 93.7748 24.9105C93.6486 24.9105 93.3963 24.7875 93.2701 24.7875C92.6393 24.5415 92.0085 24.4184 91.3777 24.2954C91.1254 24.2954 90.9992 24.1724 90.7469 24.1724C90.1161 24.0494 89.3591 23.8034 88.7283 23.6804C88.6021 23.6804 88.476 23.6804 88.3498 23.5573C87.5928 23.4343 86.7097 23.3113 85.9527 23.1883C85.8265 23.1883 85.5742 23.1883 85.4481 23.0653C84.8172 22.9423 84.1864 22.9423 83.4294 22.8192C83.1771 22.8192 82.9248 22.8192 82.6725 22.6962C82.0417 22.6962 81.4108 22.5732 80.9062 22.5732C80.6539 22.5732 80.4015 22.5732 80.1492 22.5732C79.2661 22.5732 78.5091 22.4502 77.626 22.4502C47.8515 22.5732 23.8806 45.9462 23.8806 74.855C23.8806 75.8391 23.8806 76.8232 24.0068 77.8073C24.0068 78.1764 24.0068 78.4224 24.1329 78.7915C24.1329 79.5296 24.2591 80.1446 24.3853 80.8827C24.3853 81.2518 24.5114 81.6208 24.5114 81.9899C24.6376 82.605 24.7638 83.3431 24.7638 83.9581C24.7638 84.2042 24.8899 84.4502 24.8899 84.8192C24.8899 85.0653 24.8899 85.3113 25.0161 85.5573C27.287 112.744 48.987 133.164 77.1213 133.164C104.877 133.164 127.46 112.621 130.236 86.0494C130.11 86.4184 130.11 86.7875 129.984 87.2796C129.984 86.5415 129.984 85.9264 130.11 85.3113Z"
13
+ class="fill-white dark:fill-gray-900"
14
+ />
15
+ <path
16
+ opacity="0.2"
17
+ d="M77.4999 33.1528C102.733 33.1528 123.297 52.5893 124.432 76.9464C124.432 76.3314 124.432 75.5933 124.432 74.9782C124.432 49.6369 103.363 29.0933 77.4999 29.0933C51.6366 29.0933 30.5674 49.6369 30.5674 74.8552C30.5674 75.4702 30.5674 76.2083 30.5674 76.8234C31.7028 52.5893 52.2674 33.1528 77.4999 33.1528Z"
18
+ fill="#BDC7CE"
19
+ />
20
+ <path
21
+ d="M77.4998 127.137C107.113 127.137 131.119 103.729 131.119 74.855C131.119 45.9806 107.113 22.5732 77.4998 22.5732C47.8867 22.5732 23.8806 45.9806 23.8806 74.855C23.8806 103.729 47.8867 127.137 77.4998 127.137Z"
22
+ stroke="#9DA3AC"
23
+ stroke-width="1.29167"
24
+ stroke-linecap="round"
25
+ stroke-linejoin="round"
26
+ />
27
+ <path
28
+ opacity="0.2"
29
+ d="M108.536 32.1685L104.625 37.5812C97.055 32.1685 87.5928 29.0931 77.4998 29.0931C51.6364 29.0931 30.5672 49.6367 30.5672 74.855C30.5672 90.478 38.5155 104.256 50.7533 112.498L46.9684 117.788C32.9643 108.438 23.8806 92.6923 23.8806 74.855C23.8806 45.9463 47.8515 22.5732 77.4998 22.5732C89.1068 22.5732 99.7045 26.1407 108.536 32.1685Z"
30
+ fill="#BDC7CE"
31
+ />
32
+ <path
33
+ opacity="0.2"
34
+ d="M77.4998 127.752C103.489 127.752 125.063 109.792 130.11 85.9266C127.334 112.498 104.751 133.042 76.9951 133.042C48.8608 133.042 27.1608 112.498 24.8899 85.4346C29.6841 109.546 51.3841 127.752 77.4998 127.752Z"
35
+ fill="#BDC7CE"
36
+ />
37
+ <path
38
+ d="M77.4999 120.617C103.42 120.617 124.432 100.129 124.432 74.8552C124.432 49.5816 103.42 29.0933 77.4999 29.0933C51.5798 29.0933 30.5674 49.5816 30.5674 74.8552C30.5674 100.129 51.5798 120.617 77.4999 120.617Z"
39
+ stroke="#9DA3AC"
40
+ stroke-width="1.29167"
41
+ stroke-linecap="round"
42
+ stroke-linejoin="round"
43
+ />
44
+ <path
45
+ d="M130.11 84.2041C127.839 111.391 105.003 132.426 76.869 132.426C48.8608 132.426 27.0347 111.883 24.8899 84.8192"
46
+ stroke="#9DA3AC"
47
+ stroke-width="1.29167"
48
+ stroke-linecap="round"
49
+ stroke-linejoin="round"
50
+ />
51
+ <path
52
+ d="M41.6702 113.852V118.772"
53
+ stroke="#9DA3AC"
54
+ stroke-width="1.29167"
55
+ stroke-linecap="round"
56
+ stroke-linejoin="round"
57
+ />
58
+ <path
59
+ d="M55.4219 122.708V127.875"
60
+ stroke="#9DA3AC"
61
+ stroke-width="1.29167"
62
+ stroke-linecap="round"
63
+ stroke-linejoin="round"
64
+ />
65
+ <path
66
+ d="M71.0657 126.768V131.812"
67
+ stroke="#9DA3AC"
68
+ stroke-width="1.29167"
69
+ stroke-linecap="round"
70
+ stroke-linejoin="round"
71
+ />
72
+ <path
73
+ d="M89.738 125.907V130.704"
74
+ stroke="#9DA3AC"
75
+ stroke-width="1.29167"
76
+ stroke-linecap="round"
77
+ stroke-linejoin="round"
78
+ />
79
+ <path
80
+ d="M105.003 119.756V124.676"
81
+ stroke="#9DA3AC"
82
+ stroke-width="1.29167"
83
+ stroke-linecap="round"
84
+ stroke-linejoin="round"
85
+ />
86
+ <path
87
+ d="M116.232 111.021V115.327"
88
+ stroke="#9DA3AC"
89
+ stroke-width="1.29167"
90
+ stroke-linecap="round"
91
+ stroke-linejoin="round"
92
+ />
93
+ <path
94
+ d="M47.7917 96.8752L63.4663 77.4045L82.7132 77.4048L107.208 49.0835"
95
+ stroke="#9DA3AC"
96
+ stroke-width="1.29167"
97
+ stroke-linecap="round"
98
+ stroke-linejoin="round"
99
+ />
100
+ <path
101
+ d="M102.042 49.0835H107.208V54.2502"
102
+ stroke="#9DA3AC"
103
+ stroke-width="1.29167"
104
+ stroke-linecap="round"
105
+ stroke-linejoin="round"
106
+ />
107
+ </g>
108
+ <defs>
109
+ <clipPath id="clip0_2864_87974">
110
+ <rect
111
+ width="108.5"
112
+ height="111.083"
113
+ class="fill-white dark:fill-gray-900"
114
+ transform="translate(23.25 21.9585)"
115
+ />
116
+ </clipPath>
117
+ </defs>
118
+ </svg>
119
+ </template>