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,20 @@
1
+ <template>
2
+ <svg width="18" height="18" viewBox="0 0 18 18" fill="none" xmlns="https://www.w3.org/2000/svg">
3
+ <path d="M16.5 0H1.5C1.10218 0 0.720644 0.158035 0.43934 0.43934C0.158035 0.720644 0 1.10218 0
4
+ 1.5V16.5C0 16.8978 0.158035 17.2794 0.43934 17.5607C0.720644 17.842 1.10218 18 1.5 18H16.5C16.8978
5
+ 18 17.2794 17.842 17.5607 17.5607C17.842 17.2794 18 16.8978 18 16.5V1.5C18 1.10218 17.842 0.720644 17.5607
6
+ 0.43934C17.2794 0.158035 16.8978 0 16.5 0ZM16.5 1.5V11.25H13.8094C13.6125 11.2495 13.4174 11.2881 13.2356 11.3636C13.0537
7
+ 11.4391 12.8887 11.5499 12.75 11.6897L10.9397 13.5H7.06031L5.25 11.6897C5.11122 11.5498 4.94601 11.4389 4.76398 11.3634C4.58196
8
+ 11.2879 4.38674 11.2494 4.18969 11.25H1.5V1.5H16.5ZM16.5 16.5H1.5V12.75H4.18969L6 14.5603C6.13878 14.7002 6.30399 14.8111 6.48602
9
+ 14.8866C6.66804 14.9621 6.86326 15.0006 7.06031 15H10.9397C11.1367 15.0006 11.332 14.9621 11.514 14.8866C11.696 14.8111 11.8612 14.7002
10
+ 12 14.5603L13.8103 12.75H16.5V16.5ZM5.46937 8.78063C5.32864 8.63989 5.24958 8.44902 5.24958 8.25C5.24958 8.05098 5.32864 7.86011 5.46937
11
+ 7.71937C5.61011 7.57864 5.80098 7.49958 6 7.49958C6.19902 7.49958 6.38989 7.57864 6.53063 7.71937L8.25 9.43969V3.75C8.25 3.55109 8.32902
12
+ 3.36032 8.46967 3.21967C8.61032 3.07902 8.80109 3 9 3C9.19891 3 9.38968 3.07902 9.53033 3.21967C9.67098 3.36032 9.75 3.55109 9.75
13
+ 3.75V9.43969L11.4694 7.71937C11.5391 7.64969 11.6218 7.59442 11.7128 7.5567C11.8039 7.51899 11.9015 7.49958 12 7.49958C12.0985 7.49958 12.1961
14
+ 7.51899 12.2872 7.5567C12.3782 7.59442 12.4609 7.64969 12.5306 7.71937C12.6003 7.78906 12.6556 7.87178 12.6933 7.96283C12.731 8.05387 12.7504
15
+ 8.15145 12.7504 8.25C12.7504 8.34855 12.731 8.44613 12.6933 8.53717C12.6556 8.62822 12.6003 8.71094 12.5306 8.78063L9.53063 11.7806C9.46097 11.8504 9.37825
16
+ 11.9057 9.2872 11.9434C9.19616 11.9812 9.09856 12.0006 9 12.0006C8.90144 12.0006 8.80384 11.9812 8.7128 11.9434C8.62175 11.9057 8.53903 11.8504 8.46937 11.7806L5.46937 8.78063Z"
17
+ fill="currentColor"/>
18
+ </svg>
19
+
20
+ </template>
@@ -0,0 +1,16 @@
1
+ <template>
2
+ <svg
3
+ fill="currentColor"
4
+ height="16"
5
+ viewBox="0 0 17 16"
6
+ width="17"
7
+ xmlns="https://www.w3.org/2000/svg"
8
+ >
9
+ <path
10
+ clip-rule="evenodd"
11
+ d="M6.81607 2.19756C7.96368 1.7222 9.22649 1.59783 10.4448 1.84016C11.6631 2.0825 12.7822 2.68066 13.6605 3.55901C14.5389 4.43735 15.137 5.55643 15.3794 6.77474C15.6217 7.99304 15.4973 9.25584 15.022 10.4035C14.5466 11.5511 13.7416 12.532 12.7088 13.2221C11.676 13.9122 10.4617 14.2805 9.21952 14.2805C8.92957 14.2805 8.69452 14.0455 8.69452 13.7555C8.69452 13.4656 8.92957 13.2305 9.21952 13.2305C10.254 13.2305 11.2653 12.9238 12.1254 12.349C12.9856 11.7743 13.656 10.9574 14.0519 10.0016C14.4478 9.04589 14.5514 7.9942 14.3495 6.97958C14.1477 5.96496 13.6496 5.03297 12.9181 4.30146C12.1866 3.56996 11.2546 3.0718 10.2399 2.86998C9.22532 2.66816 8.17364 2.77174 7.21788 3.16763C6.26213 3.56352 5.44523 4.23392 4.8705 5.09408C4.40384 5.79249 4.11384 6.59051 4.02128 7.41971L4.53165 6.90934C4.73667 6.70432 5.06908 6.70432 5.27411 6.90934C5.47913 7.11437 5.47913 7.44678 5.27411 7.6518L3.83523 9.09068C3.6302 9.2957 3.29779 9.2957 3.09277 9.09068L1.65389 7.6518C1.44887 7.44678 1.44887 7.11437 1.65389 6.90934C1.85891 6.70432 2.19132 6.70432 2.39635 6.90934L2.96106 7.47405C3.04985 6.41734 3.40514 5.3972 3.99746 4.51073C4.68757 3.47791 5.66845 2.67292 6.81607 2.19756Z"
12
+ fill="currentColor"
13
+ fill-rule="evenodd"
14
+ />
15
+ </svg>
16
+ </template>
@@ -0,0 +1,9 @@
1
+ <template>
2
+ <svg fill="currentColor" height="16" viewBox="0 0 16 16" width="16" xmlns="https://www.w3.org/2000/svg">
3
+ <path clip-rule="evenodd" d="M9.69349 13.2928C9.49265 13.4936 9.49265 13.8192 9.69349 14.0201C9.89433 14.2209 10.22 14.2209 10.4208 14.0201L13.8494 10.5915C13.9498 10.4911 14 10.3595 14 10.2278C14 10.1581 13.9861 10.0916 13.961 10.031C13.9359 9.97032 13.8987 9.91349 13.8494 9.86418L10.4208 6.43561C10.22 6.23477 9.89433 6.23477 9.69349 6.43561C9.49265 6.63645 9.49265 6.96208 9.69349 7.16292L12.2441 9.71355H5.25714C4.66609 9.71355 4.09924 9.47875 3.6813 9.06082C3.26337 8.64288 3.02857 8.07603 3.02857 7.48498V2.34363C3.02857 2.0596 2.79832 1.82935 2.51429 1.82935C2.23025 1.82935 2 2.0596 2 2.34363V7.48498C2 8.34883 2.34316 9.17729 2.95399 9.78813C3.56483 10.399 4.3933 10.7421 5.25714 10.7421H12.2441L9.69349 13.2928Z"
4
+ fill="currentColor"
5
+ fill-rule="evenodd"/>
6
+ </svg>
7
+ </template>
8
+ <script setup lang="ts">
9
+ </script>
@@ -0,0 +1,13 @@
1
+ <script setup lang="ts">
2
+
3
+ </script>
4
+
5
+ <template>
6
+ <svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="https://www.w3.org/2000/svg">
7
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M1.89695 4.15353C1.69232 3.94938 1.35991 3.94874 1.15449 4.1521C0.949065 4.35546 0.948424 4.68581 1.15305 4.88995L4.789 8.5173L4.79274 8.52096C4.98384 8.70783 5.24118 8.81285 5.50962 8.81285C5.77805 8.81285 6.03541 8.70785 6.22651 8.52098L8.49808 6.25481L13.211 10.9565H10.4904C10.2004 10.9565 9.96539 11.1901 9.96539 11.4783C9.96539 11.7664 10.2004 12 10.4904 12H14.475C14.765 12 15 11.7664 15 11.4783V7.5031C15 7.21495 14.765 6.98136 14.475 6.98136C14.1851 6.98136 13.95 7.21495 13.95 7.5031V10.2152L9.2187 5.49512L9.21495 5.49146C9.02386 5.30459 8.76651 5.19957 8.49808 5.19957C8.22964 5.19957 7.97228 5.30458 7.78118 5.49144L5.50962 7.75762L1.89695 4.15353Z" fill="currentColor"/>
8
+ </svg>
9
+ </template>
10
+
11
+ <style scoped>
12
+
13
+ </style>
@@ -0,0 +1,14 @@
1
+ <script setup lang="ts">
2
+
3
+ </script>
4
+
5
+ <template>
6
+ <svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="https://www.w3.org/2000/svg">
7
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M15 8.4969C15 8.78505 14.765 9.01864 14.475 9.01864C14.1851 9.01864 13.95 8.78505 13.95 8.4969V5.78476L9.2187 10.5049L9.21495 10.5085C9.02386 10.6954 8.76651 10.8004 8.49808 10.8004C8.22964 10.8004 7.97228 10.6954 7.78118 10.5086L5.50962 8.24238L1.89695 11.8465C1.69232 12.0506 1.35991 12.0513 1.15449 11.8479C0.949065 11.6445 0.948424 11.3142 1.15305 11.11L4.789 7.4827L4.79274 7.47904C4.98384 7.29217 5.24118 7.18715 5.50962 7.18715C5.77805 7.18715 6.03541 7.29215 6.22651 7.47902L8.49808 9.74519L13.211 5.04348H10.4904C10.2004 5.04348 9.96539 4.80989 9.96539 4.52174C9.96539 4.23359 10.2004 4 10.4904 4H14.475C14.765 4 15 4.23359 15 4.52174V8.4969Z" fill="currentColor"/>
8
+ </svg>
9
+
10
+ </template>
11
+
12
+ <style scoped>
13
+
14
+ </style>
@@ -0,0 +1,15 @@
1
+ <template>
2
+ <svg
3
+ width="41"
4
+ height="40"
5
+ viewBox="0 0 41 40"
6
+ fill="none"
7
+ xmlns="https://www.w3.org/2000/svg"
8
+ >
9
+ <path
10
+ d="M33.167 5H8.16699C7.50395 5 6.86807 5.26339 6.39923 5.73223C5.93038 6.20107 5.66699 6.83696 5.66699 7.5V32.5C5.66699 33.163 5.93038 33.7989 6.39923 34.2678C6.86807 34.7366 7.50395 35 8.16699 35H33.167C33.83 35 34.4659 34.7366 34.9348 34.2678C35.4036 33.7989 35.667 33.163 35.667 32.5V7.5C35.667 6.83696 35.4036 6.20107 34.9348 5.73223C34.4659 5.26339 33.83 5 33.167 5ZM33.167 7.5V23.75H28.6826C28.3545 23.7492 28.0294 23.8135 27.7263 23.9393C27.4232 24.0651 27.1481 24.2498 26.917 24.4828L23.8998 27.5H17.4342L14.417 24.4828C14.1857 24.2497 13.9103 24.0648 13.607 23.939C13.3036 23.8132 12.9782 23.749 12.6498 23.75H8.16699V7.5H33.167ZM33.167 32.5H8.16699V26.25H12.6498L15.667 29.2672C15.8983 29.5003 16.1736 29.6852 16.477 29.811C16.7804 29.9368 17.1058 30.001 17.4342 30H23.8998C24.2282 30.001 24.5536 29.9368 24.857 29.811C25.1603 29.6852 25.4357 29.5003 25.667 29.2672L28.6842 26.25H33.167V32.5ZM14.7826 19.6344C14.5481 19.3998 14.4163 19.0817 14.4163 18.75C14.4163 18.4183 14.5481 18.1002 14.7826 17.8656C15.0172 17.6311 15.3353 17.4993 15.667 17.4993C15.9987 17.4993 16.3168 17.6311 16.5514 17.8656L19.417 20.7328V11.25C19.417 10.9185 19.5487 10.6005 19.7831 10.3661C20.0175 10.1317 20.3355 10 20.667 10C20.9985 10 21.3165 10.1317 21.5509 10.3661C21.7853 10.6005 21.917 10.9185 21.917 11.25V20.7328L24.7826 17.8656C24.8988 17.7495 25.0366 17.6574 25.1884 17.5945C25.3401 17.5317 25.5027 17.4993 25.667 17.4993C25.8312 17.4993 25.9939 17.5317 26.1456 17.5945C26.2974 17.6574 26.4352 17.7495 26.5514 17.8656C26.6675 17.9818 26.7596 18.1196 26.8225 18.2714C26.8853 18.4231 26.9177 18.5858 26.9177 18.75C26.9177 18.9142 26.8853 19.0769 26.8225 19.2286C26.7596 19.3804 26.6675 19.5182 26.5514 19.6344L21.5514 24.6344C21.4353 24.7506 21.2974 24.8428 21.1457 24.9057C20.9939 24.9686 20.8313 25.001 20.667 25.001C20.5027 25.001 20.3401 24.9686 20.1883 24.9057C20.0366 24.8428 19.8987 24.7506 19.7826 24.6344L14.7826 19.6344Z"
11
+ fill="currentColor"
12
+ />
13
+ </svg>
14
+ </template>
15
+ <script setup lang="ts"></script>
@@ -0,0 +1,6 @@
1
+ <template>
2
+ <svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="https://www.w3.org/2000/svg">
3
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M2.52111 2.05C2.39615 2.05 2.27631 2.09964 2.18796 2.188C2.0996 2.27636 2.04996 2.3962 2.04996 2.52116V13.4789C2.04996 13.6038 2.0996 13.7237 2.18796 13.812C2.27632 13.9004 2.39615 13.95 2.52111 13.95H13.4788C13.6038 13.95 13.7236 13.9004 13.812 13.812C13.9003 13.7237 13.95 13.6038 13.95 13.4789V8.99617C13.95 8.70622 14.185 8.47117 14.475 8.47117C14.7649 8.47117 15 8.70622 15 8.99617V13.4789C15 13.8823 14.8397 14.2692 14.5544 14.5545C14.2692 14.8398 13.8823 15 13.4788 15H2.52111C2.11768 15 1.73076 14.8398 1.44549 14.5545C1.16022 14.2692 0.999954 13.8823 0.999954 13.4789V2.52116C0.999954 2.11772 1.16022 1.73081 1.44549 1.44554C1.73076 1.16026 2.11768 1 2.52111 1H7.00381C7.29377 1 7.52882 1.23505 7.52882 1.525C7.52882 1.81495 7.29377 2.05 7.00381 2.05H2.52111ZM10.4635 1.525C10.4635 1.23505 10.6985 1 10.9885 1H14.475C14.6141 1 14.7406 1.0541 14.8345 1.14241C14.8426 1.14999 14.8504 1.15781 14.858 1.16588C14.9013 1.21199 14.9347 1.26402 14.9582 1.31925C14.9851 1.38244 15 1.45198 15 1.525V5.01155C15 5.3015 14.765 5.53655 14.475 5.53655C14.1851 5.53655 13.95 5.3015 13.95 5.01155V2.79246L8.37122 8.37125C8.16619 8.57627 7.83378 8.57627 7.62875 8.37125C7.42373 8.16622 7.42373 7.83381 7.62875 7.62878L13.2075 2.05H10.9885C10.6985 2.05 10.4635 1.81495 10.4635 1.525Z" fill="currentColor"/>
4
+ </svg>
5
+
6
+ </template>
@@ -0,0 +1,5 @@
1
+ <template>
2
+ <svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="https://www.w3.org/2000/svg">
3
+ <path d="M5.83494 6.75C6.79719 5.08333 9.20281 5.08333 10.1651 6.75C11.1273 8.41667 9.9245 10.5 8 10.5C6.0755 10.5 4.87269 8.41667 5.83494 6.75Z" fill="#9DA3AC"/>
4
+ </svg>
5
+ </template>
@@ -0,0 +1,5 @@
1
+ <template>
2
+ <svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="https://www.w3.org/2000/svg">
3
+ <path d="M8 4L12.3301 11.5H3.66987L8 4Z" fill="#4CAF50"/>
4
+ </svg>
5
+ </template>
@@ -0,0 +1,5 @@
1
+ <template>
2
+ <svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="https://www.w3.org/2000/svg">
3
+ <path d="M8 12L12.3301 4.5H3.66987L8 12Z" fill="#E74135"/>
4
+ </svg>
5
+ </template>
@@ -0,0 +1,6 @@
1
+ <template>
2
+ <svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
3
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M5.25 4.5C4.83579 4.5 4.5 4.83579 4.5 5.25C4.5 5.66421 4.83579 6 5.25 6L16.9393 6L4.71967 18.2197C4.42678 18.5126 4.42678 18.9874 4.71967 19.2803C5.01256 19.5732 5.48744 19.5732 5.78033 19.2803L18 7.06066V18.75C18 19.1642 18.3358 19.5 18.75 19.5C19.1642 19.5 19.5 19.1642 19.5 18.75V5.25C19.5 5.04538 19.4181 4.85991 19.2852 4.72459C19.282 4.72129 19.2787 4.71803 19.2754 4.7148C19.2047 4.64531 19.1235 4.59268 19.0371 4.55691C18.9487 4.52024 18.8517 4.5 18.75 4.5H5.25Z"
4
+ fill="currentColor"/>
5
+ </svg>
6
+ </template>
@@ -0,0 +1,12 @@
1
+ <template>
2
+ <svg width="25" height="24" viewBox="0 0 25 24" fill="none" xmlns="https://www.w3.org/2000/svg">
3
+ <mask id="mask0_5312_309" style="mask-type:alpha" maskUnits="userSpaceOnUse" x="0" y="0" width="25" height="24">
4
+ <circle cx="12.3333" cy="12" r="12" class="fill-white dark:fill-[#26282B]"/>
5
+ </mask>
6
+ <g mask="url(#mask0_5312_309)">
7
+ <path d="M12.3333 13.2903C15.0947 13.2903 17.3333 11.0517 17.3333 8.29031C17.3333 5.52889 15.0947 3.29031 12.3333 3.29031C9.57189 3.29031 7.33331 5.52889 7.33331 8.29031C7.33331 11.0517 9.57189 13.2903 12.3333 13.2903Z" fill="currentColor" fill-opacity="0.8"/>
8
+ <path d="M12.5733 14.52C6.62084 14.52 1.77332 18.5016 1.77332 23.4075C1.77332 23.7393 2.0347 24 2.36737 24H22.7793C23.1119 24 23.3733 23.7393 23.3733 23.4075C23.3733 18.5016 18.5258 14.52 12.5733 14.52Z" fill="currentColor" fill-opacity="0.8"/>
9
+ </g>
10
+ </svg>
11
+
12
+ </template>
@@ -0,0 +1,16 @@
1
+ <template>
2
+ <svg
3
+ width="16"
4
+ height="17"
5
+ viewBox="0 0 16 17"
6
+ fill="none"
7
+ xmlns="https://www.w3.org/2000/svg"
8
+ >
9
+ <path
10
+ fill-rule="evenodd"
11
+ clip-rule="evenodd"
12
+ d="M2.05 8.5C2.05 5.21391 4.71391 2.55 8 2.55C9.45403 2.55 10.7862 3.07156 11.8198 3.9378L3.4378 12.3198C2.57156 11.2862 2.05 9.95403 2.05 8.5ZM4.18027 13.0622C5.21378 13.9284 6.54598 14.45 8 14.45C11.2861 14.45 13.95 11.7861 13.95 8.5C13.95 7.04598 13.4284 5.71378 12.5622 4.68027L4.18027 13.0622ZM8 1.5C4.13401 1.5 1 4.63401 1 8.5C1 12.366 4.13401 15.5 8 15.5C11.866 15.5 15 12.366 15 8.5C15 4.63401 11.866 1.5 8 1.5Z"
13
+ fill="currentColor"
14
+ />
15
+ </svg>
16
+ </template>
@@ -0,0 +1,18 @@
1
+ <script setup lang="ts">
2
+ </script>
3
+
4
+ <template>
5
+ <svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="https://www.w3.org/2000/svg">
6
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M3.13397 1.58033C3.4938 1.2105 3.98494 1 4.5002 1H11.5002C12.0155 1 12.5066 1.2105 12.8664 1.58033C13.2258 1.94967 13.4252 2.44761 13.4252 2.96389V14.475C13.4252 14.6729 13.3139 14.854 13.1374 14.9434C12.9609 15.0328 12.7491 15.0153 12.5895 14.8982L8.00021 11.5291L3.41088 14.8982C3.25136 15.0153 3.03955 15.0328 2.86301 14.9434C2.68647 14.854 2.5752 14.6729 2.5752 14.475V2.96389C2.5752 2.44761 2.77461 1.94967 3.13397 1.58033Z" fill="url(#paint0_linear_2287_15013)"/>
7
+ <defs>
8
+ <linearGradient id="paint0_linear_2287_15013" x1="8.40342" y1="-9.61211" x2="-3.2293" y2="-3.63487" gradientUnits="userSpaceOnUse">
9
+ <stop stop-color="#FFE364"/>
10
+ <stop offset="1" stop-color="#FBC920"/>
11
+ </linearGradient>
12
+ </defs>
13
+ </svg>
14
+ </template>
15
+
16
+ <style scoped>
17
+
18
+ </style>
@@ -0,0 +1,5 @@
1
+ <template>
2
+ <svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="https://www.w3.org/2000/svg">
3
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M4.49999 2.05C4.27263 2.05 4.05159 2.14269 3.88632 2.31255C3.72057 2.48291 3.62498 2.71694 3.62498 2.96389V13.4383L7.68931 10.4546C7.8742 10.3189 8.12579 10.3189 8.31068 10.4546L12.375 13.4383V2.96389C12.375 2.71694 12.2794 2.48291 12.1137 2.31255C11.9484 2.14269 11.7274 2.05 11.5 2.05H4.49999ZM3.13375 1.58033C3.49358 1.2105 3.98473 1 4.49999 1H11.5C12.0153 1 12.5064 1.2105 12.8662 1.58033C13.2256 1.94967 13.425 2.44761 13.425 2.96389V14.475C13.425 14.6729 13.3137 14.854 13.1372 14.9434C12.9607 15.0328 12.7488 15.0153 12.5893 14.8982L7.99999 11.5291L3.41067 14.8982C3.25115 15.0153 3.03934 15.0328 2.86279 14.9434C2.68625 14.854 2.57498 14.6729 2.57498 14.475V2.96389C2.57498 2.44761 2.7744 1.94967 3.13375 1.58033Z" fill="currentColor"/>
4
+ </svg>
5
+ </template>
@@ -0,0 +1,65 @@
1
+ <script lang="ts" setup></script>
2
+
3
+ <template>
4
+ <svg fill="none" height="24" viewBox="0 0 24 24" width="24" xmlns="https://www.w3.org/2000/svg">
5
+ <g clip-path="url(#clip0_984_69696)">
6
+ <path
7
+ d="M12 24C18.6274 24 24 18.6274 24 12C24 5.37258 18.6274 0 12 0C5.37258 0 0 5.37258 0 12C0 18.6274 5.37258 24 12 24Z"
8
+ fill="#DE5833"
9
+ />
10
+ <path
11
+ d="M22.1599 7.69998C21.6 6.37998 20.8 5.19998 19.8 4.19998C18.78 3.17998 17.5999 2.39998 16.3 1.83998C14.94 1.25998 13.5 0.97998 12 0.97998C10.52 0.97998 9.05998 1.27998 7.69998 1.83998C6.37998 2.37998 5.19998 3.17998 4.19998 4.19998C3.17998 5.21998 2.39998 6.39998 1.83998 7.69998C1.25998 9.05998 0.97998 10.5 0.97998 12C0.97998 13.5 1.27998 14.94 1.83998 16.3C2.39998 17.62 3.19998 18.7999 4.19998 19.8C5.21998 20.82 6.39998 21.6 7.69998 22.1599C9.05998 22.74 10.5 23.02 12 23.02C13.48 23.02 14.94 22.72 16.3 22.1599C17.5999 21.6 18.78 20.8 19.8 19.8C20.82 18.78 21.6 17.5999 22.1599 16.3C22.74 14.94 23.02 13.5 23.02 12C23.02 10.5 22.74 9.05998 22.1599 7.69998ZM14.4 21.9C13.7599 20.82 12.0799 17.8 12.0799 15.5599C12.0799 10.4 15.54 14.82 15.54 10.7C15.54 9.71998 15.06 6.27998 12.06 5.55998C11.32 4.57998 9.57998 3.63998 6.81998 4.01998C6.81998 4.01998 7.27998 4.15998 7.79998 4.41998C7.79998 4.41998 6.79998 4.55998 6.75998 5.23998C6.75998 5.23998 8.73998 5.13998 9.85998 5.49998C7.27998 5.83998 5.95998 7.19998 6.19998 9.65998C6.53998 13.16 8.01998 19.3999 8.53998 21.58C4.61998 20.1799 1.79998 16.42 1.79998 12C1.79998 6.37998 6.35998 1.79998 12 1.79998C17.64 1.79998 22.2 6.35998 22.2 12C22.18 16.8 18.8599 20.82 14.4 21.9Z"
12
+ fill="white"
13
+ />
14
+ <path
15
+ clip-rule="evenodd"
16
+ d="M11.4399 13.66C11.4399 12.34 13.2399 11.92 13.9199 11.92C15.7599 11.92 18.3599 10.74 18.9999 10.76C19.6599 10.78 20.0799 11.04 20.0799 11.34C20.0799 11.78 16.4 13.44 14.9799 13.3C13.6199 13.18 13.2999 13.32 13.2999 13.88C13.2999 14.36 14.2799 14.8 15.3599 14.8C16.9799 14.8 18.56 14.08 19.04 14.42C19.46 14.72 17.9399 15.8 16.1999 15.8C14.4599 15.8 11.4399 14.98 11.4399 13.66Z"
17
+ fill="#FED30A"
18
+ fill-rule="evenodd"
19
+ />
20
+ <path
21
+ d="M14.6399 8.05992C14.1599 7.43992 13.3 7.41992 13 8.13992C13.46 7.77992 14.02 7.69992 14.6399 8.05992Z"
22
+ fill="#2D4F8D"
23
+ />
24
+ <path
25
+ d="M9.30002 8.08011C8.64002 7.6801 7.54001 7.6401 7.60001 8.9001C7.92002 8.1201 8.36002 7.9801 9.30002 8.08011Z"
26
+ fill="#2D4F8D"
27
+ />
28
+ <path
29
+ d="M14.2401 9.24023C13.8801 9.24023 13.5801 9.54023 13.5801 9.90023C13.5801 10.2602 13.8801 10.5602 14.2401 10.5602C14.6001 10.5602 14.9001 10.2602 14.9001 9.90023C14.9001 9.54023 14.6001 9.24023 14.2401 9.24023ZM14.4801 9.86024C14.3801 9.86024 14.28 9.78023 14.28 9.66023C14.28 9.56024 14.3601 9.46024 14.4801 9.46024C14.6001 9.46024 14.6801 9.54023 14.6801 9.66023C14.6601 9.76024 14.58 9.86024 14.4801 9.86024Z"
30
+ fill="#2D4F8D"
31
+ />
32
+ <path
33
+ d="M9.1201 9.6001C8.7001 9.6001 8.36011 9.94009 8.36011 10.3601C8.36011 10.7801 8.7001 11.1201 9.1201 11.1201C9.5401 11.1201 9.8801 10.7801 9.8801 10.3601C9.8801 9.94009 9.5401 9.6001 9.1201 9.6001ZM9.4001 10.3001C9.2801 10.3001 9.1801 10.2001 9.1801 10.0801C9.1801 9.9601 9.2801 9.8601 9.4001 9.8601C9.5201 9.8601 9.62011 9.9601 9.62011 10.0801C9.62011 10.2001 9.5201 10.3001 9.4001 10.3001Z"
34
+ fill="#2D4F8D"
35
+ />
36
+ <path
37
+ d="M7.46001 6.35986C6.50001 7.05986 6.06001 8.13986 6.20001 9.65986C6.54001 13.1599 8.02 19.4198 8.54 21.5999L9.08001 21.7799C8.76001 20.4599 7.22 14.0198 6.54001 9.07985C6.36001 7.75986 6.88 6.97986 7.46001 6.35986Z"
38
+ fill="#D5D7D8"
39
+ />
40
+ <path
41
+ d="M9.83994 5.49996C9.91993 5.49996 9.97993 5.47997 9.97993 5.47997C8.93994 4.97997 7.29993 4.95996 6.85994 4.95996C6.81993 5.03996 6.77994 5.13996 6.77994 5.23997C6.75993 5.25996 8.69994 5.13996 9.83994 5.49996Z"
42
+ fill="#D5D7D8"
43
+ />
44
+ <path
45
+ d="M7.96007 4.41998C7.64006 4.19998 7.38007 4.05998 7.22006 3.97998C7.08007 3.99998 6.96007 3.99998 6.82007 4.01998C6.82007 4.01998 7.28006 4.15998 7.80007 4.41998H7.76006H7.96007Z"
46
+ fill="#D5D7D8"
47
+ />
48
+ <path
49
+ d="M16.0199 17.7201C15.68 17.6401 14.36 18.5802 13.8599 18.9402C13.8399 18.8401 13.82 18.7602 13.7999 18.7201C13.7399 18.5202 12.4599 18.6402 12.1599 18.9601C11.3599 18.5802 9.75993 17.8401 9.73992 18.3001C9.67992 18.9001 9.73994 21.4002 10.0599 21.5802C10.2999 21.7201 11.6599 20.9802 12.3399 20.6001H12.3599C12.7799 20.7001 13.5599 20.6001 13.8399 20.4201C13.88 20.4001 13.8999 20.3601 13.9199 20.3202C14.54 20.5602 15.8799 21.0402 16.16 20.9401C16.52 20.8401 16.4399 17.8201 16.0199 17.7201Z"
50
+ fill="#67BD47"
51
+ />
52
+ <path
53
+ d="M12.3599 20.6002C11.94 20.5202 12.0799 20.1002 12.0799 19.1201C11.98 19.1801 11.8999 19.2602 11.8999 19.3402C11.8999 20.3201 11.74 20.7602 12.1799 20.8202C12.5999 20.9201 13.3799 20.8202 13.6999 20.6402C13.7599 20.6002 13.78 20.5402 13.7999 20.4401C13.4999 20.6201 12.76 20.7002 12.3599 20.6002Z"
54
+ fill="#43A347"
55
+ />
56
+ </g>
57
+ <defs>
58
+ <clipPath id="clip0_984_69696">
59
+ <rect fill="white" height="24" width="24" />
60
+ </clipPath>
61
+ </defs>
62
+ </svg>
63
+ </template>
64
+
65
+ <style scoped></style>
@@ -0,0 +1,24 @@
1
+ <script lang="ts" setup></script>
2
+
3
+ <template>
4
+ <svg fill="none" height="24" viewBox="0 0 24 24" width="24" xmlns="https://www.w3.org/2000/svg">
5
+ <path
6
+ d="M22.501 12.2331C22.501 11.3698 22.4296 10.7398 22.2748 10.0864H12.2153V13.983H18.12C18.001 14.9514 17.3582 16.4097 15.9296 17.3897L15.9096 17.5202L19.0902 19.9349L19.3106 19.9564C21.3343 18.1247 22.501 15.4297 22.501 12.2331Z"
7
+ fill="#4285F4"
8
+ />
9
+ <path
10
+ d="M12.2147 22.5001C15.1075 22.5001 17.5361 21.5667 19.3099 19.9567L15.929 17.39C15.0242 18.0083 13.8099 18.44 12.2147 18.44C9.38142 18.44 6.97669 16.6083 6.11947 14.0767L5.99382 14.0871L2.68656 16.5955L2.64331 16.7133C4.40519 20.1433 8.02423 22.5001 12.2147 22.5001Z"
11
+ fill="#34A853"
12
+ />
13
+ <path
14
+ d="M6.11997 14.0765C5.89379 13.4232 5.76289 12.7231 5.76289 11.9998C5.76289 11.2764 5.89379 10.5765 6.10807 9.92313L6.10208 9.78398L2.75337 7.23535L2.64381 7.28642C1.91765 8.70977 1.50098 10.3081 1.50098 11.9998C1.50098 13.6915 1.91765 15.2897 2.64381 16.7131L6.11997 14.0765Z"
15
+ fill="#FBBC05"
16
+ />
17
+ <path
18
+ d="M12.2148 5.55997C14.2267 5.55997 15.5838 6.41163 16.3576 7.12335L19.3814 4.23C17.5243 2.53834 15.1076 1.5 12.2148 1.5C8.02426 1.5 4.4052 3.85665 2.64331 7.28662L6.10759 9.92332C6.97672 7.39166 9.38146 5.55997 12.2148 5.55997Z"
19
+ fill="#EB4335"
20
+ />
21
+ </svg>
22
+ </template>
23
+
24
+ <style scoped></style>
@@ -0,0 +1,13 @@
1
+ <script lang="ts" setup></script>
2
+
3
+ <template>
4
+ <svg fill="none" height="24" viewBox="0 0 24 24" width="24" xmlns="https://www.w3.org/2000/svg">
5
+ <circle cx="12" cy="12" fill="#FC3F1D" r="10.5" />
6
+ <path
7
+ d="M15.75 18.75H13.3928V7.07599H12.3409C10.4125 7.07599 9.39954 8.04685 9.39954 9.48449C9.39954 11.1158 10.1008 11.8736 11.5421 12.845L12.7304 13.6415L9.30193 18.75H6.75L9.82786 14.1853C8.05534 12.9224 7.06177 11.6988 7.06177 9.62055C7.06177 7.0174 8.87361 5.25 12.3215 5.25H15.75V18.75Z"
8
+ fill="white"
9
+ />
10
+ </svg>
11
+ </template>
12
+
13
+ <style scoped></style>
@@ -0,0 +1,7 @@
1
+ <template>
2
+ <svg width="40" height="40" viewBox="0 0 40 40" fill="none" xmlns="https://www.w3.org/2000/svg">
3
+ <path d="M4 31.3516C3.72386 31.3516 3.5 31.5754 3.5 31.8516C3.5 32.1277 3.72386 32.3516 4 32.3516L4 31.3516ZM36 32.3516C36.2761 32.3516 36.5 32.1277 36.5 31.8516C36.5 31.5754 36.2761 31.3516 36 31.3516V32.3516ZM15.5557 8.14795V7.64795C15.2795 7.64795 15.0557 7.87181 15.0557 8.14795H15.5557ZM27.4075 8.14795H27.9075C27.9075 7.87181 27.6837 7.64795 27.4075 7.64795V8.14795ZM6.66699 15.5552V15.0552C6.39085 15.0552 6.16699 15.279 6.16699 15.5552H6.66699ZM33.3332 24.4443H33.8332C33.8332 24.1682 33.6093 23.9443 33.3332 23.9443V24.4443ZM4 32.3516L36 32.3516V31.3516L4 31.3516L4 32.3516ZM18.5186 14.5737H24.4445V13.5737H18.5186V14.5737ZM18.5186 11.6108H24.4445V10.6108H18.5186V11.6108ZM18.5186 17.5366H24.4445V16.5366H18.5186V17.5366ZM18.5186 20.5H24.4445V19.5H18.5186V20.5ZM18.5186 26.4258H24.4445V25.4258H18.5186V26.4258ZM18.5186 29.3887H24.4445V28.3887H18.5186V29.3887ZM18.5186 23.4629H24.4445V22.4629H18.5186V23.4629ZM16.0557 31.8517V8.14795H15.0557V31.8517H16.0557ZM15.5557 8.64795H27.4075V7.64795H15.5557V8.64795ZM26.9075 8.14795V31.8517H27.9075V8.14795H26.9075ZM7.16699 31.8515V15.5552H6.16699V31.8515H7.16699ZM6.66699 16.0552H15.5559V15.0552H6.66699V16.0552ZM9.12988 21.4829V22.9687H10.1299V21.4829H9.12988ZM9.12988 18.5181V20.0039H10.1299V18.5181H9.12988ZM9.12988 24.4443V25.9302H10.1299V24.4443H9.12988ZM12.0771 21.4829V22.9687H13.0771V21.4829H12.0771ZM12.0771 18.5181V20.0039H13.0771V18.5181H12.0771ZM12.0771 27.4072V28.893H13.0771V27.4072H12.0771ZM9.12988 27.4072V28.893H10.1299V27.4072H9.12988ZM12.0771 24.4443V25.9302H13.0771V24.4443H12.0771ZM33.8332 31.8517V24.4443H32.8332V31.8517H33.8332ZM33.3332 23.9443H27.4072V24.9443H33.3332V23.9443ZM29.8701 25.9258V27.4073H30.8701V25.9258H29.8701ZM29.8701 28.8887V30.3701H30.8701V28.8887H29.8701Z" fill="currentColor"/>
4
+ </svg>
5
+ </template>
6
+ <script setup lang="ts">
7
+ </script>
@@ -0,0 +1,7 @@
1
+ <template>
2
+ <svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="https://www.w3.org/2000/svg">
3
+ <path fill-rule="evenodd" clip-rule="evenodd"
4
+ d="M3.77338 2.33301C3.53535 2.33301 3.33398 2.52924 3.33398 2.78173V6.0766H12.6673V2.78173C12.6673 2.52924 12.466 2.33301 12.2279 2.33301H3.77338ZM2.33398 2.78173V6.5766V13.2176C2.33398 14.0131 2.97378 14.6663 3.77338 14.6663H12.2279C13.0275 14.6663 13.6673 14.0131 13.6673 13.2176V6.5766V2.78173C13.6673 1.98629 13.0275 1.33301 12.2279 1.33301H3.77338C2.97378 1.33301 2.33398 1.98629 2.33398 2.78173ZM12.6673 13.2176V7.0766H3.33398V13.2176C3.33398 13.4701 3.53535 13.6663 3.77338 13.6663H12.2279C12.466 13.6663 12.6673 13.4701 12.6673 13.2176ZM11.3365 11.5599C11.3365 11.9742 11.0008 12.3099 10.5865 12.3099C10.1723 12.3099 9.83655 11.9742 9.83655 11.5599C9.83655 11.1457 10.1723 10.8099 10.5865 10.8099C11.0008 10.8099 11.3365 11.1457 11.3365 11.5599ZM10.5865 9.93557C11.0008 9.93557 11.3365 9.59978 11.3365 9.18557C11.3365 8.77135 11.0008 8.43557 10.5865 8.43557C10.1723 8.43557 9.83655 8.77135 9.83655 9.18557C9.83655 9.59978 10.1723 9.93557 10.5865 9.93557ZM8.75065 11.5599C8.75065 11.9742 8.41487 12.3099 8.00065 12.3099C7.58644 12.3099 7.25065 11.9742 7.25065 11.5599C7.25065 11.1457 7.58644 10.8099 8.00065 10.8099C8.41487 10.8099 8.75065 11.1457 8.75065 11.5599ZM8.00065 9.93557C8.41487 9.93557 8.75065 9.59978 8.75065 9.18557C8.75065 8.77135 8.41487 8.43557 8.00065 8.43557C7.58644 8.43557 7.25065 8.77135 7.25065 9.18557C7.25065 9.59978 7.58644 9.93557 8.00065 9.93557ZM6.16475 11.5599C6.16475 11.9742 5.82897 12.3099 5.41475 12.3099C5.00054 12.3099 4.66475 11.9742 4.66475 11.5599C4.66475 11.1457 5.00054 10.8099 5.41475 10.8099C5.82897 10.8099 6.16475 11.1457 6.16475 11.5599ZM5.41475 9.93557C5.82897 9.93557 6.16475 9.59978 6.16475 9.18557C6.16475 8.77135 5.82897 8.43557 5.41475 8.43557C5.00054 8.43557 4.66475 8.77135 4.66475 9.18557C4.66475 9.59978 5.00054 9.93557 5.41475 9.93557ZM9.87944 3.7048C9.60329 3.7048 9.37944 3.92866 9.37944 4.2048C9.37944 4.48095 9.60329 4.7048 9.87944 4.7048H10.8188C11.095 4.7048 11.3188 4.48095 11.3188 4.2048C11.3188 3.92866 11.095 3.7048 10.8188 3.7048H9.87944Z"
5
+ fill="currentColor"/>
6
+ </svg>
7
+ </template>
@@ -0,0 +1,24 @@
1
+ <script setup lang="ts">
2
+
3
+ </script>
4
+
5
+ <template>
6
+ <svg
7
+ width="16"
8
+ height="16"
9
+ viewBox="0 0 16 16"
10
+ fill="none"
11
+ xmlns="https://www.w3.org/2000/svg"
12
+ >
13
+ <path
14
+ fill-rule="evenodd"
15
+ clip-rule="evenodd"
16
+ d="M10.5666 1C10.8566 1 11.0916 1.23505 11.0916 1.525V2.295H12.4916C13.4948 2.295 14.2999 3.11434 14.2999 4.115V6.70493V13.18C14.2999 14.1807 13.4948 15 12.4916 15H3.50828C2.5051 15 1.69995 14.1807 1.69995 13.18V6.70493V4.115C1.69995 3.11434 2.5051 2.295 3.50828 2.295H4.90832V1.525C4.90832 1.23505 5.14337 1 5.43332 1C5.72327 1 5.95832 1.23505 5.95832 1.525V2.295H10.0416V1.525C10.0416 1.23505 10.2767 1 10.5666 1ZM4.90832 3.345V4.11439C4.90832 4.40434 5.14337 4.63939 5.43332 4.63939C5.72327 4.63939 5.95832 4.40434 5.95832 4.11439V3.345H10.0416V4.11439C10.0416 4.40434 10.2767 4.63939 10.5666 4.63939C10.8566 4.63939 11.0916 4.40434 11.0916 4.11439V3.345H12.4916C12.906 3.345 13.2499 3.68525 13.2499 4.115V6.17993H2.74995V4.115C2.74995 3.68525 3.09394 3.345 3.50828 3.345H4.90832ZM13.2499 7.22993V13.18C13.2499 13.6098 12.906 13.95 12.4916 13.95H3.50828C3.09394 13.95 2.74995 13.6098 2.74995 13.18V7.22993H13.2499Z"
17
+ fill="currentColor"
18
+ />
19
+ </svg>
20
+ </template>
21
+
22
+ <style scoped>
23
+
24
+ </style>
package/icons/car.vue ADDED
@@ -0,0 +1,7 @@
1
+ <template>
2
+ <svg width="16" height="16" viewBox="0 0 42 33" fill="none" xmlns="https://www.w3.org/2000/svg">
3
+ <path
4
+ d="M40.25 13.25H38.3937L33.6191 2.50781C33.403 2.0218 33.0506 1.60887 32.6046 1.31906C32.1586 1.02926 31.6381 0.875006 31.1063 0.875H10.8937C10.3619 0.875006 9.8414 1.02926 9.3954 1.31906C8.9494 1.60887 8.59702 2.0218 8.38094 2.50781L3.60625 13.25H1.75C1.38533 13.25 1.03559 13.3949 0.777728 13.6527C0.519866 13.9106 0.375 14.2603 0.375 14.625C0.375 14.9897 0.519866 15.3394 0.777728 15.5973C1.03559 15.8551 1.38533 16 1.75 16H3.125V29.75C3.125 30.4793 3.41473 31.1788 3.93046 31.6945C4.44618 32.2103 5.14565 32.5 5.875 32.5H10C10.7293 32.5 11.4288 32.2103 11.9445 31.6945C12.4603 31.1788 12.75 30.4793 12.75 29.75V27H29.25V29.75C29.25 30.4793 29.5397 31.1788 30.0555 31.6945C30.5712 32.2103 31.2707 32.5 32 32.5H36.125C36.8543 32.5 37.5538 32.2103 38.0695 31.6945C38.5853 31.1788 38.875 30.4793 38.875 29.75V16H40.25C40.6147 16 40.9644 15.8551 41.2223 15.5973C41.4801 15.3394 41.625 14.9897 41.625 14.625C41.625 14.2603 41.4801 13.9106 41.2223 13.6527C40.9644 13.3949 40.6147 13.25 40.25 13.25ZM10.8937 3.625H31.1063L35.3842 13.25H6.61578L10.8937 3.625ZM10 29.75H5.875V27H10V29.75ZM32 29.75V27H36.125V29.75H32ZM36.125 24.25H5.875V16H36.125V24.25ZM8.625 20.125C8.625 19.7603 8.76987 19.4106 9.02773 19.1527C9.28559 18.8949 9.63533 18.75 10 18.75H12.75C13.1147 18.75 13.4644 18.8949 13.7223 19.1527C13.9801 19.4106 14.125 19.7603 14.125 20.125C14.125 20.4897 13.9801 20.8394 13.7223 21.0973C13.4644 21.3551 13.1147 21.5 12.75 21.5H10C9.63533 21.5 9.28559 21.3551 9.02773 21.0973C8.76987 20.8394 8.625 20.4897 8.625 20.125ZM27.875 20.125C27.875 19.7603 28.0199 19.4106 28.2777 19.1527C28.5356 18.8949 28.8853 18.75 29.25 18.75H32C32.3647 18.75 32.7144 18.8949 32.9723 19.1527C33.2301 19.4106 33.375 19.7603 33.375 20.125C33.375 20.4897 33.2301 20.8394 32.9723 21.0973C32.7144 21.3551 32.3647 21.5 32 21.5H29.25C28.8853 21.5 28.5356 21.3551 28.2777 21.0973C28.0199 20.8394 27.875 20.4897 27.875 20.125Z"
5
+ fill="currentColor"/>
6
+ </svg>
7
+ </template>
@@ -0,0 +1,6 @@
1
+ <template>
2
+ <svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="https://www.w3.org/2000/svg">
3
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M10.306 2.82359C9.18983 2.32624 7.94278 2.20303 6.75085 2.47233C5.55892 2.74164 4.48598 3.38902 3.69203 4.31793C2.89809 5.24684 2.42569 6.40751 2.34529 7.62683C2.26489 8.84616 2.58079 10.0588 3.24589 11.0839C3.91098 12.109 4.88963 12.8917 6.03588 13.3152C7.18212 13.7387 8.43455 13.7803 9.60638 13.4338C10.7782 13.0873 11.8066 12.3713 12.5383 11.3926C13.27 10.4139 13.6656 9.22489 13.6663 8.00292V7.43587C13.6663 7.15973 13.8902 6.93587 14.1663 6.93587C14.4425 6.93587 14.6663 7.15973 14.6663 7.43587V8.00321C14.6655 9.44082 14.2 10.8399 13.3392 11.9914C12.4785 13.1428 11.2685 13.9851 9.88991 14.3928C8.5113 14.8004 7.03785 14.7514 5.68932 14.2532C4.3408 13.755 3.18944 12.8342 2.40698 11.6282C1.62452 10.4222 1.25287 8.99553 1.34746 7.56103C1.44205 6.12653 1.99781 4.76104 2.93186 3.66821C3.86591 2.57537 5.1282 1.81375 6.53047 1.49692C7.93274 1.1801 9.39985 1.32505 10.713 1.91016C10.9652 2.02255 11.0786 2.31814 10.9662 2.57037C10.8538 2.82261 10.5582 2.93598 10.306 2.82359Z" fill="currentColor"/>
4
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M14.5197 2.7126C14.7151 2.90776 14.7152 3.22434 14.5201 3.4197L8.35341 9.59254C8.25966 9.68638 8.13246 9.73913 7.9998 9.73916C7.86715 9.73919 7.73992 9.68651 7.64613 9.59271L5.79613 7.74271C5.60086 7.54745 5.60086 7.23087 5.79613 7.03561C5.99139 6.84034 6.30797 6.84034 6.50323 7.03561L7.9995 8.53188L13.8126 2.71295C14.0078 2.51759 14.3244 2.51743 14.5197 2.7126Z" fill="currentColor"/>
5
+ </svg>
6
+ </template>
@@ -0,0 +1,14 @@
1
+ <template>
2
+ <svg
3
+ width="32"
4
+ height="32"
5
+ viewBox="0 0 32 32"
6
+ fill="none"
7
+ xmlns="http://www.w3.org/2000/svg"
8
+ >
9
+ <path
10
+ d="M26 5H6C5.46957 5 4.96086 5.21071 4.58579 5.58579C4.21071 5.96086 4 6.46957 4 7V14.3475C4 25.5487 13.4775 29.265 15.375 29.8962C15.7803 30.0341 16.2197 30.0341 16.625 29.8962C18.525 29.265 28 25.5487 28 14.3475V7C28 6.46957 27.7893 5.96086 27.4142 5.58579C27.0391 5.21071 26.5304 5 26 5ZM26 14.3488C26 24.1512 17.7063 27.4263 16 27.9963C14.3088 27.4325 6 24.16 6 14.3488V7H26V14.3488ZM10.2925 17.7075C10.1049 17.5199 9.99944 17.2654 9.99944 17C9.99944 16.7346 10.1049 16.4801 10.2925 16.2925C10.4801 16.1049 10.7346 15.9994 11 15.9994C11.2654 15.9994 11.5199 16.1049 11.7075 16.2925L14 18.585L20.2925 12.2925C20.3854 12.1996 20.4957 12.1259 20.6171 12.0756C20.7385 12.0253 20.8686 11.9994 21 11.9994C21.1314 11.9994 21.2615 12.0253 21.3829 12.0756C21.5043 12.1259 21.6146 12.1996 21.7075 12.2925C21.8004 12.3854 21.8741 12.4957 21.9244 12.6171C21.9747 12.7385 22.0006 12.8686 22.0006 13C22.0006 13.1314 21.9747 13.2615 21.9244 13.3829C21.8741 13.5043 21.8004 13.6146 21.7075 13.7075L14.7075 20.7075C14.6146 20.8005 14.5043 20.8742 14.3829 20.9246C14.2615 20.9749 14.1314 21.0008 14 21.0008C13.8686 21.0008 13.7385 20.9749 13.6171 20.9246C13.4957 20.8742 13.3854 20.8005 13.2925 20.7075L10.2925 17.7075Z"
11
+ fill="currentColor"
12
+ />
13
+ </svg>
14
+ </template>
@@ -0,0 +1,17 @@
1
+ <script setup lang="ts"></script>
2
+
3
+ <template>
4
+ <svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="https://www.w3.org/2000/svg">
5
+ <g id="check">
6
+ <path
7
+ id="Vector"
8
+ fill-rule="evenodd"
9
+ clip-rule="evenodd"
10
+ d="M14.076 3.64958C14.2801 3.85096 14.2824 4.17971 14.081 4.38386L6.22764 12.3454C6.13007 12.4443 5.99693 12.5 5.85799 12.5C5.71905 12.5 5.5859 12.4443 5.48833 12.3454L1.91862 8.72652C1.71724 8.52237 1.71949 8.19361 1.92364 7.99223C2.1278 7.79085 2.45655 7.7931 2.65793 7.99726L5.85799 11.2414L13.3417 3.6546C13.5431 3.45044 13.8718 3.4482 14.076 3.64958Z"
11
+ fill="currentColor"
12
+ />
13
+ </g>
14
+ </svg>
15
+ </template>
16
+
17
+ <style scoped></style>
@@ -0,0 +1,6 @@
1
+ <template>
2
+ <svg width="16" height="17" viewBox="0 0 16 17" fill="none" xmlns="https://www.w3.org/2000/svg">
3
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M7.99996 2.54999C4.71388 2.54999 2.04999 5.21388 2.04999 8.49996C2.04999 11.786 4.71388 14.4499 7.99996 14.4499C11.286 14.4499 13.9499 11.786 13.9499 8.49996C13.9499 5.21388 11.286 2.54999 7.99996 2.54999ZM1 8.49996C1 4.63399 4.13399 1.5 7.99996 1.5C11.8659 1.5 14.9999 4.63399 14.9999 8.49996C14.9999 12.3659 11.8659 15.4999 7.99996 15.4999C4.13399 15.4999 1 12.3659 1 8.49996Z" fill="currentColor"/>
4
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M11.2878 6.19945C11.4878 6.40941 11.4797 6.74172 11.2697 6.94168L7.19895 10.8186C7.00587 11.0025 6.70562 11.0124 6.50079 10.8417L4.75619 9.38789C4.53344 9.20227 4.50335 8.87122 4.68897 8.64848C4.87459 8.42574 5.20563 8.39564 5.42837 8.58126L6.81359 9.73561L10.5456 6.18134C10.7555 5.98138 11.0878 5.98948 11.2878 6.19945Z" fill="currentColor"/>
5
+ </svg>
6
+ </template>
@@ -0,0 +1,17 @@
1
+ <template>
2
+ <svg
3
+ width="1em"
4
+ height="1em"
5
+ viewBox="0 0 20 20"
6
+ fill="none"
7
+ xmlns="https://www.w3.org/2000/svg"
8
+ >
9
+ <path
10
+ fill-rule="evenodd"
11
+ clip-rule="evenodd"
12
+ d="M0 3C0 1.34315 1.34315 0 3 0H17C18.6569 0 20 1.34315 20 3V17C20 18.6569 18.6569 20 17 20H3C1.34315 20 0 18.6569 0 17V3ZM15.7526 6.6585C16.1163 6.24287 16.0741 5.61111 15.6585 5.24742C15.2429 4.88374 14.6111 4.92586 14.2474 5.3415L7.95129 12.5371L5.70711 10.2929C5.31658 9.90237 4.68342 9.90237 4.29289 10.2929C3.90237 10.6834 3.90237 11.3166 4.29289 11.7071L7.29289 14.7071C7.4886 14.9028 7.75666 15.0087 8.03328 14.9994C8.30989 14.9902 8.57032 14.8668 8.75258 14.6585L15.7526 6.6585Z"
13
+ fill="currentColor"
14
+ />
15
+ </svg>
16
+ </template>
17
+
@@ -0,0 +1,10 @@
1
+ <template>
2
+ <svg width="1em" height="1em" viewBox="0 0 20 20" fill="none" xmlns="https://www.w3.org/2000/svg">
3
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M3 2C2.44772 2 2 2.44772 2 3V17C2 17.5523 2.44772 18 3 18H17C17.5523 18 18 17.5523 18 17V3C18 2.44772 17.5523 2 17 2H3ZM0 3C0 1.34315 1.34315 0 3 0H17C18.6569 0 20 1.34315 20 3V17C20 18.6569 18.6569 20 17 20H3C1.34315 20 0 18.6569 0 17V3Z" fill="currentColor" fill-opacity="0.5"/>
4
+ </svg>
5
+
6
+ </template>
7
+
8
+
9
+ <script setup lang="ts">
10
+ </script>
@@ -0,0 +1,7 @@
1
+ <template>
2
+ <svg width="1em" height="1em" viewBox="0 0 20 20" fill="none" xmlns="https://www.w3.org/2000/svg">
3
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M3 0C1.34315 0 0 1.34315 0 3V17C0 18.6569 1.34315 20 3 20H17C18.6569 20 20 18.6569 20 17V3C20 1.34315 18.6569 0 17 0H3ZM4 9C3.44772 9 3 9.44771 3 10C3 10.5523 3.44772 11 4 11H16C16.5523 11 17 10.5523 17 10C17 9.44771 16.5523 9 16 9H4Z" fill="currentColor"/>
4
+ </svg>
5
+ </template>
6
+ <script setup lang="ts">
7
+ </script>
@@ -0,0 +1,5 @@
1
+ <template>
2
+ <svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="https://www.w3.org/2000/svg">
3
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M3.16441 5.15703C3.37768 4.94171 3.71681 4.94869 3.92188 5.17263L8 9.62594L12.0781 5.17263C12.2832 4.94869 12.6223 4.94171 12.8356 5.15703C13.0489 5.37235 13.0555 5.72844 12.8504 5.95237L8.38616 10.8274C8.28516 10.9377 8.14572 11 8 11C7.85428 11 7.71484 10.9377 7.61384 10.8274L3.14955 5.95237C2.94449 5.72844 2.95114 5.37235 3.16441 5.15703Z" fill="currentColor"/>
4
+ </svg>
5
+ </template>
@@ -0,0 +1,5 @@
1
+ <template>
2
+ <svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="https://www.w3.org/2000/svg">
3
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M10.843 3.16441C11.0583 3.37768 11.0513 3.71681 10.8274 3.92188L6.37406 8L10.8274 12.0781C11.0513 12.2832 11.0583 12.6223 10.843 12.8356C10.6276 13.0489 10.2716 13.0555 10.0476 12.8504L5.17263 8.38616C5.06233 8.28516 5 8.14572 5 8C5 7.85428 5.06233 7.71484 5.17263 7.61384L10.0476 3.14955C10.2716 2.94449 10.6276 2.95114 10.843 3.16441Z" fill="currentColor"/>
4
+ </svg>
5
+ </template>
@@ -0,0 +1,5 @@
1
+ <template>
2
+ <svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="https://www.w3.org/2000/svg">
3
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M5.15703 3.16441C5.37235 2.95114 5.72844 2.94449 5.95237 3.14955L10.8274 7.61384C10.9377 7.71484 11 7.85428 11 8C11 8.14572 10.9377 8.28516 10.8274 8.38616L5.95237 12.8504C5.72844 13.0555 5.37235 13.0489 5.15703 12.8356C4.94171 12.6223 4.94869 12.2832 5.17263 12.0781L9.62594 8L5.17263 3.92188C4.94869 3.71681 4.94171 3.37768 5.15703 3.16441Z" fill="currentColor"/>
4
+ </svg>
5
+ </template>
@@ -0,0 +1,5 @@
1
+ <template>
2
+ <svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="https://www.w3.org/2000/svg">
3
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M8 5C8.14572 5 8.28516 5.06233 8.38616 5.17263L12.8504 10.0476C13.0555 10.2716 13.0489 10.6276 12.8356 10.843C12.6223 11.0583 12.2832 11.0513 12.0781 10.8274L8 6.37406L3.92188 10.8274C3.71681 11.0513 3.37768 11.0583 3.16441 10.843C2.95114 10.6276 2.94449 10.2716 3.14955 10.0476L7.61384 5.17263C7.71484 5.06233 7.85428 5 8 5Z" fill="currentColor"/>
4
+ </svg>
5
+ </template>
@@ -0,0 +1,12 @@
1
+ <template>
2
+ <svg xmlns="https://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24">
3
+ <path
4
+ fill="none"
5
+ stroke="currentColor"
6
+ stroke-linecap="round"
7
+ stroke-linejoin="round"
8
+ stroke-width="1.45"
9
+ d="m13 16l4-4l-4-4m-6 8l4-4l-4-4"
10
+ />
11
+ </svg>
12
+ </template>
@@ -0,0 +1,7 @@
1
+ <template>
2
+ <svg width="16" height="16" viewBox="0 0 18 21" fill="none" xmlns="https://www.w3.org/2000/svg">
3
+ <path
4
+ d="M12.75 13.2499C12.75 13.4488 12.671 13.6395 12.5303 13.7802C12.3897 13.9208 12.1989 13.9999 12 13.9999H6C5.80109 13.9999 5.61032 13.9208 5.46967 13.7802C5.32902 13.6395 5.25 13.4488 5.25 13.2499C5.25 13.051 5.32902 12.8602 5.46967 12.7195C5.61032 12.5789 5.80109 12.4999 6 12.4999H12C12.1989 12.4999 12.3897 12.5789 12.5303 12.7195C12.671 12.8602 12.75 13.051 12.75 13.2499ZM12 9.49986H6C5.80109 9.49986 5.61032 9.57888 5.46967 9.71953C5.32902 9.86019 5.25 10.051 5.25 10.2499C5.25 10.4488 5.32902 10.6395 5.46967 10.7802C5.61032 10.9208 5.80109 10.9999 6 10.9999H12C12.1989 10.9999 12.3897 10.9208 12.5303 10.7802C12.671 10.6395 12.75 10.4488 12.75 10.2499C12.75 10.051 12.671 9.86019 12.5303 9.71953C12.3897 9.57888 12.1989 9.49986 12 9.49986ZM17.25 3.49986V19.2499C17.25 19.6477 17.092 20.0292 16.8107 20.3105C16.5294 20.5918 16.1478 20.7499 15.75 20.7499H2.25C1.85218 20.7499 1.47064 20.5918 1.18934 20.3105C0.908035 20.0292 0.75 19.6477 0.75 19.2499V3.49986C0.75 3.10204 0.908035 2.72051 1.18934 2.4392C1.47064 2.1579 1.85218 1.99986 2.25 1.99986H5.64937C6.07079 1.52804 6.58709 1.15054 7.1645 0.892075C7.7419 0.633607 8.36738 0.5 9 0.5C9.63262 0.5 10.2581 0.633607 10.8355 0.892075C11.4129 1.15054 11.9292 1.52804 12.3506 1.99986H15.75C16.1478 1.99986 16.5294 2.1579 16.8107 2.4392C17.092 2.72051 17.25 3.10204 17.25 3.49986ZM6 4.99986H12C12 4.20421 11.6839 3.44115 11.1213 2.87854C10.5587 2.31593 9.79565 1.99986 9 1.99986C8.20435 1.99986 7.44129 2.31593 6.87868 2.87854C6.31607 3.44115 6 4.20421 6 4.99986ZM15.75 3.49986H13.2422C13.4128 3.98157 13.5 4.48884 13.5 4.99986V5.74986C13.5 5.94878 13.421 6.13954 13.2803 6.28019C13.1397 6.42085 12.9489 6.49986 12.75 6.49986H5.25C5.05109 6.49986 4.86032 6.42085 4.71967 6.28019C4.57902 6.13954 4.5 5.94878 4.5 5.74986V4.99986C4.50002 4.48884 4.58721 3.98157 4.75781 3.49986H2.25V19.2499H15.75V3.49986Z"
5
+ fill="currentColor"/>
6
+ </svg>
7
+ </template>
@@ -0,0 +1,9 @@
1
+
2
+ <template>
3
+ <svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="https://www.w3.org/2000/svg">
4
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M8.00004 2.04999C11.2861 2.04999 13.95 4.71388 13.95 7.99996C13.95 11.286 11.2861 13.9499 8.00004 13.9499C4.71397 13.9499 2.05008 11.286 2.05008 7.99996C2.05008 4.71388 4.71397 2.04999 8.00004 2.04999ZM15 7.99996C15 4.13399 11.866 1 8.00004 1C4.13407 1 1.00008 4.13399 1.00008 7.99996C1.00008 11.8659 4.13407 14.9999 8.00004 14.9999C11.866 14.9999 15 11.8659 15 7.99996Z" fill="currentColor"/>
5
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M8.00004 4.77705C7.71009 4.77705 7.47504 5.0121 7.47504 5.30204V7.75952L4.90795 10.3266C4.70293 10.5316 4.70293 10.8641 4.90795 11.0691C5.11298 11.2741 5.44538 11.2741 5.65041 11.0691L8.52504 8.19444V5.30204C8.52504 5.0121 8.28999 4.77705 8.00004 4.77705Z" fill="currentColor"/>
6
+ </svg>
7
+ </template>
8
+ <script setup lang="ts">
9
+ </script>
@@ -0,0 +1,21 @@
1
+ <template>
2
+ <svg
3
+ width="200"
4
+ height="62"
5
+ viewBox="0 0 200 62"
6
+ fill="none"
7
+ xmlns="https://www.w3.org/2000/svg"
8
+ class="group"
9
+ >
10
+ <path
11
+ class="group-hover:fill-[#2C3E50] dark:group-hover:fill-[#fff]"
12
+ d="M64.0003 51L52.3698 39.7244H34.415L64.0003 11L93.5855 39.7244H75.6307L64.0003 51ZM56.443 37.6369C56.7075 37.6418 56.9721 37.6121 57.2317 37.5526C57.4463 37.4981 57.626 37.4138 57.7658 37.3096C58.0853 37.0468 58.2699 36.6551 58.2749 36.2386C58.2749 35.951 58.1901 35.708 58.0303 35.5048C57.8756 35.3015 57.6509 35.1478 57.3564 35.0635C57.5761 34.9494 57.7508 34.8106 57.8656 34.6221C57.9804 34.4486 58.0303 34.2453 58.0303 34.042C58.0303 33.8139 57.9655 33.5957 57.8406 33.4073C57.7158 33.209 57.5311 33.0503 57.3165 32.9561C57.0869 32.8569 56.7924 32.8073 56.423 32.8073H54.5911V37.622L56.443 37.6369ZM55.225 34.8354V33.3825H56.2084C56.458 33.3726 56.7075 33.3924 56.9471 33.447C57.0819 33.4867 57.2017 33.5759 57.2766 33.6999C57.3614 33.8139 57.3914 33.9627 57.3914 34.1263C57.3914 34.2899 57.3515 34.4288 57.2666 34.5329C57.1867 34.6568 57.062 34.7362 56.8972 34.7758C56.7725 34.8155 56.5678 34.8354 56.2783 34.8354H55.225ZM55.23 37.0617V35.3957H56.3581C56.6626 35.3957 56.9072 35.4304 57.0719 35.48C57.2317 35.5295 57.3665 35.6287 57.4563 35.7676C57.5511 35.9064 57.601 36.0651 57.596 36.2337C57.596 36.3874 57.5611 36.5262 57.4962 36.6402C57.4413 36.7493 57.3564 36.8435 57.2467 36.908C57.1468 36.9724 57.027 37.0121 56.8773 37.037C56.7924 37.0518 56.6477 37.0518 56.443 37.0518L55.23 37.0617ZM59.3082 37.6369L59.8323 36.1692H61.8888L62.4479 37.632H63.1866L61.2 32.8123H60.4912L58.6193 37.627L59.3082 37.6369ZM60.0219 35.6535L60.5561 34.2403C60.6609 33.9379 60.7607 33.6255 60.8256 33.3081C60.9104 33.5759 61.0203 33.9131 61.17 34.3197L61.6792 35.6486L60.0219 35.6535ZM67.1749 37.6369V37.0667H64.0502L64.3447 36.7245L67.0801 33.3875V32.8173H63.596V33.3875H66.3164C66.1516 33.5511 65.9869 33.7395 65.8073 33.9577L63.3115 37.0419V37.627L67.1749 37.6369ZM67.9636 37.627H68.6225V32.8123H67.9736L67.9636 37.627ZM69.541 36.0849C69.5509 36.4023 69.6458 36.6898 69.8105 36.9527C69.9802 37.2105 70.2248 37.4088 70.5093 37.5228C71.1683 37.7757 71.897 37.7757 72.5559 37.5228C72.8354 37.3989 73.0501 37.2204 73.1948 36.9923C73.3445 36.7642 73.4144 36.5262 73.4144 36.2733C73.4144 36.0105 73.3496 35.7824 73.2098 35.589C73.08 35.3907 72.8653 35.2271 72.5859 35.0982C72.3862 35.0089 72.0268 34.9097 71.5077 34.7957C70.9835 34.6718 70.6541 34.5577 70.5293 34.4536C70.4045 34.3445 70.3396 34.1858 70.3396 34.0221C70.3446 33.8189 70.4444 33.6305 70.6091 33.5164C70.7838 33.3677 71.0684 33.3032 71.4627 33.3032C71.8321 33.3032 72.1216 33.3776 72.3163 33.5313C72.516 33.7098 72.6358 33.9577 72.6457 34.2255L73.2697 34.1759C73.2647 33.6156 72.9153 33.1148 72.3912 32.9115C72.0867 32.7875 71.7622 32.728 71.4378 32.733C71.1333 32.728 70.8288 32.7826 70.5443 32.8966C70.2747 33.0106 70.0651 33.1743 69.9253 33.3875C69.7856 33.6007 69.7206 33.8189 69.7206 34.0668C69.7206 34.285 69.7806 34.4932 69.8953 34.6718C70.0252 34.8651 70.2048 35.0189 70.4145 35.1229C70.714 35.2568 71.0285 35.361 71.3529 35.4254C71.8071 35.5296 72.0917 35.604 72.2265 35.6535C72.4311 35.7378 72.5809 35.827 72.6607 35.9411C72.7556 36.0551 72.8005 36.194 72.8005 36.3427C72.7955 36.4915 72.7455 36.6353 72.6508 36.7493C72.5659 36.8733 72.4311 36.9675 72.2414 37.0518C72.0318 37.1212 71.8071 37.1609 71.5825 37.1559C71.313 37.1559 71.0584 37.1063 70.8438 37.0072C70.6141 36.908 70.4495 36.794 70.3496 36.6303C70.2448 36.4766 70.1749 36.2783 70.145 36.0353L69.541 36.0849ZM77.5275 32.2074H80.3229V37.1063H87.1264L64.0003 14.6891L40.9391 37.1063H47.6777V32.2074H50.5279L63.9953 19.122L77.5275 32.2074ZM75.6307 32.2074L64.14 21.0657V24.9581L71.6175 32.2074H75.6307ZM63.8605 25.4291L56.8623 32.2074H63.8655V25.4291H63.8605ZM52.3748 38.3112L63.8605 49.4529V45.5605L56.3831 38.3112H52.3748ZM64.14 45.0895L71.2081 38.3162H64.14V45.0895Z"
13
+ fill="#BDC7CE"
14
+ />
15
+ <path
16
+ class="group-hover:fill-[#2C3E50] dark:group-hover:fill-[#fff]"
17
+ d="M99.0225 37V25.5781H106.241V27.5781H101.444V29.9609H102.397C103.47 29.9609 104.351 30.1094 105.038 30.4062C105.731 30.7031 106.241 31.1146 106.569 31.6406C106.903 32.1615 107.069 32.7578 107.069 33.4297C107.069 34.5599 106.692 35.4375 105.937 36.0625C105.187 36.6875 103.991 37 102.351 37H99.0225ZM101.444 35.0156H102.257C102.991 35.0156 103.569 34.8984 103.991 34.6641C104.413 34.4245 104.624 34.013 104.624 33.4297C104.624 33.0234 104.52 32.7135 104.312 32.5C104.108 32.2865 103.814 32.1406 103.429 32.0625C103.049 31.9844 102.593 31.9453 102.062 31.9453H101.444V35.0156ZM115.593 37L114.765 34.2812H110.601L109.773 37H107.164L111.195 25.5312H114.156L118.203 37H115.593ZM114.187 32.25L113.359 29.5938C113.307 29.4167 113.237 29.1901 113.148 28.9141C113.065 28.6328 112.979 28.349 112.89 28.0625C112.807 27.7708 112.739 27.5182 112.687 27.3047C112.635 27.5182 112.562 27.7839 112.468 28.1016C112.38 28.4141 112.294 28.7109 112.211 28.9922C112.127 29.2734 112.067 29.474 112.031 29.5938L111.211 32.25H114.187ZM126.899 28.25C126.899 29.0156 126.625 29.6328 126.078 30.1016C125.532 30.5703 124.839 30.8646 124 30.9844V31.0312C125.042 31.1354 125.844 31.4245 126.407 31.8984C126.969 32.3724 127.25 32.9896 127.25 33.75C127.25 34.4167 127.068 35.0078 126.703 35.5234C126.339 36.0339 125.8 36.4349 125.086 36.7266C124.373 37.013 123.49 37.1562 122.438 37.1562C121.573 37.1562 120.805 37.1042 120.133 37C119.466 36.8906 118.888 36.737 118.399 36.5391V34.5078C118.732 34.6641 119.104 34.7995 119.516 34.9141C119.933 35.0234 120.354 35.1094 120.782 35.1719C121.209 35.2292 121.604 35.2578 121.969 35.2578C122.979 35.2578 123.711 35.112 124.164 34.8203C124.623 34.5286 124.852 34.1146 124.852 33.5781C124.852 33.0312 124.521 32.6328 123.86 32.3828C123.198 32.1328 122.308 32.0078 121.188 32.0078H120.117V30.1172H121.078C121.985 30.1172 122.688 30.0599 123.188 29.9453C123.693 29.8255 124.045 29.6562 124.242 29.4375C124.446 29.2135 124.547 28.9453 124.547 28.6328C124.547 28.2422 124.373 27.9323 124.024 27.7031C123.675 27.4688 123.157 27.3516 122.469 27.3516C121.875 27.3516 121.321 27.4375 120.805 27.6094C120.289 27.776 119.808 28 119.36 28.2812L118.305 26.6641C118.696 26.4089 119.112 26.1875 119.555 26C120.003 25.8125 120.492 25.6693 121.024 25.5703C121.555 25.4661 122.149 25.4141 122.805 25.4141C123.664 25.4141 124.399 25.5365 125.008 25.7812C125.617 26.026 126.084 26.362 126.407 26.7891C126.735 27.2109 126.899 27.6979 126.899 28.25ZM128.743 25.5781H130.923V31.0938C130.923 31.3646 130.918 31.6641 130.907 31.9922C130.902 32.3203 130.892 32.6432 130.876 32.9609C130.865 33.2734 130.855 33.5469 130.845 33.7812C130.834 34.0156 130.824 34.1719 130.813 34.25H130.86L136.134 25.5781H139.032V37H136.876V31.5156C136.876 31.224 136.881 30.9062 136.892 30.5625C136.902 30.2188 136.915 29.8854 136.931 29.5625C136.951 29.2396 136.97 28.9609 136.985 28.7266C137.001 28.487 137.011 28.3281 137.017 28.25H136.954L131.657 37H128.743V25.5781ZM146.127 27.4297C145.663 27.4297 145.252 27.5208 144.892 27.7031C144.538 27.8802 144.239 28.138 143.994 28.4766C143.754 28.8151 143.572 29.224 143.447 29.7031C143.322 30.1823 143.259 30.7214 143.259 31.3203C143.259 32.1276 143.358 32.8177 143.556 33.3906C143.759 33.9583 144.072 34.3932 144.494 34.6953C144.916 34.9922 145.46 35.1406 146.127 35.1406C146.59 35.1406 147.054 35.0885 147.517 34.9844C147.986 34.8802 148.494 34.7318 149.041 34.5391V36.5703C148.535 36.7786 148.038 36.9271 147.548 37.0156C147.059 37.1094 146.509 37.1562 145.9 37.1562C144.723 37.1562 143.754 36.9141 142.994 36.4297C142.239 35.9401 141.679 35.2578 141.314 34.3828C140.949 33.5026 140.767 32.4766 140.767 31.3047C140.767 30.4401 140.884 29.6484 141.119 28.9297C141.353 28.2109 141.697 27.5885 142.15 27.0625C142.603 26.5365 143.163 26.1302 143.83 25.8438C144.496 25.5573 145.262 25.4141 146.127 25.4141C146.694 25.4141 147.262 25.487 147.83 25.6328C148.403 25.7734 148.949 25.9688 149.47 26.2188L148.689 28.1875C148.262 27.9844 147.832 27.8073 147.4 27.6562C146.968 27.5052 146.543 27.4297 146.127 27.4297ZM149.877 33.6875V31.7344H154.072V33.6875H149.877ZM162.347 37L161.518 34.2812H157.354L156.526 37H153.917L157.948 25.5312H160.909L164.956 37H162.347ZM160.94 32.25L160.112 29.5938C160.06 29.4167 159.99 29.1901 159.901 28.9141C159.818 28.6328 159.732 28.349 159.643 28.0625C159.56 27.7708 159.492 27.5182 159.44 27.3047C159.388 27.5182 159.315 27.7839 159.222 28.1016C159.133 28.4141 159.047 28.7109 158.964 28.9922C158.88 29.2734 158.82 29.474 158.784 29.5938L157.964 32.25H160.94Z"
18
+ fill="#BDC7CE"
19
+ />
20
+ </svg>
21
+ </template>