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,120 @@
1
+ <template>
2
+ <svg
3
+ fill="none"
4
+ height="155"
5
+ viewBox="0 0 155 155"
6
+ width="155"
7
+ xmlns="https://www.w3.org/2000/svg"
8
+ >
9
+ <circle cx="77.5001" cy="77.4998" fill="#BDC7CE" fill-opacity="0.15" r="64.5833" />
10
+ <g clip-path="url(#clip0_2864_87969)">
11
+ <path
12
+ d="M48.8349 127.122C71.5137 127.122 89.8985 125.692 89.8985 123.927C89.8985 122.163 71.5137 120.733 48.8349 120.733C26.1561 120.733 7.77124 122.163 7.77124 123.927C7.77124 125.692 26.1561 127.122 48.8349 127.122Z"
13
+ fill="#BDC7CE"
14
+ opacity="0.2"
15
+ />
16
+ <path
17
+ d="M132.457 117.376C132.124 117.799 131.7 118.142 131.216 118.378C130.732 118.614 130.201 118.738 129.663 118.74H119.235C118.283 118.74 117.37 118.363 116.696 117.691C116.022 117.019 115.642 116.108 115.639 115.156C115.641 114.681 115.738 114.211 115.924 113.774C116.11 113.337 116.381 112.942 116.722 112.611C117.053 112.273 117.447 112.003 117.881 111.817C118.316 111.631 118.783 111.533 119.256 111.528H129.685C130.54 111.524 131.368 111.832 132.013 112.395C132.053 112.417 132.09 112.446 132.121 112.481H137.709C137.156 110.79 136.081 109.318 134.64 108.275C133.198 107.233 131.464 106.673 129.685 106.677H119.256C117.067 106.755 114.993 107.68 113.472 109.256C111.951 110.833 111.101 112.938 111.101 115.129C111.101 117.319 111.951 119.425 113.472 121.001C114.993 122.578 117.067 123.502 119.256 123.581H129.685C131.538 123.577 133.339 122.965 134.81 121.838C136.281 120.711 137.342 119.132 137.828 117.343L132.457 117.376Z"
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="M126.804 116.791C126.43 116.467 126.163 116.036 126.04 115.556C125.917 115.076 125.943 114.57 126.115 114.105C126.286 113.641 126.596 113.24 127.001 112.955C127.407 112.671 127.89 112.517 128.385 112.514H148.96C149.604 112.514 150.221 112.769 150.675 113.224C151.13 113.679 151.386 114.296 151.386 114.939C151.386 115.583 151.13 116.2 150.675 116.655C150.221 117.11 149.604 117.365 148.96 117.365H128.385C127.806 117.371 127.244 117.167 126.804 116.791V116.791Z"
25
+ class="fill-white dark:fill-gray-900"
26
+ stroke="#9DA3AC"
27
+ stroke-miterlimit="10"
28
+ stroke-width="1.29167"
29
+ />
30
+ <path
31
+ d="M112.596 117.582C112.599 115.342 113.49 113.196 115.073 111.612C116.657 110.029 118.804 109.138 121.043 109.135H131.471C133.596 109.128 135.644 109.929 137.2 111.377C136.789 110.576 136.256 109.846 135.619 109.211C134.835 108.425 133.903 107.803 132.877 107.379C131.851 106.955 130.751 106.739 129.641 106.742H119.213C117.519 106.748 115.866 107.264 114.469 108.223C113.073 109.181 111.997 110.538 111.382 112.117C110.768 113.696 110.643 115.423 111.023 117.073C111.404 118.724 112.273 120.222 113.517 121.372C112.918 120.198 112.603 118.9 112.596 117.582Z"
32
+ fill="#BDC7CE"
33
+ opacity="0.2"
34
+ />
35
+ <path
36
+ d="M127.984 116.64C127.983 116.32 128.045 116.004 128.166 115.708C128.287 115.412 128.466 115.144 128.691 114.917C128.916 114.691 129.184 114.511 129.479 114.389C129.774 114.266 130.091 114.203 130.41 114.203H150.985H151.278C151.137 113.697 150.835 113.251 150.416 112.934C149.997 112.617 149.486 112.446 148.96 112.449H128.385C127.89 112.452 127.407 112.606 127.001 112.89C126.596 113.175 126.286 113.576 126.115 114.041C125.943 114.505 125.917 115.011 126.04 115.491C126.163 115.971 126.43 116.402 126.804 116.726C127.166 117.033 127.611 117.225 128.082 117.279C128.023 117.07 127.991 116.856 127.984 116.64Z"
37
+ fill="#BDC7CE"
38
+ opacity="0.2"
39
+ />
40
+ <path
41
+ d="M104.291 106.276C103.762 106.384 103.215 106.371 102.692 106.238C102.168 106.105 101.682 105.855 101.269 105.507L93.3316 98.7494C92.6567 98.1178 92.2511 97.2506 92.1988 96.3277C92.1466 95.4049 92.4517 94.4974 93.0509 93.7936C93.6502 93.0899 94.4974 92.644 95.4168 92.5485C96.3362 92.453 97.2569 92.7152 97.988 93.2807L105.926 100.038C106.579 100.589 107.01 101.359 107.139 102.204C107.139 102.204 107.139 102.29 107.139 102.345L111.394 105.962C112.071 104.316 112.21 102.497 111.789 100.768C111.369 99.0384 110.412 97.4864 109.055 96.3345L101.128 89.5664C100.283 88.8475 99.3043 88.3022 98.2481 87.9616C97.1919 87.621 96.079 87.4917 94.9729 87.5812C93.8668 87.6707 92.7891 87.9773 91.8015 88.4832C90.8138 88.9892 89.9354 89.6848 89.2165 90.5302C88.4977 91.3756 87.9524 92.3544 87.6118 93.4106C87.2711 94.4667 87.1419 95.5796 87.2314 96.6858C87.3209 97.7919 87.6274 98.8695 88.1334 99.8572C88.6394 100.845 89.3349 101.723 90.1803 102.442L98.1288 109.199C99.5398 110.399 101.306 111.101 103.156 111.197C105.005 111.293 106.835 110.777 108.362 109.73L104.291 106.276Z"
42
+ class="fill-white dark:fill-gray-900"
43
+ stroke="#9DA3AC"
44
+ stroke-miterlimit="10"
45
+ stroke-width="1.29167"
46
+ />
47
+ <path
48
+ d="M100.371 102.172C100.287 101.681 100.356 101.176 100.57 100.726C100.785 100.277 101.132 99.9043 101.566 99.66C102 99.4158 102.499 99.3117 102.995 99.362C103.49 99.4122 103.958 99.6145 104.334 99.9409L120.014 113.261C120.459 113.691 120.722 114.275 120.752 114.893C120.782 115.511 120.575 116.117 120.174 116.589C119.773 117.06 119.208 117.361 118.593 117.431C117.978 117.501 117.36 117.334 116.863 116.964L101.194 103.644C100.75 103.27 100.457 102.746 100.371 102.172Z"
49
+ class="fill-white dark:fill-gray-900"
50
+ stroke="#9DA3AC"
51
+ stroke-miterlimit="10"
52
+ stroke-width="1.29167"
53
+ />
54
+ <path
55
+ d="M89.0431 93.5627C89.7617 92.7169 90.6399 92.0209 91.6276 91.5147C92.6153 91.0084 93.6931 90.7017 94.7993 90.6122C95.9056 90.5227 97.0187 90.6521 98.0749 90.993C99.1311 91.3339 100.11 91.8796 100.955 92.5989L108.904 99.3562C110.521 100.729 111.558 102.664 111.806 104.771C112.019 103.893 112.093 102.986 112.022 102.085C111.937 100.979 111.632 99.9016 111.127 98.9145C110.621 97.9273 109.924 97.0505 109.077 96.335L101.117 89.5668C99.8264 88.4616 98.2312 87.7727 96.5415 87.5905C94.8517 87.4084 93.1465 87.7416 91.6495 88.5463C90.1526 89.351 88.934 90.5896 88.1538 92.0995C87.3736 93.6093 87.0683 95.3198 87.278 97.0064C87.5897 95.7365 88.1942 94.5572 89.0431 93.5627Z"
56
+ fill="#BDC7CE"
57
+ opacity="0.2"
58
+ />
59
+ <path
60
+ d="M101.334 102.843C101.754 102.355 102.349 102.053 102.99 102.003C103.631 101.952 104.266 102.157 104.756 102.572L120.415 115.892C120.495 115.959 120.568 116.036 120.632 116.119C120.851 115.639 120.908 115.101 120.795 114.585C120.681 114.069 120.404 113.605 120.004 113.26L104.345 99.9408C103.967 99.6167 103.499 99.4165 103.004 99.3673C102.509 99.3182 102.011 99.4224 101.577 99.6659C101.143 99.9094 100.795 100.28 100.579 100.729C100.363 101.177 100.29 101.681 100.37 102.172C100.451 102.639 100.661 103.074 100.977 103.428C101.071 103.219 101.191 103.022 101.334 102.843V102.843Z"
61
+ fill="#BDC7CE"
62
+ opacity="0.2"
63
+ />
64
+ <path
65
+ d="M77.2829 82.43C77.2252 82.0828 77.2447 81.7271 77.3402 81.3883C77.4357 81.0495 77.6047 80.7359 77.8352 80.4699C78.042 80.2273 78.2946 80.0278 78.5786 79.8829C78.8625 79.7379 79.1723 79.6504 79.4901 79.6252C79.8079 79.6001 80.1275 79.6378 80.4308 79.7363C80.734 79.8348 81.0148 79.9921 81.2572 80.1992L96.9159 93.5189C97.3602 93.9497 97.6239 94.5333 97.6535 95.1514C97.6831 95.7695 97.4764 96.3757 97.0754 96.847C96.6744 97.3183 96.1091 97.6194 95.4943 97.6891C94.8794 97.7588 94.2611 97.592 93.7647 97.2225L78.1059 83.8919C77.6657 83.5186 77.3737 83 77.2829 82.43V82.43Z"
66
+ class="fill-white dark:fill-gray-900"
67
+ stroke="#9DA3AC"
68
+ stroke-miterlimit="10"
69
+ stroke-width="1.29167"
70
+ />
71
+ <path
72
+ d="M78.2466 83.0695C78.6662 82.5788 79.2634 82.2747 79.907 82.2239C80.5507 82.1731 81.1881 82.3799 81.6794 82.7988L97.3382 96.1185C97.4122 96.1853 97.481 96.2577 97.544 96.3351C97.7659 95.8571 97.8246 95.3195 97.7111 94.8049C97.5976 94.2903 97.3182 93.8273 96.9159 93.487L81.2571 80.1674C80.8797 79.8433 80.4117 79.6431 79.9167 79.5939C79.4216 79.5447 78.9234 79.649 78.4896 79.8925C78.0558 80.136 77.7074 80.507 77.4915 80.9552C77.2756 81.4034 77.2028 81.9071 77.2828 82.3981C77.3602 82.8654 77.5751 83.299 77.9001 83.6435C77.9889 83.4372 78.1055 83.2441 78.2466 83.0695V83.0695Z"
73
+ fill="#BDC7CE"
74
+ opacity="0.2"
75
+ />
76
+ <path
77
+ d="M44.6767 124.187C67.1881 124.187 85.4371 105.938 85.4371 83.4264C85.4371 60.9151 67.1881 42.666 44.6767 42.666C22.1653 42.666 3.91626 60.9151 3.91626 83.4264C3.91626 105.938 22.1653 124.187 44.6767 124.187Z"
78
+ class="fill-white dark:fill-gray-900"
79
+ stroke="#9DA3AC"
80
+ stroke-linecap="round"
81
+ stroke-linejoin="round"
82
+ stroke-width="1.29167"
83
+ />
84
+ <path
85
+ d="M13.7275 72.5976C15.7476 66.8452 19.3284 61.7684 24.0692 57.9351"
86
+ stroke="#9DA3AC"
87
+ stroke-linecap="round"
88
+ stroke-linejoin="round"
89
+ stroke-width="1.29167"
90
+ />
91
+ <path
92
+ d="M81.2248 64.4868C83.547 74.1495 82.2591 84.3277 77.6033 93.1074C72.9475 101.887 65.2446 108.663 55.943 112.162C46.6415 115.661 36.3821 115.641 27.0943 112.106C17.8064 108.571 10.1299 101.765 5.5083 92.9671C6.85847 98.5852 9.38767 103.852 12.9282 108.418C16.4687 112.985 20.9395 116.746 26.0443 119.453C31.149 122.16 36.7709 123.751 42.5372 124.12C48.3035 124.489 54.0823 123.628 59.4905 121.593C64.8986 119.559 69.8125 116.398 73.9061 112.321C77.9998 108.243 81.1797 103.341 83.235 97.9411C85.2903 92.5409 86.1739 86.7654 85.8273 80.9978C85.4808 75.2301 83.9119 69.602 81.2248 64.4868V64.4868Z"
93
+ fill="#BDC7CE"
94
+ opacity="0.2"
95
+ />
96
+ <path
97
+ d="M66.8438 110.478L67.3527 111.539L67.8617 110.478"
98
+ stroke="#9DA3AC"
99
+ stroke-linecap="round"
100
+ stroke-linejoin="round"
101
+ stroke-width="0.322917"
102
+ />
103
+ <path
104
+ d="M120.917 127.375C135.897 127.375 148.042 126.508 148.042 125.438C148.042 124.367 135.897 123.5 120.917 123.5C105.936 123.5 93.7915 124.367 93.7915 125.438C93.7915 126.508 105.936 127.375 120.917 127.375Z"
105
+ fill="#BDC7CE"
106
+ opacity="0.2"
107
+ />
108
+ </g>
109
+ <defs>
110
+ <clipPath id="clip0_2864_87969">
111
+ <rect
112
+ class="fill-white dark:fill-gray-900"
113
+ height="84.997"
114
+ transform="translate(3.37476 42.125)"
115
+ width="148.542"
116
+ />
117
+ </clipPath>
118
+ </defs>
119
+ </svg>
120
+ </template>
@@ -0,0 +1,133 @@
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
+ <path
10
+ d="M142.083 77.5003C142.083 113.169 113.168 142.084 77.5001 142.084C41.8317 142.084 12.9167 113.169 12.9167 77.5003C12.9167 41.8319 41.8317 12.917 77.5001 12.917C113.168 12.917 142.083 41.8319 142.083 77.5003Z"
11
+ fill="#BDC7CE"
12
+ fill-opacity="0.15"
13
+ />
14
+ <g clip-path="url(#clip0_2483_103844)">
15
+ <path
16
+ d="M133.854 113.628V54.4027C133.854 54.4027 104.219 62.2566 77.4298 55.0851C49.1406 47.5274 19.21 53.1409 19.21 53.1409V112.367C19.21 112.367 47.1145 106.174 75.4037 113.731C102.205 120.916 133.854 113.628 133.854 113.628Z"
17
+ class="fill-white dark:fill-gray-900"
18
+ />
19
+ <path
20
+ opacity="0.2"
21
+ d="M75.3519 110.976C47.0627 104.062 19.1582 109.16 19.1582 109.16V112.302C19.1582 112.302 47.0627 106.637 75.3519 113.589C102.205 120.156 133.854 113.486 133.854 113.486V109.624C133.854 109.624 102.205 117.555 75.3519 110.976Z"
22
+ fill="#BDC7CE"
23
+ />
24
+ <path
25
+ d="M19.1582 106.148V112.366C19.1582 112.366 47.0627 106.173 75.3519 113.731C102.205 120.902 133.854 113.628 133.854 113.628V54.4023C133.854 54.4023 132.379 54.7886 129.789 55.3165"
26
+ stroke="#9DA3AC"
27
+ stroke-width="1.29167"
28
+ stroke-miterlimit="10"
29
+ />
30
+ <path
31
+ d="M73.5561 104.538C55.8444 100.016 37.4132 99.0791 19.3373 101.783V47.3467C16.5417 47.7072 14.9387 48.0033 14.9387 48.0033V107.229C14.9387 107.229 44.8694 101.603 73.1586 109.199C99.9987 116.37 129.583 108.516 129.583 108.516V104.654C120.414 106.559 94.1639 110.049 73.5561 104.538Z"
32
+ fill="#BDC7CE"
33
+ fill-opacity="0.2"
34
+ />
35
+ <path
36
+ opacity="0.2"
37
+ d="M75.48 95.6802C67.401 95.6802 60.8481 86.1655 60.8481 74.4234C60.7734 69.5063 62.0275 64.6608 64.4772 60.4023C60.3223 64.1619 57.5652 70.8183 57.5652 78.4275C57.5652 90.1697 64.1053 99.6972 72.1843 99.6972C76.5828 99.6972 80.5197 96.8647 83.1999 92.4099C81.1255 94.4325 78.3704 95.5995 75.48 95.6802Z"
38
+ fill="#BDC7CE"
39
+ />
40
+ <path
41
+ opacity="0.2"
42
+ d="M39.7021 77.2689C39.1824 77.2689 38.6679 77.1653 38.1884 76.9641C37.709 76.7629 37.2741 76.4681 36.909 76.0967C36.544 75.7254 36.256 75.285 36.0618 74.8011C35.8677 74.3171 35.7712 73.7992 35.778 73.2776C35.7782 73.0139 35.8039 72.7508 35.8549 72.4922C35.2942 72.8287 34.826 73.3005 34.4929 73.8647C34.1597 74.429 33.9722 75.0678 33.9472 75.7232C33.9222 76.3786 34.0606 77.0299 34.3499 77.6181C34.6391 78.2062 35.07 78.7125 35.6035 79.0911C36.137 79.4697 36.7562 79.7085 37.405 79.786C38.0537 79.8635 38.7114 79.7771 39.3185 79.5347C39.9255 79.2924 40.4627 78.9016 40.8813 78.398C41.2998 77.8944 41.5866 77.2939 41.7154 76.6508C41.1146 77.0408 40.4174 77.2548 39.7021 77.2689Z"
43
+ fill="#BDC7CE"
44
+ />
45
+ <path
46
+ opacity="0.2"
47
+ d="M108.578 83.7838C107.997 83.7817 107.424 83.6505 106.899 83.3997C106.374 83.1488 105.912 82.7844 105.544 82.3327C105.176 81.881 104.912 81.3532 104.772 80.7872C104.631 80.2211 104.617 79.6307 104.731 79.0586C104.146 79.4005 103.662 79.8913 103.326 80.4813C102.991 81.0713 102.816 81.7397 102.82 82.419C102.818 83.3972 103.178 84.3412 103.831 85.0674C104.483 85.7936 105.382 86.2501 106.351 86.3481C107.321 86.446 108.292 86.1785 109.075 85.5974C109.859 85.0164 110.399 84.1634 110.591 83.2044C109.987 83.5807 109.29 83.7813 108.578 83.7838Z"
48
+ fill="#BDC7CE"
49
+ />
50
+ <path
51
+ d="M106.719 86.3581C108.886 86.3581 110.643 84.5942 110.643 82.4183C110.643 80.2424 108.886 78.4785 106.719 78.4785C104.552 78.4785 102.795 80.2424 102.795 82.4183C102.795 84.5942 104.552 86.3581 106.719 86.3581Z"
52
+ stroke="#9DA3AC"
53
+ stroke-width="1.29167"
54
+ stroke-miterlimit="10"
55
+ />
56
+ <path
57
+ d="M72.2869 75.7109V88.9723"
58
+ stroke="#9DA3AC"
59
+ stroke-width="1.29167"
60
+ stroke-linecap="round"
61
+ stroke-linejoin="round"
62
+ />
63
+ <path
64
+ d="M65.4009 70.5732H79.1864"
65
+ stroke="#9DA3AC"
66
+ stroke-width="1.29167"
67
+ stroke-linecap="round"
68
+ stroke-linejoin="round"
69
+ />
70
+ <path
71
+ d="M65.4009 75.7109H79.1864"
72
+ stroke="#9DA3AC"
73
+ stroke-width="1.29167"
74
+ stroke-linecap="round"
75
+ stroke-linejoin="round"
76
+ />
77
+ <path
78
+ d="M37.8684 79.779C40.0356 79.779 41.7925 78.0151 41.7925 75.8392C41.7925 73.6633 40.0356 71.8994 37.8684 71.8994C35.7012 71.8994 33.9443 73.6633 33.9443 75.8392C33.9443 78.0151 35.7012 79.779 37.8684 79.779Z"
79
+ stroke="#9DA3AC"
80
+ stroke-width="1.29167"
81
+ stroke-miterlimit="10"
82
+ />
83
+ <path
84
+ d="M72.1971 99.7484C80.2781 99.7484 86.829 90.2256 86.829 78.4787C86.829 66.7318 80.2781 57.209 72.1971 57.209C64.1161 57.209 57.5652 66.7318 57.5652 78.4787C57.5652 90.2256 64.1161 99.7484 72.1971 99.7484Z"
85
+ stroke="#9DA3AC"
86
+ stroke-width="1.29167"
87
+ stroke-miterlimit="10"
88
+ />
89
+ <path
90
+ d="M129.532 107.886V48.6599C129.532 48.6599 99.909 56.5137 73.1073 49.3423C44.7668 41.7717 14.8618 47.3853 14.8618 47.3853V106.611C14.8618 106.611 44.7796 100.997 73.0689 108.555C99.909 115.765 129.532 107.886 129.532 107.886Z"
91
+ stroke="#9DA3AC"
92
+ stroke-width="1.29167"
93
+ stroke-miterlimit="10"
94
+ />
95
+ <path
96
+ d="M126.583 63.2923C133.717 63.2923 139.5 57.5093 139.5 50.3757C139.5 43.242 133.717 37.459 126.583 37.459C119.45 37.459 113.667 43.242 113.667 50.3757C113.667 57.5093 119.45 63.2923 126.583 63.2923Z"
97
+ fill="#BDC7CE"
98
+ />
99
+ <path
100
+ d="M121.622 56.0454L132.446 43.917"
101
+ class="stroke-white dark:stroke-gray-900"
102
+ stroke-width="1.29167"
103
+ stroke-miterlimit="10"
104
+ stroke-linecap="round"
105
+ />
106
+ <path
107
+ d="M123.366 48.0371C124.442 48.0371 125.315 47.1609 125.315 46.0801C125.315 44.9992 124.442 44.123 123.366 44.123C122.289 44.123 121.417 44.9992 121.417 46.0801C121.417 47.1609 122.289 48.0371 123.366 48.0371Z"
108
+ class="stroke-white dark:stroke-gray-900"
109
+ stroke-width="1.29167"
110
+ stroke-miterlimit="10"
111
+ stroke-linecap="round"
112
+ />
113
+ <path
114
+ d="M130.83 55.75C131.906 55.75 132.779 54.8738 132.779 53.793C132.779 52.7121 131.906 51.8359 130.83 51.8359C129.753 51.8359 128.88 52.7121 128.88 53.793C128.88 54.8738 129.753 55.75 130.83 55.75Z"
115
+ class="stroke-white dark:stroke-gray-900"
116
+ stroke-width="1.29167"
117
+ stroke-miterlimit="10"
118
+ stroke-linecap="round"
119
+ />
120
+ </g>
121
+ <defs>
122
+ <clipPath id="clip0_2483_103844">
123
+ <rect
124
+ width="126.583"
125
+ height="80.0833"
126
+ class="dark:fill-bg-gray-900 fill-white"
127
+ transform="translate(14.2085 37.459)"
128
+ />
129
+ </clipPath>
130
+ </defs>
131
+ </svg>
132
+ </template>
133
+ <script setup lang="ts"></script>
@@ -0,0 +1,82 @@
1
+ <template>
2
+ <svg width="156" height="155" viewBox="0 0 156 155" fill="none" xmlns="https://www.w3.org/2000/svg">
3
+ <ellipse cx="78.6392" cy="77.5001" rx="63.9439" ry="64.5833" fill="#BDC7CE" fill-opacity="0.15"/>
4
+ <g clip-path="url(#clip0_4605_64076)">
5
+ <path d="M60.019 54.1465H24.6836V137.679H60.019V54.1465Z" class="dark:fill-gray-900 fill-white"/>
6
+ <path d="M107.324 16.2751H60.1465V137.679H107.324V16.2751Z" class="dark:fill-gray-900 fill-white"/>
7
+ <path d="M130.945 99.7554H107.35V137.679H130.945V99.7554Z" class="dark:fill-gray-900 fill-white"/>
8
+ <path opacity="0.2"
9
+ d="M42.6636 23.6891C41.4701 24.3813 40.4888 25.3927 39.8277 26.612C39.1666 27.8312 38.8513 29.211 38.9165 30.5995H34.709C34.709 26.5049 37.2667 23.1853 40.5535 23.1853C41.2858 23.1879 42.0077 23.3602 42.6636 23.6891V23.6891Z"
10
+ fill="#BDC7CE"/>
11
+ <path opacity="0.2"
12
+ d="M130.383 56.6909C129.421 57.2419 128.63 58.0517 128.097 59.03C127.564 60.0084 127.311 61.1169 127.365 62.2322H123.988C123.988 58.9513 126.086 56.2776 128.682 56.2776C129.273 56.2764 129.856 56.4181 130.383 56.6909V56.6909Z"
13
+ fill="#BDC7CE"/>
14
+ <path opacity="0.2" d="M32.5625 63.7439H38.4837V71.3131" fill="#BDC7CE"/>
15
+ <path opacity="0.2" d="M112.158 130.626V99.9619H107.541V137.769H130.944V130.626H112.158Z" fill="#BDC7CE"/>
16
+ <path opacity="0.2" d="M65.0328 130.626V16.2751H60.416V137.769H65.0328V130.626Z" fill="#BDC7CE"/>
17
+ <path opacity="0.2" d="M29.3003 130.626V54.1465H24.6836V137.769H60.1085V130.626H29.3003Z" fill="#BDC7CE"/>
18
+ <path d="M14.1211 137.769H141.638" stroke="#9DA3AC" stroke-width="1.29167" stroke-linecap="round"
19
+ stroke-linejoin="round"/>
20
+ <path d="M71.9121 46.5518H95.5202" stroke="#9DA3AC" stroke-width="1.29167" stroke-linecap="round"
21
+ stroke-linejoin="round"/>
22
+ <path d="M71.9121 31.3489H95.5202" stroke="#9DA3AC" stroke-width="1.29167" stroke-linecap="round"
23
+ stroke-linejoin="round"/>
24
+ <path d="M71.9121 61.7546H95.5202" stroke="#9DA3AC" stroke-width="1.29167" stroke-linecap="round"
25
+ stroke-linejoin="round"/>
26
+ <path d="M71.9121 76.9446H95.5202" stroke="#9DA3AC" stroke-width="1.29167" stroke-linecap="round"
27
+ stroke-linejoin="round"/>
28
+ <path d="M71.9121 107.364H95.5202" stroke="#9DA3AC" stroke-width="1.29167" stroke-linecap="round"
29
+ stroke-linejoin="round"/>
30
+ <path d="M71.9121 122.566H95.5202" stroke="#9DA3AC" stroke-width="1.29167" stroke-linecap="round"
31
+ stroke-linejoin="round"/>
32
+ <path d="M71.9121 92.1606H95.5202" stroke="#9DA3AC" stroke-width="1.29167" stroke-linecap="round"
33
+ stroke-linejoin="round"/>
34
+ <path d="M60.1582 137.769V16.1458H107.387V137.769" stroke="#9DA3AC" stroke-width="1.29167" stroke-linecap="round"
35
+ stroke-linejoin="round"/>
36
+ <path d="M24.6836 137.769V54.1594H60.1597" stroke="#9DA3AC" stroke-width="1.29167" stroke-linecap="round"
37
+ stroke-linejoin="round"/>
38
+ <path d="M32.8809 63.7698H38.7893V71.3389" stroke="#9DA3AC" stroke-width="1.29167" stroke-linecap="round"
39
+ stroke-linejoin="round"/>
40
+ <path opacity="0.2" d="M44.4824 63.7439H50.4036V71.3131" fill="#BDC7CE"/>
41
+ <path opacity="0.2" d="M32.5625 80.5356H38.4837V88.0919" fill="#BDC7CE"/>
42
+ <path opacity="0.2" d="M44.4824 80.5356H50.4036V88.0919" fill="#BDC7CE"/>
43
+ <path opacity="0.2" d="M32.5625 96.991H38.4837V104.56" fill="#BDC7CE"/>
44
+ <path opacity="0.2" d="M44.4824 96.991H50.4036V104.56" fill="#BDC7CE"/>
45
+ <path opacity="0.2" d="M32.5625 113.396H38.4837V120.965" fill="#BDC7CE"/>
46
+ <path opacity="0.2" d="M44.4824 113.396H50.4036V120.965" fill="#BDC7CE"/>
47
+ <path d="M44.6465 63.7698H50.5677V71.3389" stroke="#9DA3AC" stroke-width="1.29167" stroke-linecap="round"
48
+ stroke-linejoin="round"/>
49
+ <path d="M32.8809 80.251H38.7893V87.8201" stroke="#9DA3AC" stroke-width="1.29167" stroke-linecap="round"
50
+ stroke-linejoin="round"/>
51
+ <path d="M44.6465 80.251H50.5677V87.8201" stroke="#9DA3AC" stroke-width="1.29167" stroke-linecap="round"
52
+ stroke-linejoin="round"/>
53
+ <path opacity="0.2" d="M115.934 105.981H121.855V113.55" fill="#BDC7CE"/>
54
+ <path opacity="0.2" d="M115.934 122.76H121.855V130.329" fill="#BDC7CE"/>
55
+ <path d="M116.111 106.007H122.033V113.576" stroke="#9DA3AC" stroke-width="1.29167" stroke-linecap="round"
56
+ stroke-linejoin="round"/>
57
+ <path d="M116.111 122.489H122.033V130.058" stroke="#9DA3AC" stroke-width="1.29167" stroke-linecap="round"
58
+ stroke-linejoin="round"/>
59
+ <path d="M32.8809 96.7327H38.7893V104.302" stroke="#9DA3AC" stroke-width="1.29167" stroke-linecap="round"
60
+ stroke-linejoin="round"/>
61
+ <path d="M44.6465 96.7332H50.5677V104.302" stroke="#9DA3AC" stroke-width="1.29167" stroke-linecap="round"
62
+ stroke-linejoin="round"/>
63
+ <path d="M32.8809 113.214H38.7893V120.784" stroke="#9DA3AC" stroke-width="1.29167" stroke-linecap="round"
64
+ stroke-linejoin="round"/>
65
+ <path d="M44.6465 113.214H50.5677V120.784" stroke="#9DA3AC" stroke-width="1.29167" stroke-linecap="round"
66
+ stroke-linejoin="round"/>
67
+ <path d="M130.945 137.769V99.7683H107.324" stroke="#9DA3AC" stroke-width="1.29167" stroke-linecap="round"
68
+ stroke-linejoin="round"/>
69
+ <path
70
+ d="M26.832 29.9924H34.7099C34.7099 26.2336 37.1142 23.1853 40.0812 23.1853C43.0482 23.1853 45.4397 26.2336 45.4397 29.9924H50.2099"
71
+ stroke="#9DA3AC" stroke-width="1.29167" stroke-linecap="round" stroke-linejoin="round"/>
72
+ <path
73
+ d="M136.521 61.7675H132.825C132.825 58.7063 130.855 56.2134 128.438 56.2134C126.021 56.2134 124.064 58.7063 124.064 61.7675H119.141"
74
+ stroke="#9DA3AC" stroke-width="1.29167" stroke-linecap="round" stroke-linejoin="round"/>
75
+ </g>
76
+ <defs>
77
+ <clipPath id="clip0_4605_64076">
78
+ <rect width="128.796" height="122.915" class="dark:fill-gray-900 fill-white" transform="translate(13.416 15.5)"/>
79
+ </clipPath>
80
+ </defs>
81
+ </svg>
82
+ </template>
@@ -0,0 +1,156 @@
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.4998" cy="77.4998" r="64.5833" fill="#BDC7CE" fill-opacity="0.15" />
10
+ <g clip-path="url(#clip0_2938_133785)">
11
+ <path
12
+ d="M23.8975 115.146C23.8975 115.146 19.716 119.331 16.6265 122.126H106.658C106.658 122.126 137.505 105.361 137.505 39.7666L23.8975 115.146Z"
13
+ class="fill-white dark:fill-gray-900"
14
+ />
15
+ <path
16
+ d="M27.0619 122.495C27.0619 122.495 21.7389 127.123 19.7908 128.539H107.379C107.379 128.539 141.116 114.199 141.116 42.992L129.403 36.5791H43.3163C43.3163 36.5791 48.3912 89.1012 13.2271 115.565H103.867C103.867 115.565 129.403 96.3389 129.403 36.5914"
17
+ class="fill-white dark:fill-gray-900"
18
+ />
19
+ <path
20
+ opacity="0.2"
21
+ d="M108.184 125.314H24.5667C23.1026 126.545 21.4896 127.874 20.5962 128.526H108.184C108.184 128.526 141.462 114.186 141.462 42.9916L139.067 41.7607C139.067 41.7607 140.234 104.204 108.184 125.314Z"
22
+ fill="#BDC7CE"
23
+ />
24
+ <path
25
+ opacity="0.2"
26
+ d="M104.115 118.913H20.4608C18.9842 120.144 17.3836 121.473 16.4902 122.126L105.48 122.544C105.48 122.544 136.376 104.536 136.376 40.1731L133.621 38.6714C133.584 101.139 104.115 118.913 104.115 118.913Z"
27
+ fill="#BDC7CE"
28
+ />
29
+ <path
30
+ d="M22.7194 115.614C22.7194 115.614 18.5378 119.799 15.4482 122.606H105.48C105.48 122.606 136.376 105.767 136.376 40.1729"
31
+ stroke="#9DA3AC"
32
+ stroke-width="1.22957"
33
+ stroke-linecap="round"
34
+ stroke-linejoin="round"
35
+ />
36
+ <path
37
+ d="M27.4216 122.495C27.4216 122.495 22.0986 127.123 20.1506 128.539H107.738C107.738 128.539 141.463 114.199 141.463 42.992L129.762 36.5791H43.6388C43.6388 36.5791 48.7136 89.1012 13.5371 115.615H104.227C104.227 115.615 129.762 96.3881 129.762 36.6406"
38
+ stroke="#9DA3AC"
39
+ stroke-width="1.22957"
40
+ stroke-linecap="round"
41
+ stroke-linejoin="round"
42
+ />
43
+ <path
44
+ d="M59.2594 93.8029C56.5696 98.2073 53.2934 102.232 49.5192 105.767H34.2202C38.0379 102.187 41.4043 98.1616 44.2459 93.7783L59.2594 93.8029Z"
45
+ class="fill-white dark:fill-gray-900"
46
+ stroke="#9DA3AC"
47
+ stroke-width="1.22957"
48
+ stroke-linecap="round"
49
+ stroke-linejoin="round"
50
+ />
51
+ <path
52
+ d="M66.4066 77.6665C65.1146 82.0229 63.3983 86.2442 61.2821 90.2708H46.3926C48.6524 86.2594 50.5101 82.0378 51.939 77.6665H66.4066Z"
53
+ class="fill-white dark:fill-gray-900"
54
+ stroke="#9DA3AC"
55
+ stroke-width="1.22957"
56
+ stroke-linecap="round"
57
+ stroke-linejoin="round"
58
+ />
59
+ <path
60
+ d="M87.3277 77.6665C86.2231 82.0121 84.6767 86.2352 82.712 90.2708H66.8174C68.9329 86.2454 70.6451 82.0237 71.9294 77.6665H87.3277Z"
61
+ class="fill-white dark:fill-gray-900"
62
+ stroke="#9DA3AC"
63
+ stroke-width="1.22957"
64
+ stroke-linecap="round"
65
+ stroke-linejoin="round"
66
+ />
67
+ <path
68
+ d="M69.5967 60.7412C69.2032 65.2591 68.4607 69.7404 67.3757 74.1456H53.0073C54.2224 69.7538 55.0731 65.2707 55.5509 60.7412H69.5967Z"
69
+ class="fill-white dark:fill-gray-900"
70
+ stroke="#9DA3AC"
71
+ stroke-width="1.22957"
72
+ stroke-linecap="round"
73
+ stroke-linejoin="round"
74
+ />
75
+ <path
76
+ d="M89.9082 60.7417C89.6605 65.2467 89.0757 69.7271 88.1587 74.1461H72.897C73.9845 69.7409 74.7312 65.2597 75.1304 60.7417H89.9082Z"
77
+ class="fill-white dark:fill-gray-900"
78
+ stroke="#9DA3AC"
79
+ stroke-width="1.22957"
80
+ stroke-linecap="round"
81
+ stroke-linejoin="round"
82
+ />
83
+ <path
84
+ d="M110.802 60.7412C110.587 65.2405 110.056 69.7195 109.214 74.1456H93.8525C94.7696 69.7266 95.3544 65.2462 95.6021 60.7412H110.802Z"
85
+ class="fill-white dark:fill-gray-900"
86
+ stroke="#9DA3AC"
87
+ stroke-width="1.22957"
88
+ stroke-linecap="round"
89
+ stroke-linejoin="round"
90
+ />
91
+ <path
92
+ d="M80.8375 93.8037C78.3184 98.2368 75.1533 102.277 71.4446 105.793H54.9917C58.7861 102.25 62.0831 98.2178 64.794 93.8037H80.8375Z"
93
+ class="fill-white dark:fill-gray-900"
94
+ stroke="#9DA3AC"
95
+ stroke-width="1.22957"
96
+ stroke-linecap="round"
97
+ stroke-linejoin="round"
98
+ />
99
+ <path
100
+ d="M102.676 93.8037C100.477 98.153 97.6931 102.186 94.4003 105.793H77.1533C80.8551 102.274 84.0156 98.2341 86.5337 93.8037H102.676Z"
101
+ class="fill-white dark:fill-gray-900"
102
+ stroke="#9DA3AC"
103
+ stroke-width="1.22957"
104
+ stroke-linecap="round"
105
+ stroke-linejoin="round"
106
+ />
107
+ <path
108
+ d="M108.47 77.6665C107.487 81.9837 106.108 86.2027 104.35 90.2708H88.4062C90.371 86.2352 91.9174 82.0121 93.022 77.6665H108.47Z"
109
+ class="fill-white dark:fill-gray-900"
110
+ stroke="#9DA3AC"
111
+ stroke-width="1.22957"
112
+ stroke-linecap="round"
113
+ stroke-linejoin="round"
114
+ />
115
+ <path
116
+ d="M43.5771 51.9404H129.192"
117
+ stroke="#9DA3AC"
118
+ stroke-width="1.22957"
119
+ stroke-linecap="round"
120
+ stroke-linejoin="round"
121
+ />
122
+ <path
123
+ d="M59.8422 43.3981C58.4745 42.5555 57.3522 41.3732 56.5866 39.9682C55.821 38.5631 55.4386 36.984 55.4773 35.3873C55.516 33.7906 55.9744 32.2316 56.8071 30.8646C57.6399 29.4977 58.8181 28.3702 60.2251 27.5938C61.6321 26.8175 63.2191 26.4191 64.8291 26.4382C66.439 26.4572 68.016 26.8931 69.4039 27.7027C70.7918 28.5122 71.9424 29.6673 72.742 31.0536C73.5416 32.4399 73.9623 34.0094 73.9625 35.6065"
124
+ stroke="#9DA3AC"
125
+ stroke-width="1.22957"
126
+ stroke-linecap="round"
127
+ stroke-linejoin="round"
128
+ />
129
+ <path
130
+ d="M83.1201 43.3981C81.7523 42.5555 80.63 41.3732 79.8644 39.9682C79.0988 38.5631 78.7164 36.984 78.7551 35.3873C78.7938 33.7906 79.2522 32.2316 80.085 30.8646C80.9177 29.4977 82.0959 28.3702 83.5029 27.5938C84.9099 26.8175 86.497 26.4191 88.1069 26.4382C89.7168 26.4572 91.2937 26.8931 92.6816 27.7027C94.0695 28.5122 95.2203 29.6673 96.0198 31.0536C96.8194 32.4399 97.2401 34.0094 97.2403 35.6065"
131
+ stroke="#9DA3AC"
132
+ stroke-width="1.22957"
133
+ stroke-linecap="round"
134
+ stroke-linejoin="round"
135
+ />
136
+ <path
137
+ d="M106.411 43.3981C105.043 42.5555 103.921 41.3732 103.155 39.9682C102.389 38.5631 102.007 36.984 102.046 35.3873C102.084 33.7906 102.543 32.2316 103.375 30.8646C104.208 29.4977 105.386 28.3702 106.793 27.5938C108.2 26.8175 109.787 26.4191 111.397 26.4382C113.007 26.4572 114.584 26.8931 115.972 27.7027C117.36 28.5122 118.511 29.6673 119.31 31.0536C120.11 32.4399 120.531 34.0094 120.531 35.6065"
138
+ stroke="#9DA3AC"
139
+ stroke-width="1.22957"
140
+ stroke-linecap="round"
141
+ stroke-linejoin="round"
142
+ />
143
+ </g>
144
+ <defs>
145
+ <clipPath id="clip0_2938_133785">
146
+ <rect
147
+ width="129.167"
148
+ height="103.333"
149
+ fill="white"
150
+ transform="translate(12.9165 25.8335)"
151
+ />
152
+ </clipPath>
153
+ </defs>
154
+ </svg>
155
+ </template>
156
+ <script setup lang="ts"></script>