flowbite-svelte 0.27.15 → 0.27.16

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 (918) hide show
  1. package/CHANGELOG.md +2 -0
  2. package/README.md +2 -0
  3. package/accordions/Accordion.svelte +24 -0
  4. package/accordions/Accordion.svelte.d.ts +30 -0
  5. package/accordions/AccordionItem.svelte +59 -0
  6. package/accordions/AccordionItem.svelte.d.ts +28 -0
  7. package/alerts/Alert.svelte +47 -0
  8. package/alerts/Alert.svelte.d.ts +32 -0
  9. package/avatar/Avatar.svelte +39 -0
  10. package/avatar/Avatar.svelte.d.ts +27 -0
  11. package/avatar/Dot.svelte +34 -0
  12. package/avatar/Dot.svelte.d.ts +23 -0
  13. package/avatar/Placeholder.svelte +15 -0
  14. package/avatar/Placeholder.svelte.d.ts +16 -0
  15. package/badges/Badge.svelte +51 -0
  16. package/badges/Badge.svelte.d.ts +26 -0
  17. package/breadcrumbs/Breadcrumb.svelte +13 -0
  18. package/breadcrumbs/Breadcrumb.svelte.d.ts +22 -0
  19. package/breadcrumbs/BreadcrumbItem.svelte +44 -0
  20. package/breadcrumbs/BreadcrumbItem.svelte.d.ts +24 -0
  21. package/buttongroups/ButtonGroup.svelte +10 -0
  22. package/buttongroups/ButtonGroup.svelte.d.ts +21 -0
  23. package/buttons/Button.svelte +111 -0
  24. package/buttons/Button.svelte.d.ts +35 -0
  25. package/cards/Card.svelte +40 -0
  26. package/cards/Card.svelte.d.ts +25 -0
  27. package/carousels/Caption.svelte +7 -0
  28. package/carousels/Caption.svelte.d.ts +17 -0
  29. package/carousels/Carousel.svelte +138 -0
  30. package/carousels/Carousel.svelte.d.ts +30 -0
  31. package/carousels/CarouselTransition.svelte +157 -0
  32. package/carousels/CarouselTransition.svelte.d.ts +32 -0
  33. package/carousels/Indicator.svelte +11 -0
  34. package/carousels/Indicator.svelte.d.ts +20 -0
  35. package/carousels/Slide.svelte +9 -0
  36. package/carousels/Slide.svelte.d.ts +19 -0
  37. package/carousels/Thumbnail.svelte +23 -0
  38. package/carousels/Thumbnail.svelte.d.ts +23 -0
  39. package/darkmode/DarkMode.svelte +34 -0
  40. package/darkmode/DarkMode.svelte.d.ts +16 -0
  41. package/{src/lib/datepicker → datepicker}/Calender.svelte +0 -0
  42. package/datepicker/Calender.svelte.d.ts +19 -0
  43. package/datepicker/Datepicker.svelte +70 -0
  44. package/datepicker/Datepicker.svelte.d.ts +25 -0
  45. package/drawer/Drawer.svelte +74 -0
  46. package/drawer/Drawer.svelte.d.ts +37 -0
  47. package/dropdowns/Dropdown.svelte +32 -0
  48. package/dropdowns/Dropdown.svelte.d.ts +24 -0
  49. package/dropdowns/DropdownDivider.svelte +5 -0
  50. package/dropdowns/DropdownDivider.svelte.d.ts +17 -0
  51. package/dropdowns/DropdownHeader.svelte +13 -0
  52. package/dropdowns/DropdownHeader.svelte.d.ts +20 -0
  53. package/dropdowns/DropdownItem.svelte +29 -0
  54. package/dropdowns/DropdownItem.svelte.d.ts +29 -0
  55. package/footer/Footer.svelte +21 -0
  56. package/footer/Footer.svelte.d.ts +20 -0
  57. package/footer/FooterBrand.svelte +20 -0
  58. package/footer/FooterBrand.svelte.d.ts +26 -0
  59. package/footer/FooterCopyright.svelte +20 -0
  60. package/footer/FooterCopyright.svelte.d.ts +22 -0
  61. package/footer/FooterIcon.svelte +14 -0
  62. package/footer/FooterIcon.svelte.d.ts +22 -0
  63. package/footer/FooterLink.svelte +13 -0
  64. package/footer/FooterLink.svelte.d.ts +22 -0
  65. package/footer/FooterLinkGroup.svelte +7 -0
  66. package/footer/FooterLinkGroup.svelte.d.ts +19 -0
  67. package/forms/Checkbox.svelte +52 -0
  68. package/forms/Checkbox.svelte.d.ts +36 -0
  69. package/forms/Dropzone.svelte +26 -0
  70. package/forms/Dropzone.svelte.d.ts +30 -0
  71. package/forms/Fileupload.svelte +27 -0
  72. package/forms/Fileupload.svelte.d.ts +31 -0
  73. package/forms/FloatingLabelInput.svelte +106 -0
  74. package/forms/FloatingLabelInput.svelte.d.ts +36 -0
  75. package/forms/Helper.svelte +14 -0
  76. package/forms/Helper.svelte.d.ts +20 -0
  77. package/forms/Iconinput.svelte +81 -0
  78. package/forms/Iconinput.svelte.d.ts +39 -0
  79. package/forms/Input.svelte +82 -0
  80. package/forms/Input.svelte.d.ts +45 -0
  81. package/forms/InputAddon.svelte +29 -0
  82. package/forms/InputAddon.svelte.d.ts +19 -0
  83. package/forms/Label.svelte +25 -0
  84. package/forms/Label.svelte.d.ts +21 -0
  85. package/forms/NumberInput.svelte +7 -0
  86. package/forms/NumberInput.svelte.d.ts +17 -0
  87. package/forms/Radio.svelte +45 -0
  88. package/forms/Radio.svelte.d.ts +38 -0
  89. package/{src/lib/forms → forms}/RadioInline.svelte +0 -0
  90. package/forms/RadioInline.svelte.d.ts +23 -0
  91. package/forms/Range.svelte +22 -0
  92. package/forms/Range.svelte.d.ts +24 -0
  93. package/forms/Search.svelte +55 -0
  94. package/forms/Search.svelte.d.ts +34 -0
  95. package/forms/Select.svelte +25 -0
  96. package/forms/Select.svelte.d.ts +27 -0
  97. package/forms/SimpleSearch.svelte +20 -0
  98. package/forms/SimpleSearch.svelte.d.ts +18 -0
  99. package/forms/Textarea.svelte +48 -0
  100. package/forms/Textarea.svelte.d.ts +32 -0
  101. package/forms/Toggle.svelte +32 -0
  102. package/forms/Toggle.svelte.d.ts +25 -0
  103. package/forms/VoiceSearch.svelte +63 -0
  104. package/forms/VoiceSearch.svelte.d.ts +28 -0
  105. package/index.d.ts +129 -0
  106. package/index.js +165 -0
  107. package/kbd/ArrowKeyDown.svelte +15 -0
  108. package/kbd/ArrowKeyDown.svelte.d.ts +17 -0
  109. package/kbd/ArrowKeyLeft.svelte +15 -0
  110. package/kbd/ArrowKeyLeft.svelte.d.ts +17 -0
  111. package/kbd/ArrowKeyRight.svelte +15 -0
  112. package/kbd/ArrowKeyRight.svelte.d.ts +17 -0
  113. package/kbd/ArrowKeyUp.svelte +15 -0
  114. package/kbd/ArrowKeyUp.svelte.d.ts +17 -0
  115. package/kbd/Kbd.svelte +7 -0
  116. package/kbd/Kbd.svelte.d.ts +19 -0
  117. package/list-group/Listgroup.svelte +18 -0
  118. package/list-group/Listgroup.svelte.d.ts +23 -0
  119. package/list-group/ListgroupItem.svelte +62 -0
  120. package/list-group/ListgroupItem.svelte.d.ts +35 -0
  121. package/megamenu/MegaMenu.svelte +42 -0
  122. package/megamenu/MegaMenu.svelte.d.ts +27 -0
  123. package/modals/Modal.svelte +138 -0
  124. package/modals/Modal.svelte.d.ts +30 -0
  125. package/navbar/Menu.svelte +36 -0
  126. package/navbar/Menu.svelte.d.ts +22 -0
  127. package/navbar/NavBrand.svelte +7 -0
  128. package/navbar/NavBrand.svelte.d.ts +19 -0
  129. package/navbar/NavDropdown.svelte +59 -0
  130. package/navbar/NavDropdown.svelte.d.ts +35 -0
  131. package/navbar/NavHamburger.svelte +9 -0
  132. package/navbar/NavHamburger.svelte.d.ts +19 -0
  133. package/navbar/NavLi.svelte +28 -0
  134. package/navbar/NavLi.svelte.d.ts +33 -0
  135. package/navbar/NavUl.svelte +28 -0
  136. package/navbar/NavUl.svelte.d.ts +21 -0
  137. package/navbar/Navbar.svelte +17 -0
  138. package/navbar/Navbar.svelte.d.ts +25 -0
  139. package/package.json +258 -113
  140. package/paginations/Pagination.svelte +36 -0
  141. package/paginations/Pagination.svelte.d.ts +26 -0
  142. package/paginations/PaginationItem.svelte +24 -0
  143. package/paginations/PaginationItem.svelte.d.ts +29 -0
  144. package/popover/Popover.svelte +18 -0
  145. package/popover/Popover.svelte.d.ts +23 -0
  146. package/progressbars/Progressbar.svelte +34 -0
  147. package/progressbars/Progressbar.svelte.d.ts +23 -0
  148. package/ratings/AdvancedRating.svelte +24 -0
  149. package/ratings/AdvancedRating.svelte.d.ts +28 -0
  150. package/ratings/Rating.svelte +34 -0
  151. package/ratings/Rating.svelte.d.ts +27 -0
  152. package/ratings/RatingComment.svelte +64 -0
  153. package/ratings/RatingComment.svelte.d.ts +39 -0
  154. package/ratings/Review.svelte +64 -0
  155. package/ratings/Review.svelte.d.ts +29 -0
  156. package/ratings/ScoreRating.svelte +52 -0
  157. package/ratings/ScoreRating.svelte.d.ts +36 -0
  158. package/ratings/Star.svelte +36 -0
  159. package/ratings/Star.svelte.d.ts +22 -0
  160. package/sidebars/Sidebar.svelte +7 -0
  161. package/sidebars/Sidebar.svelte.d.ts +19 -0
  162. package/sidebars/SidebarBrand.svelte +11 -0
  163. package/sidebars/SidebarBrand.svelte.d.ts +21 -0
  164. package/sidebars/SidebarCta.svelte +21 -0
  165. package/sidebars/SidebarCta.svelte.d.ts +23 -0
  166. package/sidebars/SidebarDropdownItem.svelte +23 -0
  167. package/sidebars/SidebarDropdownItem.svelte.d.ts +31 -0
  168. package/sidebars/SidebarDropdownWrapper.svelte +45 -0
  169. package/sidebars/SidebarDropdownWrapper.svelte.d.ts +26 -0
  170. package/sidebars/SidebarGroup.svelte +12 -0
  171. package/sidebars/SidebarGroup.svelte.d.ts +21 -0
  172. package/sidebars/SidebarItem.svelte +30 -0
  173. package/sidebars/SidebarItem.svelte.d.ts +35 -0
  174. package/sidebars/SidebarWrapper.svelte +7 -0
  175. package/sidebars/SidebarWrapper.svelte.d.ts +19 -0
  176. package/skeleton/CardPlaceholder.svelte +44 -0
  177. package/skeleton/CardPlaceholder.svelte.d.ts +18 -0
  178. package/skeleton/ImagePlaceholder.svelte +32 -0
  179. package/skeleton/ImagePlaceholder.svelte.d.ts +18 -0
  180. package/skeleton/ListPlaceholder.svelte +42 -0
  181. package/skeleton/ListPlaceholder.svelte.d.ts +17 -0
  182. package/skeleton/Skeleton.svelte +13 -0
  183. package/skeleton/Skeleton.svelte.d.ts +17 -0
  184. package/skeleton/TestimonialPlaceholder.svelte +25 -0
  185. package/skeleton/TestimonialPlaceholder.svelte.d.ts +17 -0
  186. package/skeleton/TextPlaceholder.svelte +37 -0
  187. package/skeleton/TextPlaceholder.svelte.d.ts +17 -0
  188. package/skeleton/VideoPlaceholder.svelte +20 -0
  189. package/skeleton/VideoPlaceholder.svelte.d.ts +18 -0
  190. package/skeleton/WidgetPlaceholder.svelte +18 -0
  191. package/skeleton/WidgetPlaceholder.svelte.d.ts +17 -0
  192. package/spinners/Spinner.svelte +46 -0
  193. package/spinners/Spinner.svelte.d.ts +22 -0
  194. package/tables/Table.svelte +31 -0
  195. package/tables/Table.svelte.d.ts +24 -0
  196. package/{src/lib/tables → tables}/TableBody.svelte +0 -0
  197. package/tables/TableBody.svelte.d.ts +27 -0
  198. package/tables/TableBodyCell.svelte +14 -0
  199. package/tables/TableBodyCell.svelte.d.ts +19 -0
  200. package/tables/TableBodyRow.svelte +39 -0
  201. package/tables/TableBodyRow.svelte.d.ts +19 -0
  202. package/tables/TableHead.svelte +37 -0
  203. package/tables/TableHead.svelte.d.ts +19 -0
  204. package/tables/TableHeadCell.svelte +6 -0
  205. package/tables/TableHeadCell.svelte.d.ts +18 -0
  206. package/tables/TableSearch.svelte +55 -0
  207. package/tables/TableSearch.svelte.d.ts +24 -0
  208. package/tabs/TabHead.svelte +27 -0
  209. package/tabs/TabHead.svelte.d.ts +20 -0
  210. package/tabs/TabHeadItem.svelte +56 -0
  211. package/tabs/TabHeadItem.svelte.d.ts +34 -0
  212. package/tabs/TabItem.svelte +53 -0
  213. package/tabs/TabItem.svelte.d.ts +34 -0
  214. package/tabs/Tabs.svelte +50 -0
  215. package/tabs/Tabs.svelte.d.ts +33 -0
  216. package/timelines/Activity.svelte +6 -0
  217. package/timelines/Activity.svelte.d.ts +18 -0
  218. package/timelines/ActivityItem.svelte +29 -0
  219. package/timelines/ActivityItem.svelte.d.ts +17 -0
  220. package/timelines/Group.svelte +11 -0
  221. package/timelines/Group.svelte.d.ts +20 -0
  222. package/timelines/GroupItem.svelte +49 -0
  223. package/timelines/GroupItem.svelte.d.ts +17 -0
  224. package/timelines/Timeline.svelte +17 -0
  225. package/timelines/Timeline.svelte.d.ts +19 -0
  226. package/timelines/TimelineHorizontal.svelte +6 -0
  227. package/timelines/TimelineHorizontal.svelte.d.ts +18 -0
  228. package/timelines/TimelineItem.svelte +125 -0
  229. package/timelines/TimelineItem.svelte.d.ts +22 -0
  230. package/timelines/TimelineItemHorizontal.svelte +55 -0
  231. package/timelines/TimelineItemHorizontal.svelte.d.ts +21 -0
  232. package/timelines/TimelineItemVertical.svelte +33 -0
  233. package/timelines/TimelineItemVertical.svelte.d.ts +20 -0
  234. package/toasts/Toast.svelte +39 -0
  235. package/toasts/Toast.svelte.d.ts +25 -0
  236. package/toolbar/Toolbar.svelte +57 -0
  237. package/toolbar/Toolbar.svelte.d.ts +21 -0
  238. package/toolbar/ToolbarButton.svelte +44 -0
  239. package/toolbar/ToolbarButton.svelte.d.ts +24 -0
  240. package/toolbar/ToolbarGroup.svelte +9 -0
  241. package/toolbar/ToolbarGroup.svelte.d.ts +16 -0
  242. package/tooltips/Tooltip.svelte +23 -0
  243. package/tooltips/Tooltip.svelte.d.ts +22 -0
  244. package/types.d.ts +225 -0
  245. package/types.js +1 -0
  246. package/typography/A.svelte +9 -0
  247. package/typography/A.svelte.d.ts +21 -0
  248. package/typography/Blockquote.svelte +44 -0
  249. package/typography/Blockquote.svelte.d.ts +26 -0
  250. package/typography/DescriptionList.svelte +10 -0
  251. package/typography/DescriptionList.svelte.d.ts +21 -0
  252. package/typography/Heading.svelte +20 -0
  253. package/typography/Heading.svelte.d.ts +21 -0
  254. package/typography/Hr.svelte +24 -0
  255. package/typography/Hr.svelte.d.ts +26 -0
  256. package/typography/Img.svelte +30 -0
  257. package/typography/Img.svelte.d.ts +26 -0
  258. package/typography/Layout.svelte +10 -0
  259. package/typography/Layout.svelte.d.ts +21 -0
  260. package/typography/Li.svelte +9 -0
  261. package/typography/Li.svelte.d.ts +20 -0
  262. package/typography/List.svelte +23 -0
  263. package/typography/List.svelte.d.ts +25 -0
  264. package/typography/Mark.svelte +9 -0
  265. package/typography/Mark.svelte.d.ts +21 -0
  266. package/typography/P.svelte +75 -0
  267. package/typography/P.svelte.d.ts +30 -0
  268. package/typography/Secondary.svelte +8 -0
  269. package/typography/Secondary.svelte.d.ts +20 -0
  270. package/typography/Span.svelte +17 -0
  271. package/typography/Span.svelte.d.ts +27 -0
  272. package/typography/Ul.svelte +20 -0
  273. package/typography/Ul.svelte.d.ts +21 -0
  274. package/utils/Chevron.svelte +26 -0
  275. package/utils/Chevron.svelte.d.ts +20 -0
  276. package/utils/ChevronDown.svelte +36 -0
  277. package/utils/ChevronDown.svelte.d.ts +22 -0
  278. package/utils/ChevronLeft.svelte +36 -0
  279. package/utils/ChevronLeft.svelte.d.ts +22 -0
  280. package/utils/ChevronRight.svelte +36 -0
  281. package/utils/ChevronRight.svelte.d.ts +22 -0
  282. package/utils/ChevronUp.svelte +36 -0
  283. package/utils/ChevronUp.svelte.d.ts +22 -0
  284. package/utils/CloseButton.svelte +52 -0
  285. package/utils/CloseButton.svelte.d.ts +23 -0
  286. package/utils/Frame.svelte +108 -0
  287. package/utils/Frame.svelte.d.ts +35 -0
  288. package/utils/InformationCircle.svelte +37 -0
  289. package/utils/InformationCircle.svelte.d.ts +22 -0
  290. package/utils/Popper.svelte +139 -0
  291. package/utils/Popper.svelte.d.ts +28 -0
  292. package/utils/UserCircle.svelte +37 -0
  293. package/utils/UserCircle.svelte.d.ts +22 -0
  294. package/utils/Wrapper.svelte +10 -0
  295. package/utils/Wrapper.svelte.d.ts +22 -0
  296. package/utils/backdrop.d.ts +6 -0
  297. package/utils/backdrop.js +90 -0
  298. package/utils/clickOutside.d.ts +3 -0
  299. package/utils/clickOutside.js +15 -0
  300. package/utils/createEventDispatcher.d.ts +1 -0
  301. package/{src/lib/utils → utils}/createEventDispatcher.js +0 -0
  302. package/utils/focusTrap.d.ts +3 -0
  303. package/{src/lib/utils → utils}/focusTrap.js +0 -0
  304. package/utils/generateId.d.ts +1 -0
  305. package/{src/lib/utils → utils}/generateId.js +0 -0
  306. package/video/Video.svelte +22 -0
  307. package/video/Video.svelte.d.ts +23 -0
  308. package/.eslintrc.cjs +0 -20
  309. package/.github/FUNDING.yml +0 -13
  310. package/.github/ISSUE_TEMPLATE/bug_report.yml +0 -33
  311. package/.github/ISSUE_TEMPLATE/config.yml +0 -5
  312. package/.github/ISSUE_TEMPLATE/feature_request.md +0 -17
  313. package/.github/pull_request_template.md +0 -67
  314. package/.prettierrc +0 -8
  315. package/CONTRIBUTING.md +0 -67
  316. package/mdsvex.config.js +0 -22
  317. package/playwright.config.ts +0 -10
  318. package/postcss.config.cjs +0 -13
  319. package/src/app.css +0 -41
  320. package/src/app.d.ts +0 -9
  321. package/src/app.html +0 -32
  322. package/src/app.postcss +0 -4
  323. package/src/hooks.server.js +0 -76
  324. package/src/lib/accordions/Accordion.svelte +0 -45
  325. package/src/lib/accordions/AccordionItem.svelte +0 -79
  326. package/src/lib/alerts/Alert.svelte +0 -59
  327. package/src/lib/avatar/Avatar.svelte +0 -54
  328. package/src/lib/avatar/Dot.svelte +0 -48
  329. package/src/lib/avatar/Placeholder.svelte +0 -16
  330. package/src/lib/badges/Badge.svelte +0 -67
  331. package/src/lib/breadcrumbs/Breadcrumb.svelte +0 -16
  332. package/src/lib/breadcrumbs/BreadcrumbItem.svelte +0 -47
  333. package/src/lib/buttongroups/ButtonGroup.svelte +0 -14
  334. package/src/lib/buttons/Button.svelte +0 -182
  335. package/src/lib/cards/Card.svelte +0 -60
  336. package/src/lib/carousels/Caption.svelte +0 -8
  337. package/src/lib/carousels/Carousel.svelte +0 -147
  338. package/src/lib/carousels/CarouselTransition.svelte +0 -167
  339. package/src/lib/carousels/Indicator.svelte +0 -13
  340. package/src/lib/carousels/Slide.svelte +0 -10
  341. package/src/lib/carousels/Thumbnail.svelte +0 -25
  342. package/src/lib/darkmode/DarkMode.svelte +0 -36
  343. package/src/lib/datepicker/Datepicker.svelte +0 -74
  344. package/src/lib/drawer/Drawer.svelte +0 -85
  345. package/src/lib/dropdowns/Dropdown.svelte +0 -36
  346. package/src/lib/dropdowns/DropdownDivider.svelte +0 -6
  347. package/src/lib/dropdowns/DropdownHeader.svelte +0 -14
  348. package/src/lib/dropdowns/DropdownItem.svelte +0 -34
  349. package/src/lib/footer/Footer.svelte +0 -22
  350. package/src/lib/footer/FooterBrand.svelte +0 -21
  351. package/src/lib/footer/FooterCopyright.svelte +0 -21
  352. package/src/lib/footer/FooterIcon.svelte +0 -15
  353. package/src/lib/footer/FooterLink.svelte +0 -14
  354. package/src/lib/footer/FooterLinkGroup.svelte +0 -8
  355. package/src/lib/forms/Checkbox.svelte +0 -58
  356. package/src/lib/forms/Dropzone.svelte +0 -28
  357. package/src/lib/forms/Fileupload.svelte +0 -29
  358. package/src/lib/forms/FloatingLabelInput.svelte +0 -124
  359. package/src/lib/forms/Helper.svelte +0 -15
  360. package/src/lib/forms/Iconinput.svelte +0 -86
  361. package/src/lib/forms/Input.svelte +0 -110
  362. package/src/lib/forms/InputAddon.svelte +0 -50
  363. package/src/lib/forms/Label.svelte +0 -31
  364. package/src/lib/forms/NumberInput.svelte +0 -9
  365. package/src/lib/forms/Radio.svelte +0 -69
  366. package/src/lib/forms/Range.svelte +0 -29
  367. package/src/lib/forms/Search.svelte +0 -58
  368. package/src/lib/forms/Select.svelte +0 -40
  369. package/src/lib/forms/SimpleSearch.svelte +0 -21
  370. package/src/lib/forms/Textarea.svelte +0 -77
  371. package/src/lib/forms/Toggle.svelte +0 -46
  372. package/src/lib/forms/VoiceSearch.svelte +0 -71
  373. package/src/lib/index.ts +0 -200
  374. package/src/lib/kbd/ArrowKeyDown.svelte +0 -16
  375. package/src/lib/kbd/ArrowKeyLeft.svelte +0 -16
  376. package/src/lib/kbd/ArrowKeyRight.svelte +0 -16
  377. package/src/lib/kbd/ArrowKeyUp.svelte +0 -16
  378. package/src/lib/kbd/Kbd.svelte +0 -9
  379. package/src/lib/list-group/Listgroup.svelte +0 -23
  380. package/src/lib/list-group/ListgroupItem.svelte +0 -77
  381. package/src/lib/megamenu/MegaMenu.svelte +0 -57
  382. package/src/lib/modals/Modal.svelte +0 -165
  383. package/src/lib/navbar/Menu.svelte +0 -37
  384. package/src/lib/navbar/NavBrand.svelte +0 -8
  385. package/src/lib/navbar/NavDropdown.svelte +0 -66
  386. package/src/lib/navbar/NavHamburger.svelte +0 -11
  387. package/src/lib/navbar/NavLi.svelte +0 -37
  388. package/src/lib/navbar/NavUl.svelte +0 -35
  389. package/src/lib/navbar/Navbar.svelte +0 -36
  390. package/src/lib/paginations/Pagination.svelte +0 -42
  391. package/src/lib/paginations/PaginationItem.svelte +0 -36
  392. package/src/lib/popover/Popover.svelte +0 -20
  393. package/src/lib/progressbars/Progressbar.svelte +0 -39
  394. package/src/lib/ratings/AdvancedRating.svelte +0 -25
  395. package/src/lib/ratings/Rating.svelte +0 -37
  396. package/src/lib/ratings/RatingComment.svelte +0 -81
  397. package/src/lib/ratings/Review.svelte +0 -66
  398. package/src/lib/ratings/ScoreRating.svelte +0 -53
  399. package/src/lib/ratings/Star.svelte +0 -37
  400. package/src/lib/sidebars/Sidebar.svelte +0 -8
  401. package/src/lib/sidebars/SidebarBrand.svelte +0 -15
  402. package/src/lib/sidebars/SidebarCta.svelte +0 -24
  403. package/src/lib/sidebars/SidebarDropdownItem.svelte +0 -27
  404. package/src/lib/sidebars/SidebarDropdownWrapper.svelte +0 -49
  405. package/src/lib/sidebars/SidebarGroup.svelte +0 -15
  406. package/src/lib/sidebars/SidebarItem.svelte +0 -34
  407. package/src/lib/sidebars/SidebarWrapper.svelte +0 -9
  408. package/src/lib/skeleton/CardPlaceholder.svelte +0 -46
  409. package/src/lib/skeleton/ImagePlaceholder.svelte +0 -34
  410. package/src/lib/skeleton/ListPlaceholder.svelte +0 -44
  411. package/src/lib/skeleton/Skeleton.svelte +0 -14
  412. package/src/lib/skeleton/TestimonialPlaceholder.svelte +0 -26
  413. package/src/lib/skeleton/TextPlaceholder.svelte +0 -38
  414. package/src/lib/skeleton/VideoPlaceholder.svelte +0 -22
  415. package/src/lib/skeleton/WidgetPlaceholder.svelte +0 -20
  416. package/src/lib/spinners/Spinner.svelte +0 -54
  417. package/src/lib/tables/Table.svelte +0 -36
  418. package/src/lib/tables/TableBodyCell.svelte +0 -21
  419. package/src/lib/tables/TableBodyRow.svelte +0 -49
  420. package/src/lib/tables/TableHead.svelte +0 -49
  421. package/src/lib/tables/TableHeadCell.svelte +0 -7
  422. package/src/lib/tables/TableSearch.svelte +0 -60
  423. package/src/lib/tabs/TabHead.svelte +0 -31
  424. package/src/lib/tabs/TabHeadItem.svelte +0 -70
  425. package/src/lib/tabs/TabItem.svelte +0 -65
  426. package/src/lib/tabs/Tabs.svelte +0 -68
  427. package/src/lib/timelines/Activity.svelte +0 -7
  428. package/src/lib/timelines/ActivityItem.svelte +0 -31
  429. package/src/lib/timelines/Group.svelte +0 -12
  430. package/src/lib/timelines/GroupItem.svelte +0 -51
  431. package/src/lib/timelines/Timeline.svelte +0 -21
  432. package/src/lib/timelines/TimelineHorizontal.svelte +0 -7
  433. package/src/lib/timelines/TimelineItem.svelte +0 -135
  434. package/src/lib/timelines/TimelineItemHorizontal.svelte +0 -56
  435. package/src/lib/timelines/TimelineItemVertical.svelte +0 -34
  436. package/src/lib/toasts/Toast.svelte +0 -60
  437. package/src/lib/toolbar/Toolbar.svelte +0 -73
  438. package/src/lib/toolbar/ToolbarButton.svelte +0 -58
  439. package/src/lib/toolbar/ToolbarGroup.svelte +0 -11
  440. package/src/lib/tooltips/Tooltip.svelte +0 -25
  441. package/src/lib/types.ts +0 -285
  442. package/src/lib/typography/A.svelte +0 -11
  443. package/src/lib/typography/Blockquote.svelte +0 -59
  444. package/src/lib/typography/DescriptionList.svelte +0 -13
  445. package/src/lib/typography/Heading.svelte +0 -22
  446. package/src/lib/typography/Hr.svelte +0 -28
  447. package/src/lib/typography/Img.svelte +0 -32
  448. package/src/lib/typography/Layout.svelte +0 -12
  449. package/src/lib/typography/Li.svelte +0 -11
  450. package/src/lib/typography/List.svelte +0 -33
  451. package/src/lib/typography/Mark.svelte +0 -11
  452. package/src/lib/typography/P.svelte +0 -118
  453. package/src/lib/typography/Secondary.svelte +0 -10
  454. package/src/lib/typography/Span.svelte +0 -29
  455. package/src/lib/typography/Ul.svelte +0 -22
  456. package/src/lib/utils/Chevron.svelte +0 -32
  457. package/src/lib/utils/ChevronDown.svelte +0 -37
  458. package/src/lib/utils/ChevronLeft.svelte +0 -37
  459. package/src/lib/utils/ChevronRight.svelte +0 -37
  460. package/src/lib/utils/ChevronUp.svelte +0 -37
  461. package/src/lib/utils/CloseButton.svelte +0 -64
  462. package/src/lib/utils/Frame.svelte +0 -146
  463. package/src/lib/utils/InformationCircle.svelte +0 -38
  464. package/src/lib/utils/Popper.svelte +0 -148
  465. package/src/lib/utils/UserCircle.svelte +0 -38
  466. package/src/lib/utils/Wrapper.svelte +0 -13
  467. package/src/lib/utils/backdrop.ts +0 -109
  468. package/src/lib/utils/clickOutside.ts +0 -16
  469. package/src/lib/video/Video.svelte +0 -24
  470. package/src/routes/+error.svelte +0 -16
  471. package/src/routes/+layout.js +0 -9
  472. package/src/routes/+layout.svelte +0 -259
  473. package/src/routes/+page.svelte +0 -126
  474. package/src/routes/Toc/+page.svelte +0 -41
  475. package/src/routes/api/posts/+server.js +0 -7
  476. package/src/routes/blocks/+server.ts +0 -51
  477. package/src/routes/blocks/AccordionBlock/+page.svelte +0 -47
  478. package/src/routes/blocks/AlertBlock/+page.svelte +0 -47
  479. package/src/routes/blocks/AvatarBlock/+page.svelte +0 -47
  480. package/src/routes/blocks/BadgeBlock/+page.svelte +0 -47
  481. package/src/routes/blocks/BlockquoteBlock/+page.svelte +0 -46
  482. package/src/routes/blocks/BreadcrumbBlock/+page.svelte +0 -47
  483. package/src/routes/blocks/ButtonBlock/+page.svelte +0 -47
  484. package/src/routes/blocks/ButtongroupBlock/+page.svelte +0 -47
  485. package/src/routes/blocks/CardBlock/+page.svelte +0 -47
  486. package/src/routes/blocks/CarouselBlock/+page.svelte +0 -47
  487. package/src/routes/blocks/CheckboxBlock/+page.svelte +0 -55
  488. package/src/routes/blocks/DatepickerBlock/+page.svelte +0 -48
  489. package/src/routes/blocks/DrawerBlock/+page.svelte +0 -46
  490. package/src/routes/blocks/DropdownBlock/+page.svelte +0 -47
  491. package/src/routes/blocks/FileinputBlock/+page.svelte +0 -47
  492. package/src/routes/blocks/FloatingLabelBlock/+page.svelte +0 -47
  493. package/src/routes/blocks/FooterBlock/+page.svelte +0 -47
  494. package/src/routes/blocks/FormBlock/+page.svelte +0 -47
  495. package/src/routes/blocks/HeadingBlock/+page.svelte +0 -46
  496. package/src/routes/blocks/HrBlock/+page.svelte +0 -46
  497. package/src/routes/blocks/ImageBlock/+page.svelte +0 -46
  498. package/src/routes/blocks/InputfieldBlock/+page.svelte +0 -47
  499. package/src/routes/blocks/KbdBlock/+page.svelte +0 -47
  500. package/src/routes/blocks/LinkBlock/+page.svelte +0 -46
  501. package/src/routes/blocks/ListBlock/+page.svelte +0 -46
  502. package/src/routes/blocks/ListgroupBlock/+page.svelte +0 -47
  503. package/src/routes/blocks/MegamenuBlock/+page.svelte +0 -47
  504. package/src/routes/blocks/ModalBlock/+page.svelte +0 -47
  505. package/src/routes/blocks/NavbarBlock/+page.svelte +0 -47
  506. package/src/routes/blocks/PaginationBlock/+page.svelte +0 -47
  507. package/src/routes/blocks/ParagraphBlock/+page.svelte +0 -46
  508. package/src/routes/blocks/PopoverBlock/+page.svelte +0 -46
  509. package/src/routes/blocks/ProgressbarBlock/+page.svelte +0 -47
  510. package/src/routes/blocks/RadioBlock/+page.svelte +0 -47
  511. package/src/routes/blocks/RangeBlock/+page.svelte +0 -47
  512. package/src/routes/blocks/RatingBlock/+page.svelte +0 -47
  513. package/src/routes/blocks/SearchinputBlock/+page.svelte +0 -47
  514. package/src/routes/blocks/SelectBlock/+page.svelte +0 -47
  515. package/src/routes/blocks/SidebarBlock/+page.svelte +0 -47
  516. package/src/routes/blocks/SkeletonBlock/+page.svelte +0 -47
  517. package/src/routes/blocks/SpinnerBlock/+page.svelte +0 -47
  518. package/src/routes/blocks/TabBlock/+page.svelte +0 -47
  519. package/src/routes/blocks/TableBlock/+page.svelte +0 -47
  520. package/src/routes/blocks/TextBlock/+page.svelte +0 -46
  521. package/src/routes/blocks/TextareaBlock/+page.svelte +0 -47
  522. package/src/routes/blocks/TimelineBlock/+page.svelte +0 -47
  523. package/src/routes/blocks/ToastBlock/+page.svelte +0 -47
  524. package/src/routes/blocks/ToggleBlock/+page.svelte +0 -47
  525. package/src/routes/blocks/TooltipBlock/+page.svelte +0 -47
  526. package/src/routes/blocks/TypographyBlock/+page.svelte +0 -47
  527. package/src/routes/blocks/VideoBlock/+page.svelte +0 -46
  528. package/src/routes/components/[slug]/+page.js +0 -12
  529. package/src/routes/components/[slug]/+page.svelte +0 -6
  530. package/src/routes/components/accordion.md +0 -300
  531. package/src/routes/components/alert.md +0 -324
  532. package/src/routes/components/avatar.md +0 -228
  533. package/src/routes/components/badge.md +0 -190
  534. package/src/routes/components/breadcrumb.md +0 -134
  535. package/src/routes/components/button-group.md +0 -225
  536. package/src/routes/components/button.md +0 -335
  537. package/src/routes/components/card.md +0 -454
  538. package/src/routes/components/carousel.md +0 -294
  539. package/src/routes/components/darkmode.md +0 -121
  540. package/src/routes/components/drawer.md +0 -727
  541. package/src/routes/components/dropdown.md +0 -710
  542. package/src/routes/components/footer.md +0 -306
  543. package/src/routes/components/forms.md +0 -298
  544. package/src/routes/components/imageData/+server.js +0 -50
  545. package/src/routes/components/kbd.md +0 -284
  546. package/src/routes/components/list-group.md +0 -192
  547. package/src/routes/components/mega-menu.md +0 -286
  548. package/src/routes/components/modal.md +0 -360
  549. package/src/routes/components/navbar.md +0 -349
  550. package/src/routes/components/pagination.md +0 -263
  551. package/src/routes/components/popover.md +0 -398
  552. package/src/routes/components/progress.md +0 -213
  553. package/src/routes/components/rating.md +0 -408
  554. package/src/routes/components/sidebar.md +0 -584
  555. package/src/routes/components/skeleton.md +0 -176
  556. package/src/routes/components/spinner.md +0 -137
  557. package/src/routes/components/tab.md +0 -305
  558. package/src/routes/components/table.md +0 -849
  559. package/src/routes/components/timeline.md +0 -362
  560. package/src/routes/components/toast.md +0 -381
  561. package/src/routes/components/tooltip.md +0 -174
  562. package/src/routes/components/typography.md +0 -132
  563. package/src/routes/components/video.md +0 -143
  564. package/src/routes/datepicker/+page.svelte +0 -179
  565. package/src/routes/extend/CheckCircle.svelte +0 -9
  566. package/src/routes/extend/[slug]/+page.js +0 -12
  567. package/src/routes/extend/[slug]/+page.svelte +0 -6
  568. package/src/routes/extend/flowbite-svelte-starter.md +0 -76
  569. package/src/routes/extend/icons.md +0 -270
  570. package/src/routes/forms/[slug]/+page.js +0 -12
  571. package/src/routes/forms/[slug]/+page.svelte +0 -6
  572. package/src/routes/forms/checkbox.md +0 -338
  573. package/src/routes/forms/file-input.md +0 -158
  574. package/src/routes/forms/floating-label.md +0 -184
  575. package/src/routes/forms/input-field.md +0 -410
  576. package/src/routes/forms/radio.md +0 -330
  577. package/src/routes/forms/range.md +0 -134
  578. package/src/routes/forms/search-input.md +0 -131
  579. package/src/routes/forms/select.md +0 -194
  580. package/src/routes/forms/textarea.md +0 -162
  581. package/src/routes/forms/toggle.md +0 -103
  582. package/src/routes/layouts/component/+page.svelte +0 -9
  583. package/src/routes/layouts/formLayout/+page.svelte +0 -60
  584. package/src/routes/layouts/pageLayout/+page.svelte +0 -57
  585. package/src/routes/layouts/testLayout/+page.svelte +0 -6
  586. package/src/routes/layouts/typographyLayout/+page.svelte +0 -100
  587. package/src/routes/layouts/utilitiesLayout/+page.svelte +0 -33
  588. package/src/routes/moduleItems/+server.js +0 -13
  589. package/src/routes/pages/[slug]/+page.js +0 -12
  590. package/src/routes/pages/[slug]/+page.svelte +0 -6
  591. package/src/routes/pages/about.md +0 -36
  592. package/src/routes/pages/getting-started.md +0 -119
  593. package/src/routes/pages/how-to-contribute.md +0 -148
  594. package/src/routes/pages/license.md +0 -48
  595. package/src/routes/pages/types.md +0 -28
  596. package/src/routes/props/A.json +0 -1
  597. package/src/routes/props/Accordion.json +0 -1
  598. package/src/routes/props/AccordionItem.json +0 -1
  599. package/src/routes/props/Activity.json +0 -1
  600. package/src/routes/props/ActivityItem.json +0 -1
  601. package/src/routes/props/AdvancedRating.json +0 -1
  602. package/src/routes/props/Alert.json +0 -1
  603. package/src/routes/props/ArrowKeyDown.json +0 -1
  604. package/src/routes/props/ArrowKeyLeft.json +0 -1
  605. package/src/routes/props/ArrowKeyRight.json +0 -1
  606. package/src/routes/props/ArrowKeyUp.json +0 -1
  607. package/src/routes/props/Avatar.json +0 -1
  608. package/src/routes/props/Badge.json +0 -1
  609. package/src/routes/props/Blockquote.json +0 -1
  610. package/src/routes/props/Breadcrumb.json +0 -1
  611. package/src/routes/props/BreadcrumbItem.json +0 -1
  612. package/src/routes/props/Button.json +0 -1
  613. package/src/routes/props/ButtonGroup.json +0 -1
  614. package/src/routes/props/Caption.json +0 -1
  615. package/src/routes/props/Card.json +0 -1
  616. package/src/routes/props/CardPlaceholder.json +0 -1
  617. package/src/routes/props/Carousel.json +0 -1
  618. package/src/routes/props/CarouselTransition.json +0 -1
  619. package/src/routes/props/Checkbox.json +0 -1
  620. package/src/routes/props/Chevron.json +0 -1
  621. package/src/routes/props/ChevronDown.json +0 -1
  622. package/src/routes/props/ChevronLeft.json +0 -1
  623. package/src/routes/props/ChevronRight.json +0 -1
  624. package/src/routes/props/ChevronUp.json +0 -1
  625. package/src/routes/props/CloseButton.json +0 -1
  626. package/src/routes/props/DarkMode.json +0 -1
  627. package/src/routes/props/Datepicker.json +0 -1
  628. package/src/routes/props/DescriptionList.json +0 -1
  629. package/src/routes/props/Dot.json +0 -1
  630. package/src/routes/props/Drawer.json +0 -1
  631. package/src/routes/props/Dropdown.json +0 -1
  632. package/src/routes/props/DropdownDivider.json +0 -1
  633. package/src/routes/props/DropdownHeader.json +0 -1
  634. package/src/routes/props/DropdownItem.json +0 -1
  635. package/src/routes/props/Dropzone.json +0 -1
  636. package/src/routes/props/Fileupload.json +0 -1
  637. package/src/routes/props/FloatingLabelInput.json +0 -1
  638. package/src/routes/props/Footer.json +0 -1
  639. package/src/routes/props/FooterBrand.json +0 -1
  640. package/src/routes/props/FooterCopyright.json +0 -1
  641. package/src/routes/props/FooterIcon.json +0 -1
  642. package/src/routes/props/FooterLink.json +0 -1
  643. package/src/routes/props/FooterLinkGroup.json +0 -1
  644. package/src/routes/props/Frame.json +0 -1
  645. package/src/routes/props/Group.json +0 -1
  646. package/src/routes/props/GroupItem.json +0 -1
  647. package/src/routes/props/Heading.json +0 -1
  648. package/src/routes/props/Helper.json +0 -1
  649. package/src/routes/props/Hr.json +0 -1
  650. package/src/routes/props/Iconinput.json +0 -1
  651. package/src/routes/props/ImagePlaceholder.json +0 -1
  652. package/src/routes/props/Img.json +0 -1
  653. package/src/routes/props/Indicator.json +0 -1
  654. package/src/routes/props/InformationCircle.json +0 -1
  655. package/src/routes/props/Input.json +0 -1
  656. package/src/routes/props/InputAddon.json +0 -1
  657. package/src/routes/props/Kbd.json +0 -1
  658. package/src/routes/props/Label.json +0 -1
  659. package/src/routes/props/Layout.json +0 -1
  660. package/src/routes/props/Li.json +0 -1
  661. package/src/routes/props/List.json +0 -1
  662. package/src/routes/props/ListPlaceholder.json +0 -1
  663. package/src/routes/props/Listgroup.json +0 -1
  664. package/src/routes/props/ListgroupItem.json +0 -1
  665. package/src/routes/props/Mark.json +0 -1
  666. package/src/routes/props/MegaMenu.json +0 -1
  667. package/src/routes/props/Menu.json +0 -1
  668. package/src/routes/props/Modal.json +0 -1
  669. package/src/routes/props/NavBrand.json +0 -1
  670. package/src/routes/props/NavDropdown.json +0 -1
  671. package/src/routes/props/NavHamburger.json +0 -1
  672. package/src/routes/props/NavLi.json +0 -1
  673. package/src/routes/props/NavUl.json +0 -1
  674. package/src/routes/props/Navbar.json +0 -1
  675. package/src/routes/props/NumberInput.json +0 -1
  676. package/src/routes/props/P.json +0 -1
  677. package/src/routes/props/Pagination.json +0 -1
  678. package/src/routes/props/PaginationItem.json +0 -1
  679. package/src/routes/props/Placeholder.json +0 -1
  680. package/src/routes/props/Popover.json +0 -1
  681. package/src/routes/props/Popper.json +0 -1
  682. package/src/routes/props/Progressbar.json +0 -1
  683. package/src/routes/props/Radio.json +0 -1
  684. package/src/routes/props/Range.json +0 -1
  685. package/src/routes/props/Rating.json +0 -1
  686. package/src/routes/props/RatingComment.json +0 -1
  687. package/src/routes/props/Review.json +0 -1
  688. package/src/routes/props/ScoreRating.json +0 -1
  689. package/src/routes/props/Search.json +0 -1
  690. package/src/routes/props/Secondary.json +0 -1
  691. package/src/routes/props/Select.json +0 -1
  692. package/src/routes/props/Sidebar.json +0 -1
  693. package/src/routes/props/SidebarBrand.json +0 -1
  694. package/src/routes/props/SidebarCta.json +0 -1
  695. package/src/routes/props/SidebarDropdownItem.json +0 -1
  696. package/src/routes/props/SidebarDropdownWrapper.json +0 -1
  697. package/src/routes/props/SidebarGroup.json +0 -1
  698. package/src/routes/props/SidebarItem.json +0 -1
  699. package/src/routes/props/SidebarWrapper.json +0 -1
  700. package/src/routes/props/Skeleton.json +0 -1
  701. package/src/routes/props/Slide.json +0 -1
  702. package/src/routes/props/Span.json +0 -1
  703. package/src/routes/props/Spinner.json +0 -1
  704. package/src/routes/props/Star.json +0 -1
  705. package/src/routes/props/TabHead.json +0 -1
  706. package/src/routes/props/TabHeadItem.json +0 -1
  707. package/src/routes/props/TabItem.json +0 -1
  708. package/src/routes/props/Table.json +0 -1
  709. package/src/routes/props/TableBodyCell.json +0 -1
  710. package/src/routes/props/TableBodyRow.json +0 -1
  711. package/src/routes/props/TableHead.json +0 -1
  712. package/src/routes/props/TableSearch.json +0 -1
  713. package/src/routes/props/Tabs.json +0 -1
  714. package/src/routes/props/TestimonialPlaceholder.json +0 -1
  715. package/src/routes/props/TextPlaceholder.json +0 -1
  716. package/src/routes/props/Textarea.json +0 -1
  717. package/src/routes/props/Thumbnail.json +0 -1
  718. package/src/routes/props/Timeline.json +0 -1
  719. package/src/routes/props/TimelineHorizontal.json +0 -1
  720. package/src/routes/props/TimelineItem.json +0 -1
  721. package/src/routes/props/TimelineItemHorizontal.json +0 -1
  722. package/src/routes/props/TimelineItemVertical.json +0 -1
  723. package/src/routes/props/Toast.json +0 -1
  724. package/src/routes/props/Toggle.json +0 -1
  725. package/src/routes/props/Toolbar.json +0 -1
  726. package/src/routes/props/ToolbarButton.json +0 -1
  727. package/src/routes/props/Tooltip.json +0 -1
  728. package/src/routes/props/Ul.json +0 -1
  729. package/src/routes/props/UserCircle.json +0 -1
  730. package/src/routes/props/Video.json +0 -1
  731. package/src/routes/props/VideoPlaceholder.json +0 -1
  732. package/src/routes/props/VoiceSearch.json +0 -1
  733. package/src/routes/props/WidgetPlaceholder.json +0 -1
  734. package/src/routes/props/Wrapper.json +0 -1
  735. package/src/routes/props/backdrop.json +0 -1
  736. package/src/routes/typography/[slug]/+page.js +0 -12
  737. package/src/routes/typography/[slug]/+page.svelte +0 -6
  738. package/src/routes/typography/blockquote.md +0 -249
  739. package/src/routes/typography/heading.md +0 -299
  740. package/src/routes/typography/hr.md +0 -151
  741. package/src/routes/typography/image.md +0 -259
  742. package/src/routes/typography/link.md +0 -159
  743. package/src/routes/typography/list.md +0 -487
  744. package/src/routes/typography/paragraph.md +0 -433
  745. package/src/routes/typography/text.md +0 -367
  746. package/src/routes/utilities/[slug]/+page.js +0 -12
  747. package/src/routes/utilities/[slug]/+page.svelte +0 -6
  748. package/src/routes/utilities/close-button.md +0 -76
  749. package/src/routes/utilities/colors.md +0 -90
  750. package/src/routes/utilities/label.md +0 -65
  751. package/src/routes/utilities/toolbar.md +0 -186
  752. package/src/routes/utils/CompoDescription.svelte +0 -7
  753. package/src/routes/utils/ExampleDiv.svelte +0 -10
  754. package/src/routes/utils/ExampleWrapper.svelte +0 -22
  755. package/src/routes/utils/GitHubSource.svelte +0 -18
  756. package/src/routes/utils/Htwo.svelte +0 -29
  757. package/src/routes/utils/MetaTag.svelte +0 -40
  758. package/src/routes/utils/TableDefaultRow.svelte +0 -73
  759. package/src/routes/utils/TableProp.svelte +0 -25
  760. package/src/routes/utils/index.ts +0 -91
  761. package/static/images/carousel/cosmic-timetraveler-pYyOZ8q7AII-unsplash.webp +0 -0
  762. package/static/images/carousel/cristina-gottardi-CSpjU6hYo_0-unsplash.webp +0 -0
  763. package/static/images/carousel/johannes-plenio-RwHv7LgeC7s-unsplash.webp +0 -0
  764. package/static/images/carousel/jonatan-pie-3l3RwQdHRHg-unsplash.webp +0 -0
  765. package/static/images/carousel/mark-harpur-K2s_YE031CA-unsplash.webp +0 -0
  766. package/static/images/carousel/pietro-de-grandi-T7K4aEPoGGk-unsplash.webp +0 -0
  767. package/static/images/carousel/sergey-pesterev-tMvuB9se2uQ-unsplash.webp +0 -0
  768. package/static/images/carousel/solotravelgoals-7kLufxYoqWk-unsplash.webp +0 -0
  769. package/static/images/carousel-1.svg +0 -4
  770. package/static/images/carousel-2.svg +0 -4
  771. package/static/images/carousel-3.svg +0 -4
  772. package/static/images/carousel-4.svg +0 -4
  773. package/static/images/carousel-5.svg +0 -4
  774. package/static/images/colors.webp +0 -0
  775. package/static/images/components/accordion-dark.svg +0 -40
  776. package/static/images/components/accordion.svg +0 -40
  777. package/static/images/components/alerts-dark.svg +0 -11
  778. package/static/images/components/alerts.svg +0 -11
  779. package/static/images/components/avatar-dark.svg +0 -117
  780. package/static/images/components/avatar.svg +0 -117
  781. package/static/images/components/badges-dark.svg +0 -5
  782. package/static/images/components/badges.svg +0 -5
  783. package/static/images/components/blockquote-dark.svg +0 -8
  784. package/static/images/components/blockquote.svg +0 -8
  785. package/static/images/components/breadcrumbs-dark.svg +0 -7
  786. package/static/images/components/breadcrumbs.svg +0 -7
  787. package/static/images/components/button-group-dark.svg +0 -10
  788. package/static/images/components/button-group.svg +0 -10
  789. package/static/images/components/buttons-dark.svg +0 -10
  790. package/static/images/components/buttons.svg +0 -10
  791. package/static/images/components/cards-dark.svg +0 -31
  792. package/static/images/components/cards.svg +0 -32
  793. package/static/images/components/carousel-dark.svg +0 -13
  794. package/static/images/components/carousel.svg +0 -13
  795. package/static/images/components/checkbox.svg +0 -14
  796. package/static/images/components/datepicker-dark.svg +0 -67
  797. package/static/images/components/datepicker.svg +0 -67
  798. package/static/images/components/drawer-dark.svg +0 -33
  799. package/static/images/components/drawer.svg +0 -33
  800. package/static/images/components/dropdown-dark.svg +0 -35
  801. package/static/images/components/dropdown.svg +0 -35
  802. package/static/images/components/file-input-dark.svg +0 -59
  803. package/static/images/components/file-input.svg +0 -46
  804. package/static/images/components/floating-label-dark.svg +0 -11
  805. package/static/images/components/floating-label.svg +0 -11
  806. package/static/images/components/footer-dark.svg +0 -52
  807. package/static/images/components/footer.svg +0 -50
  808. package/static/images/components/forms-dark.svg +0 -64
  809. package/static/images/components/forms.svg +0 -64
  810. package/static/images/components/heading-dark.svg +0 -5
  811. package/static/images/components/heading.svg +0 -5
  812. package/static/images/components/hr-dark.svg +0 -7
  813. package/static/images/components/hr.svg +0 -7
  814. package/static/images/components/image-dark.svg +0 -6
  815. package/static/images/components/image.svg +0 -6
  816. package/static/images/components/input-field-dark.svg +0 -65
  817. package/static/images/components/input-field.svg +0 -66
  818. package/static/images/components/keyboard-dark.svg +0 -460
  819. package/static/images/components/keyboard.svg +0 -462
  820. package/static/images/components/link-dark.svg +0 -4
  821. package/static/images/components/link.svg +0 -4
  822. package/static/images/components/list-dark.svg +0 -26
  823. package/static/images/components/list-group-dark.svg +0 -33
  824. package/static/images/components/list-group.svg +0 -53
  825. package/static/images/components/list.svg +0 -26
  826. package/static/images/components/mega-menu-dark.svg +0 -72
  827. package/static/images/components/mega-menu.svg +0 -72
  828. package/static/images/components/modal-dark.svg +0 -32
  829. package/static/images/components/modal.svg +0 -33
  830. package/static/images/components/navbar-dark.svg +0 -78
  831. package/static/images/components/navbar.svg +0 -78
  832. package/static/images/components/pagination-dark.svg +0 -50
  833. package/static/images/components/pagination.svg +0 -50
  834. package/static/images/components/paragraph-dark.svg +0 -13
  835. package/static/images/components/paragraph.svg +0 -13
  836. package/static/images/components/popover-dark.svg +0 -18
  837. package/static/images/components/popover.svg +0 -17
  838. package/static/images/components/progress-dark.svg +0 -10
  839. package/static/images/components/progress.svg +0 -10
  840. package/static/images/components/radio-dark.svg +0 -14
  841. package/static/images/components/radio.svg +0 -12
  842. package/static/images/components/range-slider-dark.svg +0 -38
  843. package/static/images/components/range-slider.svg +0 -38
  844. package/static/images/components/rating-dark.svg +0 -29
  845. package/static/images/components/rating.svg +0 -29
  846. package/static/images/components/search-input-dark.svg +0 -82
  847. package/static/images/components/search-input.svg +0 -82
  848. package/static/images/components/select-dark.svg +0 -64
  849. package/static/images/components/select.svg +0 -64
  850. package/static/images/components/sidebar-dark.svg +0 -17
  851. package/static/images/components/sidebar.svg +0 -18
  852. package/static/images/components/skeleton-dark.svg +0 -11
  853. package/static/images/components/skeleton.svg +0 -11
  854. package/static/images/components/spinner-dark.svg +0 -6
  855. package/static/images/components/spinner.svg +0 -6
  856. package/static/images/components/table-dark.svg +0 -42
  857. package/static/images/components/table.svg +0 -42
  858. package/static/images/components/tabs-dark.svg +0 -10
  859. package/static/images/components/tabs.svg +0 -10
  860. package/static/images/components/text-dark.svg +0 -11
  861. package/static/images/components/text.svg +0 -11
  862. package/static/images/components/textarea-dark.svg +0 -16
  863. package/static/images/components/textarea.svg +0 -16
  864. package/static/images/components/timeline-dark.svg +0 -20
  865. package/static/images/components/timeline.svg +0 -20
  866. package/static/images/components/toast-dark.svg +0 -49
  867. package/static/images/components/toast.svg +0 -49
  868. package/static/images/components/toggle-dark.svg +0 -12
  869. package/static/images/components/toggle.svg +0 -12
  870. package/static/images/components/tooltips-dark.svg +0 -7
  871. package/static/images/components/tooltips.svg +0 -7
  872. package/static/images/components/typography-dark.svg +0 -13
  873. package/static/images/components/typography.svg +0 -13
  874. package/static/images/components/video-dark.svg +0 -4
  875. package/static/images/components/video.svg +0 -4
  876. package/static/images/examples/content-gallery-3.png +0 -0
  877. package/static/images/examples/image-1.jpg +0 -0
  878. package/static/images/examples/image-1@2x.jpg +0 -0
  879. package/static/images/examples/image-2@2x.jpg +0 -0
  880. package/static/images/examples/image-3@2x.jpg +0 -0
  881. package/static/images/examples/image-4@2x.jpg +0 -0
  882. package/static/images/favicon.png +0 -0
  883. package/static/images/favicon.svg +0 -49
  884. package/static/images/flowbite-svelte-icon-logo.svg +0 -49
  885. package/static/images/flowbite-svelte-icon.svg +0 -49
  886. package/static/images/flowbite-svelte-og-image.png +0 -0
  887. package/static/images/flowbite-svelte.png +0 -0
  888. package/static/images/image-1.jpeg +0 -0
  889. package/static/images/image-1.png +0 -0
  890. package/static/images/image-1.webp +0 -0
  891. package/static/images/image-2.jpeg +0 -0
  892. package/static/images/image-2.png +0 -0
  893. package/static/images/image-2.webp +0 -0
  894. package/static/images/image-4.jpeg +0 -0
  895. package/static/images/image-4.png +0 -0
  896. package/static/images/image-4.webp +0 -0
  897. package/static/images/italy.png +0 -0
  898. package/static/images/nature-1.jpeg +0 -0
  899. package/static/images/office1.webp +0 -0
  900. package/static/images/product-1.webp +0 -0
  901. package/static/images/profile-picture-1.webp +0 -0
  902. package/static/images/profile-picture-2.webp +0 -0
  903. package/static/images/profile-picture-3.webp +0 -0
  904. package/static/images/profile-picture-4.webp +0 -0
  905. package/static/images/profile-picture-5.webp +0 -0
  906. package/static/site.webmanifest +0 -9
  907. package/static/videos/flowbite.mp4 +0 -0
  908. package/svelte.config.js +0 -24
  909. package/tailwind.config.cjs +0 -88
  910. package/tests/components.spec.ts +0 -176
  911. package/tests/extend.spec.ts +0 -13
  912. package/tests/forms.spec.ts +0 -62
  913. package/tests/page.spec.ts +0 -31
  914. package/tests/redirect.spec.ts +0 -176
  915. package/tests/typography.spec.ts +0 -52
  916. package/tests/utilities.spec.ts +0 -22
  917. package/tsconfig.json +0 -17
  918. package/vite.config.ts +0 -19
@@ -1,82 +0,0 @@
1
- <svg width="318" height="106" viewBox="0 0 318 106" fill="none" xmlns="http://www.w3.org/2000/svg">
2
- <g filter="url(#filter0_dd_2665_3666)">
3
- <path d="M6 10C6 5.58172 9.58172 2 14 2H91.416V37H14C9.58172 37 6 33.4183 6 29V10Z" fill="#F3F4F6"/>
4
- <rect x="20" y="16" width="40.416" height="7" rx="2" fill="#9CA3AF"/>
5
- <path d="M74.4161 20.6759L74.0625 20.3223L71.4282 17.688C71.4282 17.688 71.4282 17.688 71.4281 17.6879C71.3719 17.6317 71.2956 17.6002 71.2161 17.6002C71.1366 17.6002 71.0603 17.6317 71.0041 17.6879C71.0041 17.6879 71.004 17.688 71.004 17.688M74.4161 20.6759L71.004 17.688M74.4161 20.6759L74.7696 20.3223L77.404 17.6879L77.4041 17.688L77.4101 17.6818C77.4378 17.6531 77.4709 17.6302 77.5075 17.6145C77.5441 17.5988 77.5835 17.5905 77.6233 17.5902C77.6631 17.5898 77.7027 17.5974 77.7395 17.6125C77.7764 17.6276 77.8099 17.6499 77.8381 17.678C77.8662 17.7062 77.8885 17.7397 77.9036 17.7766C77.9187 17.8134 77.9263 17.8529 77.9259 17.8928C77.9256 17.9326 77.9173 17.972 77.9016 18.0086C77.8858 18.0452 77.863 18.0783 77.8343 18.106L77.8343 18.1059L77.8281 18.112L74.6282 21.312C74.6282 21.312 74.6282 21.312 74.6281 21.312C74.5719 21.3682 74.4956 21.3998 74.4161 21.3998C74.3366 21.3998 74.2603 21.3682 74.204 21.312C74.204 21.312 74.204 21.312 74.204 21.312L71.0041 18.1121M74.4161 20.6759L71.0041 18.1121M71.004 17.688C70.9478 17.7442 70.9163 17.8205 70.9163 17.9C70.9163 17.9795 70.9478 18.0558 71.004 18.112M71.004 17.688L71.004 18.112M71.004 18.112L71.0041 18.1121M71.004 18.112L71.0041 18.1121" fill="black" stroke="#9CA3AF"/>
6
- <path d="M14 2.5H90.916V36.5H14C9.85786 36.5 6.5 33.1421 6.5 29V10C6.5 5.85786 9.85786 2.5 14 2.5Z" stroke="#D1D5DB"/>
7
- </g>
8
- <g filter="url(#filter1_dd_2665_3666)">
9
- <path d="M91.416 2H277.416V37H91.416V2Z" fill="white"/>
10
- <rect x="109.416" y="16" width="150" height="7" rx="2" fill="#9CA3AF"/>
11
- <path d="M91.916 2.5H276.916V36.5H91.916V2.5Z" stroke="#D1D5DB"/>
12
- </g>
13
- <g filter="url(#filter2_dd_2665_3666)">
14
- <path d="M277.416 2H303.416C307.834 2 311.416 5.58172 311.416 10V29C311.416 33.4183 307.834 37 303.416 37H277.416V2Z" fill="#1C64F2"/>
15
- <path d="M296.321 20.3911L296.076 20.7355L296.375 21.0343L300.224 24.8841C300.278 24.9405 300.307 25.0152 300.306 25.0928C300.306 25.1714 300.274 25.2467 300.218 25.3023C300.163 25.3579 300.088 25.3895 300.009 25.3902C299.931 25.3908 299.857 25.3614 299.8 25.3082L295.951 21.4592L295.652 21.1604L295.308 21.4053C294.665 21.8627 293.908 22.1343 293.12 22.1901C292.333 22.246 291.546 22.0841 290.844 21.7221C290.143 21.36 289.554 20.8119 289.144 20.1378C288.733 19.4636 288.516 18.6895 288.516 17.9001L288.016 17.9L288.516 17.8999C288.516 17.2232 288.676 16.556 288.982 15.9526C289.288 15.3491 289.733 14.8266 290.279 14.4273C290.826 14.0281 291.459 13.7635 292.127 13.655C292.795 13.5465 293.479 13.5972 294.124 13.803C294.768 14.0088 295.355 14.3638 295.837 14.8393C296.319 15.3147 296.681 15.8971 296.895 16.5391C297.109 17.1811 297.169 17.8645 297.069 18.5339C296.969 19.2032 296.713 19.8395 296.321 20.3911ZM292.816 14.2C291.835 14.2 290.894 14.5898 290.2 15.2837C289.506 15.9776 289.116 16.9187 289.116 17.9C289.116 18.8813 289.506 19.8224 290.2 20.5163C290.894 21.2102 291.835 21.6 292.816 21.6C293.797 21.6 294.739 21.2102 295.432 20.5163C296.126 19.8224 296.516 18.8813 296.516 17.9C296.516 16.9187 296.126 15.9776 295.432 15.2837C294.739 14.5898 293.797 14.2 292.816 14.2Z" fill="black" stroke="white"/>
16
- <path d="M277.916 2.5H303.416C307.558 2.5 310.916 5.85786 310.916 10V29C310.916 33.1421 307.558 36.5 303.416 36.5H277.916V2.5Z" stroke="#1C64F2"/>
17
- </g>
18
- <g filter="url(#filter3_dd_2665_3666)">
19
- <path d="M6 69C6 64.5817 9.58172 61 14 61H304C308.418 61 312 64.5817 312 69V88C312 92.4183 308.418 96 304 96H14C9.58172 96 6 92.4183 6 88V69Z" fill="white"/>
20
- <path d="M38 84.5L34 80.5M35.3333 77.1667C35.3333 77.7795 35.2126 78.3863 34.9781 78.9525C34.7436 79.5187 34.3998 80.0332 33.9665 80.4665C33.5332 80.8998 33.0187 81.2436 32.4525 81.4781C31.8863 81.7126 31.2795 81.8333 30.6667 81.8333C30.0538 81.8333 29.447 81.7126 28.8808 81.4781C28.3146 81.2436 27.8002 80.8998 27.3668 80.4665C26.9335 80.0332 26.5898 79.5187 26.3552 78.9525C26.1207 78.3863 26 77.7795 26 77.1667C26 75.929 26.4917 74.742 27.3668 73.8668C28.242 72.9917 29.429 72.5 30.6667 72.5C31.9043 72.5 33.0913 72.9917 33.9665 73.8668C34.8417 74.742 35.3333 75.929 35.3333 77.1667Z" stroke="#9CA3AF" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
21
- <rect x="58" y="75" width="150" height="7" rx="2" fill="#9CA3AF"/>
22
- <path d="M14 61.5H304C308.142 61.5 311.5 64.8579 311.5 69V88C311.5 92.1421 308.142 95.5 304 95.5H14C9.85786 95.5 6.5 92.1421 6.5 88V69C6.5 64.8579 9.85786 61.5 14 61.5Z" stroke="#D1D5DB"/>
23
- </g>
24
- <defs>
25
- <filter id="filter0_dd_2665_3666" x="0" y="0" width="97.416" height="47" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
26
- <feFlood flood-opacity="0" result="BackgroundImageFix"/>
27
- <feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
28
- <feOffset dy="4"/>
29
- <feGaussianBlur stdDeviation="3"/>
30
- <feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.1 0"/>
31
- <feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_2665_3666"/>
32
- <feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
33
- <feOffset dy="2"/>
34
- <feGaussianBlur stdDeviation="2"/>
35
- <feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.06 0"/>
36
- <feBlend mode="normal" in2="effect1_dropShadow_2665_3666" result="effect2_dropShadow_2665_3666"/>
37
- <feBlend mode="normal" in="SourceGraphic" in2="effect2_dropShadow_2665_3666" result="shape"/>
38
- </filter>
39
- <filter id="filter1_dd_2665_3666" x="85.416" y="0" width="198" height="47" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
40
- <feFlood flood-opacity="0" result="BackgroundImageFix"/>
41
- <feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
42
- <feOffset dy="4"/>
43
- <feGaussianBlur stdDeviation="3"/>
44
- <feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.1 0"/>
45
- <feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_2665_3666"/>
46
- <feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
47
- <feOffset dy="2"/>
48
- <feGaussianBlur stdDeviation="2"/>
49
- <feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.06 0"/>
50
- <feBlend mode="normal" in2="effect1_dropShadow_2665_3666" result="effect2_dropShadow_2665_3666"/>
51
- <feBlend mode="normal" in="SourceGraphic" in2="effect2_dropShadow_2665_3666" result="shape"/>
52
- </filter>
53
- <filter id="filter2_dd_2665_3666" x="271.416" y="0" width="46" height="47" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
54
- <feFlood flood-opacity="0" result="BackgroundImageFix"/>
55
- <feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
56
- <feOffset dy="4"/>
57
- <feGaussianBlur stdDeviation="3"/>
58
- <feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.1 0"/>
59
- <feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_2665_3666"/>
60
- <feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
61
- <feOffset dy="2"/>
62
- <feGaussianBlur stdDeviation="2"/>
63
- <feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.06 0"/>
64
- <feBlend mode="normal" in2="effect1_dropShadow_2665_3666" result="effect2_dropShadow_2665_3666"/>
65
- <feBlend mode="normal" in="SourceGraphic" in2="effect2_dropShadow_2665_3666" result="shape"/>
66
- </filter>
67
- <filter id="filter3_dd_2665_3666" x="0" y="59" width="318" height="47" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
68
- <feFlood flood-opacity="0" result="BackgroundImageFix"/>
69
- <feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
70
- <feOffset dy="4"/>
71
- <feGaussianBlur stdDeviation="3"/>
72
- <feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.1 0"/>
73
- <feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_2665_3666"/>
74
- <feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
75
- <feOffset dy="2"/>
76
- <feGaussianBlur stdDeviation="2"/>
77
- <feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.06 0"/>
78
- <feBlend mode="normal" in2="effect1_dropShadow_2665_3666" result="effect2_dropShadow_2665_3666"/>
79
- <feBlend mode="normal" in="SourceGraphic" in2="effect2_dropShadow_2665_3666" result="shape"/>
80
- </filter>
81
- </defs>
82
- </svg>
@@ -1,64 +0,0 @@
1
- <svg width="318" height="106" viewBox="0 0 318 106" fill="none" xmlns="http://www.w3.org/2000/svg">
2
- <g filter="url(#filter0_dd_2665_3735)">
3
- <path d="M6 10C6 5.58172 9.58172 2 14 2H91.416V37H14C9.58172 37 6 33.4183 6 29V10Z" fill="#4B5563"/>
4
- <rect x="20" y="16" width="40.416" height="7" rx="2" fill="#9CA3AF"/>
5
- <path d="M74.4161 20.6759L74.0625 20.3223L71.4282 17.688C71.4282 17.688 71.4282 17.688 71.4281 17.6879C71.3719 17.6317 71.2956 17.6002 71.2161 17.6002C71.1366 17.6002 71.0603 17.6317 71.0041 17.6879C71.0041 17.6879 71.004 17.688 71.004 17.688M74.4161 20.6759L71.004 17.688M74.4161 20.6759L74.7696 20.3223L77.404 17.6879L77.4041 17.688L77.4101 17.6818C77.4378 17.6531 77.4709 17.6302 77.5075 17.6145C77.5441 17.5988 77.5835 17.5905 77.6233 17.5902C77.6631 17.5898 77.7027 17.5974 77.7395 17.6125C77.7764 17.6276 77.8099 17.6499 77.8381 17.678C77.8662 17.7062 77.8885 17.7397 77.9036 17.7766C77.9187 17.8134 77.9263 17.8529 77.9259 17.8928C77.9256 17.9326 77.9173 17.972 77.9016 18.0086C77.8858 18.0452 77.863 18.0783 77.8343 18.106L77.8343 18.1059L77.8281 18.112L74.6282 21.312C74.6282 21.312 74.6282 21.312 74.6281 21.312C74.5719 21.3682 74.4956 21.3998 74.4161 21.3998C74.3366 21.3998 74.2603 21.3682 74.204 21.312C74.204 21.312 74.204 21.312 74.204 21.312L71.0041 18.1121M74.4161 20.6759L71.0041 18.1121M71.004 17.688C70.9478 17.7442 70.9163 17.8205 70.9163 17.9C70.9163 17.9795 70.9478 18.0558 71.004 18.112M71.004 17.688L71.004 18.112M71.004 18.112L71.0041 18.1121M71.004 18.112L71.0041 18.1121" fill="black" stroke="#9CA3AF"/>
6
- <path d="M14 2.5H90.916V36.5H14C9.85786 36.5 6.5 33.1421 6.5 29V10C6.5 5.85786 9.85786 2.5 14 2.5Z" stroke="#4B5563"/>
7
- </g>
8
- <g filter="url(#filter1_dd_2665_3735)">
9
- <path d="M91.416 2H304C308.418 2 312 5.58172 312 10V29C312 33.4183 308.418 37 304 37H91.416V2Z" fill="#374151"/>
10
- <rect x="109.416" y="16" width="150" height="7" rx="2" fill="#9CA3AF"/>
11
- <path d="M285.416 20.6759L285.063 20.3223L282.428 17.688C282.428 17.688 282.428 17.688 282.428 17.6879C282.372 17.6317 282.296 17.6002 282.216 17.6002C282.137 17.6002 282.06 17.6317 282.004 17.6879C282.004 17.6879 282.004 17.688 282.004 17.688M285.416 20.6759L282.004 17.688M285.416 20.6759L285.77 20.3223L288.404 17.6879L288.404 17.688L288.41 17.6818C288.438 17.6531 288.471 17.6302 288.508 17.6145C288.544 17.5988 288.583 17.5905 288.623 17.5902C288.663 17.5898 288.703 17.5974 288.74 17.6125C288.776 17.6276 288.81 17.6499 288.838 17.678C288.866 17.7062 288.888 17.7397 288.904 17.7766C288.919 17.8134 288.926 17.8529 288.926 17.8928C288.926 17.9326 288.917 17.972 288.902 18.0086C288.886 18.0452 288.863 18.0783 288.834 18.106L288.834 18.1059L288.828 18.112L285.628 21.312C285.628 21.312 285.628 21.312 285.628 21.312C285.572 21.3682 285.496 21.3998 285.416 21.3998C285.337 21.3998 285.26 21.3682 285.204 21.312C285.204 21.312 285.204 21.312 285.204 21.312L282.004 18.1121M285.416 20.6759L282.004 18.1121M282.004 17.688C281.948 17.7442 281.916 17.8205 281.916 17.9C281.916 17.9795 281.948 18.0558 282.004 18.112M282.004 17.688L282.004 18.112M282.004 18.112L282.004 18.1121M282.004 18.112L282.004 18.1121" fill="black" stroke="#9CA3AF"/>
12
- <path d="M91.916 2.5H304C308.142 2.5 311.5 5.85786 311.5 10V29C311.5 33.1421 308.142 36.5 304 36.5H91.916V2.5Z" stroke="#4B5563"/>
13
- </g>
14
- <g filter="url(#filter2_dd_2665_3735)">
15
- <path d="M6 69C6 64.5817 9.58172 61 14 61H304C308.418 61 312 64.5817 312 69V88C312 92.4183 308.418 96 304 96H14C9.58172 96 6 92.4183 6 88V69Z" fill="#374151"/>
16
- <rect x="24" y="75" width="134.388" height="7" rx="2" fill="#9CA3AF"/>
17
- <path d="M286 79.6759L285.647 79.3223L283.012 76.688C283.012 76.688 283.012 76.688 283.012 76.6879C282.956 76.6317 282.88 76.6002 282.8 76.6002C282.721 76.6002 282.644 76.6317 282.588 76.6879C282.588 76.6879 282.588 76.688 282.588 76.688M286 79.6759L282.588 76.688M286 79.6759L286.354 79.3223L288.988 76.6879L288.988 76.688L288.994 76.6818C289.022 76.6531 289.055 76.6302 289.091 76.6145C289.128 76.5988 289.167 76.5905 289.207 76.5902C289.247 76.5898 289.287 76.5974 289.324 76.6125C289.36 76.6276 289.394 76.6499 289.422 76.678C289.45 76.7062 289.472 76.7397 289.488 76.7766C289.503 76.8134 289.51 76.8529 289.51 76.8928C289.51 76.9326 289.501 76.972 289.486 77.0086C289.47 77.0452 289.447 77.0783 289.418 77.106L289.418 77.1059L289.412 77.112L286.212 80.312C286.212 80.312 286.212 80.312 286.212 80.312C286.156 80.3682 286.08 80.3998 286 80.3998C285.921 80.3998 285.844 80.3682 285.788 80.312C285.788 80.312 285.788 80.312 285.788 80.312L282.588 77.1121M286 79.6759L282.588 77.1121M282.588 76.688C282.532 76.7442 282.5 76.8205 282.5 76.9C282.5 76.9795 282.532 77.0558 282.588 77.112M282.588 76.688L282.588 77.112M282.588 77.112L282.588 77.1121M282.588 77.112L282.588 77.1121" fill="black" stroke="#9CA3AF"/>
18
- <path d="M14 61.5H304C308.142 61.5 311.5 64.8579 311.5 69V88C311.5 92.1421 308.142 95.5 304 95.5H14C9.85786 95.5 6.5 92.1421 6.5 88V69C6.5 64.8579 9.85786 61.5 14 61.5Z" stroke="#4B5563"/>
19
- </g>
20
- <defs>
21
- <filter id="filter0_dd_2665_3735" x="0" y="0" width="97.416" height="47" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
22
- <feFlood flood-opacity="0" result="BackgroundImageFix"/>
23
- <feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
24
- <feOffset dy="4"/>
25
- <feGaussianBlur stdDeviation="3"/>
26
- <feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.1 0"/>
27
- <feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_2665_3735"/>
28
- <feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
29
- <feOffset dy="2"/>
30
- <feGaussianBlur stdDeviation="2"/>
31
- <feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.06 0"/>
32
- <feBlend mode="normal" in2="effect1_dropShadow_2665_3735" result="effect2_dropShadow_2665_3735"/>
33
- <feBlend mode="normal" in="SourceGraphic" in2="effect2_dropShadow_2665_3735" result="shape"/>
34
- </filter>
35
- <filter id="filter1_dd_2665_3735" x="85.416" y="0" width="232.584" height="47" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
36
- <feFlood flood-opacity="0" result="BackgroundImageFix"/>
37
- <feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
38
- <feOffset dy="4"/>
39
- <feGaussianBlur stdDeviation="3"/>
40
- <feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.1 0"/>
41
- <feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_2665_3735"/>
42
- <feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
43
- <feOffset dy="2"/>
44
- <feGaussianBlur stdDeviation="2"/>
45
- <feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.06 0"/>
46
- <feBlend mode="normal" in2="effect1_dropShadow_2665_3735" result="effect2_dropShadow_2665_3735"/>
47
- <feBlend mode="normal" in="SourceGraphic" in2="effect2_dropShadow_2665_3735" result="shape"/>
48
- </filter>
49
- <filter id="filter2_dd_2665_3735" x="0" y="59" width="318" height="47" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
50
- <feFlood flood-opacity="0" result="BackgroundImageFix"/>
51
- <feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
52
- <feOffset dy="4"/>
53
- <feGaussianBlur stdDeviation="3"/>
54
- <feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.1 0"/>
55
- <feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_2665_3735"/>
56
- <feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
57
- <feOffset dy="2"/>
58
- <feGaussianBlur stdDeviation="2"/>
59
- <feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.06 0"/>
60
- <feBlend mode="normal" in2="effect1_dropShadow_2665_3735" result="effect2_dropShadow_2665_3735"/>
61
- <feBlend mode="normal" in="SourceGraphic" in2="effect2_dropShadow_2665_3735" result="shape"/>
62
- </filter>
63
- </defs>
64
- </svg>
@@ -1,64 +0,0 @@
1
- <svg width="318" height="106" viewBox="0 0 318 106" fill="none" xmlns="http://www.w3.org/2000/svg">
2
- <g filter="url(#filter0_dd_2665_3704)">
3
- <path d="M6 10C6 5.58172 9.58172 2 14 2H91.416V37H14C9.58172 37 6 33.4183 6 29V10Z" fill="#F3F4F6"/>
4
- <rect x="20" y="16" width="40.416" height="7" rx="2" fill="#9CA3AF"/>
5
- <path d="M74.4161 20.6759L74.0625 20.3223L71.4282 17.688C71.4282 17.688 71.4282 17.688 71.4281 17.6879C71.3719 17.6317 71.2956 17.6002 71.2161 17.6002C71.1366 17.6002 71.0603 17.6317 71.0041 17.6879C71.0041 17.6879 71.004 17.688 71.004 17.688M74.4161 20.6759L71.004 17.688M74.4161 20.6759L74.7696 20.3223L77.404 17.6879L77.4041 17.688L77.4101 17.6818C77.4378 17.6531 77.4709 17.6302 77.5075 17.6145C77.5441 17.5988 77.5835 17.5905 77.6233 17.5902C77.6631 17.5898 77.7027 17.5974 77.7395 17.6125C77.7764 17.6276 77.8099 17.6499 77.8381 17.678C77.8662 17.7062 77.8885 17.7397 77.9036 17.7766C77.9187 17.8134 77.9263 17.8529 77.9259 17.8928C77.9256 17.9326 77.9173 17.972 77.9016 18.0086C77.8858 18.0452 77.863 18.0783 77.8343 18.106L77.8343 18.1059L77.8281 18.112L74.6282 21.312C74.6282 21.312 74.6282 21.312 74.6281 21.312C74.5719 21.3682 74.4956 21.3998 74.4161 21.3998C74.3366 21.3998 74.2603 21.3682 74.204 21.312C74.204 21.312 74.204 21.312 74.204 21.312L71.0041 18.1121M74.4161 20.6759L71.0041 18.1121M71.004 17.688C70.9478 17.7442 70.9163 17.8205 70.9163 17.9C70.9163 17.9795 70.9478 18.0558 71.004 18.112M71.004 17.688L71.004 18.112M71.004 18.112L71.0041 18.1121M71.004 18.112L71.0041 18.1121" fill="black" stroke="#9CA3AF"/>
6
- <path d="M14 2.5H90.916V36.5H14C9.85786 36.5 6.5 33.1421 6.5 29V10C6.5 5.85786 9.85786 2.5 14 2.5Z" stroke="#D1D5DB"/>
7
- </g>
8
- <g filter="url(#filter1_dd_2665_3704)">
9
- <path d="M91.416 2H304C308.418 2 312 5.58172 312 10V29C312 33.4183 308.418 37 304 37H91.416V2Z" fill="white"/>
10
- <rect x="109.416" y="16" width="150" height="7" rx="2" fill="#9CA3AF"/>
11
- <path d="M285.416 20.6759L285.063 20.3223L282.428 17.688C282.428 17.688 282.428 17.688 282.428 17.6879C282.372 17.6317 282.296 17.6002 282.216 17.6002C282.137 17.6002 282.06 17.6317 282.004 17.6879C282.004 17.6879 282.004 17.688 282.004 17.688M285.416 20.6759L282.004 17.688M285.416 20.6759L285.77 20.3223L288.404 17.6879L288.404 17.688L288.41 17.6818C288.438 17.6531 288.471 17.6302 288.508 17.6145C288.544 17.5988 288.583 17.5905 288.623 17.5902C288.663 17.5898 288.703 17.5974 288.74 17.6125C288.776 17.6276 288.81 17.6499 288.838 17.678C288.866 17.7062 288.888 17.7397 288.904 17.7766C288.919 17.8134 288.926 17.8529 288.926 17.8928C288.926 17.9326 288.917 17.972 288.902 18.0086C288.886 18.0452 288.863 18.0783 288.834 18.106L288.834 18.1059L288.828 18.112L285.628 21.312C285.628 21.312 285.628 21.312 285.628 21.312C285.572 21.3682 285.496 21.3998 285.416 21.3998C285.337 21.3998 285.26 21.3682 285.204 21.312C285.204 21.312 285.204 21.312 285.204 21.312L282.004 18.1121M285.416 20.6759L282.004 18.1121M282.004 17.688C281.948 17.7442 281.916 17.8205 281.916 17.9C281.916 17.9795 281.948 18.0558 282.004 18.112M282.004 17.688L282.004 18.112M282.004 18.112L282.004 18.1121M282.004 18.112L282.004 18.1121" fill="black" stroke="#9CA3AF"/>
12
- <path d="M91.916 2.5H304C308.142 2.5 311.5 5.85786 311.5 10V29C311.5 33.1421 308.142 36.5 304 36.5H91.916V2.5Z" stroke="#D1D5DB"/>
13
- </g>
14
- <g filter="url(#filter2_dd_2665_3704)">
15
- <path d="M6 69C6 64.5817 9.58172 61 14 61H304C308.418 61 312 64.5817 312 69V88C312 92.4183 308.418 96 304 96H14C9.58172 96 6 92.4183 6 88V69Z" fill="white"/>
16
- <rect x="24" y="75" width="134.388" height="7" rx="2" fill="#9CA3AF"/>
17
- <path d="M286 79.6759L285.647 79.3223L283.012 76.688C283.012 76.688 283.012 76.688 283.012 76.6879C282.956 76.6317 282.88 76.6002 282.8 76.6002C282.721 76.6002 282.644 76.6317 282.588 76.6879C282.588 76.6879 282.588 76.688 282.588 76.688M286 79.6759L282.588 76.688M286 79.6759L286.354 79.3223L288.988 76.6879L288.988 76.688L288.994 76.6818C289.022 76.6531 289.055 76.6302 289.091 76.6145C289.128 76.5988 289.167 76.5905 289.207 76.5902C289.247 76.5898 289.287 76.5974 289.324 76.6125C289.36 76.6276 289.394 76.6499 289.422 76.678C289.45 76.7062 289.472 76.7397 289.488 76.7766C289.503 76.8134 289.51 76.8529 289.51 76.8928C289.51 76.9326 289.501 76.972 289.486 77.0086C289.47 77.0452 289.447 77.0783 289.418 77.106L289.418 77.1059L289.412 77.112L286.212 80.312C286.212 80.312 286.212 80.312 286.212 80.312C286.156 80.3682 286.08 80.3998 286 80.3998C285.921 80.3998 285.844 80.3682 285.788 80.312C285.788 80.312 285.788 80.312 285.788 80.312L282.588 77.1121M286 79.6759L282.588 77.1121M282.588 76.688C282.532 76.7442 282.5 76.8205 282.5 76.9C282.5 76.9795 282.532 77.0558 282.588 77.112M282.588 76.688L282.588 77.112M282.588 77.112L282.588 77.1121M282.588 77.112L282.588 77.1121" fill="black" stroke="#9CA3AF"/>
18
- <path d="M14 61.5H304C308.142 61.5 311.5 64.8579 311.5 69V88C311.5 92.1421 308.142 95.5 304 95.5H14C9.85786 95.5 6.5 92.1421 6.5 88V69C6.5 64.8579 9.85786 61.5 14 61.5Z" stroke="#D1D5DB"/>
19
- </g>
20
- <defs>
21
- <filter id="filter0_dd_2665_3704" x="0" y="0" width="97.416" height="47" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
22
- <feFlood flood-opacity="0" result="BackgroundImageFix"/>
23
- <feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
24
- <feOffset dy="4"/>
25
- <feGaussianBlur stdDeviation="3"/>
26
- <feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.1 0"/>
27
- <feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_2665_3704"/>
28
- <feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
29
- <feOffset dy="2"/>
30
- <feGaussianBlur stdDeviation="2"/>
31
- <feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.06 0"/>
32
- <feBlend mode="normal" in2="effect1_dropShadow_2665_3704" result="effect2_dropShadow_2665_3704"/>
33
- <feBlend mode="normal" in="SourceGraphic" in2="effect2_dropShadow_2665_3704" result="shape"/>
34
- </filter>
35
- <filter id="filter1_dd_2665_3704" x="85.416" y="0" width="232.584" height="47" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
36
- <feFlood flood-opacity="0" result="BackgroundImageFix"/>
37
- <feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
38
- <feOffset dy="4"/>
39
- <feGaussianBlur stdDeviation="3"/>
40
- <feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.1 0"/>
41
- <feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_2665_3704"/>
42
- <feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
43
- <feOffset dy="2"/>
44
- <feGaussianBlur stdDeviation="2"/>
45
- <feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.06 0"/>
46
- <feBlend mode="normal" in2="effect1_dropShadow_2665_3704" result="effect2_dropShadow_2665_3704"/>
47
- <feBlend mode="normal" in="SourceGraphic" in2="effect2_dropShadow_2665_3704" result="shape"/>
48
- </filter>
49
- <filter id="filter2_dd_2665_3704" x="0" y="59" width="318" height="47" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
50
- <feFlood flood-opacity="0" result="BackgroundImageFix"/>
51
- <feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
52
- <feOffset dy="4"/>
53
- <feGaussianBlur stdDeviation="3"/>
54
- <feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.1 0"/>
55
- <feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_2665_3704"/>
56
- <feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
57
- <feOffset dy="2"/>
58
- <feGaussianBlur stdDeviation="2"/>
59
- <feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.06 0"/>
60
- <feBlend mode="normal" in2="effect1_dropShadow_2665_3704" result="effect2_dropShadow_2665_3704"/>
61
- <feBlend mode="normal" in="SourceGraphic" in2="effect2_dropShadow_2665_3704" result="shape"/>
62
- </filter>
63
- </defs>
64
- </svg>
@@ -1,17 +0,0 @@
1
- <svg width="82" height="182" viewBox="0 0 82 182" fill="none" xmlns="http://www.w3.org/2000/svg">
2
- <rect x="0.251953" y="0.5" width="81.4961" height="181" rx="2" fill="#374151"/>
3
- <rect x="12.252" y="12.5" width="33" height="5" rx="1" fill="#9CA3AF"/>
4
- <rect x="12.252" y="33.5" width="5" height="5" rx="2.5" fill="#9CA3AF"/>
5
- <rect x="21.252" y="33.5" width="48.4961" height="5" rx="1" fill="#9CA3AF"/>
6
- <rect x="12.252" y="51.5" width="5" height="5" rx="2.5" fill="#9CA3AF"/>
7
- <rect x="21.252" y="51.5" width="48.4961" height="5" rx="1" fill="#9CA3AF"/>
8
- <rect x="12.252" y="69.5" width="5" height="5" rx="2.5" fill="#9CA3AF"/>
9
- <rect x="21.252" y="69.5" width="48.4961" height="5" rx="1" fill="#9CA3AF"/>
10
- <rect x="12.252" y="87.5" width="5" height="5" rx="2.5" fill="#9CA3AF"/>
11
- <rect x="21.252" y="87.5" width="48.4961" height="5" rx="1" fill="#9CA3AF"/>
12
- <rect x="12.252" y="105.5" width="5" height="5" rx="2.5" fill="#9CA3AF"/>
13
- <rect x="21.252" y="105.5" width="48.4961" height="5" rx="1" fill="#9CA3AF"/>
14
- <rect x="21.5" y="164.5" width="5" height="5" rx="2.5" fill="#6B7280"/>
15
- <rect x="38.5" y="164.5" width="5" height="5" rx="2.5" fill="#6B7280"/>
16
- <rect x="55.5" y="164.5" width="5" height="5" rx="2.5" fill="#6B7280"/>
17
- </svg>
@@ -1,18 +0,0 @@
1
- <svg width="82" height="182" viewBox="0 0 82 182" fill="none" xmlns="http://www.w3.org/2000/svg">
2
- <rect x="0.501953" y="0.75" width="80.9961" height="180.5" rx="1.75" fill="#FAFAFA"/>
3
- <rect x="12.252" y="12.5" width="33" height="5" rx="1" fill="#9CA3AF"/>
4
- <rect x="12.252" y="33.5" width="5" height="5" rx="2.5" fill="#9CA3AF"/>
5
- <rect x="21.252" y="33.5" width="48.4961" height="5" rx="1" fill="#9CA3AF"/>
6
- <rect x="12.252" y="51.5" width="5" height="5" rx="2.5" fill="#9CA3AF"/>
7
- <rect x="21.252" y="51.5" width="48.4961" height="5" rx="1" fill="#9CA3AF"/>
8
- <rect x="12.252" y="69.5" width="5" height="5" rx="2.5" fill="#9CA3AF"/>
9
- <rect x="21.252" y="69.5" width="48.4961" height="5" rx="1" fill="#9CA3AF"/>
10
- <rect x="12.252" y="87.5" width="5" height="5" rx="2.5" fill="#9CA3AF"/>
11
- <rect x="21.252" y="87.5" width="48.4961" height="5" rx="1" fill="#9CA3AF"/>
12
- <rect x="12.252" y="105.5" width="5" height="5" rx="2.5" fill="#9CA3AF"/>
13
- <rect x="21.252" y="105.5" width="48.4961" height="5" rx="1" fill="#9CA3AF"/>
14
- <rect x="21.5" y="164.5" width="5" height="5" rx="2.5" fill="#D1D5DB"/>
15
- <rect x="38.5" y="164.5" width="5" height="5" rx="2.5" fill="#D1D5DB"/>
16
- <rect x="55.5" y="164.5" width="5" height="5" rx="2.5" fill="#D1D5DB"/>
17
- <rect x="0.501953" y="0.75" width="80.9961" height="180.5" rx="1.75" stroke="#E5E7EB" stroke-width="0.5"/>
18
- </svg>
@@ -1,11 +0,0 @@
1
- <svg width="303" height="140" viewBox="0 0 303 140" fill="none" xmlns="http://www.w3.org/2000/svg">
2
- <rect width="195" height="12" rx="3" fill="#6B7280" />
3
- <rect y="24" width="269" height="10" rx="3" fill="#4B5563" />
4
- <rect y="46" width="303" height="10" rx="3" fill="#4B5563" />
5
- <rect y="66" width="269" height="10" rx="3" fill="#4B5563" />
6
- <rect y="88" width="157" height="10" rx="3" fill="#4B5563" />
7
- <path d="M6.40125 132.255C9.02427 130.772 11.987 129.995 15 130C18.125 130 21.0587 130.819 23.5987 132.255M18.75 122.5C18.75 123.495 18.3549 124.448 17.6517 125.152C16.9484 125.855 15.9946 126.25 15 126.25C14.0054 126.25 13.0516 125.855 12.3483 125.152C11.6451 124.448 11.25 123.495 11.25 122.5C11.25 121.505 11.6451 120.552 12.3483 119.848C13.0516 119.145 14.0054 118.75 15 118.75C15.9946 118.75 16.9484 119.145 17.6517 119.848C18.3549 120.552 18.75 121.505 18.75 122.5ZM26.25 125C26.25 126.477 25.959 127.94 25.3936 129.305C24.8283 130.67 23.9996 131.91 22.955 132.955C21.9103 134 20.6701 134.828 19.3052 135.394C17.9403 135.959 16.4774 136.25 15 136.25C13.5226 136.25 12.0597 135.959 10.6948 135.394C9.3299 134.828 8.08971 134 7.04505 132.955C6.00039 131.91 5.17172 130.67 4.60636 129.305C4.04099 127.94 3.75 126.477 3.75 125C3.75 122.016 4.93526 119.155 7.04505 117.045C9.15483 114.935 12.0163 113.75 15 113.75C17.9837 113.75 20.8452 114.935 22.955 117.045C25.0647 119.155 26.25 122.016 26.25 125Z" stroke="#6B7280" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" />
8
- <rect x="38" y="113" width="54" height="10" rx="5" fill="#6B7280" />
9
- <rect x="38" y="131" width="76" height="6" rx="3" fill="#4B5563" />
10
- </svg>
11
-
@@ -1,11 +0,0 @@
1
- <svg width="303" height="140" viewBox="0 0 303 140" fill="none" xmlns="http://www.w3.org/2000/svg">
2
- <rect width="195" height="12" rx="3" fill="#D1D5DB" />
3
- <rect y="24" width="269" height="10" rx="3" fill="#E5E7EB" />
4
- <rect y="46" width="303" height="10" rx="3" fill="#E5E7EB" />
5
- <rect y="66" width="269" height="10" rx="3" fill="#E5E7EB" />
6
- <rect y="88" width="157" height="10" rx="3" fill="#E5E7EB" />
7
- <path d="M6.40125 132.255C9.02427 130.772 11.987 129.995 15 130C18.125 130 21.0587 130.819 23.5987 132.255M18.75 122.5C18.75 123.495 18.3549 124.448 17.6517 125.152C16.9484 125.855 15.9946 126.25 15 126.25C14.0054 126.25 13.0516 125.855 12.3483 125.152C11.6451 124.448 11.25 123.495 11.25 122.5C11.25 121.505 11.6451 120.552 12.3483 119.848C13.0516 119.145 14.0054 118.75 15 118.75C15.9946 118.75 16.9484 119.145 17.6517 119.848C18.3549 120.552 18.75 121.505 18.75 122.5ZM26.25 125C26.25 126.477 25.959 127.94 25.3936 129.305C24.8283 130.67 23.9996 131.91 22.955 132.955C21.9103 134 20.6701 134.828 19.3052 135.394C17.9403 135.959 16.4774 136.25 15 136.25C13.5226 136.25 12.0597 135.959 10.6948 135.394C9.3299 134.828 8.08971 134 7.04505 132.955C6.00039 131.91 5.17172 130.67 4.60636 129.305C4.04099 127.94 3.75 126.477 3.75 125C3.75 122.016 4.93526 119.155 7.04505 117.045C9.15483 114.935 12.0163 113.75 15 113.75C17.9837 113.75 20.8452 114.935 22.955 117.045C25.0647 119.155 26.25 122.016 26.25 125Z" stroke="#D1D5DB" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" />
8
- <rect x="38" y="113" width="54" height="10" rx="5" fill="#D1D5DB" />
9
- <rect x="38" y="131" width="76" height="6" rx="3" fill="#E5E7EB" />
10
- </svg>
11
-
@@ -1,6 +0,0 @@
1
- <svg width="198" height="50" viewBox="0 0 198 50" fill="none" xmlns="http://www.w3.org/2000/svg">
2
- <rect width="198" height="50" rx="8" fill="#374151"/>
3
- <path d="M46 25C46 32.1797 40.1797 38 33 38C25.8203 38 20 32.1797 20 25C20 17.8203 25.8203 12 33 12C40.1797 12 46 17.8203 46 25ZM23.0331 25C23.0331 30.5046 27.4954 34.9669 33 34.9669C38.5046 34.9669 42.9669 30.5046 42.9669 25C42.9669 19.4954 38.5046 15.0331 33 15.0331C27.4954 15.0331 23.0331 19.4954 23.0331 25Z" fill="#6B7280"/>
4
- <path d="M44.0984 22.0846C44.913 21.8706 45.4083 21.0321 45.1004 20.2481C44.6644 19.1378 44.0767 18.0906 43.3523 17.1369C42.3197 15.7774 41.0295 14.6346 39.5552 13.7737C38.081 12.9129 36.4516 12.3509 34.7601 12.1197C33.5735 11.9576 32.3727 11.9605 31.1915 12.1264C30.3574 12.2436 29.8706 13.087 30.0846 13.9016C30.2986 14.7163 31.1332 15.1907 31.971 15.1035C32.7599 15.0215 33.5577 15.0339 34.3472 15.1418C35.6418 15.3187 36.8888 15.7489 38.0172 16.4078C39.1455 17.0666 40.1331 17.9413 40.9234 18.9818C41.4053 19.6163 41.8082 20.305 42.1245 21.0324C42.4604 21.8048 43.2837 22.2986 44.0984 22.0846Z" fill="#3F83F8"/>
5
- <rect x="58" y="17" width="120" height="16" rx="4" fill="white"/>
6
- </svg>
@@ -1,6 +0,0 @@
1
- <svg width="198" height="50" viewBox="0 0 198 50" fill="none" xmlns="http://www.w3.org/2000/svg">
2
- <rect width="198" height="50" rx="8" fill="#D1D5DB"/>
3
- <path d="M46 25C46 32.1797 40.1797 38 33 38C25.8203 38 20 32.1797 20 25C20 17.8203 25.8203 12 33 12C40.1797 12 46 17.8203 46 25ZM23.0331 25C23.0331 30.5046 27.4954 34.9669 33 34.9669C38.5046 34.9669 42.9669 30.5046 42.9669 25C42.9669 19.4954 38.5046 15.0331 33 15.0331C27.4954 15.0331 23.0331 19.4954 23.0331 25Z" fill="white"/>
4
- <path d="M44.0984 22.0846C44.913 21.8706 45.4083 21.0321 45.1004 20.2481C44.6644 19.1378 44.0767 18.0906 43.3523 17.1369C42.3197 15.7774 41.0295 14.6346 39.5552 13.7737C38.081 12.9129 36.4516 12.3509 34.7601 12.1197C33.5735 11.9576 32.3727 11.9605 31.1915 12.1264C30.3574 12.2436 29.8706 13.087 30.0846 13.9016C30.2986 14.7163 31.1332 15.1907 31.971 15.1035C32.7599 15.0215 33.5577 15.0339 34.3472 15.1418C35.6418 15.3187 36.8888 15.7489 38.0172 16.4078C39.1455 17.0666 40.1331 17.9413 40.9234 18.9818C41.4053 19.6163 41.8082 20.305 42.1245 21.0324C42.4604 21.8048 43.2837 22.2986 44.0984 22.0846Z" fill="#3F83F8"/>
5
- <rect x="58" y="17" width="120" height="16" rx="4" fill="white"/>
6
- </svg>
@@ -1,42 +0,0 @@
1
- <svg width="410" height="240" viewBox="0 0 410 240" fill="none" xmlns="http://www.w3.org/2000/svg">
2
- <g filter="url(#filter0_dd_2159_2977)">
3
- <rect x="12" y="15" width="386" height="210" rx="8" fill="#374151"/>
4
- <rect width="386" height="42" transform="translate(12 15)" fill="#4B5563"/>
5
- <rect x="33" y="31" width="50" height="10" rx="2" fill="#9CA3AF"/>
6
- <rect x="178.5" y="31" width="50" height="10" rx="2" fill="#9CA3AF"/>
7
- <rect x="324" y="31" width="50" height="10" rx="2" fill="#9CA3AF"/>
8
- <line x1="12" y1="56.5" x2="398" y2="56.5" stroke="#4B5563"/>
9
- <rect x="33" y="73" width="50" height="10" rx="2" fill="#6B7280"/>
10
- <rect x="178.5" y="73" width="50" height="10" rx="2" fill="#6B7280"/>
11
- <rect x="324" y="73" width="50" height="10" rx="2" fill="#1C64F2"/>
12
- <line x1="12" y1="98.5" x2="398" y2="98.5" stroke="#4B5563"/>
13
- <rect x="33" y="115" width="50" height="10" rx="2" fill="#6B7280"/>
14
- <rect x="178.5" y="115" width="50" height="10" rx="2" fill="#6B7280"/>
15
- <rect x="324" y="115" width="50" height="10" rx="2" fill="#1C64F2"/>
16
- <line x1="12" y1="140.5" x2="398" y2="140.5" stroke="#4B5563"/>
17
- <rect x="33" y="157" width="50" height="10" rx="2" fill="#6B7280"/>
18
- <rect x="178.5" y="157" width="50" height="10" rx="2" fill="#6B7280"/>
19
- <rect x="324" y="157" width="50" height="10" rx="2" fill="#1C64F2"/>
20
- <line x1="12" y1="182.5" x2="398" y2="182.5" stroke="#4B5563"/>
21
- <rect x="33" y="199" width="50" height="10" rx="2" fill="#6B7280"/>
22
- <rect x="178.5" y="199" width="50" height="10" rx="2" fill="#6B7280"/>
23
- <rect x="324" y="199" width="50" height="10" rx="2" fill="#1C64F2"/>
24
- <rect x="12.5" y="15.5" width="385" height="209" rx="7.5" stroke="#4B5563"/>
25
- </g>
26
- <defs>
27
- <filter id="filter0_dd_2159_2977" x="6" y="13" width="398" height="222" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
28
- <feFlood flood-opacity="0" result="BackgroundImageFix"/>
29
- <feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
30
- <feOffset dy="4"/>
31
- <feGaussianBlur stdDeviation="3"/>
32
- <feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.1 0"/>
33
- <feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_2159_2977"/>
34
- <feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
35
- <feOffset dy="2"/>
36
- <feGaussianBlur stdDeviation="2"/>
37
- <feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.06 0"/>
38
- <feBlend mode="normal" in2="effect1_dropShadow_2159_2977" result="effect2_dropShadow_2159_2977"/>
39
- <feBlend mode="normal" in="SourceGraphic" in2="effect2_dropShadow_2159_2977" result="shape"/>
40
- </filter>
41
- </defs>
42
- </svg>
@@ -1,42 +0,0 @@
1
- <svg width="410" height="240" viewBox="0 0 410 240" fill="none" xmlns="http://www.w3.org/2000/svg">
2
- <g filter="url(#filter0_dd_1864_2007)">
3
- <rect x="12" y="15" width="386" height="210" rx="8" fill="white"/>
4
- <rect width="386" height="42" transform="translate(12 15)" fill="#F3F4F6"/>
5
- <rect x="33" y="31" width="50" height="10" rx="2" fill="#D1D5DB"/>
6
- <rect x="178.5" y="31" width="50" height="10" rx="2" fill="#D1D5DB"/>
7
- <rect x="324" y="31" width="50" height="10" rx="2" fill="#D1D5DB"/>
8
- <line x1="12" y1="56.5" x2="398" y2="56.5" stroke="#E4E4E7"/>
9
- <rect x="33" y="73" width="50" height="10" rx="2" fill="#E5E7EB"/>
10
- <rect x="178.5" y="73" width="50" height="10" rx="2" fill="#E5E7EB"/>
11
- <rect x="324" y="73" width="50" height="10" rx="2" fill="#1A56DB"/>
12
- <line x1="12" y1="98.5" x2="398" y2="98.5" stroke="#E4E4E7"/>
13
- <rect x="33" y="115" width="50" height="10" rx="2" fill="#E5E7EB"/>
14
- <rect x="178.5" y="115" width="50" height="10" rx="2" fill="#E5E7EB"/>
15
- <rect x="324" y="115" width="50" height="10" rx="2" fill="#1A56DB"/>
16
- <line x1="12" y1="140.5" x2="398" y2="140.5" stroke="#E4E4E7"/>
17
- <rect x="33" y="157" width="50" height="10" rx="2" fill="#E5E7EB"/>
18
- <rect x="178.5" y="157" width="50" height="10" rx="2" fill="#E5E7EB"/>
19
- <rect x="324" y="157" width="50" height="10" rx="2" fill="#1A56DB"/>
20
- <line x1="12" y1="182.5" x2="398" y2="182.5" stroke="#E4E4E7"/>
21
- <rect x="33" y="199" width="50" height="10" rx="2" fill="#E5E7EB"/>
22
- <rect x="178.5" y="199" width="50" height="10" rx="2" fill="#E5E7EB"/>
23
- <rect x="324" y="199" width="50" height="10" rx="2" fill="#1A56DB"/>
24
- <rect x="12.5" y="15.5" width="385" height="209" rx="7.5" stroke="#D4D4D8"/>
25
- </g>
26
- <defs>
27
- <filter id="filter0_dd_1864_2007" x="6" y="13" width="398" height="222" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
28
- <feFlood flood-opacity="0" result="BackgroundImageFix"/>
29
- <feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
30
- <feOffset dy="4"/>
31
- <feGaussianBlur stdDeviation="3"/>
32
- <feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.1 0"/>
33
- <feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_1864_2007"/>
34
- <feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
35
- <feOffset dy="2"/>
36
- <feGaussianBlur stdDeviation="2"/>
37
- <feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.06 0"/>
38
- <feBlend mode="normal" in2="effect1_dropShadow_1864_2007" result="effect2_dropShadow_1864_2007"/>
39
- <feBlend mode="normal" in="SourceGraphic" in2="effect2_dropShadow_1864_2007" result="shape"/>
40
- </filter>
41
- </defs>
42
- </svg>
@@ -1,10 +0,0 @@
1
- <svg width="376" height="150" viewBox="0 0 376 150" fill="none" xmlns="http://www.w3.org/2000/svg">
2
- <path d="M0 8C0 3.58172 3.58172 0 8 0H106C110.418 0 114 3.58172 114 8V33C114 37.4183 110.418 41 106 41H8C3.58172 41 0 37.4183 0 33V8Z" fill="#1A56DB"/>
3
- <path d="M39.5568 17.3643H42.7038V26H44.5334V17.3643H47.6804V15.8182H39.5568V17.3643ZM50.3253 26.1541C51.5234 26.1541 52.2393 25.5923 52.5675 24.951H52.6271V26H54.3572V20.8892C54.3572 18.8707 52.7116 18.2642 51.255 18.2642C49.6491 18.2642 48.4162 18.9801 48.0185 20.3722L49.6989 20.6108C49.8778 20.0888 50.3849 19.6413 51.2649 19.6413C52.1001 19.6413 52.5575 20.0689 52.5575 20.8196V20.8494C52.5575 21.3665 52.0156 21.3913 50.6683 21.5355C49.1868 21.6946 47.7699 22.1371 47.7699 23.8572C47.7699 25.3587 48.8686 26.1541 50.3253 26.1541ZM50.7926 24.8317C50.0419 24.8317 49.505 24.4886 49.505 23.8274C49.505 23.1364 50.1065 22.848 50.9119 22.7337C51.3842 22.669 52.3288 22.5497 52.5625 22.3608V23.2607C52.5625 24.1108 51.8764 24.8317 50.7926 24.8317ZM56.2464 26H58.0163V24.7969H58.1207C58.4041 25.3537 58.9957 26.1342 60.3082 26.1342C62.108 26.1342 63.4553 24.7074 63.4553 22.1918C63.4553 19.6463 62.0682 18.2642 60.3033 18.2642C58.956 18.2642 58.3942 19.0746 58.1207 19.6264H58.0462V15.8182H56.2464V26ZM58.0114 22.1818C58.0114 20.7003 58.6477 19.7408 59.8061 19.7408C61.0043 19.7408 61.6207 20.7599 61.6207 22.1818C61.6207 23.6136 60.9943 24.6577 59.8061 24.6577C58.6577 24.6577 58.0114 23.6634 58.0114 22.1818ZM72.5794 15.8182H70.8244L68.2939 17.4439V19.1342L70.6752 17.6129H70.7349V26H72.5794V15.8182Z" fill="white"/>
4
- <path d="M166.057 17.8643H169.204V26.5H171.033V17.8643H174.18V16.3182H166.057V17.8643ZM176.825 26.6541C178.023 26.6541 178.739 26.0923 179.067 25.451H179.127V26.5H180.857V21.3892C180.857 19.3707 179.212 18.7642 177.755 18.7642C176.149 18.7642 174.916 19.4801 174.518 20.8722L176.199 21.1108C176.378 20.5888 176.885 20.1413 177.765 20.1413C178.6 20.1413 179.058 20.5689 179.058 21.3196V21.3494C179.058 21.8665 178.516 21.8913 177.168 22.0355C175.687 22.1946 174.27 22.6371 174.27 24.3572C174.27 25.8587 175.369 26.6541 176.825 26.6541ZM177.293 25.3317C176.542 25.3317 176.005 24.9886 176.005 24.3274C176.005 23.6364 176.607 23.348 177.412 23.2337C177.884 23.169 178.829 23.0497 179.062 22.8608V23.7607C179.062 24.6108 178.376 25.3317 177.293 25.3317ZM182.746 26.5H184.516V25.2969H184.621C184.904 25.8537 185.496 26.6342 186.808 26.6342C188.608 26.6342 189.955 25.2074 189.955 22.6918C189.955 20.1463 188.568 18.7642 186.803 18.7642C185.456 18.7642 184.894 19.5746 184.621 20.1264H184.546V16.3182H182.746V26.5ZM184.511 22.6818C184.511 21.2003 185.148 20.2408 186.306 20.2408C187.504 20.2408 188.121 21.2599 188.121 22.6818C188.121 24.1136 187.494 25.1577 186.306 25.1577C185.158 25.1577 184.511 24.1634 184.511 22.6818ZM194.938 26.5H201.918V24.9588H197.483V24.8892L199.238 23.1044C201.217 21.2053 201.764 20.2805 201.764 19.1321C201.764 17.4268 200.377 16.179 198.329 16.179C196.31 16.179 194.878 17.4318 194.878 19.3658H196.633C196.633 18.3267 197.29 17.6754 198.304 17.6754C199.273 17.6754 199.994 18.267 199.994 19.2266C199.994 20.0767 199.477 20.6832 198.473 21.7024L194.938 25.1676V26.5Z" fill="white"/>
5
- <path d="M297.057 17.8643H300.204V26.5H302.033V17.8643H305.18V16.3182H297.057V17.8643ZM307.825 26.6541C309.023 26.6541 309.739 26.0923 310.067 25.451H310.127V26.5H311.857V21.3892C311.857 19.3707 310.212 18.7642 308.755 18.7642C307.149 18.7642 305.916 19.4801 305.518 20.8722L307.199 21.1108C307.378 20.5888 307.885 20.1413 308.765 20.1413C309.6 20.1413 310.058 20.5689 310.058 21.3196V21.3494C310.058 21.8665 309.516 21.8913 308.168 22.0355C306.687 22.1946 305.27 22.6371 305.27 24.3572C305.27 25.8587 306.369 26.6541 307.825 26.6541ZM308.293 25.3317C307.542 25.3317 307.005 24.9886 307.005 24.3274C307.005 23.6364 307.607 23.348 308.412 23.2337C308.884 23.169 309.829 23.0497 310.062 22.8608V23.7607C310.062 24.6108 309.376 25.3317 308.293 25.3317ZM313.746 26.5H315.516V25.2969H315.621C315.904 25.8537 316.496 26.6342 317.808 26.6342C319.608 26.6342 320.955 25.2074 320.955 22.6918C320.955 20.1463 319.568 18.7642 317.803 18.7642C316.456 18.7642 315.894 19.5746 315.621 20.1264H315.546V16.3182H313.746V26.5ZM315.511 22.6818C315.511 21.2003 316.148 20.2408 317.306 20.2408C318.504 20.2408 319.121 21.2599 319.121 22.6818C319.121 24.1136 318.494 25.1577 317.306 25.1577C316.158 25.1577 315.511 24.1634 315.511 22.6818ZM329.592 26.6392C331.77 26.6392 333.356 25.3913 333.351 23.6712C333.356 22.3984 332.56 21.4837 331.133 21.2798V21.2003C332.237 20.9616 332.978 20.1413 332.973 18.9979C332.978 17.4467 331.655 16.179 329.622 16.179C327.643 16.179 326.112 17.3572 326.072 19.0625H327.847C327.877 18.2074 328.672 17.6754 329.612 17.6754C330.562 17.6754 331.193 18.2521 331.188 19.1072C331.193 19.9972 330.457 20.5888 329.403 20.5888H328.503V22.0107H329.403C330.691 22.0107 331.456 22.657 331.452 23.5767C331.456 24.4766 330.676 25.093 329.587 25.093C328.563 25.093 327.773 24.5611 327.728 23.7308H325.858C325.908 25.451 327.444 26.6392 329.592 26.6392Z" fill="white"/>
6
- <rect y="66" width="376" height="12" rx="3" fill="#6B7280"/>
7
- <rect y="90" width="376" height="12" rx="3" fill="#6B7280"/>
8
- <rect y="114" width="376" height="12" rx="3" fill="#6B7280"/>
9
- <rect y="138" width="181" height="12" rx="3" fill="#6B7280"/>
10
- </svg>
@@ -1,10 +0,0 @@
1
- <svg width="376" height="150" viewBox="0 0 376 150" fill="none" xmlns="http://www.w3.org/2000/svg">
2
- <path d="M0 8C0 3.58172 3.58172 0 8 0H106C110.418 0 114 3.58172 114 8V33C114 37.4183 110.418 41 106 41H8C3.58172 41 0 37.4183 0 33V8Z" fill="#1A56DB"/>
3
- <path d="M39.5568 17.3643H42.7038V26H44.5334V17.3643H47.6804V15.8182H39.5568V17.3643ZM50.3253 26.1541C51.5234 26.1541 52.2393 25.5923 52.5675 24.951H52.6271V26H54.3572V20.8892C54.3572 18.8707 52.7116 18.2642 51.255 18.2642C49.6491 18.2642 48.4162 18.9801 48.0185 20.3722L49.6989 20.6108C49.8778 20.0888 50.3849 19.6413 51.2649 19.6413C52.1001 19.6413 52.5575 20.0689 52.5575 20.8196V20.8494C52.5575 21.3665 52.0156 21.3913 50.6683 21.5355C49.1868 21.6946 47.7699 22.1371 47.7699 23.8572C47.7699 25.3587 48.8686 26.1541 50.3253 26.1541ZM50.7926 24.8317C50.0419 24.8317 49.505 24.4886 49.505 23.8274C49.505 23.1364 50.1065 22.848 50.9119 22.7337C51.3842 22.669 52.3288 22.5497 52.5625 22.3608V23.2607C52.5625 24.1108 51.8764 24.8317 50.7926 24.8317ZM56.2464 26H58.0163V24.7969H58.1207C58.4041 25.3537 58.9957 26.1342 60.3082 26.1342C62.108 26.1342 63.4553 24.7074 63.4553 22.1918C63.4553 19.6463 62.0682 18.2642 60.3033 18.2642C58.956 18.2642 58.3942 19.0746 58.1207 19.6264H58.0462V15.8182H56.2464V26ZM58.0114 22.1818C58.0114 20.7003 58.6477 19.7408 59.8061 19.7408C61.0043 19.7408 61.6207 20.7599 61.6207 22.1818C61.6207 23.6136 60.9943 24.6577 59.8061 24.6577C58.6577 24.6577 58.0114 23.6634 58.0114 22.1818ZM72.5794 15.8182H70.8244L68.2939 17.4439V19.1342L70.6752 17.6129H70.7349V26H72.5794V15.8182Z" fill="white"/>
4
- <path d="M166.057 17.8643H169.204V26.5H171.033V17.8643H174.18V16.3182H166.057V17.8643ZM176.825 26.6541C178.023 26.6541 178.739 26.0923 179.067 25.451H179.127V26.5H180.857V21.3892C180.857 19.3707 179.212 18.7642 177.755 18.7642C176.149 18.7642 174.916 19.4801 174.518 20.8722L176.199 21.1108C176.378 20.5888 176.885 20.1413 177.765 20.1413C178.6 20.1413 179.058 20.5689 179.058 21.3196V21.3494C179.058 21.8665 178.516 21.8913 177.168 22.0355C175.687 22.1946 174.27 22.6371 174.27 24.3572C174.27 25.8587 175.369 26.6541 176.825 26.6541ZM177.293 25.3317C176.542 25.3317 176.005 24.9886 176.005 24.3274C176.005 23.6364 176.607 23.348 177.412 23.2337C177.884 23.169 178.829 23.0497 179.062 22.8608V23.7607C179.062 24.6108 178.376 25.3317 177.293 25.3317ZM182.746 26.5H184.516V25.2969H184.621C184.904 25.8537 185.496 26.6342 186.808 26.6342C188.608 26.6342 189.955 25.2074 189.955 22.6918C189.955 20.1463 188.568 18.7642 186.803 18.7642C185.456 18.7642 184.894 19.5746 184.621 20.1264H184.546V16.3182H182.746V26.5ZM184.511 22.6818C184.511 21.2003 185.148 20.2408 186.306 20.2408C187.504 20.2408 188.121 21.2599 188.121 22.6818C188.121 24.1136 187.494 25.1577 186.306 25.1577C185.158 25.1577 184.511 24.1634 184.511 22.6818ZM194.938 26.5H201.918V24.9588H197.483V24.8892L199.238 23.1044C201.217 21.2053 201.764 20.2805 201.764 19.1321C201.764 17.4268 200.377 16.179 198.329 16.179C196.31 16.179 194.878 17.4318 194.878 19.3658H196.633C196.633 18.3267 197.29 17.6754 198.304 17.6754C199.273 17.6754 199.994 18.267 199.994 19.2266C199.994 20.0767 199.477 20.6832 198.473 21.7024L194.938 25.1676V26.5Z" fill="#111928"/>
5
- <path d="M297.057 17.8643H300.204V26.5H302.033V17.8643H305.18V16.3182H297.057V17.8643ZM307.825 26.6541C309.023 26.6541 309.739 26.0923 310.067 25.451H310.127V26.5H311.857V21.3892C311.857 19.3707 310.212 18.7642 308.755 18.7642C307.149 18.7642 305.916 19.4801 305.518 20.8722L307.199 21.1108C307.378 20.5888 307.885 20.1413 308.765 20.1413C309.6 20.1413 310.058 20.5689 310.058 21.3196V21.3494C310.058 21.8665 309.516 21.8913 308.168 22.0355C306.687 22.1946 305.27 22.6371 305.27 24.3572C305.27 25.8587 306.369 26.6541 307.825 26.6541ZM308.293 25.3317C307.542 25.3317 307.005 24.9886 307.005 24.3274C307.005 23.6364 307.607 23.348 308.412 23.2337C308.884 23.169 309.829 23.0497 310.062 22.8608V23.7607C310.062 24.6108 309.376 25.3317 308.293 25.3317ZM313.746 26.5H315.516V25.2969H315.621C315.904 25.8537 316.496 26.6342 317.808 26.6342C319.608 26.6342 320.955 25.2074 320.955 22.6918C320.955 20.1463 319.568 18.7642 317.803 18.7642C316.456 18.7642 315.894 19.5746 315.621 20.1264H315.546V16.3182H313.746V26.5ZM315.511 22.6818C315.511 21.2003 316.148 20.2408 317.306 20.2408C318.504 20.2408 319.121 21.2599 319.121 22.6818C319.121 24.1136 318.494 25.1577 317.306 25.1577C316.158 25.1577 315.511 24.1634 315.511 22.6818ZM329.592 26.6392C331.77 26.6392 333.356 25.3913 333.351 23.6712C333.356 22.3984 332.56 21.4837 331.133 21.2798V21.2003C332.237 20.9616 332.978 20.1413 332.973 18.9979C332.978 17.4467 331.655 16.179 329.622 16.179C327.643 16.179 326.112 17.3572 326.072 19.0625H327.847C327.877 18.2074 328.672 17.6754 329.612 17.6754C330.562 17.6754 331.193 18.2521 331.188 19.1072C331.193 19.9972 330.457 20.5888 329.403 20.5888H328.503V22.0107H329.403C330.691 22.0107 331.456 22.657 331.452 23.5767C331.456 24.4766 330.676 25.093 329.587 25.093C328.563 25.093 327.773 24.5611 327.728 23.7308H325.858C325.908 25.451 327.444 26.6392 329.592 26.6392Z" fill="#111928"/>
6
- <rect y="66" width="376" height="12" rx="3" fill="#E5E7EB"/>
7
- <rect y="90" width="376" height="12" rx="3" fill="#E5E7EB"/>
8
- <rect y="114" width="376" height="12" rx="3" fill="#E5E7EB"/>
9
- <rect y="138" width="181" height="12" rx="3" fill="#E5E7EB"/>
10
- </svg>
@@ -1,11 +0,0 @@
1
- <svg width="350" height="230" viewBox="0 0 350 230" fill="none" xmlns="http://www.w3.org/2000/svg">
2
- <path d="M78.7884 97H72.8565L81.8949 70.8182H89.0284L98.054 97H92.1222L85.5639 76.8011H85.3594L78.7884 97ZM78.4176 86.7088H92.429V91.0298H78.4176V86.7088ZM106.702 97.3707C105.45 97.3707 104.333 97.1534 103.353 96.7188C102.373 96.2756 101.597 95.6236 101.026 94.7628C100.464 93.8935 100.183 92.8111 100.183 91.5156C100.183 90.4247 100.383 89.5085 100.783 88.767C101.184 88.0256 101.729 87.429 102.42 86.9773C103.11 86.5256 103.894 86.1847 104.772 85.9545C105.658 85.7244 106.587 85.5625 107.559 85.4688C108.701 85.3494 109.621 85.2386 110.32 85.1364C111.019 85.0256 111.526 84.8636 111.842 84.6506C112.157 84.4375 112.315 84.1222 112.315 83.7045V83.6278C112.315 82.8182 112.059 82.1918 111.548 81.7486C111.045 81.3054 110.329 81.0838 109.4 81.0838C108.42 81.0838 107.64 81.3011 107.06 81.7358C106.481 82.1619 106.097 82.6989 105.91 83.3466L100.873 82.9375C101.129 81.7443 101.631 80.7131 102.381 79.8438C103.131 78.9659 104.099 78.2926 105.283 77.8239C106.477 77.3466 107.857 77.108 109.425 77.108C110.516 77.108 111.56 77.2358 112.558 77.4915C113.563 77.7472 114.454 78.1435 115.229 78.6804C116.013 79.2173 116.631 79.9077 117.083 80.7514C117.535 81.5866 117.761 82.5881 117.761 83.7557V97H112.596V94.277H112.442C112.127 94.8906 111.705 95.4318 111.177 95.9006C110.648 96.3608 110.013 96.723 109.272 96.9872C108.531 97.2429 107.674 97.3707 106.702 97.3707ZM108.262 93.6122C109.063 93.6122 109.771 93.4545 110.384 93.1392C110.998 92.8153 111.479 92.3807 111.829 91.8352C112.178 91.2898 112.353 90.6719 112.353 89.9815V87.8977C112.183 88.0085 111.948 88.1108 111.65 88.2045C111.36 88.2898 111.032 88.3707 110.665 88.4474C110.299 88.5156 109.933 88.5795 109.566 88.6392C109.2 88.6903 108.867 88.7372 108.569 88.7798C107.93 88.8736 107.371 89.0227 106.894 89.2273C106.417 89.4318 106.046 89.7088 105.782 90.0582C105.518 90.3991 105.386 90.8253 105.386 91.3366C105.386 92.0781 105.654 92.6449 106.191 93.0369C106.737 93.4205 107.427 93.6122 108.262 93.6122Z" fill="#9CA3AF"/>
3
- <rect x="141" y="55" width="146" height="8" rx="3" fill="#4B5563"/>
4
- <rect x="148" y="71" width="139" height="8" rx="3" fill="#4B5563"/>
5
- <rect x="146" y="87" width="141" height="8" rx="3" fill="#4B5563"/>
6
- <rect x="136" y="103" width="151" height="8" rx="3" fill="#4B5563"/>
7
- <rect x="63" y="119" width="224" height="8" rx="3" fill="#4B5563"/>
8
- <rect x="63" y="135" width="224" height="8" rx="3" fill="#4B5563"/>
9
- <rect x="63" y="151" width="224" height="8" rx="3" fill="#4B5563"/>
10
- <rect x="63" y="167" width="224" height="8" rx="3" fill="#4B5563"/>
11
- </svg>
@@ -1,11 +0,0 @@
1
- <svg width="350" height="230" viewBox="0 0 350 230" fill="none" xmlns="http://www.w3.org/2000/svg">
2
- <path d="M78.7884 97H72.8565L81.8949 70.8182H89.0284L98.054 97H92.1222L85.5639 76.8011H85.3594L78.7884 97ZM78.4176 86.7088H92.429V91.0298H78.4176V86.7088ZM106.702 97.3707C105.45 97.3707 104.333 97.1534 103.353 96.7188C102.373 96.2756 101.597 95.6236 101.026 94.7628C100.464 93.8935 100.183 92.8111 100.183 91.5156C100.183 90.4247 100.383 89.5085 100.783 88.767C101.184 88.0256 101.729 87.429 102.42 86.9773C103.11 86.5256 103.894 86.1847 104.772 85.9545C105.658 85.7244 106.587 85.5625 107.559 85.4688C108.701 85.3494 109.621 85.2386 110.32 85.1364C111.019 85.0256 111.526 84.8636 111.842 84.6506C112.157 84.4375 112.315 84.1222 112.315 83.7045V83.6278C112.315 82.8182 112.059 82.1918 111.548 81.7486C111.045 81.3054 110.329 81.0838 109.4 81.0838C108.42 81.0838 107.64 81.3011 107.06 81.7358C106.481 82.1619 106.097 82.6989 105.91 83.3466L100.873 82.9375C101.129 81.7443 101.631 80.7131 102.381 79.8438C103.131 78.9659 104.099 78.2926 105.283 77.8239C106.477 77.3466 107.857 77.108 109.425 77.108C110.516 77.108 111.56 77.2358 112.558 77.4915C113.563 77.7472 114.454 78.1435 115.229 78.6804C116.013 79.2173 116.631 79.9077 117.083 80.7514C117.535 81.5866 117.761 82.5881 117.761 83.7557V97H112.596V94.277H112.442C112.127 94.8906 111.705 95.4318 111.177 95.9006C110.648 96.3608 110.013 96.723 109.272 96.9872C108.531 97.2429 107.674 97.3707 106.702 97.3707ZM108.262 93.6122C109.063 93.6122 109.771 93.4545 110.384 93.1392C110.998 92.8153 111.479 92.3807 111.829 91.8352C112.178 91.2898 112.353 90.6719 112.353 89.9815V87.8977C112.183 88.0085 111.948 88.1108 111.65 88.2045C111.36 88.2898 111.032 88.3707 110.665 88.4474C110.299 88.5156 109.933 88.5795 109.566 88.6392C109.2 88.6903 108.867 88.7372 108.569 88.7798C107.93 88.8736 107.371 89.0227 106.894 89.2273C106.417 89.4318 106.046 89.7088 105.782 90.0582C105.518 90.3991 105.386 90.8253 105.386 91.3366C105.386 92.0781 105.654 92.6449 106.191 93.0369C106.737 93.4205 107.427 93.6122 108.262 93.6122Z" fill="#6B7280"/>
3
- <rect x="141" y="55" width="146" height="8" rx="3" fill="#E5E7EB"/>
4
- <rect x="148" y="71" width="139" height="8" rx="3" fill="#E5E7EB"/>
5
- <rect x="146" y="87" width="141" height="8" rx="3" fill="#E5E7EB"/>
6
- <rect x="136" y="103" width="151" height="8" rx="3" fill="#E5E7EB"/>
7
- <rect x="63" y="119" width="224" height="8" rx="3" fill="#E5E7EB"/>
8
- <rect x="63" y="135" width="224" height="8" rx="3" fill="#E5E7EB"/>
9
- <rect x="63" y="151" width="224" height="8" rx="3" fill="#E5E7EB"/>
10
- <rect x="63" y="167" width="224" height="8" rx="3" fill="#E5E7EB"/>
11
- </svg>
@@ -1,16 +0,0 @@
1
- <svg width="410" height="240" viewBox="0 0 410 240" fill="none" xmlns="http://www.w3.org/2000/svg">
2
- <path d="M31 40.5C31 36.0817 34.5817 32.5 39 32.5H371C375.418 32.5 379 36.0817 379 40.5V68.5H31V40.5Z" fill="#374151"/>
3
- <path fill-rule="evenodd" clip-rule="evenodd" d="M53.3999 45.7C52.7634 45.7 52.1529 45.9529 51.7028 46.4029C51.2528 46.853 50.9999 47.4635 50.9999 48.1V51.3C50.9999 52.3609 51.4213 53.3783 52.1715 54.1284C52.9216 54.8786 53.939 55.3 54.9999 55.3C56.0608 55.3 57.0782 54.8786 57.8283 54.1284C58.5785 53.3783 58.9999 52.3609 58.9999 51.3V48.1C58.9999 47.8878 59.0842 47.6843 59.2342 47.5343C59.3842 47.3843 59.5877 47.3 59.7999 47.3C60.0121 47.3 60.2156 47.3843 60.3656 47.5343C60.5156 47.6843 60.5999 47.8878 60.5999 48.1V51.3C60.5999 52.0354 60.4551 52.7636 60.1736 53.443C59.8922 54.1225 59.4797 54.7398 58.9597 55.2598C58.4397 55.7798 57.8224 56.1923 57.1429 56.4737C56.4635 56.7552 55.7353 56.9 54.9999 56.9C54.2645 56.9 53.5363 56.7552 52.8569 56.4737C52.1775 56.1923 51.5601 55.7798 51.0401 55.2598C50.5201 54.7398 50.1076 54.1225 49.8262 53.443C49.5448 52.7636 49.3999 52.0354 49.3999 51.3V48.1C49.3999 47.0391 49.8213 46.0217 50.5715 45.2716C51.3216 44.5214 52.339 44.1 53.3999 44.1C54.4608 44.1 55.4782 44.5214 56.2283 45.2716C56.9785 46.0217 57.3999 47.0391 57.3999 48.1V51.3C57.3999 51.9365 57.147 52.547 56.697 52.9971C56.2469 53.4471 55.6364 53.7 54.9999 53.7C54.3634 53.7 53.7529 53.4471 53.3028 52.9971C52.8528 52.547 52.5999 51.9365 52.5999 51.3V48.1C52.5999 47.8878 52.6842 47.6843 52.8342 47.5343C52.9842 47.3843 53.1877 47.3 53.3999 47.3C53.6121 47.3 53.8156 47.3843 53.9656 47.5343C54.1156 47.6843 54.1999 47.8878 54.1999 48.1V51.3C54.1999 51.5122 54.2842 51.7157 54.4342 51.8657C54.5842 52.0157 54.7877 52.1 54.9999 52.1C55.2121 52.1 55.4156 52.0157 55.5656 51.8657C55.7156 51.7157 55.7999 51.5122 55.7999 51.3V48.1C55.7999 47.4635 55.547 46.853 55.097 46.4029C54.6469 45.9529 54.0364 45.7 53.3999 45.7Z" fill="#9CA3AF"/>
4
- <path fill-rule="evenodd" clip-rule="evenodd" d="M82.0401 45.74C83.0903 44.6897 84.5148 44.0997 86.0001 44.0997C87.4854 44.0997 88.9098 44.6897 89.9601 45.74C91.0103 46.7902 91.6003 48.2147 91.6003 49.7C91.6003 51.1853 91.0103 52.6097 89.9601 53.66L86.0001 57.62L82.0401 53.66C81.52 53.14 81.1074 52.5226 80.826 51.8431C80.5445 51.1637 80.3997 50.4354 80.3997 49.7C80.3997 48.9645 80.5445 48.2363 80.826 47.5568C81.1074 46.8774 81.52 46.26 82.0401 45.74ZM86.0001 51.3C86.4244 51.3 86.8314 51.1314 87.1314 50.8314C87.4315 50.5313 87.6001 50.1243 87.6001 49.7C87.6001 49.2756 87.4315 48.8687 87.1314 48.5686C86.8314 48.2686 86.4244 48.1 86.0001 48.1C85.5757 48.1 85.1687 48.2686 84.8687 48.5686C84.5686 48.8687 84.4001 49.2756 84.4001 49.7C84.4001 50.1243 84.5686 50.5313 84.8687 50.8314C85.1687 51.1314 85.5757 51.3 86.0001 51.3Z" fill="#9CA3AF"/>
5
- <path fill-rule="evenodd" clip-rule="evenodd" d="M112.2 44.9C111.776 44.9 111.369 45.0686 111.069 45.3686C110.769 45.6687 110.6 46.0756 110.6 46.5V54.5C110.6 54.9243 110.769 55.3313 111.069 55.6314C111.369 55.9314 111.776 56.1 112.2 56.1H121.8C122.224 56.1 122.631 55.9314 122.931 55.6314C123.232 55.3313 123.4 54.9243 123.4 54.5V46.5C123.4 46.0756 123.232 45.6687 122.931 45.3686C122.631 45.0686 122.224 44.9 121.8 44.9H112.2ZM121.8 54.5H112.2L115.4 48.1L117.8 52.9L119.4 49.7L121.8 54.5Z" fill="#9CA3AF"/>
6
- <path d="M142.024 50.5L142.378 50.1465L144.212 48.3121C144.212 48.3121 144.212 48.3121 144.212 48.3121C144.268 48.2558 144.3 48.1795 144.3 48.1C144.3 48.0205 144.268 47.9443 144.212 47.888C144.212 47.888 144.212 47.8879 144.212 47.8879M142.024 50.5L144.212 47.8879M142.024 50.5L142.378 50.8536L144.212 52.688L144.212 52.688L144.218 52.6941C144.247 52.7217 144.27 52.7548 144.285 52.7914C144.301 52.828 144.309 52.8674 144.31 52.9072C144.31 52.9471 144.302 52.9866 144.287 53.0234C144.272 53.0603 144.25 53.0938 144.222 53.122C144.194 53.1501 144.16 53.1724 144.123 53.1875C144.086 53.2026 144.047 53.2102 144.007 53.2098C143.967 53.2095 143.928 53.2012 143.891 53.1855C143.855 53.1698 143.822 53.1469 143.794 53.1183L143.794 53.1182L143.788 53.1121L141.388 50.7121C141.332 50.6559 141.3 50.5796 141.3 50.5C141.3 50.4205 141.332 50.3442 141.388 50.288C141.388 50.2879 141.388 50.2879 141.388 50.2879L143.788 47.888M142.024 50.5L143.788 47.888M144.212 47.8879C144.156 47.8317 144.079 47.8002 144 47.8002C143.92 47.8002 143.844 47.8318 143.788 47.888M144.212 47.8879L143.788 47.888M143.788 47.888L143.788 47.888M143.788 47.888L143.788 47.888M152.212 53.112L152.212 53.1121L154.612 50.7121C154.612 50.7121 154.612 50.7121 154.612 50.7121C154.668 50.6558 154.7 50.5795 154.7 50.5C154.7 50.4205 154.668 50.3442 154.612 50.288L152.212 53.112ZM152.212 53.112L152.206 53.1183C152.178 53.1469 152.145 53.1698 152.108 53.1855L152.306 53.6449L152.108 53.1855C152.072 53.2012 152.032 53.2095 151.993 53.2098C151.953 53.2102 151.913 53.2026 151.876 53.1875C151.84 53.1724 151.806 53.1501 151.778 53.122C151.75 53.0938 151.727 53.0603 151.712 53.0234L151.25 53.2128L151.712 53.0234C151.697 52.9866 151.69 52.9471 151.69 52.9072C151.69 52.8674 151.699 52.828 151.714 52.7914C151.73 52.7548 151.753 52.7217 151.782 52.6941L151.782 52.6941L151.788 52.688L153.622 50.8536L153.976 50.5L153.622 50.1465L151.788 48.3121C151.788 48.3121 151.788 48.3121 151.788 48.3121C151.732 48.2558 151.7 48.1795 151.7 48.1C151.7 48.0205 151.732 47.9443 151.788 47.888C151.844 47.8318 151.92 47.8002 152 47.8002C152.079 47.8002 152.156 47.8318 152.212 47.888C152.212 47.888 152.212 47.888 152.212 47.888L154.612 50.2879L152.212 53.112ZM149.695 45.4152L149.695 45.4152C149.732 45.4277 149.767 45.4474 149.797 45.4732C149.826 45.499 149.851 45.5304 149.868 45.5656C149.886 45.6009 149.897 45.6393 149.899 45.6786C149.902 45.7179 149.897 45.7574 149.885 45.7947L146.685 55.3947L146.685 55.3948C146.66 55.4704 146.605 55.5328 146.534 55.5685C146.463 55.6041 146.381 55.61 146.305 55.5848L146.147 56.0592L146.305 55.5848C146.23 55.5597 146.167 55.5055 146.131 55.4343C146.096 55.3632 146.09 55.2808 146.115 55.2053C146.115 55.2053 146.115 55.2052 146.115 55.2052L149.315 45.6053L149.315 45.6051C149.328 45.5677 149.347 45.5331 149.373 45.5033C149.399 45.4735 149.43 45.4491 149.466 45.4315C149.501 45.4139 149.539 45.4033 149.578 45.4005C149.618 45.3977 149.657 45.4027 149.695 45.4152Z" fill="#9CA3AF" stroke="#9CA3AF"/>
7
- <path fill-rule="evenodd" clip-rule="evenodd" d="M179 56.9C180.697 56.9 182.325 56.2257 183.526 55.0255C184.726 53.8253 185.4 52.1974 185.4 50.5C185.4 48.8026 184.726 47.1748 183.526 45.9745C182.325 44.7743 180.697 44.1 179 44.1C177.303 44.1 175.675 44.7743 174.475 45.9745C173.274 47.1748 172.6 48.8026 172.6 50.5C172.6 52.1974 173.274 53.8253 174.475 55.0255C175.675 56.2257 177.303 56.9 179 56.9ZM176.6 49.7C176.812 49.7 177.016 49.6157 177.166 49.4657C177.316 49.3157 177.4 49.1122 177.4 48.9C177.4 48.6878 177.316 48.4843 177.166 48.3343C177.016 48.1843 176.812 48.1 176.6 48.1C176.388 48.1 176.184 48.1843 176.034 48.3343C175.884 48.4843 175.8 48.6878 175.8 48.9C175.8 49.1122 175.884 49.3157 176.034 49.4657C176.184 49.6157 176.388 49.7 176.6 49.7ZM182.2 48.9C182.2 49.1122 182.116 49.3157 181.966 49.4657C181.816 49.6157 181.612 49.7 181.4 49.7C181.188 49.7 180.984 49.6157 180.834 49.4657C180.684 49.3157 180.6 49.1122 180.6 48.9C180.6 48.6878 180.684 48.4843 180.834 48.3343C180.984 48.1843 181.188 48.1 181.4 48.1C181.612 48.1 181.816 48.1843 181.966 48.3343C182.116 48.4843 182.2 48.6878 182.2 48.9ZM181.829 53.328C181.903 53.2537 181.962 53.1654 182.002 53.0684C182.042 52.9713 182.063 52.8672 182.063 52.7621C182.063 52.657 182.042 52.553 182.002 52.4559C181.962 52.3589 181.903 52.2707 181.828 52.1964C181.754 52.1221 181.666 52.0632 181.569 52.023C181.472 51.9829 181.368 51.9622 181.263 51.9622C181.158 51.9623 181.053 51.983 180.956 52.0233C180.859 52.0635 180.771 52.1225 180.697 52.1968C180.247 52.6467 179.636 52.8995 179 52.8995C178.364 52.8995 177.753 52.6467 177.303 52.1968C177.153 52.0467 176.95 51.9623 176.738 51.9622C176.525 51.9622 176.322 52.0464 176.172 52.1964C176.022 52.3464 175.937 52.5499 175.937 52.7621C175.937 52.9743 176.021 53.1779 176.171 53.328C176.543 53.6996 176.984 53.9943 177.469 54.1954C177.954 54.3965 178.475 54.5 179 54.5C179.525 54.5 180.046 54.3965 180.531 54.1954C181.016 53.9943 181.457 53.6996 181.829 53.328Z" fill="#9CA3AF"/>
8
- <line x1="211.5" y1="42.5" x2="211.5" y2="58.5" stroke="#6B7280"/>
9
- <path d="M237.667 46.5H248.333H237.667ZM237.667 49.1667H248.333H237.667ZM237.667 51.8333H248.333H237.667ZM237.667 54.5H248.333H237.667Z" fill="#9CA3AF"/>
10
- <path d="M237.667 54.5H248.333M237.667 46.5H248.333H237.667ZM237.667 49.1667H248.333H237.667ZM237.667 51.8333H248.333H237.667Z" stroke="#9CA3AF" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
11
- <path fill-rule="evenodd" clip-rule="evenodd" d="M275.192 45.036C274.888 43.788 273.112 43.788 272.808 45.036C272.763 45.2235 272.673 45.3977 272.548 45.5443C272.423 45.691 272.264 45.8059 272.086 45.8798C271.908 45.9537 271.715 45.9845 271.522 45.9697C271.33 45.9548 271.144 45.8948 270.979 45.7944C269.881 45.1256 268.625 46.3816 269.294 47.4792C269.726 48.188 269.343 49.1128 268.537 49.3088C267.288 49.612 267.288 51.3888 268.537 51.6912C268.724 51.7367 268.898 51.8258 269.045 51.9513C269.192 52.0768 269.307 52.2351 269.38 52.4135C269.454 52.5918 269.485 52.785 269.47 52.9775C269.455 53.1699 269.395 53.3561 269.294 53.5208C268.625 54.6184 269.881 55.8744 270.979 55.2056C271.144 55.1051 271.33 55.0448 271.522 55.0299C271.715 55.0149 271.908 55.0456 272.086 55.1194C272.265 55.1933 272.423 55.3082 272.549 55.4548C272.674 55.6014 272.763 55.7756 272.809 55.9632C273.112 57.212 274.889 57.212 275.191 55.9632C275.237 55.7757 275.326 55.6016 275.451 55.4551C275.577 55.3086 275.735 55.1937 275.914 55.1199C276.092 55.0461 276.285 55.0154 276.477 55.0303C276.67 55.0452 276.856 55.1052 277.021 55.2056C278.118 55.8744 279.374 54.6184 278.705 53.5208C278.605 53.356 278.545 53.1699 278.53 52.9775C278.515 52.7851 278.546 52.5919 278.62 52.4137C278.694 52.2354 278.808 52.0771 278.955 51.9515C279.102 51.826 279.276 51.7368 279.463 51.6912C280.712 51.388 280.712 49.6112 279.463 49.3088C279.276 49.2634 279.101 49.1743 278.955 49.0487C278.808 48.9232 278.693 48.7649 278.619 48.5865C278.545 48.4082 278.515 48.215 278.53 48.0226C278.545 47.8301 278.605 47.644 278.705 47.4792C279.374 46.3816 278.118 45.1256 277.021 45.7944C276.856 45.895 276.67 45.9552 276.477 45.9701C276.285 45.9851 276.092 45.9544 275.913 45.8806C275.735 45.8068 275.577 45.6918 275.451 45.5452C275.326 45.3986 275.237 45.2244 275.191 45.0368L275.192 45.036ZM274 52.9C274.636 52.9 275.247 52.6472 275.697 52.1971C276.147 51.747 276.4 51.1365 276.4 50.5C276.4 49.8635 276.147 49.253 275.697 48.8029C275.247 48.3529 274.636 48.1 274 48.1C273.363 48.1 272.753 48.3529 272.303 48.8029C271.853 49.253 271.6 49.8635 271.6 50.5C271.6 51.1365 271.853 51.747 272.303 52.1971C272.753 52.6472 273.363 52.9 274 52.9Z" fill="#9CA3AF"/>
12
- <line x1="31" y1="68" x2="379" y2="68" stroke="#4B5563"/>
13
- <path d="M31 68.5H379V199.5C379 203.918 375.418 207.5 371 207.5H39C34.5817 207.5 31 203.918 31 199.5V68.5Z" fill="#1F2A37"/>
14
- <rect x="51" y="86.5" width="134.388" height="6" rx="2" fill="#6B7280"/>
15
- <rect x="30.5" y="32" width="349" height="176" rx="8.5" stroke="#4B5563"/>
16
- </svg>
@@ -1,16 +0,0 @@
1
- <svg width="350" height="178" viewBox="0 0 350 178" fill="none" xmlns="http://www.w3.org/2000/svg">
2
- <path d="M1 9.5C1 5.08172 4.58172 1.5 9 1.5H341C345.418 1.5 349 5.08172 349 9.5V37.5H1V9.5Z" fill="#F9FAFB"/>
3
- <path fill-rule="evenodd" clip-rule="evenodd" d="M23.3999 14.7C22.7634 14.7 22.1529 14.9529 21.7028 15.4029C21.2528 15.853 20.9999 16.4635 20.9999 17.1V20.3C20.9999 21.3609 21.4213 22.3783 22.1715 23.1284C22.9216 23.8786 23.939 24.3 24.9999 24.3C26.0608 24.3 27.0782 23.8786 27.8283 23.1284C28.5785 22.3783 28.9999 21.3609 28.9999 20.3V17.1C28.9999 16.8878 29.0842 16.6843 29.2342 16.5343C29.3842 16.3843 29.5877 16.3 29.7999 16.3C30.0121 16.3 30.2156 16.3843 30.3656 16.5343C30.5156 16.6843 30.5999 16.8878 30.5999 17.1V20.3C30.5999 21.0354 30.4551 21.7636 30.1736 22.443C29.8922 23.1225 29.4797 23.7398 28.9597 24.2598C28.4397 24.7798 27.8224 25.1923 27.1429 25.4737C26.4635 25.7552 25.7353 25.9 24.9999 25.9C24.2645 25.9 23.5363 25.7552 22.8569 25.4737C22.1775 25.1923 21.5601 24.7798 21.0401 24.2598C20.5201 23.7398 20.1076 23.1225 19.8262 22.443C19.5448 21.7636 19.3999 21.0354 19.3999 20.3V17.1C19.3999 16.0391 19.8213 15.0217 20.5715 14.2716C21.3216 13.5214 22.339 13.1 23.3999 13.1C24.4608 13.1 25.4782 13.5214 26.2283 14.2716C26.9785 15.0217 27.3999 16.0391 27.3999 17.1V20.3C27.3999 20.9365 27.147 21.547 26.697 21.9971C26.2469 22.4471 25.6364 22.7 24.9999 22.7C24.3634 22.7 23.7529 22.4471 23.3028 21.9971C22.8528 21.547 22.5999 20.9365 22.5999 20.3V17.1C22.5999 16.8878 22.6842 16.6843 22.8342 16.5343C22.9842 16.3843 23.1877 16.3 23.3999 16.3C23.6121 16.3 23.8156 16.3843 23.9656 16.5343C24.1156 16.6843 24.1999 16.8878 24.1999 17.1V20.3C24.1999 20.5122 24.2842 20.7157 24.4342 20.8657C24.5842 21.0157 24.7877 21.1 24.9999 21.1C25.2121 21.1 25.4156 21.0157 25.5656 20.8657C25.7156 20.7157 25.7999 20.5122 25.7999 20.3V17.1C25.7999 16.4635 25.547 15.853 25.097 15.4029C24.6469 14.9529 24.0364 14.7 23.3999 14.7V14.7Z" fill="#6B7280"/>
4
- <path fill-rule="evenodd" clip-rule="evenodd" d="M52.0401 14.74C53.0903 13.6897 54.5148 13.0997 56.0001 13.0997C57.4854 13.0997 58.9098 13.6897 59.9601 14.74C61.0103 15.7902 61.6003 17.2147 61.6003 18.7C61.6003 20.1853 61.0103 21.6097 59.9601 22.66L56.0001 26.62L52.0401 22.66C51.52 22.14 51.1074 21.5226 50.826 20.8431C50.5445 20.1637 50.3997 19.4354 50.3997 18.7C50.3997 17.9645 50.5445 17.2363 50.826 16.5568C51.1074 15.8774 51.52 15.26 52.0401 14.74V14.74ZM56.0001 20.3C56.4244 20.3 56.8314 20.1314 57.1314 19.8314C57.4315 19.5313 57.6001 19.1243 57.6001 18.7C57.6001 18.2756 57.4315 17.8687 57.1314 17.5686C56.8314 17.2686 56.4244 17.1 56.0001 17.1C55.5757 17.1 55.1687 17.2686 54.8687 17.5686C54.5686 17.8687 54.4001 18.2756 54.4001 18.7C54.4001 19.1243 54.5686 19.5313 54.8687 19.8314C55.1687 20.1314 55.5757 20.3 56.0001 20.3Z" fill="#6B7280"/>
5
- <path fill-rule="evenodd" clip-rule="evenodd" d="M82.2001 13.9C81.7758 13.9 81.3688 14.0686 81.0687 14.3686C80.7687 14.6687 80.6001 15.0756 80.6001 15.5V23.5C80.6001 23.9243 80.7687 24.3313 81.0687 24.6314C81.3688 24.9314 81.7758 25.1 82.2001 25.1H91.8001C92.2244 25.1 92.6314 24.9314 92.9315 24.6314C93.2315 24.3313 93.4001 23.9243 93.4001 23.5V15.5C93.4001 15.0756 93.2315 14.6687 92.9315 14.3686C92.6314 14.0686 92.2244 13.9 91.8001 13.9H82.2001ZM91.8001 23.5H82.2001L85.4001 17.1L87.8001 21.9L89.4001 18.7L91.8001 23.5Z" fill="#6B7280"/>
6
- <path d="M114.212 16.888C114.156 16.8318 114.079 16.8002 114 16.8002C113.92 16.8002 113.844 16.8318 113.788 16.888L113.788 16.888M114.212 16.888L113.434 16.5344L113.788 16.888M114.212 16.888C114.268 16.9443 114.3 17.0205 114.3 17.1C114.3 17.1795 114.268 17.2558 114.212 17.3121C114.212 17.3121 114.212 17.3121 114.212 17.3121L112.378 19.1465L112.024 19.5L112.378 19.8536L114.212 21.688L114.212 21.688L114.218 21.6941C114.247 21.7217 114.27 21.7548 114.285 21.7914C114.301 21.828 114.309 21.8674 114.31 21.9072C114.31 21.9471 114.302 21.9866 114.287 22.0234C114.272 22.0603 114.25 22.0938 114.222 22.122C114.194 22.1501 114.16 22.1724 114.123 22.1875C114.086 22.2026 114.047 22.2102 114.007 22.2098C113.967 22.2095 113.928 22.2012 113.891 22.1855C113.855 22.1698 113.822 22.1469 113.794 22.1183L113.794 22.1182L113.788 22.1121L111.388 19.7121L111.034 20.0656L111.388 19.7121C111.332 19.6558 111.3 19.5795 111.3 19.5C111.3 19.4205 111.332 19.3442 111.388 19.288L114.212 16.888ZM113.788 16.888L111.388 19.2879L113.788 16.888ZM122.212 22.112L122.212 22.1121L124.612 19.7121C124.612 19.7121 124.612 19.7121 124.612 19.7121C124.668 19.6558 124.7 19.5795 124.7 19.5C124.7 19.4205 124.668 19.3442 124.612 19.288L124.612 19.2879M122.212 22.112L124.965 18.9344L124.612 19.2879M122.212 22.112L122.206 22.1183C122.178 22.1469 122.145 22.1698 122.108 22.1855C122.072 22.2012 122.032 22.2095 121.993 22.2098C121.953 22.2102 121.913 22.2026 121.876 22.1875C121.84 22.1724 121.806 22.1501 121.778 22.122C121.75 22.0938 121.727 22.0603 121.712 22.0234C121.697 21.9866 121.69 21.9471 121.69 21.9072C121.69 21.8674 121.699 21.828 121.714 21.7914C121.73 21.7548 121.753 21.7217 121.782 21.6941L121.782 21.6941L121.788 21.688L123.622 19.8536L123.976 19.5L123.622 19.1465L121.788 17.3121L122.212 22.112ZM124.612 19.2879L122.212 16.888L124.612 19.2879ZM121.788 16.888C121.788 16.888 121.788 16.8879 121.788 16.8879C121.844 16.8317 121.92 16.8002 122 16.8002C122.079 16.8002 122.156 16.8318 122.212 16.888L121.434 17.6656C121.284 17.5156 121.2 17.3121 121.2 17.1C121.2 16.8879 121.284 16.6844 121.434 16.5344L121.788 16.888ZM121.788 16.888C121.732 16.9443 121.7 17.0205 121.7 17.1C121.7 17.1795 121.732 17.2558 121.788 17.3121L121.788 16.888ZM116.685 24.3947L116.685 24.3948C116.66 24.4704 116.605 24.5328 116.534 24.5685C116.463 24.6041 116.381 24.61 116.305 24.5848C116.23 24.5597 116.167 24.5055 116.131 24.4343C116.096 24.3631 116.09 24.2807 116.115 24.2052L119.315 14.6053L119.315 14.6051C119.328 14.5677 119.347 14.5331 119.373 14.5033C119.399 14.4735 119.43 14.4491 119.466 14.4315C119.501 14.4139 119.539 14.4033 119.578 14.4005C119.618 14.3977 119.657 14.4027 119.695 14.4152L119.852 13.9418L119.695 14.4152C119.732 14.4277 119.767 14.4474 119.797 14.4732C119.826 14.499 119.851 14.5304 119.868 14.5656C119.886 14.6009 119.897 14.6393 119.899 14.6786C119.902 14.7179 119.897 14.7574 119.885 14.7947L116.685 24.3947Z" fill="#6B7280" stroke="#6B7280"/>
7
- <path fill-rule="evenodd" clip-rule="evenodd" d="M149 25.9C150.697 25.9 152.325 25.2257 153.526 24.0255C154.726 22.8253 155.4 21.1974 155.4 19.5C155.4 17.8026 154.726 16.1748 153.526 14.9745C152.325 13.7743 150.697 13.1 149 13.1C147.303 13.1 145.675 13.7743 144.475 14.9745C143.274 16.1748 142.6 17.8026 142.6 19.5C142.6 21.1974 143.274 22.8253 144.475 24.0255C145.675 25.2257 147.303 25.9 149 25.9V25.9ZM146.6 18.7C146.812 18.7 147.016 18.6157 147.166 18.4657C147.316 18.3157 147.4 18.1122 147.4 17.9C147.4 17.6878 147.316 17.4843 147.166 17.3343C147.016 17.1843 146.812 17.1 146.6 17.1C146.388 17.1 146.184 17.1843 146.034 17.3343C145.884 17.4843 145.8 17.6878 145.8 17.9C145.8 18.1122 145.884 18.3157 146.034 18.4657C146.184 18.6157 146.388 18.7 146.6 18.7ZM152.2 17.9C152.2 18.1122 152.116 18.3157 151.966 18.4657C151.816 18.6157 151.612 18.7 151.4 18.7C151.188 18.7 150.984 18.6157 150.834 18.4657C150.684 18.3157 150.6 18.1122 150.6 17.9C150.6 17.6878 150.684 17.4843 150.834 17.3343C150.984 17.1843 151.188 17.1 151.4 17.1C151.612 17.1 151.816 17.1843 151.966 17.3343C152.116 17.4843 152.2 17.6878 152.2 17.9ZM151.829 22.328C151.903 22.2537 151.962 22.1654 152.002 22.0684C152.042 21.9713 152.063 21.8672 152.063 21.7621C152.063 21.657 152.042 21.553 152.002 21.4559C151.962 21.3589 151.903 21.2707 151.828 21.1964C151.754 21.1221 151.666 21.0632 151.569 21.023C151.472 20.9829 151.368 20.9622 151.263 20.9622C151.158 20.9623 151.053 20.983 150.956 21.0233C150.859 21.0635 150.771 21.1225 150.697 21.1968C150.247 21.6467 149.636 21.8995 149 21.8995C148.364 21.8995 147.753 21.6467 147.303 21.1968C147.153 21.0467 146.95 20.9623 146.738 20.9622C146.525 20.9622 146.322 21.0464 146.172 21.1964C146.022 21.3464 145.937 21.5499 145.937 21.7621C145.937 21.9743 146.021 22.1779 146.171 22.328C146.543 22.6996 146.984 22.9943 147.469 23.1954C147.954 23.3965 148.475 23.5 149 23.5C149.525 23.5 150.046 23.3965 150.531 23.1954C151.016 22.9943 151.457 22.6996 151.829 22.328V22.328Z" fill="#6B7280"/>
8
- <line x1="181.5" y1="11.5" x2="181.5" y2="27.5" stroke="#D1D5DB"/>
9
- <path d="M207.667 15.5H218.333H207.667ZM207.667 18.1667H218.333H207.667ZM207.667 20.8333H218.333H207.667ZM207.667 23.5H218.333Z" fill="#6B7280"/>
10
- <path d="M207.667 23.5H218.333M207.667 15.5H218.333H207.667ZM207.667 18.1667H218.333H207.667ZM207.667 20.8333H218.333H207.667Z" stroke="#6B7280" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
11
- <path fill-rule="evenodd" clip-rule="evenodd" d="M245.192 14.036C244.888 12.788 243.112 12.788 242.808 14.036C242.763 14.2235 242.673 14.3977 242.548 14.5443C242.423 14.691 242.264 14.8059 242.086 14.8798C241.908 14.9537 241.715 14.9845 241.522 14.9697C241.33 14.9548 241.144 14.8948 240.979 14.7944C239.881 14.1256 238.625 15.3816 239.294 16.4792C239.726 17.188 239.343 18.1128 238.537 18.3088C237.288 18.612 237.288 20.3888 238.537 20.6912C238.724 20.7367 238.898 20.8258 239.045 20.9513C239.192 21.0768 239.307 21.2351 239.38 21.4135C239.454 21.5918 239.485 21.785 239.47 21.9775C239.455 22.1699 239.395 22.3561 239.294 22.5208C238.625 23.6184 239.881 24.8744 240.979 24.2056C241.144 24.1051 241.33 24.0448 241.522 24.0299C241.715 24.0149 241.908 24.0456 242.086 24.1194C242.265 24.1933 242.423 24.3082 242.549 24.4548C242.674 24.6014 242.763 24.7756 242.809 24.9632C243.112 26.212 244.889 26.212 245.191 24.9632C245.237 24.7757 245.326 24.6016 245.451 24.4551C245.577 24.3086 245.735 24.1937 245.914 24.1199C246.092 24.0461 246.285 24.0154 246.477 24.0303C246.67 24.0452 246.856 24.1052 247.021 24.2056C248.118 24.8744 249.374 23.6184 248.705 22.5208C248.605 22.356 248.545 22.1699 248.53 21.9775C248.515 21.7851 248.546 21.5919 248.62 21.4137C248.694 21.2354 248.808 21.0771 248.955 20.9515C249.102 20.826 249.276 20.7368 249.463 20.6912C250.712 20.388 250.712 18.6112 249.463 18.3088C249.276 18.2634 249.101 18.1743 248.955 18.0487C248.808 17.9232 248.693 17.7649 248.619 17.5865C248.545 17.4082 248.515 17.215 248.53 17.0226C248.545 16.8301 248.605 16.644 248.705 16.4792C249.374 15.3816 248.118 14.1256 247.021 14.7944C246.856 14.895 246.67 14.9552 246.477 14.9701C246.285 14.9851 246.092 14.9544 245.913 14.8806C245.735 14.8068 245.577 14.6918 245.451 14.5452C245.326 14.3986 245.237 14.2244 245.191 14.0368L245.192 14.036ZM244 21.9C244.636 21.9 245.247 21.6472 245.697 21.1971C246.147 20.747 246.4 20.1365 246.4 19.5C246.4 18.8635 246.147 18.253 245.697 17.8029C245.247 17.3529 244.636 17.1 244 17.1C243.363 17.1 242.753 17.3529 242.303 17.8029C241.853 18.253 241.6 18.8635 241.6 19.5C241.6 20.1365 241.853 20.747 242.303 21.1971C242.753 21.6472 243.363 21.9 244 21.9V21.9Z" fill="#6B7280"/>
12
- <line x1="1" y1="37" x2="349" y2="37" stroke="#D1D5DB"/>
13
- <path d="M1 37.5H349V164.5C349 168.918 345.418 172.5 341 172.5H9C4.58172 172.5 1 168.918 1 164.5V37.5Z" fill="white"/>
14
- <rect x="21" y="55.5" width="134.388" height="6" rx="2" fill="#9CA3AF"/>
15
- <rect x="0.5" y="1" width="349" height="176" rx="8.5" stroke="#D1D5DB"/>
16
- </svg>