adata-ui 2.1.19 → 2.1.20

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 (410) hide show
  1. package/-error.vue +170 -170
  2. package/.editorconfig +12 -12
  3. package/.gitlab-ci.yml +16 -16
  4. package/.nuxtrc +1 -1
  5. package/.nvmrc +1 -1
  6. package/.playground/app.config.ts +5 -5
  7. package/.playground/nuxt.config.ts +3 -3
  8. package/README.md +75 -75
  9. package/app.config.ts +28 -28
  10. package/app.vue +8 -8
  11. package/assets/styles/index.scss +104 -104
  12. package/assets/styles/modules/_base.scss +5 -5
  13. package/assets/styles/modules/_typography.scss +152 -152
  14. package/components/elements/README.md +1 -1
  15. package/components/elements/a-select-row/index.vue +140 -140
  16. package/components/elements/accordion/AAccordion.vue +197 -197
  17. package/components/elements/accordion/AAccordionGroup/AAccordionGroup.vue +145 -145
  18. package/components/elements/accordion/AAccordionGroup/types.ts +20 -20
  19. package/components/elements/accordion/AAccordionGroup/ui.config.ts +22 -22
  20. package/components/elements/accordion/types.ts +14 -14
  21. package/components/elements/accordion/ui.config.ts +22 -22
  22. package/components/elements/alert/AAlert.vue +65 -65
  23. package/components/elements/banner/ABanner.vue +49 -49
  24. package/components/elements/bg-block/ABgBlock.vue +11 -11
  25. package/components/elements/button/AButton.vue +188 -188
  26. package/components/elements/button/types.ts +24 -24
  27. package/components/elements/button-login/index.vue +21 -21
  28. package/components/elements/calendar/ACalendar.vue +83 -83
  29. package/components/elements/carousel/ACarousel.vue +159 -159
  30. package/components/elements/carousel/config.ui.ts +15 -15
  31. package/components/elements/carousel/types.ts +18 -18
  32. package/components/elements/chip-wrapper/AChipWrapper.vue +80 -80
  33. package/components/elements/chip-wrapper/types.ts +12 -12
  34. package/components/elements/chips/AChips.vue +32 -32
  35. package/components/elements/companies/AOurClients.vue +42 -42
  36. package/components/elements/curve-block/ACurveBlock.vue +291 -291
  37. package/components/elements/digit-badge/ADigitBadge.vue +83 -83
  38. package/components/elements/error-template/index.vue +48 -48
  39. package/components/elements/error-template/types.ts +23 -23
  40. package/components/elements/feature-description/AFeatureDescription.vue +112 -112
  41. package/components/elements/illustrations/noAccess.vue +71 -71
  42. package/components/elements/infinite-carousel/AInfiniteCarousel.vue +57 -57
  43. package/components/elements/infinite-scroll/AInfiniteScroll.vue +33 -33
  44. package/components/elements/leave-note/ALeaveNote.vue +78 -78
  45. package/components/elements/pagination/APagination.vue +110 -110
  46. package/components/elements/photos-animation/APhotosAnimation.vue +85 -85
  47. package/components/elements/select/ASelect.vue +445 -445
  48. package/components/elements/select/ASelectMobile.vue +186 -186
  49. package/components/elements/select/ui/select-button.vue +112 -112
  50. package/components/elements/select/ui/select-list.vue +99 -99
  51. package/components/elements/show-more/AShowMore.vue +35 -35
  52. package/components/elements/skeleton/ASkeleton.vue +44 -44
  53. package/components/elements/star-rating/AStarRating.vue +181 -181
  54. package/components/elements/star-rating/types.ts +7 -7
  55. package/components/elements/star-rating/ui/Star.vue +74 -74
  56. package/components/elements/status-badge/AStatusBadge.vue +74 -74
  57. package/components/elements/table/ATable.vue +93 -93
  58. package/components/elements/table/table.config.ts +32 -32
  59. package/components/elements/tree-select/ATreeSelect.vue +169 -169
  60. package/components/elements/tree-select/TreeService.ts +249 -249
  61. package/components/elements/tree-select/components/tree-select-nodes.vue +90 -90
  62. package/components/elements/tree-select/types.ts +34 -34
  63. package/components/elements/tree-select-mobile/ATreeSelectMobile.vue +79 -79
  64. package/components/elements/tree-select-mobile/components/ATreeSelectNodesMobile.vue +175 -175
  65. package/components/features/color-mode/AColorMode.client.vue +53 -53
  66. package/components/features/dropdown/ADropdown.vue +124 -124
  67. package/components/features/go-top/GoTop.vue +58 -58
  68. package/components/features/lang-switcher/lang-switcher.vue +63 -63
  69. package/components/features/payment/banner/BasicPlusLimitBanner.vue +104 -104
  70. package/components/features/payment/banner/PaymentBanner.vue +108 -108
  71. package/components/features/payment/banner/UpSellBanner.vue +125 -125
  72. package/components/features/payment/process/PaymentKaspiQrSidePanel.vue +158 -158
  73. package/components/features/payment/process/PaymentKaspiRedirectSidePanel.vue +112 -112
  74. package/components/features/payment/process/PaymentMethodSidePanel.vue +121 -121
  75. package/components/features/payment/process/PaymentProcess.vue +138 -138
  76. package/components/features/payment/process/PaymentTopUpSidePanel.vue +130 -130
  77. package/components/features/pk-mobile-services/APkMobileServices.vue +149 -149
  78. package/components/features//321/201hange-version/AChangeVersion.vue +20 -20
  79. package/components/forms/README.md +1 -1
  80. package/components/forms/checkbox/ACheckbox.vue +149 -149
  81. package/components/forms/feedback-form/FeedbackForm.vue +177 -177
  82. package/components/forms/input/button/AInputButton.vue +53 -53
  83. package/components/forms/input/date/AInputDate.vue +213 -213
  84. package/components/forms/input/password/AInputPassword.vue +53 -53
  85. package/components/forms/input/standard/AInputStandard.vue +412 -412
  86. package/components/forms/input/textarea/ATextarea.vue +200 -200
  87. package/components/forms/radio-button/ARadioButton.vue +95 -95
  88. package/components/forms/request-demo/ARequestDemo.vue +108 -108
  89. package/components/forms/toggle/AToggle.vue +157 -157
  90. package/components/forms/toggle/types.ts +16 -16
  91. package/components/modals/AConfirmationEmail.vue +40 -40
  92. package/components/modals/AboutTariffModal.vue +114 -114
  93. package/components/modals/AnotherDeviceModal.vue +60 -60
  94. package/components/modals/ApplicationAcceptedModal.vue +47 -47
  95. package/components/modals/ConnectingTariffModal.vue +67 -67
  96. package/components/modals/ContactsMobileModel.vue +182 -182
  97. package/components/modals/ContentNavigationModal.vue +355 -355
  98. package/components/modals/Insufficient-funds-modal.vue +77 -77
  99. package/components/modals/LimitReachedModal.vue +30 -30
  100. package/components/modals/NoAccessModal.vue +37 -37
  101. package/components/modals/PaymentMethodModal.vue +101 -101
  102. package/components/modals/RedirectsBanksModal.vue +69 -69
  103. package/components/modals/ReplenishModal.vue +132 -132
  104. package/components/modals/ReportBugConfirmModal.vue +30 -30
  105. package/components/modals/ReportBugModal.vue +156 -156
  106. package/components/modals/Resend.vue +82 -82
  107. package/components/modals/SubmitApplicationModal.vue +123 -123
  108. package/components/modals/id/AuthModal.vue +82 -82
  109. package/components/modals/id/IdAutoLogoutModal.vue +45 -45
  110. package/components/modals/id/IdBanner.vue +61 -61
  111. package/components/modals/id/IdConfirmAccountOtpModal.vue +186 -186
  112. package/components/modals/id/IdConfirmSuccessfulModal.vue +41 -41
  113. package/components/modals/id/IdLoginModal.vue +330 -326
  114. package/components/modals/id/IdModals.vue +114 -114
  115. package/components/modals/id/IdNewPasswordModal.vue +129 -129
  116. package/components/modals/id/IdOtpInput.vue +155 -155
  117. package/components/modals/id/IdPasswordSuccessfulModal.vue +25 -25
  118. package/components/modals/id/IdRecoveryModal.vue +117 -117
  119. package/components/modals/id/IdRegistrationModal.vue +215 -215
  120. package/components/modals/id/IdResetPasswordOtpModal.vue +158 -158
  121. package/components/modals/id/IdTwoFactorModal.vue +130 -130
  122. package/components/navigation/README.md +1 -1
  123. package/components/navigation/bottom-navigation/ABottomNavigation.vue +106 -106
  124. package/components/navigation/breadcrumbs/ABreadcrumbs.vue +66 -66
  125. package/components/navigation/breadcrumbs/types.ts +4 -4
  126. package/components/navigation/footer/AFooter.vue +279 -279
  127. package/components/navigation/footer/ui/a-footer-accordion.vue +118 -118
  128. package/components/navigation/header/AHeader.vue +217 -217
  129. package/components/navigation/header/AlmatyContacts.vue +145 -145
  130. package/components/navigation/header/AstanaContacts.vue +67 -67
  131. package/components/navigation/header/CardGallery.vue +249 -249
  132. package/components/navigation/header/ContactMenu.vue +114 -114
  133. package/components/navigation/header/HeaderLink.vue +267 -267
  134. package/components/navigation/header/ListItem.vue +31 -31
  135. package/components/navigation/header/NavCard.vue +41 -41
  136. package/components/navigation/header/NavList.vue +131 -131
  137. package/components/navigation/header/NotificationsMenu.vue +51 -51
  138. package/components/navigation/header/ProductMenu.vue +143 -143
  139. package/components/navigation/header/ProfileMenu.vue +194 -194
  140. package/components/navigation/header/TopHeader.vue +194 -194
  141. package/components/navigation/header/types.ts +28 -28
  142. package/components/navigation/line-tabs/ALineTabs.vue +111 -111
  143. package/components/navigation/line-tabs/types.ts +21 -21
  144. package/components/navigation/mobile-navigation/AMobileNavigation.vue +104 -104
  145. package/components/navigation/pill-tabs/APillTabs.vue +171 -171
  146. package/components/navigation/pill-tabs/types.ts +23 -23
  147. package/components/navigation/side-navigation/ASideNavigation.vue +406 -406
  148. package/components/overlays/README.md +1 -1
  149. package/components/overlays/modal/AModal.vue +332 -332
  150. package/components/overlays/side-panel/ASidePanel.vue +439 -439
  151. package/components/overlays/sideover/ASlideover.vue +351 -351
  152. package/components/overlays/tooltip/ATooltip.vue +237 -237
  153. package/components/transitions/ATransitionHeight.vue +67 -67
  154. package/components/utils/index.ts +19 -19
  155. package/components/utils/removeTrailingSlash.ts +7 -7
  156. package/composables/highlight.ts +18 -18
  157. package/composables/modalsState.ts +8 -8
  158. package/composables/projectState.ts +2 -2
  159. package/composables/useAdaptive.ts +46 -46
  160. package/composables/useBuyTariffs.ts +91 -91
  161. package/composables/useCarouselScroll.ts +49 -49
  162. package/composables/useHeaderNavigationLinks.ts +453 -453
  163. package/composables/useIdModals.ts +36 -36
  164. package/composables/usePayment.ts +74 -74
  165. package/composables/useUIValidation.ts +16 -16
  166. package/composables/useUrls.ts +21 -21
  167. package/eslint.config.mjs +45 -45
  168. package/i18n/i18n.config.ts +21 -21
  169. package/i18n.config.ts +21 -21
  170. package/icons/adata-logo.vue +17 -17
  171. package/icons/ai-assistant.vue +13 -13
  172. package/icons/akimat.vue +20 -20
  173. package/icons/arrow/arrow-bottom-left-on-square.vue +5 -5
  174. package/icons/arrow/arrow-circle-down.vue +16 -16
  175. package/icons/arrow/arrow-circle-reset.vue +16 -16
  176. package/icons/arrow/arrow-corner.vue +9 -9
  177. package/icons/arrow/arrow-graph-down.vue +13 -13
  178. package/icons/arrow/arrow-graph-up.vue +14 -14
  179. package/icons/arrow/arrow-square-down.vue +15 -15
  180. package/icons/arrow/arrow-top-right-on-square.vue +6 -6
  181. package/icons/arrow-currency-gray.vue +5 -5
  182. package/icons/arrow-currency-green.vue +5 -5
  183. package/icons/arrow-currency-red.vue +5 -5
  184. package/icons/arrow-side-up.vue +6 -6
  185. package/icons/avatar.vue +12 -12
  186. package/icons/bank.vue +5 -5
  187. package/icons/block.vue +16 -16
  188. package/icons/bookmark/bookmark-filled.vue +18 -18
  189. package/icons/bookmark/bookmark.vue +5 -5
  190. package/icons/browsers/browser-duck.vue +65 -65
  191. package/icons/browsers/browser-google.vue +30 -30
  192. package/icons/browsers/browser-yandex.vue +13 -13
  193. package/icons/building-vector.vue +7 -7
  194. package/icons/calculator.vue +7 -7
  195. package/icons/calendar.vue +24 -24
  196. package/icons/car.vue +7 -7
  197. package/icons/chart-bar.vue +5 -5
  198. package/icons/chart-pie.vue +16 -16
  199. package/icons/check/check-circle.vue +6 -6
  200. package/icons/check/check-shield.vue +14 -14
  201. package/icons/check/check.vue +17 -17
  202. package/icons/check/checkmark-circle.vue +6 -6
  203. package/icons/check-sb.vue +7 -7
  204. package/icons/checkbox/checkbox-active.vue +17 -17
  205. package/icons/checkbox/checkbox-empty.vue +10 -10
  206. package/icons/checkbox/checkbox-intermediate.vue +7 -7
  207. package/icons/chevron/chevron-down.vue +5 -5
  208. package/icons/chevron/chevron-left.vue +5 -5
  209. package/icons/chevron/chevron-right.vue +5 -5
  210. package/icons/chevron/chevron-up.vue +5 -5
  211. package/icons/chevron/double-chevron-right.vue +12 -12
  212. package/icons/clipboard-text.vue +7 -7
  213. package/icons/clock.vue +25 -25
  214. package/icons/close.vue +16 -16
  215. package/icons/company/company-bazis.vue +21 -21
  216. package/icons/company/company-bereke.vue +25 -25
  217. package/icons/company/company-bigroup.vue +16 -16
  218. package/icons/company/company-erg.vue +17 -17
  219. package/icons/company/company-forte.vue +21 -21
  220. package/icons/company/company-halyk.vue +15 -15
  221. package/icons/company/company-jusan.vue +31 -31
  222. package/icons/company/company-kaspi.vue +14 -14
  223. package/icons/company/company-mycar.vue +13 -13
  224. package/icons/company/company-samruk.vue +21 -21
  225. package/icons/company-egov-small.vue +15 -15
  226. package/icons/company.vue +8 -8
  227. package/icons/copy.vue +7 -7
  228. package/icons/currency/currency-dollar.vue +16 -16
  229. package/icons/currency/currency-down.vue +22 -22
  230. package/icons/currency/currency-eur.vue +57 -57
  231. package/icons/currency/currency-rub.vue +7 -7
  232. package/icons/currency/currency-tenge.vue +9 -9
  233. package/icons/currency/currency-usd.vue +221 -221
  234. package/icons/currency/currency-yuan.vue +25 -25
  235. package/icons/default-avatar.vue +20 -20
  236. package/icons/delete.vue +7 -7
  237. package/icons/document.vue +5 -5
  238. package/icons/download.vue +11 -11
  239. package/icons/edit.vue +7 -7
  240. package/icons/education.vue +16 -16
  241. package/icons/egov-small.vue +7 -7
  242. package/icons/excel-icon.vue +14 -14
  243. package/icons/expand-window.vue +7 -7
  244. package/icons/eye-closed.vue +26 -26
  245. package/icons/eye-open.vue +7 -7
  246. package/icons/eye-opened.vue +23 -23
  247. package/icons/file/file.vue +16 -16
  248. package/icons/file/files.vue +16 -16
  249. package/icons/filter.vue +5 -5
  250. package/icons/flag.vue +7 -7
  251. package/icons/gift.vue +8 -8
  252. package/icons/globe.vue +16 -16
  253. package/icons/google.vue +41 -41
  254. package/icons/graph-pie.vue +14 -14
  255. package/icons/hand/hand-thumb-up-filled.vue +5 -5
  256. package/icons/hand/hand-thumb-up.vue +5 -5
  257. package/icons/hand-with-phone/hand-with-phone-dark.vue +52 -52
  258. package/icons/hand-with-phone/hand-with-phone-light.vue +52 -52
  259. package/icons/handshake.vue +5 -5
  260. package/icons/hcheck.vue +14 -14
  261. package/icons/hdocument.vue +7 -7
  262. package/icons/history.vue +5 -5
  263. package/icons/horizontal-more.vue +13 -13
  264. package/icons/hot-line.vue +6 -6
  265. package/icons/hummer.vue +16 -16
  266. package/icons/id.vue +7 -7
  267. package/icons/info/info-circle.vue +29 -29
  268. package/icons/invoice.vue +7 -7
  269. package/icons/judge.vue +14 -14
  270. package/icons/kaspi-qr.vue +13 -13
  271. package/icons/link-chain.vue +28 -28
  272. package/icons/link.vue +7 -7
  273. package/icons/linkedin.vue +24 -24
  274. package/icons/loader-circle.vue +27 -27
  275. package/icons/location.vue +8 -8
  276. package/icons/lock.vue +5 -5
  277. package/icons/logo.vue +15 -15
  278. package/icons/logout.vue +16 -16
  279. package/icons/magnify/magnifying-glass-minus.vue +8 -8
  280. package/icons/magnify/magnifying-glass-plus.vue +9 -9
  281. package/icons/magnify/magnifying-glass.vue +9 -9
  282. package/icons/mail.vue +7 -7
  283. package/icons/mailru.vue +34 -34
  284. package/icons/main-filter.vue +5 -5
  285. package/icons/map/map-pin-filled.vue +7 -7
  286. package/icons/map/map-pin-rect.vue +15 -15
  287. package/icons/map/map-pin.vue +7 -7
  288. package/icons/map-marker-start.vue +7 -7
  289. package/icons/map-paper.vue +5 -5
  290. package/icons/medal.vue +7 -7
  291. package/icons/menu-filled.vue +20 -20
  292. package/icons/menu.vue +8 -8
  293. package/icons/message/message.vue +12 -12
  294. package/icons/minus/minus-circle.vue +10 -10
  295. package/icons/money.vue +5 -5
  296. package/icons/monitoring.vue +10 -10
  297. package/icons/moon.vue +8 -8
  298. package/icons/more.vue +29 -29
  299. package/icons/note-pencil.vue +14 -14
  300. package/icons/note.vue +14 -14
  301. package/icons/notification.vue +16 -16
  302. package/icons/paperclip.vue +7 -7
  303. package/icons/payment/payment-card.vue +6 -6
  304. package/icons/payment/payment-kaspi.vue +11 -11
  305. package/icons/person-vector.vue +7 -7
  306. package/icons/person-with-briefcase.vue +10 -10
  307. package/icons/phone-filled.vue +5 -5
  308. package/icons/phone.vue +7 -7
  309. package/icons/plus/plus-circle.vue +8 -8
  310. package/icons/plus/plus.vue +13 -13
  311. package/icons/profile.vue +5 -5
  312. package/icons/radio/radio-check.vue +8 -8
  313. package/icons/radio/radio-empty.vue +10 -10
  314. package/icons/receipt.vue +8 -8
  315. package/icons/robot.vue +14 -14
  316. package/icons/sanctions.vue +8 -8
  317. package/icons/scales/scale.vue +16 -16
  318. package/icons/scales/scales.vue +5 -5
  319. package/icons/scales/standing-scales.vue +15 -15
  320. package/icons/search.vue +27 -27
  321. package/icons/share/share-alt.vue +5 -5
  322. package/icons/share/share.vue +14 -14
  323. package/icons/ship.vue +8 -8
  324. package/icons/socials/face-book.vue +15 -15
  325. package/icons/socials/instagram.vue +19 -19
  326. package/icons/socials/telegram.vue +15 -15
  327. package/icons/socials/tik-tok.vue +15 -15
  328. package/icons/socials/youtube.vue +16 -16
  329. package/icons/sort/sort-asc.vue +15 -15
  330. package/icons/sort/sort-desc.vue +15 -15
  331. package/icons/splitting-arrows.vue +8 -8
  332. package/icons/star/star-filled.vue +40 -40
  333. package/icons/star/star-half-filled.vue +20 -20
  334. package/icons/star/star.vue +25 -25
  335. package/icons/sun.vue +14 -14
  336. package/icons/sviazi.vue +5 -5
  337. package/icons/tag.vue +30 -30
  338. package/icons/tasks.vue +10 -10
  339. package/icons/tender-search.vue +11 -11
  340. package/icons/toasts/check-circle-toast.vue +6 -6
  341. package/icons/toasts/warning-triangle-toast.vue +7 -7
  342. package/icons/trash.vue +13 -13
  343. package/icons/triangle.vue +10 -10
  344. package/icons/truck.vue +7 -7
  345. package/icons/user-square.vue +14 -14
  346. package/icons/user.vue +22 -22
  347. package/icons/users-focus.vue +8 -8
  348. package/icons/users-three.vue +7 -7
  349. package/icons/users.vue +8 -8
  350. package/icons/warning/warning-circle.vue +29 -29
  351. package/icons/warning/warning-triangle-filled.vue +12 -12
  352. package/icons/warning/warning-triangle.vue +28 -28
  353. package/icons/whatsapp.vue +8 -8
  354. package/icons/work-bag.vue +11 -11
  355. package/icons/work-case.vue +9 -9
  356. package/icons/work-search.vue +10 -10
  357. package/icons/work.vue +5 -5
  358. package/icons/x-mark.vue +15 -15
  359. package/icons/yandex.vue +28 -28
  360. package/illustrations/address-location.vue +38 -38
  361. package/illustrations/ball-with-chain.vue +120 -120
  362. package/illustrations/bill.vue +133 -133
  363. package/illustrations/buildings.vue +82 -82
  364. package/illustrations/calendar.vue +156 -156
  365. package/illustrations/chains.vue +152 -152
  366. package/illustrations/coin-percent.vue +126 -126
  367. package/illustrations/coins-stack.vue +202 -202
  368. package/illustrations/delete-dark.vue +31 -31
  369. package/illustrations/delete.vue +32 -32
  370. package/illustrations/doc-with-stamp.vue +126 -126
  371. package/illustrations/document.vue +64 -64
  372. package/illustrations/door.vue +74 -74
  373. package/illustrations/empty-box.vue +77 -77
  374. package/illustrations/empty-wallet.vue +161 -161
  375. package/illustrations/graph-in-coin.vue +119 -119
  376. package/illustrations/hammer.vue +156 -156
  377. package/illustrations/hand-cash.vue +108 -108
  378. package/illustrations/info.vue +39 -39
  379. package/illustrations/mail.vue +68 -68
  380. package/illustrations/ok.vue +62 -62
  381. package/illustrations/people-group.vue +237 -237
  382. package/illustrations/person-with-phone.vue +187 -187
  383. package/illustrations/person.vue +159 -159
  384. package/illustrations/phone-check.vue +90 -90
  385. package/illustrations/phone-payment-method.vue +223 -223
  386. package/illustrations/stop-hand.vue +77 -77
  387. package/illustrations/stop-sign.vue +34 -34
  388. package/illustrations/suit.vue +111 -111
  389. package/illustrations/suitcase.vue +105 -105
  390. package/illustrations/terminal-dark.vue +48 -48
  391. package/illustrations/terminal.vue +234 -234
  392. package/illustrations/trash-can.vue +108 -108
  393. package/illustrations/turn-on-tariff.vue +38 -38
  394. package/illustrations/two-persons.vue +169 -169
  395. package/lang/en.ts +834 -834
  396. package/lang/kk.ts +836 -836
  397. package/lang/ru.ts +837 -837
  398. package/layouts/default.vue +13 -13
  399. package/nuxt.config.ts +88 -88
  400. package/package.json +69 -69
  401. package/plugins/maska.ts +4 -4
  402. package/plugins/toast.client.ts +58 -58
  403. package/public/kaspi/logo.svg +4 -4
  404. package/shared/constans/pages.ts +89 -89
  405. package/tailwind.config.ts +163 -163
  406. package/tests/AButton.test.ts +81 -81
  407. package/tsconfig.json +6 -6
  408. package/utils/getMaxZindex.ts +25 -25
  409. package/utils/localizedNavigation.ts +36 -36
  410. package/vitest.config.ts +14 -14
@@ -1,21 +1,21 @@
1
- <template>
2
- <svg
3
- width="200"
4
- height="62"
5
- viewBox="0 0 200 62"
6
- fill="none"
7
- xmlns="http://www.w3.org/2000/svg"
8
- class="group"
9
- >
10
- <path
11
- class="fill-[#2C3E50] dark: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="fill-[#2C3E50] dark: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>
1
+ <template>
2
+ <svg
3
+ width="200"
4
+ height="62"
5
+ viewBox="0 0 200 62"
6
+ fill="none"
7
+ xmlns="http://www.w3.org/2000/svg"
8
+ class="group"
9
+ >
10
+ <path
11
+ class="fill-[#2C3E50] dark: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="fill-[#2C3E50] dark: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>
@@ -1,25 +1,25 @@
1
- <script setup lang="ts">
2
-
3
- </script>
4
-
5
- <template>
6
- <svg width="200" height="62" viewBox="0 0 200 62" fill="none" xmlns="http://www.w3.org/2000/svg" class="group">
7
-
8
- <path class="fill-[#023DFF]" d="M48.0517 19.0322C50.6523 19.0322 52.7536 21.1321 52.7536 23.7309V25.7545C52.7536 28.3533 50.6523 30.4532 48.0517 30.4532H28.7861V23.7309C28.7861 21.1321 30.8875 19.0322 33.4881 19.0322H48.0517Z" fill="#BDC7CE"/>
9
- <path class="fill-[#00BB00]" d="M48.0517 42.9912C50.6523 42.9912 52.7536 40.8914 52.7536 38.2926V36.269C52.7536 33.6702 50.6523 31.5703 48.0517 31.5703H28.7861V38.2926C28.7861 40.8914 30.8875 42.9912 33.4881 42.9912H48.0517Z" fill="#BDC7CE"/>
10
- <path class="fill-[#000000] dark:fill-[#E3E5E8]" d="M60.9558 36.026H64.2569C65.0404 36.026 65.6509 35.8319 66.0738 35.4369C66.5039 35.0488 66.7188 34.5291 66.7188 33.8776C66.7188 33.2262 66.5039 32.7134 66.0738 32.3114C65.6439 31.9095 65.0404 31.7085 64.2569 31.7085H60.9558V36.0191V36.026ZM60.9558 29.6363H63.5634C64.2221 29.6363 64.7492 29.4492 65.1445 29.0681C65.5328 28.6869 65.7339 28.2087 65.7339 27.6197C65.7339 27.0306 65.5398 26.5801 65.1445 26.192C64.7492 25.804 64.2221 25.603 63.5634 25.603H60.9558V29.6433V29.6363ZM58.5146 38.2783V23.3438H63.7297C65.0474 23.3438 66.1154 23.7388 66.9268 24.5219C67.7381 25.305 68.1474 26.2822 68.1474 27.4464C68.1474 28.68 67.6897 29.6502 66.7812 30.3501C68.3694 31.0362 69.1599 32.249 69.1599 33.9885C69.1599 35.2775 68.7022 36.3171 67.7797 37.1002C66.8643 37.8833 65.6785 38.2783 64.2361 38.2783H58.5146Z" fill="#BDC7CE"/>
11
- <path class="fill-[#000000] dark:fill-[#E3E5E8]" d="M75.2833 29.567C74.666 29.567 74.0834 29.7541 73.5356 30.1214C72.9877 30.4956 72.641 31.057 72.4815 31.8124H78.078C77.9672 31.0847 77.6549 30.5234 77.1418 30.1422C76.6286 29.7541 76.0114 29.567 75.2763 29.567H75.2833ZM75.4704 38.4376C73.9655 38.4376 72.6965 37.9179 71.6493 36.8783C70.602 35.8388 70.082 34.5498 70.082 33.0113C70.082 31.4728 70.5952 30.1768 71.6145 29.1443C72.634 28.1047 73.9101 27.585 75.422 27.585C76.9338 27.585 78.2584 28.1324 79.2084 29.2274C80.1585 30.3224 80.5954 31.7431 80.5123 33.4964H72.3912C72.4745 34.335 72.8143 35.0141 73.4108 35.5269C74.0072 36.0398 74.6937 36.2962 75.4636 36.2962C76.6286 36.2962 77.5511 35.8665 78.2375 35.0141L79.9019 36.4417C78.8478 37.7723 77.3707 38.4376 75.4636 38.4376H75.4704Z" fill="#BDC7CE"/>
12
- <path class="fill-[#000000] dark:fill-[#E3E5E8]" d="M81.9962 38.2705V27.7644H84.3126V28.8801C84.9852 28.0554 85.8937 27.6396 87.0241 27.6396C87.3917 27.6396 87.6829 27.6743 87.9049 27.7436V30.1414C87.5859 30.0028 87.1768 29.9335 86.6842 29.9335C85.5887 29.9335 84.7979 30.3701 84.3056 31.2364V38.2775H81.9893L81.9962 38.2705Z" fill="#BDC7CE"/>
13
- <path class="fill-[#000000] dark:fill-[#E3E5E8]" d="M93.3147 29.567C92.6975 29.567 92.1149 29.7541 91.5671 30.1214C91.0191 30.4956 90.6725 31.057 90.513 31.8124H96.1095C95.9984 31.0847 95.6864 30.5234 95.1732 30.1422C94.6601 29.7541 94.0428 29.567 93.3147 29.567ZM93.5019 38.4376C91.997 38.4376 90.7279 37.9179 89.6806 36.8783C88.6334 35.8388 88.1133 34.5498 88.1133 33.0113C88.1133 31.4728 88.6266 30.1768 89.646 29.1443C90.6655 28.1117 91.9416 27.585 93.4534 27.585C94.9651 27.585 96.2898 28.1324 97.2399 29.2274C98.1899 30.3224 98.6269 31.7431 98.5436 33.4964H90.4227C90.506 34.335 90.8458 35.0141 91.4422 35.5269C92.0386 36.0398 92.7251 36.2962 93.4949 36.2962C94.6601 36.2962 95.5823 35.8665 96.269 35.0141L97.9334 36.4417C96.8792 37.7723 95.402 38.4376 93.4949 38.4376H93.5019Z" fill="#BDC7CE"/>
14
- <path class="fill-[#000000] dark:fill-[#E3E5E8]" d="M100.021 38.2714V23.3438H102.337V32.554L106.546 27.7652H109.383L104.986 32.7203L109.91 38.2714H106.983L102.337 33.0183V38.2714H100.021Z" fill="#BDC7CE"/>
15
- <path class="fill-[#000000] dark:fill-[#E3E5E8]" d="M114.369 29.567C113.752 29.567 113.169 29.7541 112.622 30.1214C112.074 30.4956 111.727 31.057 111.567 31.8124H117.164C117.053 31.0847 116.741 30.5233 116.228 30.1422C115.715 29.7541 115.097 29.567 114.362 29.567H114.369ZM114.556 38.4376C113.051 38.4376 111.782 37.9179 110.735 36.8783C109.688 35.8388 109.168 34.5498 109.168 33.0113C109.168 31.4728 109.681 30.1768 110.7 29.1442C111.72 28.1047 112.996 27.585 114.508 27.585C116.02 27.585 117.344 28.1324 118.294 29.2274C119.244 30.3224 119.681 31.7431 119.598 33.4964H111.477C111.56 34.335 111.9 35.0141 112.497 35.5269C113.093 36.0398 113.78 36.2962 114.55 36.2962C115.715 36.2962 116.637 35.8665 117.323 35.0141L118.988 36.4417C117.934 37.7723 116.457 38.4376 114.55 38.4376H114.556Z" fill="#BDC7CE"/>
16
- <path class="fill-[#000000] dark:fill-[#E3E5E8]" d="M127.861 36.0318H131.162C131.946 36.0318 132.556 35.8378 132.979 35.4428C133.409 35.0547 133.624 34.5349 133.624 33.8835C133.624 33.232 133.409 32.7192 132.979 32.3173C132.549 31.9153 131.946 31.7213 131.162 31.7213H127.861V36.0318ZM127.861 29.6422H130.469C131.127 29.6422 131.655 29.4551 132.05 29.0739C132.438 28.6928 132.639 28.2146 132.639 27.6255C132.639 27.0365 132.445 26.586 132.05 26.1979C131.662 25.8098 131.127 25.6088 130.469 25.6088H127.861V29.6491V29.6422ZM125.42 38.2842V23.3496H130.635C131.953 23.3496 133.021 23.7446 133.832 24.5277C134.643 25.3108 135.053 26.288 135.053 27.4523C135.053 28.6858 134.595 29.6561 133.687 30.356C135.268 31.0421 136.065 32.2549 136.065 33.9944C136.065 35.2834 135.607 36.3229 134.685 37.106C133.77 37.8891 132.584 38.2842 131.141 38.2842H125.42Z" fill="#BDC7CE"/>
17
- <path class="fill-[#000000] dark:fill-[#E3E5E8]" d="M142.48 36.3028C143.659 36.3028 144.568 35.8385 145.213 34.9168V31.1537C144.582 30.2112 143.673 29.7469 142.48 29.7469C141.572 29.7469 140.816 30.0587 140.226 30.6825C139.637 31.3062 139.346 32.0893 139.346 33.0249C139.346 33.9604 139.644 34.7436 140.226 35.3673C140.816 35.991 141.565 36.3028 142.48 36.3028ZM145.213 38.2849V37.4047C144.429 38.1047 143.437 38.4581 142.244 38.4581C140.733 38.4581 139.471 37.9314 138.479 36.878C137.48 35.8247 136.988 34.5426 136.988 33.0318C136.988 31.521 137.487 30.2389 138.479 29.1855C139.477 28.1322 140.733 27.6055 142.244 27.6055C143.423 27.6055 144.408 27.9658 145.213 28.6796V27.7787H147.529V38.2918H145.213V38.2849Z" fill="#BDC7CE"/>
18
- <path class="fill-[#000000] dark:fill-[#E3E5E8]" d="M149.741 38.2771V27.764H152.057V28.755C152.744 27.9858 153.736 27.5977 155.025 27.5977C156.315 27.5977 157.349 28.0065 158.119 28.8243C158.888 29.6421 159.277 30.7301 159.277 32.0746V38.2771H156.96V32.3448C156.96 31.5617 156.752 30.9311 156.343 30.4529C155.927 29.9747 155.338 29.7391 154.568 29.7391C153.361 29.7391 152.529 30.3143 152.064 31.4647V38.2771H149.748H149.741Z" fill="#BDC7CE"/>
19
- <path class="fill-[#000000] dark:fill-[#E3E5E8]" d="M161.35 38.2772V23.3496H163.667V32.5598L167.876 27.7641H170.712L166.316 32.7262L171.239 38.2772H168.313L163.667 33.0242V38.2772H161.35Z" fill="#BDC7CE"/>
20
- </svg>
21
- </template>
22
-
23
- <style scoped>
24
-
25
- </style>
1
+ <script setup lang="ts">
2
+
3
+ </script>
4
+
5
+ <template>
6
+ <svg width="200" height="62" viewBox="0 0 200 62" fill="none" xmlns="http://www.w3.org/2000/svg" class="group">
7
+
8
+ <path class="fill-[#023DFF]" d="M48.0517 19.0322C50.6523 19.0322 52.7536 21.1321 52.7536 23.7309V25.7545C52.7536 28.3533 50.6523 30.4532 48.0517 30.4532H28.7861V23.7309C28.7861 21.1321 30.8875 19.0322 33.4881 19.0322H48.0517Z" fill="#BDC7CE"/>
9
+ <path class="fill-[#00BB00]" d="M48.0517 42.9912C50.6523 42.9912 52.7536 40.8914 52.7536 38.2926V36.269C52.7536 33.6702 50.6523 31.5703 48.0517 31.5703H28.7861V38.2926C28.7861 40.8914 30.8875 42.9912 33.4881 42.9912H48.0517Z" fill="#BDC7CE"/>
10
+ <path class="fill-[#000000] dark:fill-[#E3E5E8]" d="M60.9558 36.026H64.2569C65.0404 36.026 65.6509 35.8319 66.0738 35.4369C66.5039 35.0488 66.7188 34.5291 66.7188 33.8776C66.7188 33.2262 66.5039 32.7134 66.0738 32.3114C65.6439 31.9095 65.0404 31.7085 64.2569 31.7085H60.9558V36.0191V36.026ZM60.9558 29.6363H63.5634C64.2221 29.6363 64.7492 29.4492 65.1445 29.0681C65.5328 28.6869 65.7339 28.2087 65.7339 27.6197C65.7339 27.0306 65.5398 26.5801 65.1445 26.192C64.7492 25.804 64.2221 25.603 63.5634 25.603H60.9558V29.6433V29.6363ZM58.5146 38.2783V23.3438H63.7297C65.0474 23.3438 66.1154 23.7388 66.9268 24.5219C67.7381 25.305 68.1474 26.2822 68.1474 27.4464C68.1474 28.68 67.6897 29.6502 66.7812 30.3501C68.3694 31.0362 69.1599 32.249 69.1599 33.9885C69.1599 35.2775 68.7022 36.3171 67.7797 37.1002C66.8643 37.8833 65.6785 38.2783 64.2361 38.2783H58.5146Z" fill="#BDC7CE"/>
11
+ <path class="fill-[#000000] dark:fill-[#E3E5E8]" d="M75.2833 29.567C74.666 29.567 74.0834 29.7541 73.5356 30.1214C72.9877 30.4956 72.641 31.057 72.4815 31.8124H78.078C77.9672 31.0847 77.6549 30.5234 77.1418 30.1422C76.6286 29.7541 76.0114 29.567 75.2763 29.567H75.2833ZM75.4704 38.4376C73.9655 38.4376 72.6965 37.9179 71.6493 36.8783C70.602 35.8388 70.082 34.5498 70.082 33.0113C70.082 31.4728 70.5952 30.1768 71.6145 29.1443C72.634 28.1047 73.9101 27.585 75.422 27.585C76.9338 27.585 78.2584 28.1324 79.2084 29.2274C80.1585 30.3224 80.5954 31.7431 80.5123 33.4964H72.3912C72.4745 34.335 72.8143 35.0141 73.4108 35.5269C74.0072 36.0398 74.6937 36.2962 75.4636 36.2962C76.6286 36.2962 77.5511 35.8665 78.2375 35.0141L79.9019 36.4417C78.8478 37.7723 77.3707 38.4376 75.4636 38.4376H75.4704Z" fill="#BDC7CE"/>
12
+ <path class="fill-[#000000] dark:fill-[#E3E5E8]" d="M81.9962 38.2705V27.7644H84.3126V28.8801C84.9852 28.0554 85.8937 27.6396 87.0241 27.6396C87.3917 27.6396 87.6829 27.6743 87.9049 27.7436V30.1414C87.5859 30.0028 87.1768 29.9335 86.6842 29.9335C85.5887 29.9335 84.7979 30.3701 84.3056 31.2364V38.2775H81.9893L81.9962 38.2705Z" fill="#BDC7CE"/>
13
+ <path class="fill-[#000000] dark:fill-[#E3E5E8]" d="M93.3147 29.567C92.6975 29.567 92.1149 29.7541 91.5671 30.1214C91.0191 30.4956 90.6725 31.057 90.513 31.8124H96.1095C95.9984 31.0847 95.6864 30.5234 95.1732 30.1422C94.6601 29.7541 94.0428 29.567 93.3147 29.567ZM93.5019 38.4376C91.997 38.4376 90.7279 37.9179 89.6806 36.8783C88.6334 35.8388 88.1133 34.5498 88.1133 33.0113C88.1133 31.4728 88.6266 30.1768 89.646 29.1443C90.6655 28.1117 91.9416 27.585 93.4534 27.585C94.9651 27.585 96.2898 28.1324 97.2399 29.2274C98.1899 30.3224 98.6269 31.7431 98.5436 33.4964H90.4227C90.506 34.335 90.8458 35.0141 91.4422 35.5269C92.0386 36.0398 92.7251 36.2962 93.4949 36.2962C94.6601 36.2962 95.5823 35.8665 96.269 35.0141L97.9334 36.4417C96.8792 37.7723 95.402 38.4376 93.4949 38.4376H93.5019Z" fill="#BDC7CE"/>
14
+ <path class="fill-[#000000] dark:fill-[#E3E5E8]" d="M100.021 38.2714V23.3438H102.337V32.554L106.546 27.7652H109.383L104.986 32.7203L109.91 38.2714H106.983L102.337 33.0183V38.2714H100.021Z" fill="#BDC7CE"/>
15
+ <path class="fill-[#000000] dark:fill-[#E3E5E8]" d="M114.369 29.567C113.752 29.567 113.169 29.7541 112.622 30.1214C112.074 30.4956 111.727 31.057 111.567 31.8124H117.164C117.053 31.0847 116.741 30.5233 116.228 30.1422C115.715 29.7541 115.097 29.567 114.362 29.567H114.369ZM114.556 38.4376C113.051 38.4376 111.782 37.9179 110.735 36.8783C109.688 35.8388 109.168 34.5498 109.168 33.0113C109.168 31.4728 109.681 30.1768 110.7 29.1442C111.72 28.1047 112.996 27.585 114.508 27.585C116.02 27.585 117.344 28.1324 118.294 29.2274C119.244 30.3224 119.681 31.7431 119.598 33.4964H111.477C111.56 34.335 111.9 35.0141 112.497 35.5269C113.093 36.0398 113.78 36.2962 114.55 36.2962C115.715 36.2962 116.637 35.8665 117.323 35.0141L118.988 36.4417C117.934 37.7723 116.457 38.4376 114.55 38.4376H114.556Z" fill="#BDC7CE"/>
16
+ <path class="fill-[#000000] dark:fill-[#E3E5E8]" d="M127.861 36.0318H131.162C131.946 36.0318 132.556 35.8378 132.979 35.4428C133.409 35.0547 133.624 34.5349 133.624 33.8835C133.624 33.232 133.409 32.7192 132.979 32.3173C132.549 31.9153 131.946 31.7213 131.162 31.7213H127.861V36.0318ZM127.861 29.6422H130.469C131.127 29.6422 131.655 29.4551 132.05 29.0739C132.438 28.6928 132.639 28.2146 132.639 27.6255C132.639 27.0365 132.445 26.586 132.05 26.1979C131.662 25.8098 131.127 25.6088 130.469 25.6088H127.861V29.6491V29.6422ZM125.42 38.2842V23.3496H130.635C131.953 23.3496 133.021 23.7446 133.832 24.5277C134.643 25.3108 135.053 26.288 135.053 27.4523C135.053 28.6858 134.595 29.6561 133.687 30.356C135.268 31.0421 136.065 32.2549 136.065 33.9944C136.065 35.2834 135.607 36.3229 134.685 37.106C133.77 37.8891 132.584 38.2842 131.141 38.2842H125.42Z" fill="#BDC7CE"/>
17
+ <path class="fill-[#000000] dark:fill-[#E3E5E8]" d="M142.48 36.3028C143.659 36.3028 144.568 35.8385 145.213 34.9168V31.1537C144.582 30.2112 143.673 29.7469 142.48 29.7469C141.572 29.7469 140.816 30.0587 140.226 30.6825C139.637 31.3062 139.346 32.0893 139.346 33.0249C139.346 33.9604 139.644 34.7436 140.226 35.3673C140.816 35.991 141.565 36.3028 142.48 36.3028ZM145.213 38.2849V37.4047C144.429 38.1047 143.437 38.4581 142.244 38.4581C140.733 38.4581 139.471 37.9314 138.479 36.878C137.48 35.8247 136.988 34.5426 136.988 33.0318C136.988 31.521 137.487 30.2389 138.479 29.1855C139.477 28.1322 140.733 27.6055 142.244 27.6055C143.423 27.6055 144.408 27.9658 145.213 28.6796V27.7787H147.529V38.2918H145.213V38.2849Z" fill="#BDC7CE"/>
18
+ <path class="fill-[#000000] dark:fill-[#E3E5E8]" d="M149.741 38.2771V27.764H152.057V28.755C152.744 27.9858 153.736 27.5977 155.025 27.5977C156.315 27.5977 157.349 28.0065 158.119 28.8243C158.888 29.6421 159.277 30.7301 159.277 32.0746V38.2771H156.96V32.3448C156.96 31.5617 156.752 30.9311 156.343 30.4529C155.927 29.9747 155.338 29.7391 154.568 29.7391C153.361 29.7391 152.529 30.3143 152.064 31.4647V38.2771H149.748H149.741Z" fill="#BDC7CE"/>
19
+ <path class="fill-[#000000] dark:fill-[#E3E5E8]" d="M161.35 38.2772V23.3496H163.667V32.5598L167.876 27.7641H170.712L166.316 32.7262L171.239 38.2772H168.313L163.667 33.0242V38.2772H161.35Z" fill="#BDC7CE"/>
20
+ </svg>
21
+ </template>
22
+
23
+ <style scoped>
24
+
25
+ </style>
@@ -1,16 +1,16 @@
1
- <script setup lang="ts">
2
-
3
- </script>
4
-
5
- <template>
6
- <svg width="200" height="62" viewBox="0 0 146 62" fill="none" xmlns="http://www.w3.org/2000/svg" class="group">
7
- <path class="fill-[#15599D]" fill-rule="evenodd" clip-rule="evenodd" d="M131.176 41.6184H133.434C133.673 41.6184 133.866 41.4067 133.866 41.1458V41.1337V34.7911H137.725C142.001 34.7911 145.5 32.3029 145.5 27.5395C145.5 23.2008 142.641 20.3789 138.114 20.3789H131.176C130.775 20.3789 130.45 20.7338 130.45 21.1713V40.8258C130.45 41.2637 130.775 41.6184 131.176 41.6184ZM64.8104 38.4432L64.8105 38.4557C64.8105 38.6105 64.7424 38.7481 64.6369 38.8342C62.7298 40.5544 60.0429 41.9824 56.7023 41.9824C50.6216 41.9824 46.623 37.2488 46.623 30.9985C46.623 25.0514 50.7881 20.0146 56.647 20.0146C59.6894 20.0146 61.6791 20.8467 63.5015 22.3575L63.5023 22.3581L63.5053 22.3606C63.6884 22.5047 63.8077 22.7393 63.8077 23.0048C63.8077 23.2057 63.7392 23.3895 63.6262 23.5291L63.6318 23.5285L62.2373 25.3454C62.1582 25.4567 62.0346 25.5284 61.8956 25.5284C61.7953 25.5284 61.7027 25.4908 61.6293 25.428L61.6289 25.4277L61.6206 25.4205C60.2301 24.1992 58.7983 23.4432 56.508 23.4432C52.926 23.4432 50.205 26.8721 50.205 30.9985C50.205 35.3679 52.8426 38.5841 56.8135 38.5841C58.6461 38.5841 60.3122 37.9469 61.5063 36.9758V33.0011H56.9793H56.9681C56.7292 33.0011 56.5356 32.7895 56.5356 32.5287H56.5359V32.5164V30.24L56.5356 30.227C56.5356 29.966 56.7292 29.7545 56.9681 29.7545H56.9793H64.3782H64.3784C64.6172 29.7548 64.8105 29.9662 64.8105 30.2271L64.8104 30.2392V38.4432ZM69.0542 41.6184H71.3121C71.551 41.6184 71.7446 41.4067 71.7446 41.1458H71.7444V41.1337V34.2147H75.9649L80.5878 41.2987L80.5886 41.2975C80.7207 41.4922 80.9325 41.6184 81.1714 41.6184H83.9838C84.2226 41.6184 84.416 41.4067 84.416 41.1458C84.416 41.0354 84.3813 40.9338 84.3231 40.8531L79.5746 33.5775C82.2958 32.7281 84.2118 30.6344 84.2118 27.1454C84.2118 23.0488 81.5461 20.3789 76.9923 20.3789H69.0637L69.0542 20.3786C68.6537 20.3786 68.329 20.7337 68.329 21.1712V40.8258C68.329 41.2637 68.6537 41.6184 69.0542 41.6184ZM71.7444 30.9074V24.2495C71.7444 23.9885 71.938 23.7771 72.1768 23.7771H76.7146C79.2413 23.7771 80.7408 25.0212 80.7408 27.2965C80.7408 29.5118 79.1859 30.9074 76.7424 30.9074H71.7444ZM96.7807 41.9824C102.751 41.9824 106.971 36.9758 106.971 30.9985C106.971 24.9605 102.806 20.0146 96.8363 20.0146C90.8663 20.0146 86.6457 25.0212 86.6457 30.9985C86.6457 37.0365 90.8108 41.9824 96.7807 41.9824ZM96.8363 38.5539C92.9766 38.5539 90.2278 35.1249 90.2278 30.9985C90.2278 26.8112 92.921 23.4432 96.7807 23.4432C100.64 23.4432 103.389 26.8721 103.389 30.9985C103.389 35.1858 100.696 38.5539 96.8363 38.5539ZM118.154 41.9521C123.235 41.9521 126.511 38.7664 126.511 32.4247V21.1713C126.511 20.7338 126.187 20.3789 125.786 20.3789H123.528C123.289 20.3789 123.096 20.5903 123.096 20.8513H123.096V20.8635V32.6068C123.096 36.5205 121.236 38.5234 118.209 38.5234C115.155 38.5234 113.294 36.3994 113.294 32.4549V20.8635V20.8513H113.294C113.294 20.5903 113.101 20.3789 112.862 20.3789H110.604C110.203 20.3789 109.879 20.7338 109.879 21.1713V32.6068C109.879 38.7664 113.1 41.9521 118.154 41.9521ZM133.866 31.4234V24.2495C133.866 23.9885 134.059 23.7771 134.298 23.7771H137.836C140.391 23.7771 142.029 25.0817 142.029 27.5702C142.029 29.8454 140.419 31.4234 137.836 31.4234H133.866Z" fill="#BDC7CE"/>
8
- <path class="fill-[#15599D]" fill-rule="evenodd" clip-rule="evenodd" d="M29.0607 47.5968C35.2868 45.1747 40.1513 39.6418 40.1513 30.9994C40.1513 22.3575 35.2868 16.8243 29.0604 14.4023C26.6226 13.4538 23.9748 12.9797 21.325 12.9797C18.6753 12.9797 16.0275 13.4538 13.5896 14.4023C7.36344 16.8243 2.49886 22.3575 2.49886 30.9994C2.49886 39.6418 7.36345 45.1747 13.5898 47.5968C16.0276 48.5454 18.6755 49.0198 21.3252 49.0198C23.9749 49.0198 26.6228 48.5454 29.0607 47.5968ZM42.1505 31C42.1505 57.6667 0.5 57.6667 0.5 31C0.5 4.33334 42.1505 4.33334 42.1505 31ZM41.0614 30.9994C41.0614 40.134 35.9304 45.9783 29.3627 48.5334C26.8255 49.5205 24.0741 50.0141 21.3252 50.0141C18.5763 50.0141 15.8248 49.5205 13.2876 48.5334C6.71986 45.9783 1.58887 40.134 1.58887 30.9994C1.58887 21.8655 6.71986 16.021 13.2875 13.4661C15.8247 12.4787 18.5761 11.9853 21.325 11.9853C24.074 11.9853 26.8254 12.4787 29.3626 13.4661C35.9304 16.021 41.0614 21.8655 41.0614 30.9994Z" fill="#BDC7CE"/>
9
- <path class="fill-[#fff]" fill-rule="evenodd" clip-rule="evenodd" d="M41.1033 31.0005C41.1033 40.135 35.9724 45.9793 29.4047 48.5344C26.8674 49.5216 24.1161 50.0151 21.3673 50.0151C18.6183 50.0151 15.8668 49.5216 13.3296 48.5344C6.76185 45.9793 1.63086 40.135 1.63086 31.0005C1.63086 21.8665 6.76185 16.022 13.3295 13.4671C15.8667 12.4797 18.6182 11.9863 21.367 11.9863C24.116 11.9863 26.8673 12.4797 29.4046 13.4671C35.9724 16.022 41.1033 21.8665 41.1033 31.0005ZM29.1027 47.5979C35.3288 45.1757 40.1934 39.6429 40.1934 31.0005C40.1934 22.3585 35.3288 16.8253 29.1024 14.4033C26.6646 13.4549 24.0168 12.9807 21.367 12.9807C18.7174 12.9807 16.0694 13.4549 13.6316 14.4033C7.40544 16.8253 2.54085 22.3585 2.54085 31.0005C2.54085 39.6429 7.40544 45.1757 13.6319 47.5979C16.0695 48.5464 18.7175 49.0209 21.3673 49.0209C24.0169 49.0209 26.6648 48.5464 29.1027 47.5979Z" fill="#FEFEFE"/>
10
- <path class="fill-[#fff]" fill-rule="evenodd" clip-rule="evenodd" d="M10.5575 41.7314H18.5811C23.0169 41.7314 25.9362 39.77 25.9362 35.8457C25.9362 32.902 24.5321 31.4617 22.2587 30.511C23.6621 29.6526 24.8418 28.3043 24.8418 25.8817C24.8418 21.8573 21.6333 20.2715 18.3566 20.2715H10.5575C10.1595 20.2715 9.83691 20.6241 9.83691 21.0592V21.062V40.9438V40.944C9.83691 41.3791 10.1595 41.7314 10.5575 41.7314ZM14.0486 28.9479V24.8827V24.8826C14.0488 24.6216 14.2421 24.4104 14.4809 24.4104H17.7108C19.5354 24.4104 20.5462 25.2071 20.5462 26.618C20.5462 28.2731 19.3387 28.9479 17.4304 28.9479H14.0486ZM14.0486 37.1201V32.8717H18.4407C20.6581 32.8717 21.6406 33.7611 21.6406 35.2014C21.6406 36.8573 20.4896 37.5927 18.5811 37.5927H14.4809C14.2421 37.5927 14.0486 37.3814 14.0486 37.1204V37.1201ZM28.8422 41.7314H32.0129C32.4109 41.7314 32.7334 41.3791 32.7334 40.944V40.9438V21.0592V21.059C32.7331 20.6239 32.4109 20.2715 32.0129 20.2715H28.8422C28.6035 20.2715 28.4102 20.4829 28.4101 20.744V41.2591C28.4101 41.5201 28.6035 41.7314 28.8422 41.7314Z" fill="white"/>
11
- </svg>
12
- </template>
13
-
14
- <style scoped>
15
-
16
- </style>
1
+ <script setup lang="ts">
2
+
3
+ </script>
4
+
5
+ <template>
6
+ <svg width="200" height="62" viewBox="0 0 146 62" fill="none" xmlns="http://www.w3.org/2000/svg" class="group">
7
+ <path class="fill-[#15599D]" fill-rule="evenodd" clip-rule="evenodd" d="M131.176 41.6184H133.434C133.673 41.6184 133.866 41.4067 133.866 41.1458V41.1337V34.7911H137.725C142.001 34.7911 145.5 32.3029 145.5 27.5395C145.5 23.2008 142.641 20.3789 138.114 20.3789H131.176C130.775 20.3789 130.45 20.7338 130.45 21.1713V40.8258C130.45 41.2637 130.775 41.6184 131.176 41.6184ZM64.8104 38.4432L64.8105 38.4557C64.8105 38.6105 64.7424 38.7481 64.6369 38.8342C62.7298 40.5544 60.0429 41.9824 56.7023 41.9824C50.6216 41.9824 46.623 37.2488 46.623 30.9985C46.623 25.0514 50.7881 20.0146 56.647 20.0146C59.6894 20.0146 61.6791 20.8467 63.5015 22.3575L63.5023 22.3581L63.5053 22.3606C63.6884 22.5047 63.8077 22.7393 63.8077 23.0048C63.8077 23.2057 63.7392 23.3895 63.6262 23.5291L63.6318 23.5285L62.2373 25.3454C62.1582 25.4567 62.0346 25.5284 61.8956 25.5284C61.7953 25.5284 61.7027 25.4908 61.6293 25.428L61.6289 25.4277L61.6206 25.4205C60.2301 24.1992 58.7983 23.4432 56.508 23.4432C52.926 23.4432 50.205 26.8721 50.205 30.9985C50.205 35.3679 52.8426 38.5841 56.8135 38.5841C58.6461 38.5841 60.3122 37.9469 61.5063 36.9758V33.0011H56.9793H56.9681C56.7292 33.0011 56.5356 32.7895 56.5356 32.5287H56.5359V32.5164V30.24L56.5356 30.227C56.5356 29.966 56.7292 29.7545 56.9681 29.7545H56.9793H64.3782H64.3784C64.6172 29.7548 64.8105 29.9662 64.8105 30.2271L64.8104 30.2392V38.4432ZM69.0542 41.6184H71.3121C71.551 41.6184 71.7446 41.4067 71.7446 41.1458H71.7444V41.1337V34.2147H75.9649L80.5878 41.2987L80.5886 41.2975C80.7207 41.4922 80.9325 41.6184 81.1714 41.6184H83.9838C84.2226 41.6184 84.416 41.4067 84.416 41.1458C84.416 41.0354 84.3813 40.9338 84.3231 40.8531L79.5746 33.5775C82.2958 32.7281 84.2118 30.6344 84.2118 27.1454C84.2118 23.0488 81.5461 20.3789 76.9923 20.3789H69.0637L69.0542 20.3786C68.6537 20.3786 68.329 20.7337 68.329 21.1712V40.8258C68.329 41.2637 68.6537 41.6184 69.0542 41.6184ZM71.7444 30.9074V24.2495C71.7444 23.9885 71.938 23.7771 72.1768 23.7771H76.7146C79.2413 23.7771 80.7408 25.0212 80.7408 27.2965C80.7408 29.5118 79.1859 30.9074 76.7424 30.9074H71.7444ZM96.7807 41.9824C102.751 41.9824 106.971 36.9758 106.971 30.9985C106.971 24.9605 102.806 20.0146 96.8363 20.0146C90.8663 20.0146 86.6457 25.0212 86.6457 30.9985C86.6457 37.0365 90.8108 41.9824 96.7807 41.9824ZM96.8363 38.5539C92.9766 38.5539 90.2278 35.1249 90.2278 30.9985C90.2278 26.8112 92.921 23.4432 96.7807 23.4432C100.64 23.4432 103.389 26.8721 103.389 30.9985C103.389 35.1858 100.696 38.5539 96.8363 38.5539ZM118.154 41.9521C123.235 41.9521 126.511 38.7664 126.511 32.4247V21.1713C126.511 20.7338 126.187 20.3789 125.786 20.3789H123.528C123.289 20.3789 123.096 20.5903 123.096 20.8513H123.096V20.8635V32.6068C123.096 36.5205 121.236 38.5234 118.209 38.5234C115.155 38.5234 113.294 36.3994 113.294 32.4549V20.8635V20.8513H113.294C113.294 20.5903 113.101 20.3789 112.862 20.3789H110.604C110.203 20.3789 109.879 20.7338 109.879 21.1713V32.6068C109.879 38.7664 113.1 41.9521 118.154 41.9521ZM133.866 31.4234V24.2495C133.866 23.9885 134.059 23.7771 134.298 23.7771H137.836C140.391 23.7771 142.029 25.0817 142.029 27.5702C142.029 29.8454 140.419 31.4234 137.836 31.4234H133.866Z" fill="#BDC7CE"/>
8
+ <path class="fill-[#15599D]" fill-rule="evenodd" clip-rule="evenodd" d="M29.0607 47.5968C35.2868 45.1747 40.1513 39.6418 40.1513 30.9994C40.1513 22.3575 35.2868 16.8243 29.0604 14.4023C26.6226 13.4538 23.9748 12.9797 21.325 12.9797C18.6753 12.9797 16.0275 13.4538 13.5896 14.4023C7.36344 16.8243 2.49886 22.3575 2.49886 30.9994C2.49886 39.6418 7.36345 45.1747 13.5898 47.5968C16.0276 48.5454 18.6755 49.0198 21.3252 49.0198C23.9749 49.0198 26.6228 48.5454 29.0607 47.5968ZM42.1505 31C42.1505 57.6667 0.5 57.6667 0.5 31C0.5 4.33334 42.1505 4.33334 42.1505 31ZM41.0614 30.9994C41.0614 40.134 35.9304 45.9783 29.3627 48.5334C26.8255 49.5205 24.0741 50.0141 21.3252 50.0141C18.5763 50.0141 15.8248 49.5205 13.2876 48.5334C6.71986 45.9783 1.58887 40.134 1.58887 30.9994C1.58887 21.8655 6.71986 16.021 13.2875 13.4661C15.8247 12.4787 18.5761 11.9853 21.325 11.9853C24.074 11.9853 26.8254 12.4787 29.3626 13.4661C35.9304 16.021 41.0614 21.8655 41.0614 30.9994Z" fill="#BDC7CE"/>
9
+ <path class="fill-[#fff]" fill-rule="evenodd" clip-rule="evenodd" d="M41.1033 31.0005C41.1033 40.135 35.9724 45.9793 29.4047 48.5344C26.8674 49.5216 24.1161 50.0151 21.3673 50.0151C18.6183 50.0151 15.8668 49.5216 13.3296 48.5344C6.76185 45.9793 1.63086 40.135 1.63086 31.0005C1.63086 21.8665 6.76185 16.022 13.3295 13.4671C15.8667 12.4797 18.6182 11.9863 21.367 11.9863C24.116 11.9863 26.8673 12.4797 29.4046 13.4671C35.9724 16.022 41.1033 21.8665 41.1033 31.0005ZM29.1027 47.5979C35.3288 45.1757 40.1934 39.6429 40.1934 31.0005C40.1934 22.3585 35.3288 16.8253 29.1024 14.4033C26.6646 13.4549 24.0168 12.9807 21.367 12.9807C18.7174 12.9807 16.0694 13.4549 13.6316 14.4033C7.40544 16.8253 2.54085 22.3585 2.54085 31.0005C2.54085 39.6429 7.40544 45.1757 13.6319 47.5979C16.0695 48.5464 18.7175 49.0209 21.3673 49.0209C24.0169 49.0209 26.6648 48.5464 29.1027 47.5979Z" fill="#FEFEFE"/>
10
+ <path class="fill-[#fff]" fill-rule="evenodd" clip-rule="evenodd" d="M10.5575 41.7314H18.5811C23.0169 41.7314 25.9362 39.77 25.9362 35.8457C25.9362 32.902 24.5321 31.4617 22.2587 30.511C23.6621 29.6526 24.8418 28.3043 24.8418 25.8817C24.8418 21.8573 21.6333 20.2715 18.3566 20.2715H10.5575C10.1595 20.2715 9.83691 20.6241 9.83691 21.0592V21.062V40.9438V40.944C9.83691 41.3791 10.1595 41.7314 10.5575 41.7314ZM14.0486 28.9479V24.8827V24.8826C14.0488 24.6216 14.2421 24.4104 14.4809 24.4104H17.7108C19.5354 24.4104 20.5462 25.2071 20.5462 26.618C20.5462 28.2731 19.3387 28.9479 17.4304 28.9479H14.0486ZM14.0486 37.1201V32.8717H18.4407C20.6581 32.8717 21.6406 33.7611 21.6406 35.2014C21.6406 36.8573 20.4896 37.5927 18.5811 37.5927H14.4809C14.2421 37.5927 14.0486 37.3814 14.0486 37.1204V37.1201ZM28.8422 41.7314H32.0129C32.4109 41.7314 32.7334 41.3791 32.7334 40.944V40.9438V21.0592V21.059C32.7331 20.6239 32.4109 20.2715 32.0129 20.2715H28.8422C28.6035 20.2715 28.4102 20.4829 28.4101 20.744V41.2591C28.4101 41.5201 28.6035 41.7314 28.8422 41.7314Z" fill="white"/>
11
+ </svg>
12
+ </template>
13
+
14
+ <style scoped>
15
+
16
+ </style>
@@ -1,17 +1,17 @@
1
- <script setup lang="ts">
2
-
3
- </script>
4
-
5
- <template>
6
- <svg width="200" height="62" viewBox="0 0 200 62" fill="none" xmlns="http://www.w3.org/2000/svg" class="group">
7
- <path class="fill-[#5C5754]" fill-rule="evenodd" clip-rule="evenodd" d="M68.0783 26.6758V28.6732H62.3788V30.9945H67.6108V32.8404H62.3788V35.4922H68.202V37.4897H60V26.6758H68.0783Z" fill="#BDC7CE"/>
8
- <path class="fill-[#5C5754]" fill-rule="evenodd" clip-rule="evenodd" d="M76.9332 26.91C76.5482 26.7515 76.1082 26.6758 75.6269 26.6758H69.8105V37.5034H72.1825V33.2744H74.5544C75.1526 33.2744 75.5788 33.4052 75.8401 33.6669C76.1014 33.9286 76.2731 34.342 76.3557 34.9067C76.4176 35.3407 76.4657 35.7952 76.4931 36.2705C76.5207 36.7457 76.6032 37.1521 76.7337 37.4966H79.1057C78.9957 37.3451 78.9132 37.1659 78.8583 36.9456C78.8032 36.7321 78.7619 36.4977 78.7345 36.2567C78.7069 36.0157 78.6864 35.7815 78.6796 35.5472C78.6753 35.4034 78.6685 35.2725 78.6621 35.153C78.6583 35.0781 78.6546 35.0075 78.6519 34.9412C78.6383 34.6656 78.597 34.397 78.5419 34.1215C78.4801 33.846 78.3976 33.5981 78.2737 33.3707C78.157 33.1434 77.9988 32.9437 77.8064 32.7784C77.6137 32.6131 77.3732 32.4891 77.0776 32.4064V32.3789C77.6827 32.1379 78.1157 31.7865 78.3838 31.3182C78.6519 30.8498 78.7826 30.2988 78.7826 29.6651C78.7826 29.2518 78.7069 28.8662 78.5627 28.5079C78.4183 28.1429 78.2051 27.8329 77.93 27.5573C77.655 27.2818 77.3181 27.0683 76.9332 26.91ZM76.0052 31.2018C75.7371 31.4428 75.3247 31.5668 74.7815 31.5668V31.56H72.1827V28.5155H74.7815C75.3247 28.5155 75.7303 28.6395 76.0052 28.8737C76.2734 29.108 76.4109 29.4936 76.4109 30.0171C76.4109 30.5681 76.2803 30.9608 76.0052 31.2018Z" fill="#BDC7CE"/>
9
- <path class="fill-[#5C5754]" fill-rule="evenodd" clip-rule="evenodd" d="M87.1222 37.4082C86.6066 37.6285 86.0909 37.7319 85.5615 37.7319C84.7365 37.7319 83.994 37.5872 83.3271 37.2979C82.6671 37.0087 82.1102 36.616 81.6565 36.1064C81.2027 35.6034 80.852 35.0111 80.6115 34.3292C80.3708 33.6473 80.2471 32.9103 80.2471 32.1252C80.2471 31.3192 80.3708 30.5685 80.6115 29.8728C80.852 29.184 81.2027 28.5779 81.6565 28.0614C82.1102 27.5447 82.6671 27.1452 83.3271 26.8491C83.9871 26.5529 84.7297 26.4082 85.5615 26.4082C86.1184 26.4082 86.6547 26.4909 87.1703 26.6562C87.6929 26.8215 88.1602 27.0695 88.5797 27.3932C88.9991 27.7169 89.3429 28.1164 89.6179 28.5916C89.8929 29.067 90.0579 29.6111 90.1197 30.231H87.8509C87.7066 29.625 87.4384 29.1703 87.0329 28.8673C86.6271 28.5641 86.1389 28.4126 85.5684 28.4126C85.0321 28.4126 84.5783 28.5159 84.2071 28.7225C83.8358 28.9291 83.5334 29.2047 83.2996 29.556C83.0659 29.9073 82.9009 30.2999 82.7909 30.7476C82.6877 31.1953 82.6327 31.6499 82.6327 32.1252C82.6327 32.5797 82.6877 33.0206 82.7909 33.4477C82.894 33.8747 83.0659 34.2604 83.2996 34.6047C83.5334 34.9491 83.8358 35.2247 84.2071 35.4314C84.5783 35.6381 85.0321 35.7413 85.5684 35.7413C86.3521 35.7413 86.964 35.5414 87.3903 35.1421C87.8166 34.7426 88.0709 34.164 88.1397 33.4063H85.7471V31.6361H90.2847V37.4839H88.7721L88.5316 36.2579C88.1053 36.809 87.6379 37.1947 87.1222 37.4082Z" fill="#BDC7CE"/>
10
- <path class="fill-[#5C5754]" d="M84.4875 60.8243C84.4875 60.8243 100.562 45.8023 97.2424 29.5051C96.8611 27.6853 95.898 20.1056 78.2402 10.1807C89.9595 14.0795 94.3734 16.3225 106.85 12.4398C108.787 11.0639 115.098 10.2287 117.761 0.0228733C118.12 -0.606528 118.634 16.3634 112.334 28.2335C112.152 28.8576 101.14 48.8792 88.6522 58.1877C88.2097 58.4762 84.4875 60.8243 84.4875 60.8243Z" fill="#BDC7CE"/>
11
- <path class="fill-[#5C5754]" d="M138.356 1.61035C138.356 1.61035 120.989 15.2159 122.822 31.7177C123.038 33.5612 123.312 41.1872 140 52.5482C128.681 47.6842 123.196 44.3589 110.203 47.9921C109.071 48.907 105.323 49.1276 99.7233 59.3452C99.3087 59.9417 100.331 43.0055 107.678 31.7177C107.916 31.1118 121.747 11.5963 135.024 3.37749C135.491 3.12745 138.356 1.61035 138.356 1.61035Z" fill="#BDC7CE"/>
12
- </svg>
13
- </template>
14
-
15
- <style scoped>
16
-
17
- </style>
1
+ <script setup lang="ts">
2
+
3
+ </script>
4
+
5
+ <template>
6
+ <svg width="200" height="62" viewBox="0 0 200 62" fill="none" xmlns="http://www.w3.org/2000/svg" class="group">
7
+ <path class="fill-[#5C5754]" fill-rule="evenodd" clip-rule="evenodd" d="M68.0783 26.6758V28.6732H62.3788V30.9945H67.6108V32.8404H62.3788V35.4922H68.202V37.4897H60V26.6758H68.0783Z" fill="#BDC7CE"/>
8
+ <path class="fill-[#5C5754]" fill-rule="evenodd" clip-rule="evenodd" d="M76.9332 26.91C76.5482 26.7515 76.1082 26.6758 75.6269 26.6758H69.8105V37.5034H72.1825V33.2744H74.5544C75.1526 33.2744 75.5788 33.4052 75.8401 33.6669C76.1014 33.9286 76.2731 34.342 76.3557 34.9067C76.4176 35.3407 76.4657 35.7952 76.4931 36.2705C76.5207 36.7457 76.6032 37.1521 76.7337 37.4966H79.1057C78.9957 37.3451 78.9132 37.1659 78.8583 36.9456C78.8032 36.7321 78.7619 36.4977 78.7345 36.2567C78.7069 36.0157 78.6864 35.7815 78.6796 35.5472C78.6753 35.4034 78.6685 35.2725 78.6621 35.153C78.6583 35.0781 78.6546 35.0075 78.6519 34.9412C78.6383 34.6656 78.597 34.397 78.5419 34.1215C78.4801 33.846 78.3976 33.5981 78.2737 33.3707C78.157 33.1434 77.9988 32.9437 77.8064 32.7784C77.6137 32.6131 77.3732 32.4891 77.0776 32.4064V32.3789C77.6827 32.1379 78.1157 31.7865 78.3838 31.3182C78.6519 30.8498 78.7826 30.2988 78.7826 29.6651C78.7826 29.2518 78.7069 28.8662 78.5627 28.5079C78.4183 28.1429 78.2051 27.8329 77.93 27.5573C77.655 27.2818 77.3181 27.0683 76.9332 26.91ZM76.0052 31.2018C75.7371 31.4428 75.3247 31.5668 74.7815 31.5668V31.56H72.1827V28.5155H74.7815C75.3247 28.5155 75.7303 28.6395 76.0052 28.8737C76.2734 29.108 76.4109 29.4936 76.4109 30.0171C76.4109 30.5681 76.2803 30.9608 76.0052 31.2018Z" fill="#BDC7CE"/>
9
+ <path class="fill-[#5C5754]" fill-rule="evenodd" clip-rule="evenodd" d="M87.1222 37.4082C86.6066 37.6285 86.0909 37.7319 85.5615 37.7319C84.7365 37.7319 83.994 37.5872 83.3271 37.2979C82.6671 37.0087 82.1102 36.616 81.6565 36.1064C81.2027 35.6034 80.852 35.0111 80.6115 34.3292C80.3708 33.6473 80.2471 32.9103 80.2471 32.1252C80.2471 31.3192 80.3708 30.5685 80.6115 29.8728C80.852 29.184 81.2027 28.5779 81.6565 28.0614C82.1102 27.5447 82.6671 27.1452 83.3271 26.8491C83.9871 26.5529 84.7297 26.4082 85.5615 26.4082C86.1184 26.4082 86.6547 26.4909 87.1703 26.6562C87.6929 26.8215 88.1602 27.0695 88.5797 27.3932C88.9991 27.7169 89.3429 28.1164 89.6179 28.5916C89.8929 29.067 90.0579 29.6111 90.1197 30.231H87.8509C87.7066 29.625 87.4384 29.1703 87.0329 28.8673C86.6271 28.5641 86.1389 28.4126 85.5684 28.4126C85.0321 28.4126 84.5783 28.5159 84.2071 28.7225C83.8358 28.9291 83.5334 29.2047 83.2996 29.556C83.0659 29.9073 82.9009 30.2999 82.7909 30.7476C82.6877 31.1953 82.6327 31.6499 82.6327 32.1252C82.6327 32.5797 82.6877 33.0206 82.7909 33.4477C82.894 33.8747 83.0659 34.2604 83.2996 34.6047C83.5334 34.9491 83.8358 35.2247 84.2071 35.4314C84.5783 35.6381 85.0321 35.7413 85.5684 35.7413C86.3521 35.7413 86.964 35.5414 87.3903 35.1421C87.8166 34.7426 88.0709 34.164 88.1397 33.4063H85.7471V31.6361H90.2847V37.4839H88.7721L88.5316 36.2579C88.1053 36.809 87.6379 37.1947 87.1222 37.4082Z" fill="#BDC7CE"/>
10
+ <path class="fill-[#5C5754]" d="M84.4875 60.8243C84.4875 60.8243 100.562 45.8023 97.2424 29.5051C96.8611 27.6853 95.898 20.1056 78.2402 10.1807C89.9595 14.0795 94.3734 16.3225 106.85 12.4398C108.787 11.0639 115.098 10.2287 117.761 0.0228733C118.12 -0.606528 118.634 16.3634 112.334 28.2335C112.152 28.8576 101.14 48.8792 88.6522 58.1877C88.2097 58.4762 84.4875 60.8243 84.4875 60.8243Z" fill="#BDC7CE"/>
11
+ <path class="fill-[#5C5754]" d="M138.356 1.61035C138.356 1.61035 120.989 15.2159 122.822 31.7177C123.038 33.5612 123.312 41.1872 140 52.5482C128.681 47.6842 123.196 44.3589 110.203 47.9921C109.071 48.907 105.323 49.1276 99.7233 59.3452C99.3087 59.9417 100.331 43.0055 107.678 31.7177C107.916 31.1118 121.747 11.5963 135.024 3.37749C135.491 3.12745 138.356 1.61035 138.356 1.61035Z" fill="#BDC7CE"/>
12
+ </svg>
13
+ </template>
14
+
15
+ <style scoped>
16
+
17
+ </style>
@@ -1,21 +1,21 @@
1
- <script setup lang="ts">
2
-
3
- </script>
4
-
5
- <template>
6
- <svg width="87" height="26" viewBox="0 0 87 26" fill="none" xmlns="http://www.w3.org/2000/svg">
7
- <g clip-path="url(#clip0_19390_4334)">
8
- <path fill-rule="evenodd" clip-rule="evenodd" d="M16.004 0V4.56875H12.7871C9.1083 4.56875 5.98386 6.99778 4.94076 10.3386C2.85456 11.5349 1.13793 13.3001 0 15.4253V12.7871C0 5.73585 5.73586 0 12.7871 0H16.004ZM59.5613 19.9892V8.8433H64.4583V5.44413H59.5613V0.43771H55.3598V5.44655H52.9843V8.84575H55.3598V19.9916C55.3598 21.9636 55.8583 23.3884 56.8575 24.2661C57.8545 25.144 59.2915 25.5815 61.1685 25.5815H64.4583V22.1094H61.9005C61.047 22.1094 60.444 21.9441 60.0915 21.6159C59.7388 21.2876 59.5613 20.7454 59.5613 19.9892ZM17.3194 20.9544C18.1972 22.5252 19.4032 23.7433 20.9374 24.6089V24.6065C22.4717 25.4698 24.164 25.9025 26.0898 25.9025C28.0155 25.9025 29.7758 25.472 31.3708 24.6065C32.966 23.7433 34.2255 22.5179 35.1518 20.935C36.0783 19.3521 36.5403 17.5358 36.5403 15.4909C36.5403 13.446 36.088 11.6297 35.1883 10.0469C34.2863 8.46395 33.0558 7.2458 31.4973 6.39235C29.9388 5.5389 28.1953 5.11338 26.272 5.11338C24.3488 5.11338 22.6054 5.5389 21.0469 6.39235C19.4883 7.2458 18.258 8.46395 17.3559 10.0469C16.4538 11.6297 16.004 13.4193 16.004 15.4909C16.004 17.5625 16.4417 19.3837 17.3194 20.9544ZM31.388 19.2183C30.8043 20.242 30.0433 21.0103 29.1048 21.521V21.5185C28.1663 22.0316 27.162 22.2869 26.0898 22.2869C24.4072 22.2869 23.0139 21.696 21.9052 20.5143C20.7964 19.3351 20.242 17.6598 20.242 15.4909C20.242 14.0296 20.5119 12.7944 21.0469 11.7829C21.5818 10.7738 22.3064 10.0104 23.2206 9.49977C24.1348 8.98672 25.1293 8.73143 26.199 8.73143C27.269 8.73143 28.2683 8.98915 29.1948 9.49977C30.121 10.0104 30.8628 10.7714 31.4243 11.7829C31.986 12.792 32.2658 14.0296 32.2658 15.4909C32.2658 16.9522 31.9715 18.1947 31.388 19.2183ZM86.6018 17.0645H71.2178C71.3393 18.6717 71.935 19.9628 73.0073 20.9378C74.0795 21.9128 75.395 22.3992 76.9535 22.3992C79.1955 22.3992 80.7783 21.4606 81.7048 19.5859H86.2005C85.5903 21.4363 84.4888 22.9535 82.8938 24.1352C81.2988 25.317 79.3195 25.9077 76.956 25.9077C75.0303 25.9077 73.3088 25.475 71.7843 24.6118C70.2623 23.7462 69.0683 22.528 68.2028 20.9573C67.337 19.3866 66.9068 17.5654 66.9068 15.4937C66.9068 13.4221 67.3275 11.601 68.1663 10.0302C69.0075 8.4595 70.1893 7.2462 71.7113 6.39517C73.2335 5.54175 74.9818 5.11622 76.956 5.11622C78.9303 5.11622 80.5498 5.52957 82.0353 6.3587C83.521 7.18785 84.6785 8.3501 85.5075 9.84787C86.3343 11.3457 86.75 13.0696 86.75 15.0196C86.75 15.7758 86.7013 16.4566 86.604 17.0669L86.6018 17.0645ZM82.4 13.7017C82.3758 12.1675 81.8263 10.9372 80.7565 10.0108C79.6843 9.0844 78.3565 8.62243 76.7738 8.62243C75.3368 8.62243 74.1063 9.07952 73.0828 9.99378C72.059 10.908 71.4513 12.1432 71.2568 13.7017H82.4ZM12.7871 14.7273V10.161C12.2765 10.161 11.7756 10.1902 11.282 10.2485C8.74358 10.5476 6.42881 11.5931 4.56631 13.1614C2.71353 14.7176 1.31056 16.7916 0.573828 19.1574C0.201812 20.3562 0 21.6278 0 22.9481V25.5765H4.56631V22.9481C4.56631 18.4158 8.25728 14.7273 12.7871 14.7273ZM50.864 5.4438V8.82843C47.8043 8.82843 45.2615 11.0975 44.834 14.0427V25.579H40.6688V5.44387H44.834V7.61575C46.2018 6.48285 47.8945 5.72735 49.748 5.50945C50.1125 5.4657 50.4848 5.4438 50.864 5.4438Z" fill="#A31551"/>
9
- </g>
10
- <defs>
11
- <clipPath id="clip0_19390_4334">
12
- <rect width="86.75" height="26" fill="white"/>
13
- </clipPath>
14
- </defs>
15
- </svg>
16
- </template>
17
-
18
- <style scoped>
19
-
20
- </style>
21
-
1
+ <script setup lang="ts">
2
+
3
+ </script>
4
+
5
+ <template>
6
+ <svg width="87" height="26" viewBox="0 0 87 26" fill="none" xmlns="http://www.w3.org/2000/svg">
7
+ <g clip-path="url(#clip0_19390_4334)">
8
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M16.004 0V4.56875H12.7871C9.1083 4.56875 5.98386 6.99778 4.94076 10.3386C2.85456 11.5349 1.13793 13.3001 0 15.4253V12.7871C0 5.73585 5.73586 0 12.7871 0H16.004ZM59.5613 19.9892V8.8433H64.4583V5.44413H59.5613V0.43771H55.3598V5.44655H52.9843V8.84575H55.3598V19.9916C55.3598 21.9636 55.8583 23.3884 56.8575 24.2661C57.8545 25.144 59.2915 25.5815 61.1685 25.5815H64.4583V22.1094H61.9005C61.047 22.1094 60.444 21.9441 60.0915 21.6159C59.7388 21.2876 59.5613 20.7454 59.5613 19.9892ZM17.3194 20.9544C18.1972 22.5252 19.4032 23.7433 20.9374 24.6089V24.6065C22.4717 25.4698 24.164 25.9025 26.0898 25.9025C28.0155 25.9025 29.7758 25.472 31.3708 24.6065C32.966 23.7433 34.2255 22.5179 35.1518 20.935C36.0783 19.3521 36.5403 17.5358 36.5403 15.4909C36.5403 13.446 36.088 11.6297 35.1883 10.0469C34.2863 8.46395 33.0558 7.2458 31.4973 6.39235C29.9388 5.5389 28.1953 5.11338 26.272 5.11338C24.3488 5.11338 22.6054 5.5389 21.0469 6.39235C19.4883 7.2458 18.258 8.46395 17.3559 10.0469C16.4538 11.6297 16.004 13.4193 16.004 15.4909C16.004 17.5625 16.4417 19.3837 17.3194 20.9544ZM31.388 19.2183C30.8043 20.242 30.0433 21.0103 29.1048 21.521V21.5185C28.1663 22.0316 27.162 22.2869 26.0898 22.2869C24.4072 22.2869 23.0139 21.696 21.9052 20.5143C20.7964 19.3351 20.242 17.6598 20.242 15.4909C20.242 14.0296 20.5119 12.7944 21.0469 11.7829C21.5818 10.7738 22.3064 10.0104 23.2206 9.49977C24.1348 8.98672 25.1293 8.73143 26.199 8.73143C27.269 8.73143 28.2683 8.98915 29.1948 9.49977C30.121 10.0104 30.8628 10.7714 31.4243 11.7829C31.986 12.792 32.2658 14.0296 32.2658 15.4909C32.2658 16.9522 31.9715 18.1947 31.388 19.2183ZM86.6018 17.0645H71.2178C71.3393 18.6717 71.935 19.9628 73.0073 20.9378C74.0795 21.9128 75.395 22.3992 76.9535 22.3992C79.1955 22.3992 80.7783 21.4606 81.7048 19.5859H86.2005C85.5903 21.4363 84.4888 22.9535 82.8938 24.1352C81.2988 25.317 79.3195 25.9077 76.956 25.9077C75.0303 25.9077 73.3088 25.475 71.7843 24.6118C70.2623 23.7462 69.0683 22.528 68.2028 20.9573C67.337 19.3866 66.9068 17.5654 66.9068 15.4937C66.9068 13.4221 67.3275 11.601 68.1663 10.0302C69.0075 8.4595 70.1893 7.2462 71.7113 6.39517C73.2335 5.54175 74.9818 5.11622 76.956 5.11622C78.9303 5.11622 80.5498 5.52957 82.0353 6.3587C83.521 7.18785 84.6785 8.3501 85.5075 9.84787C86.3343 11.3457 86.75 13.0696 86.75 15.0196C86.75 15.7758 86.7013 16.4566 86.604 17.0669L86.6018 17.0645ZM82.4 13.7017C82.3758 12.1675 81.8263 10.9372 80.7565 10.0108C79.6843 9.0844 78.3565 8.62243 76.7738 8.62243C75.3368 8.62243 74.1063 9.07952 73.0828 9.99378C72.059 10.908 71.4513 12.1432 71.2568 13.7017H82.4ZM12.7871 14.7273V10.161C12.2765 10.161 11.7756 10.1902 11.282 10.2485C8.74358 10.5476 6.42881 11.5931 4.56631 13.1614C2.71353 14.7176 1.31056 16.7916 0.573828 19.1574C0.201812 20.3562 0 21.6278 0 22.9481V25.5765H4.56631V22.9481C4.56631 18.4158 8.25728 14.7273 12.7871 14.7273ZM50.864 5.4438V8.82843C47.8043 8.82843 45.2615 11.0975 44.834 14.0427V25.579H40.6688V5.44387H44.834V7.61575C46.2018 6.48285 47.8945 5.72735 49.748 5.50945C50.1125 5.4657 50.4848 5.4438 50.864 5.4438Z" fill="#A31551"/>
9
+ </g>
10
+ <defs>
11
+ <clipPath id="clip0_19390_4334">
12
+ <rect width="86.75" height="26" fill="white"/>
13
+ </clipPath>
14
+ </defs>
15
+ </svg>
16
+ </template>
17
+
18
+ <style scoped>
19
+
20
+ </style>
21
+
@@ -1,15 +1,15 @@
1
- <script setup lang="ts">
2
-
3
- </script>
4
-
5
- <template>
6
- <svg width="200" height="62" viewBox="0 0 200 62" fill="none" xmlns="http://www.w3.org/2000/svg" class="group">
7
- <path class="fill-[#00805F]" fill-rule="evenodd" clip-rule="evenodd" d="M55.8237 7L47.855 15.0277H39.9687V22.9725L32 30.9998L39.9687 39.028V46.9727H47.855L55.8237 55L63.7923 46.9727H71.6786V39.028L79.6472 30.9998L71.6786 22.9725V15.0277H63.7923L55.8237 7ZM41.951 39.6123L33.4013 30.9998L41.951 22.3877V17.0242H47.2744L55.8237 8.4117L64.3728 17.0242H69.6968V22.3877L78.2459 30.9998L69.6968 39.6123V44.9763H64.3728L55.8237 53.5888L47.2744 44.9763H41.951V39.6123ZM36.2039 30.9998L55.8237 50.7654L75.4433 30.9998L55.8237 11.2351L36.2039 30.9998Z" fill="#BDC7CE"/>
8
- <path class="fill-[#FAAE17]" fill-rule="evenodd" clip-rule="evenodd" d="M69.6963 25.2115C66.3858 29.232 61.3933 31.7991 55.8232 31.7991C51.5238 31.7995 48.0178 35.3315 48.0178 39.6628C48.0178 41.7084 48.7996 43.5752 50.0776 44.9767H50.0766L55.8232 50.7653L75.4429 31.0007L69.6963 25.2115ZM41.9501 36.7889C45.2606 32.7684 50.2531 30.2023 55.8232 30.2018C60.1227 30.2018 63.6291 26.6698 63.6291 22.3381C63.6291 20.2929 62.8473 18.4256 61.5693 17.0246L55.8232 11.2355L36.204 31.0007L41.9501 36.7899V36.7889ZM33.4014 31.0007L41.95 22.3881V17.0246H47.274L55.8232 8.41211L64.3724 17.0246H69.6964V22.3881L78.2455 31.0007L69.6964 39.6132V44.9767H64.3724L55.8232 53.5892L47.274 44.9767H41.95V39.6132L33.4014 31.0007Z" fill="#F4F5F6"/>
9
- <path class="fill-[#00805F]" fill-rule="evenodd" clip-rule="evenodd" d="M113.697 42.1805L110.526 35.7913L107.355 42.1805H113.697ZM84.3655 40.5831V44.5762H93.482C94.5718 44.5762 95.4638 43.6781 95.4638 42.5796C95.4638 41.4817 94.5718 40.5831 93.482 40.5831H84.3655ZM84.3655 34.1944V38.1875H93.482C94.5718 38.1875 95.4638 37.2889 95.4638 36.191C95.4638 35.0925 94.5718 34.1944 93.482 34.1944H84.3655ZM121.624 31.7982H125.588L136.686 42.9788V31.7982H140.65V46.9724H136.686L125.588 35.7913V46.9724H121.624V31.7982ZM149.053 39.3851L159.28 31.7982H154.92L146.2 38.1875V31.7982H142.235V46.9724H146.2V40.5831L154.92 46.9724H159.28L149.053 39.3851ZM150.956 15.0273H154.92V21.4161L163.64 15.0273H168L157.774 22.6142L168 30.2009H163.64L154.92 23.8123V30.2009H150.956V15.0273ZM142.235 23.8123L149.766 15.0273H145.803L140.254 21.4161L134.705 15.0273H130.741L138.272 23.8123V30.2009H142.235V23.8123ZM121.624 15.0273H125.588V27.8052H136.686V30.2009H121.624V15.0273ZM110.526 19.0204L113.697 25.4095H107.355L110.526 19.0204ZM116.075 30.2009H120.039L112.508 15.0273H108.544L101.013 30.2009H104.977L106.166 27.8052H114.886L116.075 30.2009ZM80.4014 15.0273H84.3655V21.4161H95.4638V15.0273H99.4274V30.2009H95.4638V23.8123H84.3655V30.2009H80.4014V15.0273ZM80.4014 31.7982H95.6617C97.7332 31.7982 99.4274 33.5055 99.4274 35.5919C99.4274 37.6782 97.7332 39.3851 95.6617 39.3851C97.7332 39.3851 99.4274 41.0924 99.4274 43.1787C99.4274 45.2651 97.7332 46.9724 95.6617 46.9724H80.4014V31.7982ZM104.977 46.9724H101.013L108.544 31.7982H112.508L120.039 46.9724H116.075L114.886 44.5762H106.166L104.977 46.9724Z" fill="#BDC7CE"/>
10
- </svg>
11
- </template>
12
-
13
- <style scoped>
14
-
15
- </style>
1
+ <script setup lang="ts">
2
+
3
+ </script>
4
+
5
+ <template>
6
+ <svg width="200" height="62" viewBox="0 0 200 62" fill="none" xmlns="http://www.w3.org/2000/svg" class="group">
7
+ <path class="fill-[#00805F]" fill-rule="evenodd" clip-rule="evenodd" d="M55.8237 7L47.855 15.0277H39.9687V22.9725L32 30.9998L39.9687 39.028V46.9727H47.855L55.8237 55L63.7923 46.9727H71.6786V39.028L79.6472 30.9998L71.6786 22.9725V15.0277H63.7923L55.8237 7ZM41.951 39.6123L33.4013 30.9998L41.951 22.3877V17.0242H47.2744L55.8237 8.4117L64.3728 17.0242H69.6968V22.3877L78.2459 30.9998L69.6968 39.6123V44.9763H64.3728L55.8237 53.5888L47.2744 44.9763H41.951V39.6123ZM36.2039 30.9998L55.8237 50.7654L75.4433 30.9998L55.8237 11.2351L36.2039 30.9998Z" fill="#BDC7CE"/>
8
+ <path class="fill-[#FAAE17]" fill-rule="evenodd" clip-rule="evenodd" d="M69.6963 25.2115C66.3858 29.232 61.3933 31.7991 55.8232 31.7991C51.5238 31.7995 48.0178 35.3315 48.0178 39.6628C48.0178 41.7084 48.7996 43.5752 50.0776 44.9767H50.0766L55.8232 50.7653L75.4429 31.0007L69.6963 25.2115ZM41.9501 36.7889C45.2606 32.7684 50.2531 30.2023 55.8232 30.2018C60.1227 30.2018 63.6291 26.6698 63.6291 22.3381C63.6291 20.2929 62.8473 18.4256 61.5693 17.0246L55.8232 11.2355L36.204 31.0007L41.9501 36.7899V36.7889ZM33.4014 31.0007L41.95 22.3881V17.0246H47.274L55.8232 8.41211L64.3724 17.0246H69.6964V22.3881L78.2455 31.0007L69.6964 39.6132V44.9767H64.3724L55.8232 53.5892L47.274 44.9767H41.95V39.6132L33.4014 31.0007Z" fill="#F4F5F6"/>
9
+ <path class="fill-[#00805F]" fill-rule="evenodd" clip-rule="evenodd" d="M113.697 42.1805L110.526 35.7913L107.355 42.1805H113.697ZM84.3655 40.5831V44.5762H93.482C94.5718 44.5762 95.4638 43.6781 95.4638 42.5796C95.4638 41.4817 94.5718 40.5831 93.482 40.5831H84.3655ZM84.3655 34.1944V38.1875H93.482C94.5718 38.1875 95.4638 37.2889 95.4638 36.191C95.4638 35.0925 94.5718 34.1944 93.482 34.1944H84.3655ZM121.624 31.7982H125.588L136.686 42.9788V31.7982H140.65V46.9724H136.686L125.588 35.7913V46.9724H121.624V31.7982ZM149.053 39.3851L159.28 31.7982H154.92L146.2 38.1875V31.7982H142.235V46.9724H146.2V40.5831L154.92 46.9724H159.28L149.053 39.3851ZM150.956 15.0273H154.92V21.4161L163.64 15.0273H168L157.774 22.6142L168 30.2009H163.64L154.92 23.8123V30.2009H150.956V15.0273ZM142.235 23.8123L149.766 15.0273H145.803L140.254 21.4161L134.705 15.0273H130.741L138.272 23.8123V30.2009H142.235V23.8123ZM121.624 15.0273H125.588V27.8052H136.686V30.2009H121.624V15.0273ZM110.526 19.0204L113.697 25.4095H107.355L110.526 19.0204ZM116.075 30.2009H120.039L112.508 15.0273H108.544L101.013 30.2009H104.977L106.166 27.8052H114.886L116.075 30.2009ZM80.4014 15.0273H84.3655V21.4161H95.4638V15.0273H99.4274V30.2009H95.4638V23.8123H84.3655V30.2009H80.4014V15.0273ZM80.4014 31.7982H95.6617C97.7332 31.7982 99.4274 33.5055 99.4274 35.5919C99.4274 37.6782 97.7332 39.3851 95.6617 39.3851C97.7332 39.3851 99.4274 41.0924 99.4274 43.1787C99.4274 45.2651 97.7332 46.9724 95.6617 46.9724H80.4014V31.7982ZM104.977 46.9724H101.013L108.544 31.7982H112.508L120.039 46.9724H116.075L114.886 44.5762H106.166L104.977 46.9724Z" fill="#BDC7CE"/>
10
+ </svg>
11
+ </template>
12
+
13
+ <style scoped>
14
+
15
+ </style>
@@ -1,31 +1,31 @@
1
- <script setup lang="ts">
2
-
3
- </script>
4
-
5
- <template>
6
- <svg width="200" height="62" viewBox="0 0 200 62" fill="none" xmlns="http://www.w3.org/2000/svg" class="group">
7
- <path class="fill-[#EEB110]" d="M36.9927 22.1749C36.9927 21.9074 37.2096 21.6904 37.4772 21.6904H55.4043C57.545 21.6904 59.2804 23.4258 59.2804 25.5666C59.2804 27.7073 57.545 29.4427 55.4043 29.4427H37.4772C37.2096 29.4427 36.9927 29.2258 36.9927 28.9582V22.1749Z" fill="#BDC7CE"/>
8
- <path class="fill-[#EEB110]" d="M44.0329 42.2375C43.7332 41.7186 44.1076 41.0698 44.7069 41.0698L47.8364 41.0697C49.9771 41.0696 51.7125 42.805 51.7125 44.9458V45.2859C51.7125 47.2387 50.1294 48.8218 48.1766 48.8218C47.9661 48.8218 47.7716 48.7096 47.6663 48.5273L44.0329 42.2375Z" fill="#BDC7CE"/>
9
- <path class="fill-[#EEB110]" d="M62.2055 12.7297C62.449 12.4418 62.2444 12.0007 61.8673 12.0007L43.7675 12.0001C41.6267 12.0001 39.8913 13.7355 39.8913 15.8762C39.8913 18.0169 41.6266 19.7523 43.7673 19.7524L61.8673 19.7529C62.2444 19.7529 62.449 19.3118 62.2054 19.0239C60.6685 17.2073 60.6685 14.5463 62.2055 12.7297Z" fill="#BDC7CE"/>
10
- <path class="fill-[#EEB110]" d="M57.0224 32.1124C57.2144 31.7894 56.9816 31.3803 56.6059 31.3803L45.4311 31.3798C43.2903 31.3797 41.5548 33.1151 41.5548 35.2559C41.5548 37.3966 43.2901 39.132 45.4307 39.1321L56.6058 39.1326C56.9816 39.1326 57.2143 38.7235 57.0224 38.4005L55.2124 35.3555C55.1762 35.2945 55.1762 35.2185 55.2124 35.1574L57.0224 32.1124Z" fill="#BDC7CE"/>
11
- <path class="fill-[#000000] dark:fill-[#E3E5E8]" d="M85.3833 21.2326V28.3894H86.4131H87.4428L87.4222 21.2532L87.3913 14.1272L86.3925 14.0963L85.3833 14.0654V21.2326Z" fill="#BDC7CE"/>
12
- <path class="fill-[#000000] dark:fill-[#E3E5E8]" d="M75.1585 15.1261C74.8805 15.7851 69.4022 28.029 69.3095 28.204C69.2168 28.3791 69.2992 28.3894 70.3804 28.3894H71.5647L72.2134 26.8962L72.8622 25.4031L76.0544 25.4237L79.2364 25.4546L79.8646 26.9168L80.4927 28.3894H81.6563C82.717 28.3894 82.82 28.3688 82.7685 28.204C82.7376 28.1114 81.3989 25.0633 79.7925 21.4385L76.8679 14.848L76.0853 14.8171L75.3027 14.7863L75.1585 15.1261ZM77.2902 20.9545C77.8874 22.3344 78.3817 23.5083 78.3817 23.5598C78.3817 23.6525 73.8199 23.6937 73.7272 23.601C73.6963 23.5701 74.2112 22.3138 74.8599 20.8104C75.7249 18.8332 76.075 18.1227 76.1265 18.2565C76.1677 18.3698 76.6929 19.5849 77.2902 20.9545Z" fill="#BDC7CE"/>
13
- <path class="fill-[#000000] dark:fill-[#E3E5E8]" d="M104.228 17.0617V18.1842L103.281 18.2151L102.323 18.2459V19.1727V20.0995L103.271 20.1304L104.208 20.1613L104.249 22.7563C104.28 25.1762 104.3 25.3925 104.527 25.9486C105.145 27.5138 106.473 28.4406 108.255 28.5642C108.687 28.5951 109.171 28.5951 109.315 28.5539C109.583 28.4921 109.583 28.4715 109.583 27.5653V26.6385H108.955C108.038 26.6385 107.451 26.4531 107.009 26.0309C106.391 25.4337 106.288 24.9291 106.288 22.3547V20.1613L107.503 20.1304L108.708 20.0995V19.1727V18.2459L107.503 18.2151L106.288 18.1842V17.0617V15.929H105.258H104.228V17.0617Z" fill="#BDC7CE"/>
14
- <path class="fill-[#000000] dark:fill-[#E3E5E8]" d="M94.2923 18.0917C92.7683 18.3594 91.5326 19.2347 90.7397 20.6146C89.7717 22.3137 89.8541 24.7336 90.925 26.3813C91.9342 27.9465 93.345 28.657 95.2603 28.5746C96.115 28.5438 96.3416 28.4923 96.9182 28.2142C97.289 28.0289 97.742 27.7611 97.9274 27.6067L98.2569 27.3286V27.8641V28.3893H99.2867H100.316V23.292V18.1946H99.2867H98.2569V18.8228V19.451L97.845 19.0905C96.9388 18.2564 95.5692 17.8754 94.2923 18.0917ZM96.424 20.213C97.5567 20.594 98.2672 21.6546 98.3393 23.086C98.4217 24.5586 97.9274 25.6192 96.8873 26.268C96.496 26.5048 96.2489 26.5769 95.6516 26.6181C94.1482 26.7108 93.1081 26.1238 92.5417 24.8675C92.1607 24.054 92.1195 22.8904 92.4285 22.0048C92.6756 21.2942 93.4788 20.4601 94.1379 20.2233C94.7454 20.0173 95.8267 20.007 96.424 20.213Z" fill="#BDC7CE"/>
15
- <path class="fill-[#000000] dark:fill-[#E3E5E8]" d="M115.197 18.0917C113.673 18.3594 112.437 19.2347 111.644 20.6146C110.676 22.3137 110.758 24.7336 111.829 26.3813C112.838 27.9465 114.249 28.657 116.165 28.5746C117.019 28.5438 117.246 28.4923 117.823 28.2142C118.193 28.0289 118.646 27.7611 118.832 27.6067L119.161 27.3286V27.8641V28.3893H120.191H121.221V23.292V18.1946H120.191H119.161V18.8228V19.451L118.749 19.0905C117.843 18.2564 116.474 17.8754 115.197 18.0917ZM117.328 20.213C118.461 20.594 119.172 21.6546 119.244 23.086C119.326 24.5586 118.832 25.6192 117.792 26.268C117.4 26.5048 117.153 26.5769 116.556 26.6181C114.805 26.7314 113.652 25.8973 113.23 24.2496C112.797 22.5608 113.642 20.7279 115.073 20.213C115.65 20.0173 116.752 20.007 117.328 20.213Z" fill="#BDC7CE"/>
16
- <path class="fill-[#000000] dark:fill-[#E3E5E8]" d="M124.28 18.2565C124.167 18.3698 124.198 24.1262 124.311 24.9397C124.455 25.8768 124.795 26.6079 125.413 27.267C126.957 28.9249 129.861 29.0484 131.581 27.5347C132.158 27.0198 132.477 26.5358 132.755 25.7223C132.94 25.1456 132.961 24.847 132.961 21.6959V18.2977H131.931H130.901V21.4488C130.901 25.0633 130.86 25.331 130.242 25.9695C129.738 26.4946 129.151 26.6903 128.348 26.5976C127.699 26.5255 127.349 26.3608 126.968 25.9489C126.443 25.3928 126.422 25.2795 126.37 21.6445L126.319 18.2462L125.341 18.2154C124.795 18.2051 124.321 18.2154 124.28 18.2565Z" fill="#BDC7CE"/>
17
- <path class="fill-[#000000] dark:fill-[#E3E5E8]" d="M85.1578 31.4367C84.3236 31.8796 84.3854 33.2804 85.2402 33.6924C85.9406 34.022 86.7131 33.7336 87.0015 33.0538C87.2281 32.5079 87.1148 32.0135 86.6719 31.6015C86.3835 31.3337 86.229 31.2719 85.8788 31.2719C85.6316 31.2822 85.3123 31.344 85.1578 31.4367Z" fill="#BDC7CE"/>
18
- <path class="fill-[#000000] dark:fill-[#E3E5E8]" d="M153.986 38.5533L154.017 45.844L155.016 45.8749L156.025 45.9058L156.046 43.5888L156.077 41.2821L158.27 43.5888L160.474 45.8955H161.761C162.523 45.8955 163.028 45.8543 163.007 45.8028C162.997 45.741 162.07 44.7627 160.958 43.6094C159.856 42.4561 158.785 41.3439 158.6 41.1277L158.26 40.7364L160.567 38.4194L162.873 36.1127H161.607H160.34L158.188 38.2958L156.036 40.4892L156.025 35.8759V31.2728H154.996H153.966L153.986 38.5533Z" fill="#BDC7CE"/>
19
- <path class="fill-[#000000] dark:fill-[#E3E5E8]" d="M74.6855 32.3949C72.1729 33.0334 70.2267 34.8149 69.5058 37.1421C69.3102 37.7806 69.269 38.141 69.2793 39.1502C69.2793 40.2211 69.3205 40.4992 69.5573 41.1994C70.4017 43.609 72.3789 45.2979 75.0151 45.8642C75.5505 45.9775 76.1066 46.0084 77.0437 45.9672C78.4442 45.9054 79.2165 45.7407 80.2257 45.267C80.9156 44.9477 82.1925 44.093 82.1925 43.9489C82.1925 43.9077 81.8733 43.5782 81.4717 43.228L80.7611 42.5896L80.133 43.053C79.3607 43.6296 78.6501 43.8974 77.5277 44.0415C74.7576 44.4123 72.4098 43.0427 71.6786 40.6227C71.3903 39.6754 71.4418 38.1101 71.7816 37.2245C72.3068 35.8755 73.4189 34.8355 74.8503 34.3515C75.3961 34.1661 75.7874 34.1146 76.5803 34.1146C78.1352 34.1043 79.2165 34.4442 80.2051 35.2577L80.6479 35.6078L81.3687 34.959C81.76 34.5986 82.0895 34.2794 82.0895 34.2485C82.0895 34.1558 81.1112 33.435 80.5346 33.0952C80.2771 32.951 79.6902 32.7039 79.2474 32.5494C78.5368 32.3023 78.2382 32.2611 76.9407 32.2405C75.7359 32.2096 75.3034 32.2405 74.6855 32.3949Z" fill="#BDC7CE"/>
20
- <path class="fill-[#000000] dark:fill-[#E3E5E8]" d="M115.454 39.315V45.9158L118.883 45.8643C121.622 45.8334 122.425 45.7819 122.899 45.648C123.661 45.4421 124.248 45.1435 124.804 44.6904C125.957 43.7533 126.359 42.0542 125.751 40.6846C125.514 40.1491 124.588 39.2017 124.114 38.9958L123.784 38.8619L124.299 38.4088C125.792 37.101 125.762 34.9282 124.237 33.6822C123.949 33.4454 123.445 33.1467 123.105 33.0129C122.528 32.776 122.415 32.7657 118.986 32.7348L115.454 32.7039V39.315ZM122.25 34.6708C122.919 35.0518 123.177 35.4843 123.177 36.2566C123.177 37.0392 122.94 37.4511 122.332 37.7807C121.921 37.9969 121.745 38.0175 119.758 38.0484L117.616 38.0793V36.2154V34.3413L119.707 34.3824C121.694 34.4133 121.807 34.4236 122.25 34.6708ZM122.827 40.18C124.021 40.9214 124.207 42.497 123.208 43.4443C122.6 44.021 122.291 44.0828 119.861 44.124L117.616 44.1652V41.9821V39.8093L119.964 39.8402L122.322 39.8711L122.827 40.18Z" fill="#BDC7CE"/>
21
- <path class="fill-[#000000] dark:fill-[#E3E5E8]" d="M91.2549 34.5162V35.7004H90.3282H89.4014V36.6272V37.554H90.3179H91.2343L91.2755 40.0975C91.3167 42.4041 91.3476 42.7131 91.5433 43.2588C92.192 45.0197 93.7882 46.0495 95.7447 45.9774L96.5582 45.9465L96.5891 44.9991L96.62 44.0415H95.9095C94.6737 44.0415 94.0559 43.7016 93.6337 42.816C93.3762 42.26 93.3659 42.157 93.3351 39.8915L93.2939 37.554H94.5399H95.7859V36.6272V35.7107L94.5811 35.6798L93.3659 35.6489L93.3351 34.4853L93.3042 33.3319H92.2847H91.2549V34.5162Z" fill="#BDC7CE"/>
22
- <path class="fill-[#000000] dark:fill-[#E3E5E8]" d="M131.877 35.6387C129.766 36.3286 128.407 38.1204 128.252 40.3859C128.026 43.7738 130.755 46.4924 133.896 45.9878C134.616 45.8745 135.595 45.442 136.13 45.0095L136.46 44.7315V45.3185V45.8951H137.489H138.519V40.7978V35.7005H137.489H136.46V36.2772V36.8538L136.027 36.4728C135.79 36.2772 135.337 35.9785 135.018 35.8344C134.534 35.5975 134.297 35.5563 133.37 35.5254C132.67 35.5048 132.145 35.546 131.877 35.6387ZM134.863 37.7291C136.254 38.4603 136.892 40.2417 136.377 41.9511C136.12 42.7647 135.708 43.3104 135.039 43.712C134.596 43.9695 134.462 43.9901 133.525 43.9901C132.351 43.9901 131.96 43.8459 131.29 43.1457C130.652 42.4866 130.436 41.8791 130.436 40.7463C130.436 39.8813 130.466 39.696 130.724 39.1811C131.053 38.5014 131.754 37.8424 132.371 37.6158C132.989 37.3893 134.318 37.4511 134.863 37.7291Z" fill="#BDC7CE"/>
23
- <path class="fill-[#000000] dark:fill-[#E3E5E8]" d="M145.677 35.6287C145.09 35.8244 144.647 36.0715 144.235 36.432L143.874 36.7512V36.226V35.7008H142.845H141.815V40.7981V45.9058L142.824 45.8749L143.823 45.844L143.874 42.4973C143.905 40.2524 143.967 39.0578 144.05 38.8828C144.245 38.4297 144.822 37.8427 145.265 37.6471C145.821 37.3896 146.881 37.3896 147.427 37.6471C147.901 37.8633 148.436 38.3988 148.632 38.8416C148.725 39.0681 148.776 40.0567 148.817 42.4973L148.869 45.844H149.899H150.928L150.959 42.8062C150.99 39.3977 150.918 38.6253 150.465 37.6883C150.105 36.9571 149.301 36.1642 148.539 35.8038C147.932 35.5052 146.346 35.4125 145.677 35.6287Z" fill="#BDC7CE"/>
24
- <path class="fill-[#000000] dark:fill-[#E3E5E8]" d="M84.7671 40.6952V45.7925H85.7969H86.8266V40.6952V35.5978H85.7969H84.7671V40.6952Z" fill="#BDC7CE"/>
25
- <path class="fill-[#000000] dark:fill-[#E3E5E8]" d="M97.5753 35.8243C97.6062 35.9582 98.4815 38.0486 99.5319 40.4685L101.427 44.8759L100.201 47.3988C99.5319 48.789 98.9758 49.9424 98.9758 49.9732C98.9758 50.0041 99.4907 50.0041 100.119 49.9938L101.262 49.9629L104.547 42.8679C106.349 38.9651 107.832 35.7316 107.832 35.6905C107.832 35.639 107.327 35.5978 106.72 35.5978H105.597L104.125 39.0475C103.311 40.9525 102.611 42.4663 102.57 42.4251C102.528 42.3736 101.911 40.8805 101.179 39.099C100.459 37.3175 99.8202 35.7934 99.7687 35.7213C99.7069 35.639 99.3362 35.5978 98.5948 35.5978C97.5238 35.5978 97.5135 35.5978 97.5753 35.8243Z" fill="#BDC7CE"/>
26
- </svg>
27
- </template>
28
-
29
- <style scoped>
30
-
31
- </style>
1
+ <script setup lang="ts">
2
+
3
+ </script>
4
+
5
+ <template>
6
+ <svg width="200" height="62" viewBox="0 0 200 62" fill="none" xmlns="http://www.w3.org/2000/svg" class="group">
7
+ <path class="fill-[#EEB110]" d="M36.9927 22.1749C36.9927 21.9074 37.2096 21.6904 37.4772 21.6904H55.4043C57.545 21.6904 59.2804 23.4258 59.2804 25.5666C59.2804 27.7073 57.545 29.4427 55.4043 29.4427H37.4772C37.2096 29.4427 36.9927 29.2258 36.9927 28.9582V22.1749Z" fill="#BDC7CE"/>
8
+ <path class="fill-[#EEB110]" d="M44.0329 42.2375C43.7332 41.7186 44.1076 41.0698 44.7069 41.0698L47.8364 41.0697C49.9771 41.0696 51.7125 42.805 51.7125 44.9458V45.2859C51.7125 47.2387 50.1294 48.8218 48.1766 48.8218C47.9661 48.8218 47.7716 48.7096 47.6663 48.5273L44.0329 42.2375Z" fill="#BDC7CE"/>
9
+ <path class="fill-[#EEB110]" d="M62.2055 12.7297C62.449 12.4418 62.2444 12.0007 61.8673 12.0007L43.7675 12.0001C41.6267 12.0001 39.8913 13.7355 39.8913 15.8762C39.8913 18.0169 41.6266 19.7523 43.7673 19.7524L61.8673 19.7529C62.2444 19.7529 62.449 19.3118 62.2054 19.0239C60.6685 17.2073 60.6685 14.5463 62.2055 12.7297Z" fill="#BDC7CE"/>
10
+ <path class="fill-[#EEB110]" d="M57.0224 32.1124C57.2144 31.7894 56.9816 31.3803 56.6059 31.3803L45.4311 31.3798C43.2903 31.3797 41.5548 33.1151 41.5548 35.2559C41.5548 37.3966 43.2901 39.132 45.4307 39.1321L56.6058 39.1326C56.9816 39.1326 57.2143 38.7235 57.0224 38.4005L55.2124 35.3555C55.1762 35.2945 55.1762 35.2185 55.2124 35.1574L57.0224 32.1124Z" fill="#BDC7CE"/>
11
+ <path class="fill-[#000000] dark:fill-[#E3E5E8]" d="M85.3833 21.2326V28.3894H86.4131H87.4428L87.4222 21.2532L87.3913 14.1272L86.3925 14.0963L85.3833 14.0654V21.2326Z" fill="#BDC7CE"/>
12
+ <path class="fill-[#000000] dark:fill-[#E3E5E8]" d="M75.1585 15.1261C74.8805 15.7851 69.4022 28.029 69.3095 28.204C69.2168 28.3791 69.2992 28.3894 70.3804 28.3894H71.5647L72.2134 26.8962L72.8622 25.4031L76.0544 25.4237L79.2364 25.4546L79.8646 26.9168L80.4927 28.3894H81.6563C82.717 28.3894 82.82 28.3688 82.7685 28.204C82.7376 28.1114 81.3989 25.0633 79.7925 21.4385L76.8679 14.848L76.0853 14.8171L75.3027 14.7863L75.1585 15.1261ZM77.2902 20.9545C77.8874 22.3344 78.3817 23.5083 78.3817 23.5598C78.3817 23.6525 73.8199 23.6937 73.7272 23.601C73.6963 23.5701 74.2112 22.3138 74.8599 20.8104C75.7249 18.8332 76.075 18.1227 76.1265 18.2565C76.1677 18.3698 76.6929 19.5849 77.2902 20.9545Z" fill="#BDC7CE"/>
13
+ <path class="fill-[#000000] dark:fill-[#E3E5E8]" d="M104.228 17.0617V18.1842L103.281 18.2151L102.323 18.2459V19.1727V20.0995L103.271 20.1304L104.208 20.1613L104.249 22.7563C104.28 25.1762 104.3 25.3925 104.527 25.9486C105.145 27.5138 106.473 28.4406 108.255 28.5642C108.687 28.5951 109.171 28.5951 109.315 28.5539C109.583 28.4921 109.583 28.4715 109.583 27.5653V26.6385H108.955C108.038 26.6385 107.451 26.4531 107.009 26.0309C106.391 25.4337 106.288 24.9291 106.288 22.3547V20.1613L107.503 20.1304L108.708 20.0995V19.1727V18.2459L107.503 18.2151L106.288 18.1842V17.0617V15.929H105.258H104.228V17.0617Z" fill="#BDC7CE"/>
14
+ <path class="fill-[#000000] dark:fill-[#E3E5E8]" d="M94.2923 18.0917C92.7683 18.3594 91.5326 19.2347 90.7397 20.6146C89.7717 22.3137 89.8541 24.7336 90.925 26.3813C91.9342 27.9465 93.345 28.657 95.2603 28.5746C96.115 28.5438 96.3416 28.4923 96.9182 28.2142C97.289 28.0289 97.742 27.7611 97.9274 27.6067L98.2569 27.3286V27.8641V28.3893H99.2867H100.316V23.292V18.1946H99.2867H98.2569V18.8228V19.451L97.845 19.0905C96.9388 18.2564 95.5692 17.8754 94.2923 18.0917ZM96.424 20.213C97.5567 20.594 98.2672 21.6546 98.3393 23.086C98.4217 24.5586 97.9274 25.6192 96.8873 26.268C96.496 26.5048 96.2489 26.5769 95.6516 26.6181C94.1482 26.7108 93.1081 26.1238 92.5417 24.8675C92.1607 24.054 92.1195 22.8904 92.4285 22.0048C92.6756 21.2942 93.4788 20.4601 94.1379 20.2233C94.7454 20.0173 95.8267 20.007 96.424 20.213Z" fill="#BDC7CE"/>
15
+ <path class="fill-[#000000] dark:fill-[#E3E5E8]" d="M115.197 18.0917C113.673 18.3594 112.437 19.2347 111.644 20.6146C110.676 22.3137 110.758 24.7336 111.829 26.3813C112.838 27.9465 114.249 28.657 116.165 28.5746C117.019 28.5438 117.246 28.4923 117.823 28.2142C118.193 28.0289 118.646 27.7611 118.832 27.6067L119.161 27.3286V27.8641V28.3893H120.191H121.221V23.292V18.1946H120.191H119.161V18.8228V19.451L118.749 19.0905C117.843 18.2564 116.474 17.8754 115.197 18.0917ZM117.328 20.213C118.461 20.594 119.172 21.6546 119.244 23.086C119.326 24.5586 118.832 25.6192 117.792 26.268C117.4 26.5048 117.153 26.5769 116.556 26.6181C114.805 26.7314 113.652 25.8973 113.23 24.2496C112.797 22.5608 113.642 20.7279 115.073 20.213C115.65 20.0173 116.752 20.007 117.328 20.213Z" fill="#BDC7CE"/>
16
+ <path class="fill-[#000000] dark:fill-[#E3E5E8]" d="M124.28 18.2565C124.167 18.3698 124.198 24.1262 124.311 24.9397C124.455 25.8768 124.795 26.6079 125.413 27.267C126.957 28.9249 129.861 29.0484 131.581 27.5347C132.158 27.0198 132.477 26.5358 132.755 25.7223C132.94 25.1456 132.961 24.847 132.961 21.6959V18.2977H131.931H130.901V21.4488C130.901 25.0633 130.86 25.331 130.242 25.9695C129.738 26.4946 129.151 26.6903 128.348 26.5976C127.699 26.5255 127.349 26.3608 126.968 25.9489C126.443 25.3928 126.422 25.2795 126.37 21.6445L126.319 18.2462L125.341 18.2154C124.795 18.2051 124.321 18.2154 124.28 18.2565Z" fill="#BDC7CE"/>
17
+ <path class="fill-[#000000] dark:fill-[#E3E5E8]" d="M85.1578 31.4367C84.3236 31.8796 84.3854 33.2804 85.2402 33.6924C85.9406 34.022 86.7131 33.7336 87.0015 33.0538C87.2281 32.5079 87.1148 32.0135 86.6719 31.6015C86.3835 31.3337 86.229 31.2719 85.8788 31.2719C85.6316 31.2822 85.3123 31.344 85.1578 31.4367Z" fill="#BDC7CE"/>
18
+ <path class="fill-[#000000] dark:fill-[#E3E5E8]" d="M153.986 38.5533L154.017 45.844L155.016 45.8749L156.025 45.9058L156.046 43.5888L156.077 41.2821L158.27 43.5888L160.474 45.8955H161.761C162.523 45.8955 163.028 45.8543 163.007 45.8028C162.997 45.741 162.07 44.7627 160.958 43.6094C159.856 42.4561 158.785 41.3439 158.6 41.1277L158.26 40.7364L160.567 38.4194L162.873 36.1127H161.607H160.34L158.188 38.2958L156.036 40.4892L156.025 35.8759V31.2728H154.996H153.966L153.986 38.5533Z" fill="#BDC7CE"/>
19
+ <path class="fill-[#000000] dark:fill-[#E3E5E8]" d="M74.6855 32.3949C72.1729 33.0334 70.2267 34.8149 69.5058 37.1421C69.3102 37.7806 69.269 38.141 69.2793 39.1502C69.2793 40.2211 69.3205 40.4992 69.5573 41.1994C70.4017 43.609 72.3789 45.2979 75.0151 45.8642C75.5505 45.9775 76.1066 46.0084 77.0437 45.9672C78.4442 45.9054 79.2165 45.7407 80.2257 45.267C80.9156 44.9477 82.1925 44.093 82.1925 43.9489C82.1925 43.9077 81.8733 43.5782 81.4717 43.228L80.7611 42.5896L80.133 43.053C79.3607 43.6296 78.6501 43.8974 77.5277 44.0415C74.7576 44.4123 72.4098 43.0427 71.6786 40.6227C71.3903 39.6754 71.4418 38.1101 71.7816 37.2245C72.3068 35.8755 73.4189 34.8355 74.8503 34.3515C75.3961 34.1661 75.7874 34.1146 76.5803 34.1146C78.1352 34.1043 79.2165 34.4442 80.2051 35.2577L80.6479 35.6078L81.3687 34.959C81.76 34.5986 82.0895 34.2794 82.0895 34.2485C82.0895 34.1558 81.1112 33.435 80.5346 33.0952C80.2771 32.951 79.6902 32.7039 79.2474 32.5494C78.5368 32.3023 78.2382 32.2611 76.9407 32.2405C75.7359 32.2096 75.3034 32.2405 74.6855 32.3949Z" fill="#BDC7CE"/>
20
+ <path class="fill-[#000000] dark:fill-[#E3E5E8]" d="M115.454 39.315V45.9158L118.883 45.8643C121.622 45.8334 122.425 45.7819 122.899 45.648C123.661 45.4421 124.248 45.1435 124.804 44.6904C125.957 43.7533 126.359 42.0542 125.751 40.6846C125.514 40.1491 124.588 39.2017 124.114 38.9958L123.784 38.8619L124.299 38.4088C125.792 37.101 125.762 34.9282 124.237 33.6822C123.949 33.4454 123.445 33.1467 123.105 33.0129C122.528 32.776 122.415 32.7657 118.986 32.7348L115.454 32.7039V39.315ZM122.25 34.6708C122.919 35.0518 123.177 35.4843 123.177 36.2566C123.177 37.0392 122.94 37.4511 122.332 37.7807C121.921 37.9969 121.745 38.0175 119.758 38.0484L117.616 38.0793V36.2154V34.3413L119.707 34.3824C121.694 34.4133 121.807 34.4236 122.25 34.6708ZM122.827 40.18C124.021 40.9214 124.207 42.497 123.208 43.4443C122.6 44.021 122.291 44.0828 119.861 44.124L117.616 44.1652V41.9821V39.8093L119.964 39.8402L122.322 39.8711L122.827 40.18Z" fill="#BDC7CE"/>
21
+ <path class="fill-[#000000] dark:fill-[#E3E5E8]" d="M91.2549 34.5162V35.7004H90.3282H89.4014V36.6272V37.554H90.3179H91.2343L91.2755 40.0975C91.3167 42.4041 91.3476 42.7131 91.5433 43.2588C92.192 45.0197 93.7882 46.0495 95.7447 45.9774L96.5582 45.9465L96.5891 44.9991L96.62 44.0415H95.9095C94.6737 44.0415 94.0559 43.7016 93.6337 42.816C93.3762 42.26 93.3659 42.157 93.3351 39.8915L93.2939 37.554H94.5399H95.7859V36.6272V35.7107L94.5811 35.6798L93.3659 35.6489L93.3351 34.4853L93.3042 33.3319H92.2847H91.2549V34.5162Z" fill="#BDC7CE"/>
22
+ <path class="fill-[#000000] dark:fill-[#E3E5E8]" d="M131.877 35.6387C129.766 36.3286 128.407 38.1204 128.252 40.3859C128.026 43.7738 130.755 46.4924 133.896 45.9878C134.616 45.8745 135.595 45.442 136.13 45.0095L136.46 44.7315V45.3185V45.8951H137.489H138.519V40.7978V35.7005H137.489H136.46V36.2772V36.8538L136.027 36.4728C135.79 36.2772 135.337 35.9785 135.018 35.8344C134.534 35.5975 134.297 35.5563 133.37 35.5254C132.67 35.5048 132.145 35.546 131.877 35.6387ZM134.863 37.7291C136.254 38.4603 136.892 40.2417 136.377 41.9511C136.12 42.7647 135.708 43.3104 135.039 43.712C134.596 43.9695 134.462 43.9901 133.525 43.9901C132.351 43.9901 131.96 43.8459 131.29 43.1457C130.652 42.4866 130.436 41.8791 130.436 40.7463C130.436 39.8813 130.466 39.696 130.724 39.1811C131.053 38.5014 131.754 37.8424 132.371 37.6158C132.989 37.3893 134.318 37.4511 134.863 37.7291Z" fill="#BDC7CE"/>
23
+ <path class="fill-[#000000] dark:fill-[#E3E5E8]" d="M145.677 35.6287C145.09 35.8244 144.647 36.0715 144.235 36.432L143.874 36.7512V36.226V35.7008H142.845H141.815V40.7981V45.9058L142.824 45.8749L143.823 45.844L143.874 42.4973C143.905 40.2524 143.967 39.0578 144.05 38.8828C144.245 38.4297 144.822 37.8427 145.265 37.6471C145.821 37.3896 146.881 37.3896 147.427 37.6471C147.901 37.8633 148.436 38.3988 148.632 38.8416C148.725 39.0681 148.776 40.0567 148.817 42.4973L148.869 45.844H149.899H150.928L150.959 42.8062C150.99 39.3977 150.918 38.6253 150.465 37.6883C150.105 36.9571 149.301 36.1642 148.539 35.8038C147.932 35.5052 146.346 35.4125 145.677 35.6287Z" fill="#BDC7CE"/>
24
+ <path class="fill-[#000000] dark:fill-[#E3E5E8]" d="M84.7671 40.6952V45.7925H85.7969H86.8266V40.6952V35.5978H85.7969H84.7671V40.6952Z" fill="#BDC7CE"/>
25
+ <path class="fill-[#000000] dark:fill-[#E3E5E8]" d="M97.5753 35.8243C97.6062 35.9582 98.4815 38.0486 99.5319 40.4685L101.427 44.8759L100.201 47.3988C99.5319 48.789 98.9758 49.9424 98.9758 49.9732C98.9758 50.0041 99.4907 50.0041 100.119 49.9938L101.262 49.9629L104.547 42.8679C106.349 38.9651 107.832 35.7316 107.832 35.6905C107.832 35.639 107.327 35.5978 106.72 35.5978H105.597L104.125 39.0475C103.311 40.9525 102.611 42.4663 102.57 42.4251C102.528 42.3736 101.911 40.8805 101.179 39.099C100.459 37.3175 99.8202 35.7934 99.7687 35.7213C99.7069 35.639 99.3362 35.5978 98.5948 35.5978C97.5238 35.5978 97.5135 35.5978 97.5753 35.8243Z" fill="#BDC7CE"/>
26
+ </svg>
27
+ </template>
28
+
29
+ <style scoped>
30
+
31
+ </style>
@@ -1,14 +1,14 @@
1
- <script setup lang="ts">
2
-
3
- </script>
4
-
5
- <template>
6
- <svg width="200" height="62" viewBox="0 0 200 62" fill="none" xmlns="http://www.w3.org/2000/svg" class="group">
7
- <path class="fill-[#F14635]" fill-rule="evenodd" clip-rule="evenodd" d="M48.6364 32.5111C52.3951 33.0913 52.9032 35.3154 53.207 37.3853L53.2577 37.7382L53.2922 37.9784L53.4752 39.1966C53.8332 41.5224 54.5803 46.3503 54.5803 48.8697C54.5803 49.4993 54.5249 49.9826 54.4237 50.2481C54.255 50.6573 53.7636 51.05 53.0851 51.3773C51.4433 51.7815 49.7272 52 47.9595 52C47.7723 52 47.5882 51.9909 47.4034 51.9854C46.689 51.7825 46.1521 51.4438 45.8678 50.9808C45.0094 49.5836 44.9577 46.4704 44.9405 42.8325L44.9385 42.4105L44.9316 41.3201C44.9036 37.4688 44.8796 34.1482 46.2789 32.9565C46.8208 32.4982 47.5908 32.3465 48.6364 32.5111ZM40.4414 40.896C41.2559 40.8502 41.7797 44.8566 41.885 47.8946C41.9588 50.0097 41.7367 50.8798 41.382 51.1922C40.9806 51.0582 40.586 50.9131 40.1973 50.7556C39.9379 50.2843 39.7397 49.543 39.6137 48.572C39.2293 45.5206 39.5633 40.9498 40.4414 40.896ZM60.8619 46.8831C60.8111 47.1613 60.7395 47.3763 60.6511 47.5577C59.9547 48.1166 59.2227 48.6296 58.4568 49.0912C58.2128 49.1323 57.9961 49.1037 57.8901 48.9247C56.8749 47.1409 56.4939 41.5449 57.4763 41.0578C58.7572 40.4391 61.0518 45.9156 60.8619 46.8831ZM47.6563 10C59.0931 10 68.3936 19.0571 68.65 30.3271L68.6553 30.7166V30.8967C68.6343 35.9875 66.7608 40.645 63.6743 44.25C63.5624 44.1938 63.3582 44.0099 62.9882 43.4564C62.6053 42.9 59.3036 37.8188 59.3036 31.995C59.3036 30.8521 60.951 29.0667 62.4088 27.4996C63.4986 26.3203 64.5309 25.2079 64.911 24.3337C65.3952 23.2056 65.0564 22.4179 64.5206 22.1509C64.0357 21.9136 63.3076 22.0867 62.7967 22.9941C61.9582 24.4628 61.6896 24.7373 60.4666 25.7199C59.2632 26.7021 57.3499 27.6908 57.3499 26.411C57.3499 25.7199 58.4155 24.1549 58.942 23.0579C59.4796 21.9487 58.9001 21.1457 57.79 21.1457C55.6101 21.1457 54.163 23.9226 54.163 24.8847C54.163 25.8459 54.6294 25.9828 54.6294 27.1023C54.6294 28.2301 52.2376 29.693 49.9846 29.693C47.8154 29.693 46.5575 29.254 46.0363 28.0171L45.9698 27.8434L45.8191 27.3977C45.2846 25.8357 44.9013 24.7029 44.2338 23.519C43.8795 22.893 43.3327 22.4589 42.8598 22.077C42.2417 21.597 41.9211 21.155 41.8542 20.8253C41.7925 20.4982 41.7593 19.8819 42.8158 18.461C43.8702 17.0483 44.0179 15.9811 43.4903 15.4304C43.2991 15.2345 42.9731 15.109 42.5544 15.109C41.8139 15.109 40.7849 15.5013 39.7244 16.5791C38.076 18.2682 39.0118 19.872 39.0118 20.576C39.0118 21.2795 38.7098 21.6775 37.7206 22.6347C36.7241 23.5961 36.3802 24.4203 36.2662 27.7331C36.2225 29.44 35.9219 30.4225 35.6521 31.2937C35.4189 32.0574 35.2045 32.7753 35.1929 33.8126C35.1744 34.962 35.3657 35.7028 35.589 36.5575C35.8082 37.3475 36.0411 38.2527 36.1903 39.767C36.4275 42.111 36.345 44.091 35.9136 46.1147L35.7985 46.6218L35.7716 46.7675C35.6833 47.1231 35.5783 47.5551 35.4363 47.7169C30.1213 43.9418 26.6553 37.7764 26.6553 30.8072C26.6553 19.3167 36.0574 10 47.6563 10Z" fill="#BDC7CE"/>
8
- <path class="fill-[#000] dark:fill-[#fff]" d="M127.09 27.3829C128.651 27.3829 129.865 27.9623 130.732 29.1211C131.599 30.28 132.032 31.873 132.032 33.8999V34.0885C132.032 36.0684 131.589 37.6495 130.703 38.832C129.816 40.0144 128.62 40.6056 127.113 40.6056C125.95 40.6056 124.994 40.1774 124.244 39.3211V45.7551H120.298V27.6186H123.986L124.104 28.7971C124.861 27.8543 125.856 27.3829 127.09 27.3829ZM99.5704 27.3829C101.186 27.3829 102.463 27.7796 103.4 28.5731C104.337 29.3667 104.817 30.4549 104.84 31.8376V37.4826C104.856 38.6533 105.035 39.5489 105.379 40.1695V40.3699H101.432C101.292 40.1106 101.167 39.7296 101.058 39.2268C100.332 40.146 99.3166 40.6056 98.0128 40.6056C96.8183 40.6056 95.8034 40.2422 94.968 39.5155C94.1326 38.7888 93.7149 37.8754 93.7149 36.7754C93.7149 35.3927 94.2224 34.3478 95.2374 33.6407C96.2523 32.9336 97.7279 32.58 99.664 32.58H100.882V31.9083C100.882 30.7377 100.378 30.1523 99.3713 30.1523C98.4344 30.1523 97.966 30.6159 97.966 31.5429H94.0194C94.0194 30.3094 94.5405 29.3078 95.5829 28.5378C96.625 27.7679 97.9543 27.3829 99.5704 27.3829ZM112.417 27.3829C114.087 27.3829 115.43 27.7639 116.445 28.526C117.46 29.2882 117.968 30.2898 117.968 31.5311H114.009C114.009 30.5099 113.475 29.9992 112.405 29.9992C111.991 29.9992 111.644 30.115 111.363 30.3468C111.082 30.5786 110.941 30.8673 110.941 31.213C110.941 31.5666 111.113 31.8533 111.456 32.0733C111.8 32.2933 112.348 32.474 113.102 32.6154C113.855 32.7569 114.517 32.9258 115.087 33.1221C116.992 33.7821 117.944 34.9645 117.944 36.6694C117.944 37.8322 117.431 38.7789 116.404 39.5096C115.377 40.2402 114.048 40.6056 112.417 40.6056C111.331 40.6056 110.363 40.4092 109.512 40.0163C108.661 39.6235 107.998 39.0892 107.521 38.4136C107.045 37.7379 106.807 37.0269 106.807 36.2806H110.496C110.512 36.8697 110.707 37.2999 111.082 37.571C111.456 37.842 111.936 37.9775 112.522 37.9775C113.061 37.9775 113.465 37.8675 113.734 37.6476C114.004 37.4275 114.138 37.1408 114.138 36.7872C114.138 36.4495 113.963 36.1783 113.611 35.9741C113.26 35.7699 112.592 35.5577 111.609 35.3377C110.625 35.1178 109.813 34.829 109.173 34.4715C108.533 34.1141 108.045 33.68 107.709 33.1693C107.373 32.6586 107.205 32.0733 107.205 31.4133C107.205 30.2427 107.686 29.2783 108.646 28.5201C109.606 27.762 110.863 27.3829 112.417 27.3829ZM82.7658 22.2456V30.7769L88.3514 22.2456H93.4339L87.1925 30.8005L92.9542 40.3699H88.0825L84.4522 33.9825L82.7658 35.8445V40.3699H78.6553V22.2456H82.7658ZM138.414 27.6186V40.3699H134.455V27.6186H138.414ZM173.216 27.6186V29.7634L167.572 37.3058H173.345V40.3699H162.583V38.1543L168.204 30.6827H161.582L164.22 27.6186H173.216ZM143.705 36.2567C144.785 36.2567 145.659 37.1403 145.659 38.2304C145.659 39.3204 144.785 40.2042 143.705 40.2042C142.626 40.2042 141.751 39.3204 141.751 38.2304C141.751 37.1403 142.626 36.2567 143.705 36.2567ZM152.871 22.2451V31.7685L153.269 31.2433L156.252 27.5553H160.995L156.546 32.7488L161.289 40.1831H156.757L153.986 35.4797L152.871 36.5885V40.1831H148.913V22.2451H152.871ZM100.882 34.7014H99.7343C98.3602 34.7014 97.6732 35.322 97.6732 36.5634C97.6732 36.9248 97.7942 37.2174 98.0362 37.4414C98.2783 37.6653 98.5866 37.7772 98.9614 37.7772C99.4532 37.7772 99.8612 37.6711 100.185 37.4591C100.509 37.2469 100.741 37.0073 100.882 36.7401V34.7014ZM126.118 30.447C125.181 30.447 124.556 30.7848 124.244 31.4604V36.4809C124.588 37.1879 125.22 37.5415 126.141 37.5415C127.398 37.5415 128.046 36.4495 128.085 34.2653V33.841C128.085 31.5784 127.43 30.447 126.118 30.447ZM136.488 22.2451C137.567 22.2451 138.442 23.1708 138.442 24.3128C138.442 25.4548 137.567 26.3805 136.488 26.3805C135.409 26.3805 134.534 25.4548 134.534 24.3128C134.534 23.1708 135.409 22.2451 136.488 22.2451Z" fill="#BDC7CE"/>
9
- </svg>
10
- </template>
11
-
12
- <style scoped>
13
-
14
- </style>
1
+ <script setup lang="ts">
2
+
3
+ </script>
4
+
5
+ <template>
6
+ <svg width="200" height="62" viewBox="0 0 200 62" fill="none" xmlns="http://www.w3.org/2000/svg" class="group">
7
+ <path class="fill-[#F14635]" fill-rule="evenodd" clip-rule="evenodd" d="M48.6364 32.5111C52.3951 33.0913 52.9032 35.3154 53.207 37.3853L53.2577 37.7382L53.2922 37.9784L53.4752 39.1966C53.8332 41.5224 54.5803 46.3503 54.5803 48.8697C54.5803 49.4993 54.5249 49.9826 54.4237 50.2481C54.255 50.6573 53.7636 51.05 53.0851 51.3773C51.4433 51.7815 49.7272 52 47.9595 52C47.7723 52 47.5882 51.9909 47.4034 51.9854C46.689 51.7825 46.1521 51.4438 45.8678 50.9808C45.0094 49.5836 44.9577 46.4704 44.9405 42.8325L44.9385 42.4105L44.9316 41.3201C44.9036 37.4688 44.8796 34.1482 46.2789 32.9565C46.8208 32.4982 47.5908 32.3465 48.6364 32.5111ZM40.4414 40.896C41.2559 40.8502 41.7797 44.8566 41.885 47.8946C41.9588 50.0097 41.7367 50.8798 41.382 51.1922C40.9806 51.0582 40.586 50.9131 40.1973 50.7556C39.9379 50.2843 39.7397 49.543 39.6137 48.572C39.2293 45.5206 39.5633 40.9498 40.4414 40.896ZM60.8619 46.8831C60.8111 47.1613 60.7395 47.3763 60.6511 47.5577C59.9547 48.1166 59.2227 48.6296 58.4568 49.0912C58.2128 49.1323 57.9961 49.1037 57.8901 48.9247C56.8749 47.1409 56.4939 41.5449 57.4763 41.0578C58.7572 40.4391 61.0518 45.9156 60.8619 46.8831ZM47.6563 10C59.0931 10 68.3936 19.0571 68.65 30.3271L68.6553 30.7166V30.8967C68.6343 35.9875 66.7608 40.645 63.6743 44.25C63.5624 44.1938 63.3582 44.0099 62.9882 43.4564C62.6053 42.9 59.3036 37.8188 59.3036 31.995C59.3036 30.8521 60.951 29.0667 62.4088 27.4996C63.4986 26.3203 64.5309 25.2079 64.911 24.3337C65.3952 23.2056 65.0564 22.4179 64.5206 22.1509C64.0357 21.9136 63.3076 22.0867 62.7967 22.9941C61.9582 24.4628 61.6896 24.7373 60.4666 25.7199C59.2632 26.7021 57.3499 27.6908 57.3499 26.411C57.3499 25.7199 58.4155 24.1549 58.942 23.0579C59.4796 21.9487 58.9001 21.1457 57.79 21.1457C55.6101 21.1457 54.163 23.9226 54.163 24.8847C54.163 25.8459 54.6294 25.9828 54.6294 27.1023C54.6294 28.2301 52.2376 29.693 49.9846 29.693C47.8154 29.693 46.5575 29.254 46.0363 28.0171L45.9698 27.8434L45.8191 27.3977C45.2846 25.8357 44.9013 24.7029 44.2338 23.519C43.8795 22.893 43.3327 22.4589 42.8598 22.077C42.2417 21.597 41.9211 21.155 41.8542 20.8253C41.7925 20.4982 41.7593 19.8819 42.8158 18.461C43.8702 17.0483 44.0179 15.9811 43.4903 15.4304C43.2991 15.2345 42.9731 15.109 42.5544 15.109C41.8139 15.109 40.7849 15.5013 39.7244 16.5791C38.076 18.2682 39.0118 19.872 39.0118 20.576C39.0118 21.2795 38.7098 21.6775 37.7206 22.6347C36.7241 23.5961 36.3802 24.4203 36.2662 27.7331C36.2225 29.44 35.9219 30.4225 35.6521 31.2937C35.4189 32.0574 35.2045 32.7753 35.1929 33.8126C35.1744 34.962 35.3657 35.7028 35.589 36.5575C35.8082 37.3475 36.0411 38.2527 36.1903 39.767C36.4275 42.111 36.345 44.091 35.9136 46.1147L35.7985 46.6218L35.7716 46.7675C35.6833 47.1231 35.5783 47.5551 35.4363 47.7169C30.1213 43.9418 26.6553 37.7764 26.6553 30.8072C26.6553 19.3167 36.0574 10 47.6563 10Z" fill="#BDC7CE"/>
8
+ <path class="fill-[#000] dark:fill-[#fff]" d="M127.09 27.3829C128.651 27.3829 129.865 27.9623 130.732 29.1211C131.599 30.28 132.032 31.873 132.032 33.8999V34.0885C132.032 36.0684 131.589 37.6495 130.703 38.832C129.816 40.0144 128.62 40.6056 127.113 40.6056C125.95 40.6056 124.994 40.1774 124.244 39.3211V45.7551H120.298V27.6186H123.986L124.104 28.7971C124.861 27.8543 125.856 27.3829 127.09 27.3829ZM99.5704 27.3829C101.186 27.3829 102.463 27.7796 103.4 28.5731C104.337 29.3667 104.817 30.4549 104.84 31.8376V37.4826C104.856 38.6533 105.035 39.5489 105.379 40.1695V40.3699H101.432C101.292 40.1106 101.167 39.7296 101.058 39.2268C100.332 40.146 99.3166 40.6056 98.0128 40.6056C96.8183 40.6056 95.8034 40.2422 94.968 39.5155C94.1326 38.7888 93.7149 37.8754 93.7149 36.7754C93.7149 35.3927 94.2224 34.3478 95.2374 33.6407C96.2523 32.9336 97.7279 32.58 99.664 32.58H100.882V31.9083C100.882 30.7377 100.378 30.1523 99.3713 30.1523C98.4344 30.1523 97.966 30.6159 97.966 31.5429H94.0194C94.0194 30.3094 94.5405 29.3078 95.5829 28.5378C96.625 27.7679 97.9543 27.3829 99.5704 27.3829ZM112.417 27.3829C114.087 27.3829 115.43 27.7639 116.445 28.526C117.46 29.2882 117.968 30.2898 117.968 31.5311H114.009C114.009 30.5099 113.475 29.9992 112.405 29.9992C111.991 29.9992 111.644 30.115 111.363 30.3468C111.082 30.5786 110.941 30.8673 110.941 31.213C110.941 31.5666 111.113 31.8533 111.456 32.0733C111.8 32.2933 112.348 32.474 113.102 32.6154C113.855 32.7569 114.517 32.9258 115.087 33.1221C116.992 33.7821 117.944 34.9645 117.944 36.6694C117.944 37.8322 117.431 38.7789 116.404 39.5096C115.377 40.2402 114.048 40.6056 112.417 40.6056C111.331 40.6056 110.363 40.4092 109.512 40.0163C108.661 39.6235 107.998 39.0892 107.521 38.4136C107.045 37.7379 106.807 37.0269 106.807 36.2806H110.496C110.512 36.8697 110.707 37.2999 111.082 37.571C111.456 37.842 111.936 37.9775 112.522 37.9775C113.061 37.9775 113.465 37.8675 113.734 37.6476C114.004 37.4275 114.138 37.1408 114.138 36.7872C114.138 36.4495 113.963 36.1783 113.611 35.9741C113.26 35.7699 112.592 35.5577 111.609 35.3377C110.625 35.1178 109.813 34.829 109.173 34.4715C108.533 34.1141 108.045 33.68 107.709 33.1693C107.373 32.6586 107.205 32.0733 107.205 31.4133C107.205 30.2427 107.686 29.2783 108.646 28.5201C109.606 27.762 110.863 27.3829 112.417 27.3829ZM82.7658 22.2456V30.7769L88.3514 22.2456H93.4339L87.1925 30.8005L92.9542 40.3699H88.0825L84.4522 33.9825L82.7658 35.8445V40.3699H78.6553V22.2456H82.7658ZM138.414 27.6186V40.3699H134.455V27.6186H138.414ZM173.216 27.6186V29.7634L167.572 37.3058H173.345V40.3699H162.583V38.1543L168.204 30.6827H161.582L164.22 27.6186H173.216ZM143.705 36.2567C144.785 36.2567 145.659 37.1403 145.659 38.2304C145.659 39.3204 144.785 40.2042 143.705 40.2042C142.626 40.2042 141.751 39.3204 141.751 38.2304C141.751 37.1403 142.626 36.2567 143.705 36.2567ZM152.871 22.2451V31.7685L153.269 31.2433L156.252 27.5553H160.995L156.546 32.7488L161.289 40.1831H156.757L153.986 35.4797L152.871 36.5885V40.1831H148.913V22.2451H152.871ZM100.882 34.7014H99.7343C98.3602 34.7014 97.6732 35.322 97.6732 36.5634C97.6732 36.9248 97.7942 37.2174 98.0362 37.4414C98.2783 37.6653 98.5866 37.7772 98.9614 37.7772C99.4532 37.7772 99.8612 37.6711 100.185 37.4591C100.509 37.2469 100.741 37.0073 100.882 36.7401V34.7014ZM126.118 30.447C125.181 30.447 124.556 30.7848 124.244 31.4604V36.4809C124.588 37.1879 125.22 37.5415 126.141 37.5415C127.398 37.5415 128.046 36.4495 128.085 34.2653V33.841C128.085 31.5784 127.43 30.447 126.118 30.447ZM136.488 22.2451C137.567 22.2451 138.442 23.1708 138.442 24.3128C138.442 25.4548 137.567 26.3805 136.488 26.3805C135.409 26.3805 134.534 25.4548 134.534 24.3128C134.534 23.1708 135.409 22.2451 136.488 22.2451Z" fill="#BDC7CE"/>
9
+ </svg>
10
+ </template>
11
+
12
+ <style scoped>
13
+
14
+ </style>
@@ -1,13 +1,13 @@
1
- <script setup lang="ts">
2
-
3
- </script>
4
-
5
- <template>
6
- <svg width="200" height="62" viewBox="0 0 200 62" fill="none" xmlns="http://www.w3.org/2000/svg" class="group">
7
- <path class="fill-[#000000] dark:fill-[#FFFFFF] " d="M75.3816 29.75C75.3816 35.9633 64.1034 41 50.1909 41C36.2784 41 25 35.9633 25 29.75V22.25C25 21.5625 25.4408 20.9999 26.2595 21C26.7434 21.0001 27.699 21.5328 28.617 22.0447C29.1326 22.3322 29.6364 22.6131 30.0382 22.7893C35.4989 25.1842 42.525 26.625 50.1909 26.625C57.8568 26.625 64.8827 25.1842 70.3435 22.7893C70.9751 22.5122 71.588 22.1685 72.144 21.8565C72.9697 21.3932 73.6705 21 74.1221 21C74.9409 21 75.3816 21.5625 75.3816 22.25V29.75ZM165.13 36.5465L160.938 30.9943L165.019 25.4419H161.095L157.731 30.3057V21H154.368V36.5465H157.731V31.6383L161.319 36.5465H165.13ZM94.7634 26.5967C95.3913 25.7084 96.4226 25.1309 98.0146 25.1309C100.593 25.1309 102.275 26.9521 102.275 29.7283V36.5465H98.9115V30.017C98.9115 28.9065 98.3734 28.1958 97.2971 28.1958C96.176 28.1958 95.5481 28.9731 95.5481 30.2835V36.5465H92.1847V30.017C92.1847 28.9065 91.6466 28.1958 90.5704 28.1958C89.4492 28.1958 88.8214 28.9731 88.8214 30.2835V36.5465H85.458V25.4419H88.8214V26.4635C89.3371 25.7084 90.3238 25.1309 91.826 25.1309C93.1489 25.1309 94.1355 25.664 94.7634 26.5967ZM109.311 32.2379L111.418 25.4419H115.006L111.172 36.2134C109.916 39.7446 107.92 41.1439 104.781 40.9884V37.8791C106.351 37.8791 107.091 37.3905 107.584 36.0358L103.122 25.4419H106.822L109.311 32.2379ZM121.189 36.8575C123.386 36.8575 125.292 35.7248 126.256 33.9925L123.319 32.3268C122.96 33.1041 122.13 33.5705 121.144 33.5705C119.686 33.5705 118.61 32.5266 118.61 30.9943C118.61 29.4618 119.686 28.4179 121.144 28.4179C122.13 28.4179 122.938 28.8844 123.319 29.6616L126.256 27.9737C125.292 26.2636 123.364 25.1309 121.189 25.1309C117.78 25.1309 115.247 27.685 115.247 30.9943C115.247 34.3034 117.78 36.8575 121.189 36.8575ZM135.53 26.4857V25.4419H138.894V36.5465H135.53V35.5027C134.79 36.3466 133.691 36.8575 132.189 36.8575C129.252 36.8575 126.83 34.3034 126.83 30.9943C126.83 27.685 129.252 25.1309 132.189 25.1309C133.691 25.1309 134.79 25.6417 135.53 26.4857ZM130.193 30.9943C130.193 32.6599 131.315 33.7038 132.862 33.7038C134.409 33.7038 135.53 32.6599 135.53 30.9943C135.53 29.3285 134.409 28.2847 132.862 28.2847C131.315 28.2847 130.193 29.3285 130.193 30.9943ZM144.724 27.4185V25.4419H141.361V36.5465H144.724V31.5272C144.724 29.3285 146.698 28.7733 148.088 28.9954V25.2198C146.675 25.2198 145.173 25.9305 144.724 27.4185ZM152.12 34.7476C152.12 35.9025 151.155 36.8575 149.989 36.8575C148.824 36.8575 147.859 35.9025 147.859 34.7476C147.859 33.5928 148.824 32.6377 149.989 32.6377C151.155 32.6377 152.12 33.5928 152.12 34.7476ZM174.776 27.6628L170.538 33.4372H175V36.5465H166.031V34.3256L170.269 28.5511H166.255V25.4419H174.776V27.6628Z" fill="#BDC7CE"/>
8
- </svg>
9
- </template>
10
-
11
- <style scoped>
12
-
13
- </style>
1
+ <script setup lang="ts">
2
+
3
+ </script>
4
+
5
+ <template>
6
+ <svg width="200" height="62" viewBox="0 0 200 62" fill="none" xmlns="http://www.w3.org/2000/svg" class="group">
7
+ <path class="fill-[#000000] dark:fill-[#FFFFFF] " d="M75.3816 29.75C75.3816 35.9633 64.1034 41 50.1909 41C36.2784 41 25 35.9633 25 29.75V22.25C25 21.5625 25.4408 20.9999 26.2595 21C26.7434 21.0001 27.699 21.5328 28.617 22.0447C29.1326 22.3322 29.6364 22.6131 30.0382 22.7893C35.4989 25.1842 42.525 26.625 50.1909 26.625C57.8568 26.625 64.8827 25.1842 70.3435 22.7893C70.9751 22.5122 71.588 22.1685 72.144 21.8565C72.9697 21.3932 73.6705 21 74.1221 21C74.9409 21 75.3816 21.5625 75.3816 22.25V29.75ZM165.13 36.5465L160.938 30.9943L165.019 25.4419H161.095L157.731 30.3057V21H154.368V36.5465H157.731V31.6383L161.319 36.5465H165.13ZM94.7634 26.5967C95.3913 25.7084 96.4226 25.1309 98.0146 25.1309C100.593 25.1309 102.275 26.9521 102.275 29.7283V36.5465H98.9115V30.017C98.9115 28.9065 98.3734 28.1958 97.2971 28.1958C96.176 28.1958 95.5481 28.9731 95.5481 30.2835V36.5465H92.1847V30.017C92.1847 28.9065 91.6466 28.1958 90.5704 28.1958C89.4492 28.1958 88.8214 28.9731 88.8214 30.2835V36.5465H85.458V25.4419H88.8214V26.4635C89.3371 25.7084 90.3238 25.1309 91.826 25.1309C93.1489 25.1309 94.1355 25.664 94.7634 26.5967ZM109.311 32.2379L111.418 25.4419H115.006L111.172 36.2134C109.916 39.7446 107.92 41.1439 104.781 40.9884V37.8791C106.351 37.8791 107.091 37.3905 107.584 36.0358L103.122 25.4419H106.822L109.311 32.2379ZM121.189 36.8575C123.386 36.8575 125.292 35.7248 126.256 33.9925L123.319 32.3268C122.96 33.1041 122.13 33.5705 121.144 33.5705C119.686 33.5705 118.61 32.5266 118.61 30.9943C118.61 29.4618 119.686 28.4179 121.144 28.4179C122.13 28.4179 122.938 28.8844 123.319 29.6616L126.256 27.9737C125.292 26.2636 123.364 25.1309 121.189 25.1309C117.78 25.1309 115.247 27.685 115.247 30.9943C115.247 34.3034 117.78 36.8575 121.189 36.8575ZM135.53 26.4857V25.4419H138.894V36.5465H135.53V35.5027C134.79 36.3466 133.691 36.8575 132.189 36.8575C129.252 36.8575 126.83 34.3034 126.83 30.9943C126.83 27.685 129.252 25.1309 132.189 25.1309C133.691 25.1309 134.79 25.6417 135.53 26.4857ZM130.193 30.9943C130.193 32.6599 131.315 33.7038 132.862 33.7038C134.409 33.7038 135.53 32.6599 135.53 30.9943C135.53 29.3285 134.409 28.2847 132.862 28.2847C131.315 28.2847 130.193 29.3285 130.193 30.9943ZM144.724 27.4185V25.4419H141.361V36.5465H144.724V31.5272C144.724 29.3285 146.698 28.7733 148.088 28.9954V25.2198C146.675 25.2198 145.173 25.9305 144.724 27.4185ZM152.12 34.7476C152.12 35.9025 151.155 36.8575 149.989 36.8575C148.824 36.8575 147.859 35.9025 147.859 34.7476C147.859 33.5928 148.824 32.6377 149.989 32.6377C151.155 32.6377 152.12 33.5928 152.12 34.7476ZM174.776 27.6628L170.538 33.4372H175V36.5465H166.031V34.3256L170.269 28.5511H166.255V25.4419H174.776V27.6628Z" fill="#BDC7CE"/>
8
+ </svg>
9
+ </template>
10
+
11
+ <style scoped>
12
+
13
+ </style>