adata-ui 0.3.99 → 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,237 @@
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_2938_133808)">
11
+ <path
12
+ d="M131.221 84.6428L131.105 84.3844L129.523 81.4136C127.315 77.8573 124.242 74.924 120.592 72.8901C116.942 70.8562 112.837 69.7888 108.662 69.7886H94.2105V69.9306V69.7886L94.0432 17.8378L87.197 17.7603L63.454 17.8378C61.9658 17.8411 60.4928 18.1389 59.1193 18.7141C57.7458 19.2893 56.4987 20.1305 55.4493 21.1898C54.4 22.249 53.5689 23.5055 53.0037 24.8874C52.4384 26.2693 52.1501 27.7494 52.1552 29.2431V29.3723C52.0651 30.4702 52.0265 31.6198 52.0394 32.7952V35.9986H52.1681L52.2839 68.2902V69.9306H66.5168L65.3071 78.5332L63.2224 89.2411L62.8234 89.4865C62.5789 89.4865 62.3344 89.4865 62.077 89.4865C58.2502 89.4879 54.5027 90.5816 51.2717 92.64C48.0407 94.6983 45.4594 97.6364 43.8291 101.111L43.9449 101.047L43.8677 101.176L38.1282 113.899V114.015L42.9797 116.276C44.0125 119.386 45.7784 122.2 48.1273 124.478C48.5391 124.878 48.9637 125.266 49.4142 125.627C51.2936 127.139 53.4239 128.306 55.707 129.076V129.425L55.5011 129.321V141.618H59.3617V141.528L71.8703 141.308L71.7673 135.173L94.2362 135.082V135.173H100.581H107.543V117.322H123.152V99.2386H137.591L131.221 84.6428Z"
13
+ class="fill-white dark:fill-gray-900"
14
+ />
15
+ <path
16
+ opacity="0.2"
17
+ d="M52.1799 36.0888L52.2958 69.9563L94.2095 69.8143L94.1966 65.0738L57.4175 65.203L57.3146 35.6626L52.1799 36.0888Z"
18
+ fill="#BDC7CE"
19
+ />
20
+ <path opacity="0.2" d="M100.541 69.8145H94.2097V135.134H100.541V69.8145Z" fill="#BDC7CE" />
21
+ <path
22
+ opacity="0.2"
23
+ d="M94.3256 17.502V17.5666C87.7368 26.2853 77.223 30.8965 68.3049 33.3249C63.0127 34.7865 57.5824 35.687 52.103 36.0116V32.8211C52.103 28.9461 52.3347 25.3424 54.6768 22.6428C66.1172 25.0711 83.8118 26.337 94.3256 17.502Z"
24
+ fill="#BDC7CE"
25
+ />
26
+ <path
27
+ opacity="0.2"
28
+ d="M82.2424 109.83C82.2426 113.474 81.2622 117.05 79.4048 120.181C77.5474 123.311 74.8819 125.88 71.6899 127.616V122.553C74.5043 121.022 76.9144 118.839 78.7204 116.186C80.5265 113.533 81.6765 110.486 82.0751 107.298C82.1893 108.137 82.2452 108.983 82.2424 109.83Z"
29
+ fill="#BDC7CE"
30
+ />
31
+ <path
32
+ opacity="0.2"
33
+ d="M59.3355 141.579H55.4749V129.296C58.6792 131.362 64.1099 127.888 64.1099 127.888C64.1099 127.888 62.5785 131.879 59.3098 133.054L59.3355 141.579Z"
34
+ fill="#BDC7CE"
35
+ />
36
+ <path
37
+ opacity="0.2"
38
+ d="M64.1352 127.914L60.0301 130.006C56.1706 129.611 52.5067 128.106 49.4777 125.673C46.4488 123.24 44.1833 119.982 42.9531 116.289L38.1016 114.028L43.8411 101.305C45.0596 98.701 46.814 96.3855 48.9886 94.511C49.9569 93.6781 51.0043 92.9427 52.1157 92.3152C53.0637 91.7666 54.0585 91.304 55.0884 90.9331C54.3911 91.3875 53.7248 91.8881 53.0938 92.4314C50.9191 94.3059 49.1648 96.6214 47.9462 99.2256L42.2067 111.949L47.0583 114.222C48.294 117.909 50.5616 121.161 53.5899 123.589C56.6183 126.017 60.2793 127.519 64.1352 127.914Z"
39
+ fill="#BDC7CE"
40
+ />
41
+ <path
42
+ opacity="0.2"
43
+ d="M89.3072 98.6702C87.8011 98.6675 86.3235 98.2579 85.0295 97.4845C83.7354 96.7111 82.6727 95.6023 81.9527 94.2746C81.2327 92.9468 80.882 91.4491 80.9375 89.9384C80.993 88.4277 81.4525 86.9599 82.2679 85.689C81.0884 86.2371 80.0522 87.0533 79.2412 88.0728C78.4302 89.0924 77.8666 90.2873 77.5952 91.5632C77.3237 92.8391 77.3517 94.1608 77.677 95.424C78.0023 96.6871 78.6161 97.8569 79.4696 98.8409C80.3231 99.8249 81.393 100.596 82.5946 101.093C83.7963 101.591 85.0967 101.8 86.3932 101.706C87.6896 101.612 88.9464 101.216 90.0641 100.55C91.1819 99.8844 92.1299 98.9665 92.8332 97.8694C91.7309 98.3935 90.5269 98.667 89.3072 98.6702Z"
44
+ fill="#BDC7CE"
45
+ />
46
+ <path
47
+ opacity="0.2"
48
+ d="M69.965 118.085C69.8338 118.086 69.7036 118.062 69.5819 118.013C69.4602 117.963 69.3495 117.89 69.2561 117.798C69.1627 117.705 69.0885 117.595 69.0379 117.474C68.9873 117.352 68.9613 117.222 68.9613 117.09C68.9592 116.894 69.0128 116.701 69.1157 116.535C68.9439 116.619 68.7987 116.749 68.6965 116.911C68.5942 117.073 68.5389 117.26 68.5366 117.452C68.5366 117.719 68.6424 117.975 68.8306 118.164C69.0189 118.353 69.2742 118.459 69.5404 118.459C69.7078 118.46 69.8726 118.418 70.0191 118.336C70.1655 118.255 70.2887 118.137 70.3769 117.994C70.2485 118.056 70.1075 118.087 69.965 118.085Z"
49
+ fill="#BDC7CE"
50
+ />
51
+ <path
52
+ opacity="0.2"
53
+ d="M62.1796 91.2692C59.1812 96.6684 63.1577 105.051 70.9819 105.051C69.9773 105.552 69.1374 106.332 68.5626 107.299C60.7383 107.299 56.7619 99.0709 59.7732 93.7751C59.7953 93.7112 59.8256 93.6504 59.8632 93.5942C56.5012 95.1113 52.7237 95.4303 49.1564 94.4984L49.0405 94.3563C50.0088 93.5234 51.0563 92.7879 52.1677 92.1605C55.5664 92.905 59.1138 92.529 62.2826 91.0884L62.1796 91.2692Z"
54
+ fill="#BDC7CE"
55
+ />
56
+ <path
57
+ opacity="0.2"
58
+ d="M68.8704 75.6405L69.6168 70.0088H66.5154L65.3186 79.0117H94.1705V75.6405H68.8704Z"
59
+ fill="#BDC7CE"
60
+ />
61
+ <path
62
+ d="M62.5268 42.0432L62.1664 43.9549C62.0691 44.4688 61.7725 44.9228 61.3417 45.2171C60.9109 45.5114 60.3813 45.6219 59.8694 45.5243C59.3574 45.4267 58.9051 45.1289 58.6119 44.6965C58.3186 44.2641 58.2085 43.7325 58.3058 43.2187L58.6661 41.3716"
63
+ stroke="#9DA3AC"
64
+ stroke-width="1.29167"
65
+ stroke-linecap="round"
66
+ stroke-linejoin="round"
67
+ />
68
+ <path
69
+ d="M51.5501 105.284L51.1899 107.131C51.0909 107.645 50.7926 108.098 50.3606 108.391C49.9286 108.684 49.3982 108.793 48.8863 108.694C48.3743 108.594 47.9227 108.295 47.6307 107.861C47.3387 107.428 47.2302 106.895 47.3292 106.382L47.6895 104.547"
70
+ stroke="#9DA3AC"
71
+ stroke-width="1.29167"
72
+ stroke-linecap="round"
73
+ stroke-linejoin="round"
74
+ />
75
+ <path
76
+ d="M77.8668 42.0432L77.5193 43.8903C77.4196 44.4038 77.1212 44.8567 76.6894 45.1497C76.2576 45.4426 75.7277 45.5518 75.2158 45.4533C74.9634 45.4053 74.7229 45.3076 74.5084 45.1658C74.2938 45.024 74.1093 44.8409 73.9657 44.6271C73.8221 44.4133 73.7222 44.173 73.6717 43.9201C73.6212 43.6673 73.6211 43.4069 73.6716 43.1541L74.0062 41.3716"
77
+ stroke="#9DA3AC"
78
+ stroke-width="1.29167"
79
+ stroke-linecap="round"
80
+ stroke-linejoin="round"
81
+ />
82
+ <path
83
+ d="M120.707 88.6471L121.311 90.4296C121.482 90.9247 121.842 91.3313 122.311 91.5602C122.543 91.6736 122.796 91.7399 123.054 91.7553C123.312 91.7708 123.57 91.735 123.814 91.6502C124.059 91.5654 124.284 91.4332 124.477 91.261C124.67 91.0889 124.828 90.8802 124.941 90.6469C125.054 90.4136 125.12 90.1603 125.135 89.9014C125.151 89.6425 125.115 89.3831 125.031 89.138L124.426 87.3555"
84
+ stroke="#9DA3AC"
85
+ stroke-width="1.29167"
86
+ stroke-linecap="round"
87
+ stroke-linejoin="round"
88
+ />
89
+ <path
90
+ d="M80.9039 54.6372C80.9039 54.6372 78.7291 61.9093 67.4946 64.2601"
91
+ stroke="#9DA3AC"
92
+ stroke-width="1.29167"
93
+ stroke-linecap="round"
94
+ stroke-linejoin="round"
95
+ />
96
+ <path
97
+ d="M52.9399 121.003C52.9399 121.003 52.155 123.587 48.1399 124.452"
98
+ stroke="#9DA3AC"
99
+ stroke-width="1.29167"
100
+ stroke-linecap="round"
101
+ stroke-linejoin="round"
102
+ />
103
+ <path
104
+ d="M116.1 104.91C116.1 104.91 118.017 107.209 122.444 106.305"
105
+ stroke="#9DA3AC"
106
+ stroke-width="1.29167"
107
+ stroke-linecap="round"
108
+ stroke-linejoin="round"
109
+ />
110
+ <path
111
+ d="M69.9907 33.6216L69.8748 33.9962L63.4404 54.8695L69.373 53.6424L66.5675 69.9691"
112
+ stroke="#9DA3AC"
113
+ stroke-width="1.29167"
114
+ stroke-linecap="round"
115
+ stroke-linejoin="round"
116
+ />
117
+ <path
118
+ d="M94.2091 78.5717H65.3186L66.5154 69.9692H94.2091V78.5717Z"
119
+ stroke="#9DA3AC"
120
+ stroke-width="1.29167"
121
+ stroke-linecap="round"
122
+ stroke-linejoin="round"
123
+ />
124
+ <path
125
+ d="M93.9648 17.9024C95.1109 17.1517 96.4574 16.7688 97.8255 16.8045"
126
+ stroke="#9DA3AC"
127
+ stroke-width="1.29167"
128
+ stroke-linecap="round"
129
+ stroke-linejoin="round"
130
+ />
131
+ <path
132
+ d="M94.2102 69.7885L52.2964 69.9306L52.1549 29.2431C52.1481 27.7499 52.4348 26.2701 52.9986 24.8883C53.5625 23.5065 54.3923 22.2499 55.4407 21.1905C56.489 20.1311 57.7352 19.2896 59.108 18.7143C60.4808 18.139 61.9532 17.8411 63.4408 17.8377L94.0429 17.7344L94.2102 69.7885Z"
133
+ stroke="#9DA3AC"
134
+ stroke-width="1.29167"
135
+ stroke-linecap="round"
136
+ stroke-linejoin="round"
137
+ />
138
+ <path
139
+ d="M94.0425 17.812L93.9782 17.8766C93.0902 19.0391 83.3742 32.6145 93.8752 47.0812"
140
+ stroke="#9DA3AC"
141
+ stroke-width="1.29167"
142
+ stroke-linecap="round"
143
+ stroke-linejoin="round"
144
+ />
145
+ <path
146
+ d="M52.1284 36.2055C57.5544 35.8743 62.9319 34.9826 68.1758 33.5447C76.9909 31.1422 87.4018 26.5697 93.9134 17.9542C94.6956 16.6376 95.1379 15.1459 95.2003 13.6143"
147
+ stroke="#9DA3AC"
148
+ stroke-width="1.29167"
149
+ stroke-linecap="round"
150
+ stroke-linejoin="round"
151
+ />
152
+ <path
153
+ d="M65.3196 78.5723L63.2349 89.2802"
154
+ stroke="#9DA3AC"
155
+ stroke-width="1.29167"
156
+ stroke-linecap="round"
157
+ stroke-linejoin="round"
158
+ />
159
+ <path
160
+ d="M94.2097 135.044V78.5723"
161
+ stroke="#9DA3AC"
162
+ stroke-width="1.29167"
163
+ stroke-linecap="round"
164
+ stroke-linejoin="round"
165
+ />
166
+ <path
167
+ d="M94.2097 69.7886H108.661C113.453 69.7873 118.141 71.1913 122.149 73.828C126.157 76.4646 129.31 80.219 131.22 84.6298L137.565 99.2515H123.126V117.335H107.465V135.147"
168
+ stroke="#9DA3AC"
169
+ stroke-width="1.29167"
170
+ stroke-linecap="round"
171
+ stroke-linejoin="round"
172
+ />
173
+ <path
174
+ d="M112.792 70.3833V95.4933C112.792 95.4933 110.63 84.8371 105.457 85.5862C100.618 86.2967 99.4985 96.7592 106.563 96.7592L94.2866 110.025"
175
+ stroke="#9DA3AC"
176
+ stroke-width="1.29167"
177
+ stroke-linecap="round"
178
+ stroke-linejoin="round"
179
+ />
180
+ <path
181
+ d="M110.103 88.5954L131.98 80.5225L129.407 91.8504"
182
+ stroke="#9DA3AC"
183
+ stroke-width="1.29167"
184
+ stroke-linecap="round"
185
+ stroke-linejoin="round"
186
+ />
187
+ <path
188
+ d="M85.7804 101.667C87.4374 101.667 89.0571 101.174 90.4348 100.25C91.8125 99.326 92.8862 98.0127 93.5203 96.4762C94.1544 94.9397 94.3203 93.249 93.997 91.6179C93.6738 89.9868 92.8759 88.4885 91.7042 87.3125C90.5326 86.1365 89.0399 85.3356 87.4148 85.0112C85.7897 84.6867 84.1053 84.8532 82.5745 85.4897C81.0437 86.1261 79.7352 87.2039 78.8147 88.5867C77.8941 89.9695 77.4028 91.5953 77.4028 93.2584C77.4028 95.4885 78.2855 97.6273 79.8566 99.2042C81.4277 100.781 83.5586 101.667 85.7804 101.667V101.667Z"
189
+ stroke="#9DA3AC"
190
+ stroke-width="1.29167"
191
+ stroke-linecap="round"
192
+ stroke-linejoin="round"
193
+ />
194
+ <path
195
+ d="M55.5 141.437V128.844"
196
+ stroke="#9DA3AC"
197
+ stroke-width="1.29167"
198
+ stroke-linecap="round"
199
+ stroke-linejoin="round"
200
+ />
201
+ <path
202
+ d="M71.4324 141.438V116.031C71.4324 116.031 78.3945 108.423 73.8518 105.387C70.789 103.334 68.5627 107.26 68.5627 107.26C60.7385 107.26 56.762 99.0194 59.7604 93.7236L59.8634 93.5557C56.4979 95.0596 52.725 95.3783 49.1565 94.4598"
203
+ stroke="#9DA3AC"
204
+ stroke-width="1.29167"
205
+ stroke-linecap="round"
206
+ stroke-linejoin="round"
207
+ />
208
+ <path
209
+ d="M43.8411 101.111C45.1978 98.2204 47.2177 95.6934 49.7351 93.7371C52.2525 91.7809 55.1959 90.4511 58.3241 89.8568C61.4522 89.2625 64.6762 89.4205 67.7318 90.318C70.7874 91.2154 73.5876 92.8267 75.9032 95.0199C78.2187 97.2131 79.9835 99.9257 81.0532 102.935C82.1228 105.945 82.4668 109.167 82.0569 112.336C81.647 115.505 80.495 118.531 78.6951 121.167C76.8952 123.803 74.4988 125.973 71.7021 127.5"
210
+ stroke="#9DA3AC"
211
+ stroke-width="1.29167"
212
+ stroke-linecap="round"
213
+ stroke-linejoin="round"
214
+ />
215
+ <path
216
+ d="M43.8411 101.111L38.1016 113.834L42.9531 116.108C44.1827 119.802 46.4476 123.062 49.4765 125.498C52.5053 127.933 56.1696 129.44 60.0301 129.838"
217
+ stroke="#9DA3AC"
218
+ stroke-width="1.29167"
219
+ stroke-linecap="round"
220
+ stroke-linejoin="round"
221
+ />
222
+ <path
223
+ d="M69.5269 119.092C69.8462 119.094 70.1589 119.002 70.4254 118.825C70.6919 118.649 70.9001 118.397 71.0234 118.101C71.1468 117.806 71.1797 117.48 71.118 117.166C71.0564 116.851 70.9029 116.562 70.6771 116.336C70.4514 116.109 70.1636 115.955 69.8504 115.893C69.5371 115.831 69.2127 115.864 68.9182 115.988C68.6237 116.112 68.3727 116.321 68.1969 116.588C68.0211 116.856 67.9287 117.17 67.9312 117.49C67.9346 117.914 68.1037 118.319 68.4022 118.619C68.7008 118.919 69.1047 119.089 69.5269 119.092V119.092Z"
224
+ stroke="#9DA3AC"
225
+ stroke-width="1.29167"
226
+ stroke-linecap="round"
227
+ stroke-linejoin="round"
228
+ />
229
+ </g>
230
+ <defs>
231
+ <clipPath id="clip0_2938_133808">
232
+ <rect width="100.75" height="129.167" fill="white" transform="translate(37.4583 12.9165)" />
233
+ </clipPath>
234
+ </defs>
235
+ </svg>
236
+ </template>
237
+ <script setup lang="ts"></script>
@@ -0,0 +1,187 @@
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.6673" cy="77.5001" fill="#BDC7CE" fill-opacity="0.15" r="64.5833" />
10
+ <path
11
+ d="M115.603 18.0549L86.6082 18.1585C84.4905 18.1636 82.3945 18.5859 80.4402 19.4014C78.4859 20.2168 76.7117 21.4094 75.219 22.9108C73.7264 24.4122 72.5445 26.193 71.7412 28.1514C70.9378 30.1097 70.5287 32.2072 70.5372 34.3237L70.6667 74.0056H85.9996L84.7046 83.2336L79.1749 111.94H57.8203L108.325 140.802C109.083 141.235 109.942 141.461 110.815 141.458C111.688 141.456 112.545 141.224 113.3 140.786C114.055 140.349 114.682 139.72 115.118 138.965C115.554 138.209 115.784 137.352 115.785 136.479V94.0536V73.8503L115.603 18.0549Z"
12
+ class="fill-white dark:fill-gray-900"
13
+ />
14
+ <path
15
+ d="M57.4712 108.795C57.4712 108.717 57.4712 108.64 57.4712 108.562L52.5373 85.4079C52.3176 84.4756 51.7987 83.6407 51.0598 83.0308C50.3209 82.4209 49.4026 82.0693 48.4451 82.0299H38.4477C38.0285 82.0146 37.6115 82.0983 37.2308 82.2742C36.85 82.4501 36.5162 82.7133 36.2563 83.0424C35.9964 83.3715 35.8178 83.7572 35.7351 84.1682C35.6523 84.5792 35.6677 85.0039 35.78 85.4079L40.7139 108.562C40.9336 109.494 41.4525 110.329 42.1914 110.939C42.9303 111.549 43.8486 111.901 44.8061 111.94H54.8165C55.0338 111.938 55.2506 111.917 55.464 111.875H55.5287C55.7061 111.835 55.8795 111.779 56.0467 111.707L56.1892 111.617C56.3117 111.558 56.4287 111.489 56.5388 111.409L56.7201 111.228C56.7996 111.166 56.8733 111.097 56.9403 111.021C57.0129 110.935 57.0738 110.839 57.1216 110.736C57.165 110.679 57.2039 110.618 57.2381 110.555C57.2381 110.426 57.3417 110.309 57.3935 110.18C57.4453 110.05 57.3935 110.076 57.3935 110.012C57.4286 109.867 57.4503 109.72 57.4583 109.572C57.4583 109.572 57.4583 109.468 57.4583 109.416C57.4712 109.261 57.4712 109.105 57.4583 108.95C57.4583 108.95 57.4842 108.834 57.4712 108.795Z"
16
+ class="fill-white dark:fill-gray-900"
17
+ />
18
+ <path
19
+ d="M115.799 74.0056L55.0893 99.5542L49.5985 92.9147L38.4355 82.03L76.1072 22.093L115.799 74.0056Z"
20
+ fill="url(#paint0_linear_2571_138983)"
21
+ />
22
+ <path
23
+ d="M88.5266 79.7777L89.3295 74.0054H85.9884L84.6934 83.2334H115.799V79.7777H88.5266Z"
24
+ class="fill-white dark:fill-gray-900"
25
+ opacity="0.2"
26
+ />
27
+ <path
28
+ d="M54.7772 111.94H44.7797C43.8222 111.901 42.9039 111.549 42.165 110.939C41.4261 110.329 40.9072 109.494 40.6875 108.562L35.7536 85.4079C35.6413 85.0039 35.6259 84.5792 35.7087 84.1682C35.7915 83.7572 35.97 83.3715 36.2299 83.0424C36.4898 82.7133 36.8237 82.4501 37.2044 82.2742C37.5852 82.0983 38.0021 82.0146 38.4213 82.0299H48.4187C49.3762 82.0693 50.2945 82.4209 51.0334 83.0308C51.7723 83.6407 52.2912 84.4756 52.5109 85.4079L57.4449 108.562C57.5571 108.966 57.5725 109.391 57.4898 109.802C57.407 110.213 57.2284 110.598 56.9685 110.928C56.7086 111.257 56.3748 111.52 55.994 111.696C55.6133 111.872 55.1964 111.955 54.7772 111.94V111.94Z"
29
+ class="fill-white dark:fill-gray-900"
30
+ stroke="#9DA3AC"
31
+ stroke-linecap="round"
32
+ stroke-linejoin="round"
33
+ stroke-width="1.29167"
34
+ />
35
+ <path
36
+ d="M81.688 44.0825L81.2995 46.0627C81.2483 46.3354 81.1435 46.5953 80.9911 46.8272C80.8387 47.0591 80.6418 47.2585 80.4117 47.4138C80.1816 47.5691 79.923 47.6772 79.6508 47.7319C79.3786 47.7866 79.0983 47.7867 78.826 47.7323V47.7323C78.5545 47.681 78.2957 47.5767 78.0646 47.4252C77.8335 47.2738 77.6347 47.0782 77.4794 46.8497C77.3242 46.6212 77.2157 46.3643 77.1601 46.0937C77.1045 45.8232 77.1029 45.5443 77.1555 45.2732L77.531 43.293"
37
+ stroke="#9DA3AC"
38
+ stroke-linecap="round"
39
+ stroke-linejoin="round"
40
+ stroke-width="1.29167"
41
+ />
42
+ <path
43
+ d="M98.1741 44.0825L97.7985 46.0627C97.7474 46.3354 97.6425 46.5953 97.4901 46.8272C97.3377 47.0591 97.1408 47.2585 96.9107 47.4138C96.6807 47.5691 96.422 47.6772 96.1498 47.7319C95.8776 47.7866 95.5973 47.7867 95.3251 47.7323V47.7323C95.0535 47.681 94.7947 47.5767 94.5636 47.4252C94.3326 47.2738 94.1337 47.0782 93.9785 46.8497C93.8232 46.6212 93.7147 46.3643 93.6591 46.0937C93.6035 45.8232 93.6019 45.5443 93.6545 45.2732L94.0301 43.293"
44
+ stroke="#9DA3AC"
45
+ stroke-linecap="round"
46
+ stroke-linejoin="round"
47
+ stroke-width="1.29167"
48
+ />
49
+ <path
50
+ d="M101.475 57.5813C101.475 57.5813 99.1185 65.3468 87.0361 67.9353"
51
+ stroke="#9DA3AC"
52
+ stroke-linecap="round"
53
+ stroke-linejoin="round"
54
+ stroke-width="1.29167"
55
+ />
56
+ <path
57
+ d="M115.566 17.5112L115.501 17.5889C108.482 26.8299 97.2803 31.7222 87.7879 34.2977C82.1487 35.8472 76.3634 36.8058 70.5255 37.158V33.7671C70.5091 29.7874 71.9668 25.9425 74.6177 22.973C86.8037 25.5486 104.364 26.8946 115.566 17.5112Z"
58
+ fill="#BDC7CE"
59
+ opacity="0.2"
60
+ />
61
+ <path
62
+ d="M89.7167 35.0483L89.5872 35.4625L82.6201 57.8272L89.0045 56.5071L85.9871 74.0054"
63
+ stroke="#9DA3AC"
64
+ stroke-linecap="round"
65
+ stroke-linejoin="round"
66
+ stroke-width="1.29167"
67
+ />
68
+ <path
69
+ d="M115.799 83.2334H84.6934L85.9884 74.0054H115.799V83.2334Z"
70
+ stroke="#9DA3AC"
71
+ stroke-linecap="round"
72
+ stroke-linejoin="round"
73
+ stroke-width="1.29167"
74
+ />
75
+ <path
76
+ d="M115.526 18.1973C116.749 17.4008 118.185 16.9946 119.644 17.0325"
77
+ stroke="#9DA3AC"
78
+ stroke-linecap="round"
79
+ stroke-linejoin="round"
80
+ stroke-width="1.29167"
81
+ />
82
+ <path
83
+ d="M47.7598 108.795C46.8006 108.756 45.8804 108.405 45.1393 107.795C44.3982 107.186 43.8769 106.351 43.6546 105.417L38.7336 82.2629C38.7273 82.1854 38.7273 82.1075 38.7336 82.03H38.4617C38.0372 81.9965 37.6111 82.0681 37.2209 82.2385C36.8308 82.4089 36.4887 82.6728 36.2249 83.0068C35.9612 83.3408 35.7838 83.7346 35.7087 84.1535C35.6335 84.5723 35.6628 85.0032 35.794 85.408L40.715 108.562C40.9392 109.495 41.4611 110.329 42.2018 110.938C42.9424 111.547 43.8616 111.899 44.8201 111.94H54.8175C55.2175 111.964 55.6175 111.894 55.986 111.737C56.3545 111.58 56.6816 111.34 56.9414 111.035C57.2012 110.73 57.3867 110.369 57.4833 109.98C57.5799 109.592 57.585 109.186 57.4982 108.795H47.7598Z"
84
+ class="fill-[#BDC7CE] dark:fill-gray-900"
85
+ opacity="0.2"
86
+ />
87
+ <path
88
+ d="M72.3769 111.94H58.0283L108.883 141.009C109.606 141.422 110.425 141.637 111.258 141.634C112.09 141.631 112.908 141.41 113.628 140.991C114.348 140.573 114.945 139.973 115.36 139.252C115.775 138.53 115.993 137.713 115.993 136.88L72.3769 111.94Z"
89
+ fill="#BDC7CE"
90
+ opacity="0.2"
91
+ />
92
+ <path
93
+ d="M49.4822 91.8531C48.8863 91.6961 48.2725 91.6178 47.6562 91.6202C47.6597 93.6123 48.4539 95.5216 49.8645 96.929C51.2752 98.3364 53.187 99.1269 55.1802 99.1269C55.1775 98.5427 55.108 97.9609 54.973 97.3925C53.6379 97.0604 52.4198 96.3681 51.4515 95.3912C50.4832 94.4144 49.802 93.1905 49.4822 91.8531V91.8531Z"
94
+ fill="#ECF1F7"
95
+ />
96
+ <path
97
+ d="M86.5992 18.1712L115.594 18.0751L115.779 73.8701L71.4905 74.0169C71.2707 74.0176 71.0596 73.931 70.9036 73.7762C70.7477 73.6214 70.6597 73.411 70.6589 73.1913L70.5301 34.3639C70.5159 30.0903 72.201 25.9862 75.2145 22.9543C78.2281 19.9225 82.3233 18.2112 86.5993 18.1971L86.5992 18.1712Z"
98
+ stroke="#9DA3AC"
99
+ stroke-linecap="round"
100
+ stroke-linejoin="round"
101
+ stroke-width="1.29167"
102
+ />
103
+ <path
104
+ d="M115.604 18.1067V18.1843C114.659 19.4786 104.195 33.9872 115.501 49.4794"
105
+ stroke="#9DA3AC"
106
+ stroke-linecap="round"
107
+ stroke-linejoin="round"
108
+ stroke-width="1.29167"
109
+ />
110
+ <path
111
+ d="M70.5518 37.7663C76.3896 37.4141 82.1749 36.4554 87.8141 34.906C97.3065 32.3175 108.534 27.4381 115.527 18.1972C116.36 16.79 116.827 15.1973 116.887 13.5637"
112
+ stroke="#9DA3AC"
113
+ stroke-linecap="round"
114
+ stroke-linejoin="round"
115
+ stroke-width="1.29167"
116
+ />
117
+ <path
118
+ d="M84.6925 83.2336L79.1758 111.94"
119
+ stroke="#9DA3AC"
120
+ stroke-linecap="round"
121
+ stroke-linejoin="round"
122
+ stroke-width="1.29167"
123
+ />
124
+ <path
125
+ d="M115.785 83.1819V136.35C115.783 137.231 115.55 138.096 115.109 138.859C114.668 139.622 114.034 140.256 113.271 140.697C112.508 141.139 111.643 141.372 110.761 141.375C109.88 141.377 109.013 141.149 108.248 140.712L57.8203 111.888H100.245V103.592"
126
+ stroke="#9DA3AC"
127
+ stroke-linecap="round"
128
+ stroke-linejoin="round"
129
+ stroke-width="1.29167"
130
+ />
131
+ <path
132
+ d="M47.6562 91.6204C48.6443 91.6204 49.6227 91.8149 50.5355 92.1928C51.4484 92.5707 52.2778 93.1245 52.9765 93.8228C53.6752 94.5211 54.2294 95.35 54.6075 96.2623C54.9856 97.1747 55.1802 98.1525 55.1802 99.14V99.14C53.1847 99.14 51.271 98.3477 49.86 96.9375C48.449 95.5273 47.6562 93.6147 47.6562 91.6204V91.6204V91.6204Z"
133
+ stroke="#9DA3AC"
134
+ stroke-linecap="round"
135
+ stroke-linejoin="round"
136
+ stroke-width="1.29167"
137
+ />
138
+ <path
139
+ d="M39.5752 103.644H50.9583"
140
+ stroke="#9DA3AC"
141
+ stroke-linecap="round"
142
+ stroke-linejoin="round"
143
+ stroke-width="1.29167"
144
+ />
145
+ <path
146
+ d="M39.5752 99.1399H55.18"
147
+ stroke="#9DA3AC"
148
+ stroke-linecap="round"
149
+ stroke-linejoin="round"
150
+ stroke-width="1.29167"
151
+ />
152
+ <path
153
+ d="M40.4688 107.527H49.6633"
154
+ stroke="#9DA3AC"
155
+ stroke-linecap="round"
156
+ stroke-linejoin="round"
157
+ stroke-width="1.29167"
158
+ />
159
+ <path
160
+ d="M71.4834 111.94V119.745"
161
+ stroke="#9DA3AC"
162
+ stroke-linecap="round"
163
+ stroke-linejoin="round"
164
+ stroke-width="1.29167"
165
+ />
166
+ <path
167
+ d="M54.7772 111.94H44.7797C43.8222 111.901 42.9039 111.549 42.165 110.939C41.4261 110.329 40.9072 109.494 40.6875 108.562L35.7536 85.4079C35.6413 85.0039 35.6259 84.5792 35.7087 84.1682C35.7915 83.7572 35.97 83.3715 36.2299 83.0424C36.4898 82.7133 36.8237 82.4501 37.2044 82.2742C37.5852 82.0983 38.0021 82.0146 38.4213 82.0299H48.4187C49.3762 82.0693 50.2945 82.4209 51.0334 83.0308C51.7723 83.6407 52.2912 84.4756 52.5109 85.4079L57.4449 108.562C57.5571 108.966 57.5725 109.391 57.4898 109.802C57.407 110.213 57.2284 110.598 56.9685 110.928C56.7086 111.257 56.3748 111.52 55.994 111.696C55.6133 111.872 55.1964 111.955 54.7772 111.94V111.94Z"
168
+ stroke="#9DA3AC"
169
+ stroke-linecap="round"
170
+ stroke-linejoin="round"
171
+ stroke-width="1.29167"
172
+ />
173
+ <defs>
174
+ <linearGradient
175
+ id="paint0_linear_2571_138983"
176
+ gradientUnits="userSpaceOnUse"
177
+ x1="58.3138"
178
+ x2="79.2787"
179
+ y1="92.8758"
180
+ y2="67.8848"
181
+ >
182
+ <stop offset="0.28" stop-color="#ECF1F7" />
183
+ <stop offset="0.69" stop-color="#ECF1F7" stop-opacity="0.3" />
184
+ </linearGradient>
185
+ </defs>
186
+ </svg>
187
+ </template>
@@ -0,0 +1,159 @@
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 cx="60.585" cy="60" fill="#BDC7CE" fill-opacity="0.15" r="50" />
10
+ <g clip-path="url(#clip0_335_11701)">
11
+ <path
12
+ class="fill-white dark:fill-gray-900"
13
+ d="M58.2593 10.4176C56.0889 10.4181 53.9447 10.8965 51.9757 11.8195L51.8381 11.8891C51.4251 12.0879 51.0219 12.2967 50.6285 12.5353L50.1959 12.7938C49.8812 13.0026 49.5665 13.2213 49.2125 13.45L48.7799 13.7781C48.4259 14.0664 48.0817 14.3747 47.7965 14.6928L47.6097 14.8618C47.2189 15.257 46.8481 15.6718 46.4985 16.1046V16.1643C44.3543 18.8655 43.1853 22.2254 43.1847 25.689V84.3488H43.0273V94.838L44.4729 94.9771V109.403H77.5327V94.8877L78.044 94.838V94.4502H78.2308V10.4176H58.2593Z"
14
+ />
15
+ <path
16
+ d="M77.9356 92.0641V94.9374L60.4322 96.6077L42.9189 94.9374V84.4482H48.4846V92.1834L60.265 93.3367L77.9356 92.0641Z"
17
+ fill="#BDC7CE"
18
+ opacity="0.2"
19
+ />
20
+ <path
21
+ d="M77.4152 106.858V109.503H44.3652V97.0054L47.1382 97.2738V106.858H77.4152Z"
22
+ fill="#BDC7CE"
23
+ opacity="0.2"
24
+ />
25
+ <path
26
+ d="M77.4251 94.3706V96.9954L60.8853 98.6557L44.3652 96.9954V94.3706L60.8853 96.031L77.4251 94.3706Z"
27
+ fill="#BDC7CE"
28
+ opacity="0.2"
29
+ />
30
+ <path
31
+ d="M63.0873 101.748V103.587H56.6957C56.5962 103.587 56.4977 103.567 56.4059 103.529C56.314 103.49 56.2306 103.434 56.1602 103.363C56.0899 103.292 56.0342 103.208 55.9961 103.115C55.9581 103.022 55.9385 102.922 55.9385 102.822V98.1289L57.5413 98.2979V101.748H63.0873Z"
32
+ fill="#BDC7CE"
33
+ opacity="0.2"
34
+ />
35
+ <path
36
+ d="M64.12 80.9783C63.4442 81.3028 62.7048 81.4693 61.9567 81.4655C61.2723 81.4655 60.5946 81.3292 59.9623 81.0644C59.33 80.7996 58.7554 80.4114 58.2715 79.9221C57.7875 79.4328 57.4036 78.8519 57.1417 78.2126C56.8798 77.5733 56.745 76.8881 56.745 76.1961V73.6608H59.3508V75.7387C59.349 77.0583 59.8387 78.3301 60.7225 79.3011C61.6063 80.272 62.8193 80.8709 64.12 80.9783Z"
37
+ fill="#BDC7CE"
38
+ opacity="0.2"
39
+ />
40
+ <path
41
+ d="M62.1927 56.381C61.4814 56.8618 60.8984 57.5125 60.4953 58.2756C60.0922 59.0387 59.8815 59.8905 59.8818 60.7556V73.6807H56.745V61.6504C56.745 60.9584 56.8798 60.2732 57.1417 59.6339C57.4036 58.9946 57.7875 58.4137 58.2715 57.9244C58.7554 57.4351 59.33 57.0469 59.9623 56.7821C60.5946 56.5173 61.2723 56.381 61.9567 56.381H62.1927Z"
42
+ fill="#BDC7CE"
43
+ opacity="0.2"
44
+ />
45
+ <path
46
+ d="M43.0762 84.0505V56.2915L48.6419 53.965V84.0505H43.0762Z"
47
+ fill="#BDC7CE"
48
+ opacity="0.2"
49
+ />
50
+ <path
51
+ d="M43.0762 94.5396L60.5894 96.2099L78.1027 94.5396V10.4971H58.1802C54.1744 10.4971 50.3326 12.106 47.5001 14.97C44.6675 17.8339 43.0762 21.7183 43.0762 25.7685V94.5396Z"
52
+ stroke="#9DA3AC"
53
+ stroke-linecap="round"
54
+ stroke-linejoin="round"
55
+ />
56
+ <path
57
+ d="M78.0928 41.6465L43.0762 56.3711"
58
+ stroke="#9DA3AC"
59
+ stroke-linecap="round"
60
+ stroke-linejoin="round"
61
+ />
62
+ <path
63
+ d="M78.1033 10.4971C60.1377 28.8108 46.3809 16.2437 46.3809 16.2437"
64
+ stroke="#9DA3AC"
65
+ stroke-linecap="round"
66
+ stroke-linejoin="round"
67
+ />
68
+ <path
69
+ d="M78.1033 10.4971C60.1377 28.8009 46.3906 16.2437 46.3906 16.2437C47.8602 14.3752 49.7475 12.8862 51.8973 11.8989C56.814 15.0507 65.31 17.4169 77.8279 10.507L78.1033 10.4971Z"
70
+ fill="#BDC7CE"
71
+ opacity="0.2"
72
+ />
73
+ <path
74
+ d="M78.1031 30.6105C78.1031 30.6105 67.9747 22.6566 78.1031 10.4971"
75
+ stroke="#9DA3AC"
76
+ stroke-linecap="round"
77
+ stroke-linejoin="round"
78
+ />
79
+ <path
80
+ d="M57.1682 20.5488L52.7432 33.6429H58.8595L56.2438 50.8332"
81
+ stroke="#9DA3AC"
82
+ stroke-linecap="round"
83
+ stroke-linejoin="round"
84
+ />
85
+ <path
86
+ d="M47.7476 25.0427L47.5411 26.8522C47.4915 27.328 47.6302 27.8042 47.9268 28.1768C48.2235 28.5495 48.6541 28.7881 49.1243 28.8407C49.5943 28.8882 50.0639 28.747 50.4319 28.4476C50.7998 28.1481 51.0366 27.7144 51.091 27.24L51.2975 25.4305"
87
+ stroke="#9DA3AC"
88
+ stroke-linecap="round"
89
+ stroke-linejoin="round"
90
+ />
91
+ <path
92
+ d="M59.6851 25.0428L59.4786 26.8523C59.429 27.328 59.5677 27.8042 59.8643 28.1769C60.161 28.5495 60.5916 28.7882 61.0618 28.8407V28.8407C61.5318 28.8883 62.0014 28.7471 62.3694 28.4476C62.7373 28.1481 62.9741 27.7144 63.0285 27.24L63.235 25.4305"
93
+ stroke="#9DA3AC"
94
+ stroke-linecap="round"
95
+ stroke-linejoin="round"
96
+ />
97
+ <path
98
+ d="M66.145 44.311L57.708 41.1891"
99
+ stroke="#9DA3AC"
100
+ stroke-linecap="round"
101
+ stroke-linejoin="round"
102
+ />
103
+ <path
104
+ d="M67.2759 61.6405C67.2759 58.7303 64.9426 56.3711 62.0642 56.3711C59.1859 56.3711 56.8525 58.7303 56.8525 61.6405V76.1961C56.8525 79.1063 59.1859 81.4655 62.0642 81.4655C64.9426 81.4655 67.2759 79.1063 67.2759 76.1961V61.6405Z"
105
+ stroke="#9DA3AC"
106
+ stroke-linecap="round"
107
+ stroke-linejoin="round"
108
+ />
109
+ <path
110
+ d="M56.8525 73.6608H67.2759"
111
+ stroke="#9DA3AC"
112
+ stroke-linecap="round"
113
+ stroke-linejoin="round"
114
+ />
115
+ <path
116
+ d="M43.0762 84.0505H78.0928"
117
+ stroke="#9DA3AC"
118
+ stroke-linecap="round"
119
+ stroke-linejoin="round"
120
+ />
121
+ <path
122
+ d="M55.457 84.0505V77.9658H57.1582"
123
+ stroke="#9DA3AC"
124
+ stroke-linecap="round"
125
+ stroke-linejoin="round"
126
+ />
127
+ <path
128
+ d="M68.6827 84.0505V77.9658H66.9717"
129
+ stroke="#9DA3AC"
130
+ stroke-linecap="round"
131
+ stroke-linejoin="round"
132
+ />
133
+ <path
134
+ d="M77.4251 94.6589V109.503H44.3652V94.6589"
135
+ stroke="#9DA3AC"
136
+ stroke-linecap="round"
137
+ stroke-linejoin="round"
138
+ />
139
+ <path
140
+ class="fill-white dark:fill-gray-900"
141
+ d="M63.6675 101.798H57.502V95.8818L60.5896 96.2099L63.6675 95.8818V101.798Z"
142
+ stroke="#9DA3AC"
143
+ stroke-linecap="round"
144
+ stroke-linejoin="round"
145
+ />
146
+ </g>
147
+ <defs>
148
+ <clipPath id="clip0_335_11701">
149
+ <rect
150
+ class="fill-white dark:fill-gray-900"
151
+ height="100"
152
+ transform="translate(42.585 10)"
153
+ width="36"
154
+ />
155
+ </clipPath>
156
+ </defs>
157
+ </svg>
158
+ </template>
159
+ <script lang="ts" setup></script>