flowbite-svelte 0.44.7 → 0.44.9
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.
- package/.env +2 -0
- package/.eslintrc.cjs +20 -0
- package/.github/ISSUE_TEMPLATE/bug_report.yml +33 -0
- package/.github/ISSUE_TEMPLATE/config.yml +5 -0
- package/.github/ISSUE_TEMPLATE/feature_request.md +17 -0
- package/.github/pull_request_template.md +71 -0
- package/.github/workflows/playwright-and-lint.yaml +47 -0
- package/.prettierignore +16 -0
- package/.prettierrc +9 -0
- package/CHANGELOG.md +3858 -0
- package/CONTRIBUTING.md +66 -0
- package/dist/bottom-nav/BottomNavItem.svelte +3 -1
- package/dist/bottom-nav/BottomNavItem.svelte.d.ts +2 -0
- package/dist/bottom-nav/BottomNavItem.svelte.d.ts.map +1 -1
- package/dist/carousels/Carousel.svelte +52 -153
- package/dist/carousels/Carousel.svelte.d.ts +22 -37
- package/dist/carousels/Carousel.svelte.d.ts.map +1 -1
- package/dist/carousels/ControlButton.svelte +31 -0
- package/dist/carousels/ControlButton.svelte.d.ts +29 -0
- package/dist/carousels/ControlButton.svelte.d.ts.map +1 -0
- package/dist/carousels/Controls.svelte +17 -0
- package/dist/carousels/Controls.svelte.d.ts +23 -0
- package/dist/carousels/Controls.svelte.d.ts.map +1 -0
- package/dist/carousels/Indicators.svelte +26 -0
- package/dist/carousels/Indicators.svelte.d.ts +32 -0
- package/dist/carousels/Indicators.svelte.d.ts.map +1 -0
- package/dist/carousels/Thumbnail.svelte +6 -23
- package/dist/carousels/Thumbnail.svelte.d.ts +5 -16
- package/dist/carousels/Thumbnail.svelte.d.ts.map +1 -1
- package/dist/carousels/Thumbnails.svelte +26 -0
- package/dist/carousels/Thumbnails.svelte.d.ts +33 -0
- package/dist/carousels/Thumbnails.svelte.d.ts.map +1 -0
- package/dist/index.d.ts +2 -1
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +3 -1
- package/dist/tables/TableSearch.svelte +2 -2
- package/dist/tables/TableSearch.svelte.d.ts +1 -1
- package/mdsvex.config.js +18 -0
- package/package.json +18 -80
- package/playwright.config.ts +12 -0
- package/postcss.config.cjs +12 -0
- package/src/app.css +45 -0
- package/src/app.d.ts +9 -0
- package/src/app.html +28 -0
- package/src/app.postcss +55 -0
- package/src/hooks.server.js +27 -0
- package/src/lib/accordion/Accordion.svelte +61 -0
- package/src/lib/accordion/AccordionItem.svelte +120 -0
- package/src/lib/alerts/Alert.svelte +60 -0
- package/src/lib/avatar/Avatar.svelte +56 -0
- package/src/lib/avatar/Placeholder.svelte +16 -0
- package/src/lib/badges/Badge.svelte +108 -0
- package/src/lib/banner/Banner.svelte +64 -0
- package/src/lib/bottom-nav/BottomNav.svelte +76 -0
- package/src/lib/bottom-nav/BottomNavHeader.svelte +19 -0
- package/src/lib/bottom-nav/BottomNavHeaderItem.svelte +23 -0
- package/src/lib/bottom-nav/BottomNavItem.svelte +76 -0
- package/src/lib/breadcrumbs/Breadcrumb.svelte +25 -0
- package/src/lib/breadcrumbs/BreadcrumbItem.svelte +51 -0
- package/src/lib/buttongroups/ButtonGroup.svelte +22 -0
- package/src/lib/buttons/Button.svelte +100 -0
- package/src/lib/buttons/GradientButton.svelte +79 -0
- package/src/lib/cards/Card.svelte +70 -0
- package/src/lib/carousels/Carousel.svelte +166 -0
- package/src/lib/carousels/ControlButton.svelte +34 -0
- package/src/lib/carousels/Controls.svelte +21 -0
- package/src/lib/carousels/Indicators.svelte +31 -0
- package/src/lib/carousels/Thumbnail.svelte +20 -0
- package/src/lib/carousels/Thumbnails.svelte +30 -0
- package/src/lib/charts/Chart.svelte +35 -0
- package/src/lib/darkmode/DarkMode.svelte +58 -0
- package/src/lib/datepicker/Calender.svelte +3 -0
- package/src/lib/datepicker/Datepicker.svelte +66 -0
- package/src/lib/device-mockup/Android.svelte +24 -0
- package/src/lib/device-mockup/DefaultMockup.svelte +21 -0
- package/src/lib/device-mockup/DeviceMockup.svelte +235 -0
- package/src/lib/device-mockup/Ios.svelte +21 -0
- package/src/lib/device-mockup/Smartwatch.svelte +15 -0
- package/src/lib/device-mockup/Tablet.svelte +21 -0
- package/src/lib/drawer/Drawer.svelte +87 -0
- package/src/lib/dropdowns/Dropdown.svelte +81 -0
- package/src/lib/dropdowns/DropdownDivider.svelte +13 -0
- package/src/lib/dropdowns/DropdownHeader.svelte +21 -0
- package/src/lib/dropdowns/DropdownItem.svelte +47 -0
- package/src/lib/footer/Footer.svelte +18 -0
- package/src/lib/footer/FooterBrand.svelte +39 -0
- package/src/lib/footer/FooterCopyright.svelte +38 -0
- package/src/lib/footer/FooterIcon.svelte +25 -0
- package/src/lib/footer/FooterLink.svelte +26 -0
- package/src/lib/footer/FooterLinkGroup.svelte +15 -0
- package/src/lib/forms/Checkbox.svelte +70 -0
- package/src/lib/forms/Dropzone.svelte +32 -0
- package/src/lib/forms/Fileupload.svelte +21 -0
- package/src/lib/forms/FloatingLabelInput.svelte +94 -0
- package/src/lib/forms/Helper.svelte +23 -0
- package/src/lib/forms/Input.svelte +83 -0
- package/src/lib/forms/InputAddon.svelte +47 -0
- package/src/lib/forms/Label.svelte +40 -0
- package/src/lib/forms/MultiSelect.svelte +126 -0
- package/src/lib/forms/NumberInput.svelte +16 -0
- package/src/lib/forms/Radio.svelte +53 -0
- package/src/lib/forms/RadioInline.svelte +9 -0
- package/src/lib/forms/Range.svelte +24 -0
- package/src/lib/forms/Search.svelte +44 -0
- package/src/lib/forms/Select.svelte +49 -0
- package/src/lib/forms/Textarea.svelte +51 -0
- package/src/lib/forms/Toggle.svelte +56 -0
- package/src/lib/forms/VoiceSearch.svelte +57 -0
- package/src/lib/gallery/Gallery.svelte +31 -0
- package/src/lib/index.ts +228 -0
- package/src/lib/indicators/Indicator.svelte +86 -0
- package/src/lib/kbd/ArrowKeyDown.svelte +15 -0
- package/src/lib/kbd/ArrowKeyLeft.svelte +15 -0
- package/src/lib/kbd/ArrowKeyRight.svelte +15 -0
- package/src/lib/kbd/ArrowKeyUp.svelte +15 -0
- package/src/lib/kbd/Kbd.svelte +15 -0
- package/src/lib/list-group/Listgroup.svelte +45 -0
- package/src/lib/list-group/ListgroupItem.svelte +57 -0
- package/src/lib/megamenu/MegaMenu.svelte +52 -0
- package/src/lib/modals/Modal.svelte +162 -0
- package/src/lib/navbar/Menu.svelte +38 -0
- package/src/lib/navbar/NavBrand.svelte +15 -0
- package/src/lib/navbar/NavHamburger.svelte +20 -0
- package/src/lib/navbar/NavLi.svelte +37 -0
- package/src/lib/navbar/NavSidebarHamburger.svelte +20 -0
- package/src/lib/navbar/NavUl.svelte +68 -0
- package/src/lib/navbar/Navbar.svelte +42 -0
- package/src/lib/navbar/SidebarMenu.svelte +37 -0
- package/src/lib/paginations/Pagination.svelte +59 -0
- package/src/lib/paginations/PaginationItem.svelte +40 -0
- package/src/lib/popover/Popover.svelte +34 -0
- package/src/lib/progressbars/Progressbar.svelte +52 -0
- package/src/lib/ratings/AdvancedRating.svelte +45 -0
- package/src/lib/ratings/Heart.svelte +39 -0
- package/src/lib/ratings/Rating.svelte +57 -0
- package/src/lib/ratings/RatingComment.svelte +85 -0
- package/src/lib/ratings/Review.svelte +78 -0
- package/src/lib/ratings/ScoreRating.svelte +76 -0
- package/src/lib/ratings/Star.svelte +47 -0
- package/src/lib/ratings/Thumbup.svelte +39 -0
- package/src/lib/sidebars/Sidebar.svelte +40 -0
- package/src/lib/sidebars/SidebarBrand.svelte +24 -0
- package/src/lib/sidebars/SidebarCta.svelte +28 -0
- package/src/lib/sidebars/SidebarDropdownItem.svelte +26 -0
- package/src/lib/sidebars/SidebarDropdownWrapper.svelte +71 -0
- package/src/lib/sidebars/SidebarGroup.svelte +24 -0
- package/src/lib/sidebars/SidebarItem.svelte +49 -0
- package/src/lib/sidebars/SidebarWrapper.svelte +16 -0
- package/src/lib/skeleton/CardPlaceholder.svelte +48 -0
- package/src/lib/skeleton/ImagePlaceholder.svelte +31 -0
- package/src/lib/skeleton/ListPlaceholder.svelte +50 -0
- package/src/lib/skeleton/Skeleton.svelte +38 -0
- package/src/lib/skeleton/TestimonialPlaceholder.svelte +24 -0
- package/src/lib/skeleton/TextPlaceholder.svelte +60 -0
- package/src/lib/skeleton/VideoPlaceholder.svelte +33 -0
- package/src/lib/skeleton/WidgetPlaceholder.svelte +26 -0
- package/src/lib/speed-dial/SpeedDial.svelte +80 -0
- package/src/lib/speed-dial/SpeedDialButton.svelte +49 -0
- package/src/lib/spinners/Spinner.svelte +49 -0
- package/src/lib/steps/StepIndicator.svelte +75 -0
- package/src/lib/tables/Table.svelte +49 -0
- package/src/lib/tables/TableBody.svelte +14 -0
- package/src/lib/tables/TableBodyCell.svelte +22 -0
- package/src/lib/tables/TableBodyRow.svelte +50 -0
- package/src/lib/tables/TableHead.svelte +45 -0
- package/src/lib/tables/TableHeadCell.svelte +15 -0
- package/src/lib/tables/TableSearch.svelte +73 -0
- package/src/lib/tabs/TabItem.svelte +61 -0
- package/src/lib/tabs/Tabs.svelte +78 -0
- package/src/lib/timeline/Activity.svelte +16 -0
- package/src/lib/timeline/ActivityItem.svelte +59 -0
- package/src/lib/timeline/Group.svelte +27 -0
- package/src/lib/timeline/GroupItem.svelte +59 -0
- package/src/lib/timeline/Timeline.svelte +25 -0
- package/src/lib/timeline/TimelineHorizontal.svelte +17 -0
- package/src/lib/timeline/TimelineItem.svelte +116 -0
- package/src/lib/timeline/TimelineItemHorizontal.svelte +72 -0
- package/src/lib/timeline/TimelineItemVertical.svelte +44 -0
- package/src/lib/toasts/Toast.svelte +99 -0
- package/src/lib/toolbar/Toolbar.svelte +52 -0
- package/src/lib/toolbar/ToolbarButton.svelte +67 -0
- package/src/lib/toolbar/ToolbarGroup.svelte +20 -0
- package/src/lib/tooltips/Tooltip.svelte +42 -0
- package/src/lib/types.ts +163 -0
- package/src/lib/typography/A.svelte +20 -0
- package/src/lib/typography/Blockquote.svelte +51 -0
- package/src/lib/typography/DescriptionList.svelte +22 -0
- package/src/lib/typography/Heading.svelte +28 -0
- package/src/lib/typography/Hr.svelte +37 -0
- package/src/lib/typography/Img.svelte +39 -0
- package/src/lib/typography/Layout.svelte +21 -0
- package/src/lib/typography/Li.svelte +19 -0
- package/src/lib/typography/List.svelte +33 -0
- package/src/lib/typography/Mark.svelte +20 -0
- package/src/lib/typography/P.svelte +102 -0
- package/src/lib/typography/Secondary.svelte +18 -0
- package/src/lib/typography/Span.svelte +35 -0
- package/src/lib/utils/CloseButton.svelte +19 -0
- package/src/lib/utils/Frame.svelte +142 -0
- package/src/lib/utils/Popper.svelte +206 -0
- package/src/lib/utils/Wrapper.svelte +22 -0
- package/src/lib/utils/backdrop.ts +101 -0
- package/src/lib/utils/clickOutside.ts +16 -0
- package/src/lib/utils/createEventDispatcher.ts +24 -0
- package/src/lib/utils/focusTrap.js +42 -0
- package/src/lib/utils/generateId.js +5 -0
- package/src/lib/video/Video.svelte +29 -0
- package/src/routes/+error.svelte +5 -0
- package/src/routes/+layout.svelte +98 -0
- package/src/routes/+page.server.ts +18 -0
- package/src/routes/+page.svelte +55 -0
- package/src/routes/api/posts/+server.js +7 -0
- package/src/routes/component-data/A.json +10 -0
- package/src/routes/component-data/Accordion.json +12 -0
- package/src/routes/component-data/AccordionItem.json +23 -0
- package/src/routes/component-data/Activity.json +1 -0
- package/src/routes/component-data/ActivityItem.json +16 -0
- package/src/routes/component-data/AdvancedRating.json +13 -0
- package/src/routes/component-data/Alert.json +9 -0
- package/src/routes/component-data/Android.json +12 -0
- package/src/routes/component-data/ArrowKeyDown.json +1 -0
- package/src/routes/component-data/ArrowKeyLeft.json +1 -0
- package/src/routes/component-data/ArrowKeyRight.json +1 -0
- package/src/routes/component-data/ArrowKeyUp.json +1 -0
- package/src/routes/component-data/Avatar.json +15 -0
- package/src/routes/component-data/Badge.json +10 -0
- package/src/routes/component-data/Banner.json +12 -0
- package/src/routes/component-data/Blockquote.json +15 -0
- package/src/routes/component-data/BottomNav.json +13 -0
- package/src/routes/component-data/BottomNavHeader.json +9 -0
- package/src/routes/component-data/BottomNavHeaderItem.json +11 -0
- package/src/routes/component-data/BottomNavItem.json +12 -0
- package/src/routes/component-data/Breadcrumb.json +11 -0
- package/src/routes/component-data/BreadcrumbItem.json +12 -0
- package/src/routes/component-data/Button.json +14 -0
- package/src/routes/component-data/ButtonGroup.json +9 -0
- package/src/routes/component-data/Calender.json +1 -0
- package/src/routes/component-data/Card.json +13 -0
- package/src/routes/component-data/CardPlaceholder.json +9 -0
- package/src/routes/component-data/Carousel.json +11 -0
- package/src/routes/component-data/Chart.json +1 -0
- package/src/routes/component-data/Checkbox.json +14 -0
- package/src/routes/component-data/CloseButton.json +1 -0
- package/src/routes/component-data/ControlButton.json +9 -0
- package/src/routes/component-data/Controls.json +1 -0
- package/src/routes/component-data/DarkMode.json +9 -0
- package/src/routes/component-data/Datepicker.json +14 -0
- package/src/routes/component-data/DefaultMockup.json +11 -0
- package/src/routes/component-data/DescriptionList.json +10 -0
- package/src/routes/component-data/DeviceMockup.json +50 -0
- package/src/routes/component-data/Drawer.json +23 -0
- package/src/routes/component-data/Dropdown.json +13 -0
- package/src/routes/component-data/DropdownDivider.json +1 -0
- package/src/routes/component-data/DropdownHeader.json +9 -0
- package/src/routes/component-data/DropdownItem.json +10 -0
- package/src/routes/component-data/Dropzone.json +10 -0
- package/src/routes/component-data/Fileupload.json +10 -0
- package/src/routes/component-data/FloatingLabelInput.json +14 -0
- package/src/routes/component-data/Footer.json +1 -0
- package/src/routes/component-data/FooterBrand.json +15 -0
- package/src/routes/component-data/FooterCopyright.json +14 -0
- package/src/routes/component-data/FooterIcon.json +11 -0
- package/src/routes/component-data/FooterLink.json +11 -0
- package/src/routes/component-data/FooterLinkGroup.json +1 -0
- package/src/routes/component-data/Frame.json +18 -0
- package/src/routes/component-data/Gallery.json +9 -0
- package/src/routes/component-data/GradientButton.json +9 -0
- package/src/routes/component-data/Group.json +11 -0
- package/src/routes/component-data/GroupItem.json +13 -0
- package/src/routes/component-data/Heading.json +10 -0
- package/src/routes/component-data/Heart.json +14 -0
- package/src/routes/component-data/Helper.json +9 -0
- package/src/routes/component-data/Hr.json +13 -0
- package/src/routes/component-data/ImagePlaceholder.json +9 -0
- package/src/routes/component-data/Img.json +17 -0
- package/src/routes/component-data/Indicator.json +13 -0
- package/src/routes/component-data/Indicators.json +9 -0
- package/src/routes/component-data/Input.json +13 -0
- package/src/routes/component-data/InputAddon.json +1 -0
- package/src/routes/component-data/Ios.json +11 -0
- package/src/routes/component-data/Kbd.json +1 -0
- package/src/routes/component-data/Label.json +10 -0
- package/src/routes/component-data/Layout.json +10 -0
- package/src/routes/component-data/Li.json +9 -0
- package/src/routes/component-data/List.json +10 -0
- package/src/routes/component-data/ListPlaceholder.json +1 -0
- package/src/routes/component-data/Listgroup.json +10 -0
- package/src/routes/component-data/ListgroupItem.json +17 -0
- package/src/routes/component-data/Mark.json +10 -0
- package/src/routes/component-data/MegaMenu.json +11 -0
- package/src/routes/component-data/Menu.json +11 -0
- package/src/routes/component-data/Modal.json +17 -0
- package/src/routes/component-data/MultiSelect.json +11 -0
- package/src/routes/component-data/NavBrand.json +1 -0
- package/src/routes/component-data/NavHamburger.json +9 -0
- package/src/routes/component-data/NavLi.json +10 -0
- package/src/routes/component-data/NavSidebarHamburger.json +9 -0
- package/src/routes/component-data/NavUl.json +14 -0
- package/src/routes/component-data/Navbar.json +10 -0
- package/src/routes/component-data/NumberInput.json +1 -0
- package/src/routes/component-data/P.json +19 -0
- package/src/routes/component-data/Pagination.json +13 -0
- package/src/routes/component-data/PaginationItem.json +12 -0
- package/src/routes/component-data/Placeholder.json +1 -0
- package/src/routes/component-data/Popover.json +9 -0
- package/src/routes/component-data/Popper.json +17 -0
- package/src/routes/component-data/Progressbar.json +14 -0
- package/src/routes/component-data/Radio.json +13 -0
- package/src/routes/component-data/RadioInline.json +1 -0
- package/src/routes/component-data/Range.json +9 -0
- package/src/routes/component-data/Rating.json +14 -0
- package/src/routes/component-data/RatingComment.json +10 -0
- package/src/routes/component-data/Review.json +13 -0
- package/src/routes/component-data/ScoreRating.json +13 -0
- package/src/routes/component-data/Search.json +10 -0
- package/src/routes/component-data/Secondary.json +9 -0
- package/src/routes/component-data/Select.json +14 -0
- package/src/routes/component-data/Sidebar.json +11 -0
- package/src/routes/component-data/SidebarBrand.json +11 -0
- package/src/routes/component-data/SidebarCta.json +11 -0
- package/src/routes/component-data/SidebarDropdownItem.json +12 -0
- package/src/routes/component-data/SidebarDropdownWrapper.json +14 -0
- package/src/routes/component-data/SidebarGroup.json +10 -0
- package/src/routes/component-data/SidebarItem.json +12 -0
- package/src/routes/component-data/SidebarMenu.json +11 -0
- package/src/routes/component-data/SidebarWrapper.json +1 -0
- package/src/routes/component-data/Skeleton.json +9 -0
- package/src/routes/component-data/Smartwatch.json +9 -0
- package/src/routes/component-data/Span.json +16 -0
- package/src/routes/component-data/SpeedDial.json +18 -0
- package/src/routes/component-data/SpeedDialButton.json +14 -0
- package/src/routes/component-data/Spinner.json +13 -0
- package/src/routes/component-data/Star.json +14 -0
- package/src/routes/component-data/StepIndicator.json +15 -0
- package/src/routes/component-data/TabItem.json +12 -0
- package/src/routes/component-data/Table.json +14 -0
- package/src/routes/component-data/TableBody.json +1 -0
- package/src/routes/component-data/TableBodyCell.json +1 -0
- package/src/routes/component-data/TableBodyRow.json +1 -0
- package/src/routes/component-data/TableHead.json +9 -0
- package/src/routes/component-data/TableHeadCell.json +1 -0
- package/src/routes/component-data/TableSearch.json +19 -0
- package/src/routes/component-data/Tablet.json +11 -0
- package/src/routes/component-data/Tabs.json +13 -0
- package/src/routes/component-data/TestimonialPlaceholder.json +1 -0
- package/src/routes/component-data/TextPlaceholder.json +9 -0
- package/src/routes/component-data/Textarea.json +11 -0
- package/src/routes/component-data/Thumbnail.json +10 -0
- package/src/routes/component-data/Thumbnails.json +9 -0
- package/src/routes/component-data/Thumbup.json +14 -0
- package/src/routes/component-data/Timeline.json +1 -0
- package/src/routes/component-data/TimelineHorizontal.json +1 -0
- package/src/routes/component-data/TimelineItem.json +10 -0
- package/src/routes/component-data/TimelineItemHorizontal.json +19 -0
- package/src/routes/component-data/TimelineItemVertical.json +13 -0
- package/src/routes/component-data/Toast.json +15 -0
- package/src/routes/component-data/Toggle.json +12 -0
- package/src/routes/component-data/Toolbar.json +9 -0
- package/src/routes/component-data/ToolbarButton.json +12 -0
- package/src/routes/component-data/ToolbarGroup.json +1 -0
- package/src/routes/component-data/Tooltip.json +9 -0
- package/src/routes/component-data/Video.json +12 -0
- package/src/routes/component-data/VideoPlaceholder.json +9 -0
- package/src/routes/component-data/VoiceSearch.json +16 -0
- package/src/routes/component-data/WidgetPlaceholder.json +1 -0
- package/src/routes/component-data/Wrapper.json +10 -0
- package/src/routes/component-data/backdrop.json +9 -0
- package/src/routes/component-data/clickOutside.json +1 -0
- package/src/routes/component-data/createEventDispatcher.json +1 -0
- package/src/routes/component-data/focusTrap.json +1 -0
- package/src/routes/component-data/generateId.json +1 -0
- package/src/routes/component-data/index.json +1 -0
- package/src/routes/component-data/types.json +1 -0
- package/src/routes/docs/+layout.js +10 -0
- package/src/routes/docs/+layout.svelte +74 -0
- package/src/routes/docs/components/[slug]/+page.js +13 -0
- package/src/routes/docs/components/[slug]/+page.svelte +6 -0
- package/src/routes/docs/components/accordion.md +315 -0
- package/src/routes/docs/components/alert.md +342 -0
- package/src/routes/docs/components/avatar.md +215 -0
- package/src/routes/docs/components/badge.md +269 -0
- package/src/routes/docs/components/banner.md +166 -0
- package/src/routes/docs/components/bottom-navigation.md +397 -0
- package/src/routes/docs/components/breadcrumb.md +112 -0
- package/src/routes/docs/components/button-group.md +198 -0
- package/src/routes/docs/components/button.md +314 -0
- package/src/routes/docs/components/card.md +423 -0
- package/src/routes/docs/components/carousel.md +242 -0
- package/src/routes/docs/components/darkmode.md +111 -0
- package/src/routes/docs/components/device-mockups.md +212 -0
- package/src/routes/docs/components/drawer.md +638 -0
- package/src/routes/docs/components/dropdown.md +748 -0
- package/src/routes/docs/components/footer.md +268 -0
- package/src/routes/docs/components/forms.md +254 -0
- package/src/routes/docs/components/gallery.md +230 -0
- package/src/routes/docs/components/imageData/+server.js +43 -0
- package/src/routes/docs/components/indicators.md +273 -0
- package/src/routes/docs/components/kbd.md +248 -0
- package/src/routes/docs/components/list-group.md +157 -0
- package/src/routes/docs/components/mega-menu.md +298 -0
- package/src/routes/docs/components/modal.md +413 -0
- package/src/routes/docs/components/navbar.md +342 -0
- package/src/routes/docs/components/pagination.md +350 -0
- package/src/routes/docs/components/popover.md +388 -0
- package/src/routes/docs/components/progress.md +170 -0
- package/src/routes/docs/components/rating.md +326 -0
- package/src/routes/docs/components/sidebar.md +568 -0
- package/src/routes/docs/components/skeleton.md +165 -0
- package/src/routes/docs/components/speed-dial.md +523 -0
- package/src/routes/docs/components/spinner.md +117 -0
- package/src/routes/docs/components/tab.md +341 -0
- package/src/routes/docs/components/table.md +871 -0
- package/src/routes/docs/components/timeline.md +267 -0
- package/src/routes/docs/components/toast.md +362 -0
- package/src/routes/docs/components/tooltip.md +156 -0
- package/src/routes/docs/components/typography.md +158 -0
- package/src/routes/docs/components/video.md +125 -0
- package/src/routes/docs/examples/[slug]/+page.js +13 -0
- package/src/routes/docs/examples/[slug]/+page.svelte +6 -0
- package/src/routes/docs/examples/sidebar-layout.md +20 -0
- package/src/routes/docs/examples/snapshot.md +59 -0
- package/src/routes/docs/examples/testsnap.svelte +49 -0
- package/src/routes/docs/experimental/[slug]/+page.js +13 -0
- package/src/routes/docs/experimental/[slug]/+page.svelte +6 -0
- package/src/routes/docs/experimental/datepicker.md +131 -0
- package/src/routes/docs/extend/CheckCircle.svelte +3 -0
- package/src/routes/docs/extend/[slug]/+page.js +13 -0
- package/src/routes/docs/extend/[slug]/+page.svelte +6 -0
- package/src/routes/docs/extend/flowbite-svelte-blocks.md +28 -0
- package/src/routes/docs/extend/flowbite-svelte-starter.md +34 -0
- package/src/routes/docs/extend/icons.md +204 -0
- package/src/routes/docs/extend/step-indicator.md +162 -0
- package/src/routes/docs/forms/[slug]/+page.js +13 -0
- package/src/routes/docs/forms/[slug]/+page.svelte +6 -0
- package/src/routes/docs/forms/checkbox.md +329 -0
- package/src/routes/docs/forms/file-input.md +171 -0
- package/src/routes/docs/forms/floating-label.md +176 -0
- package/src/routes/docs/forms/input-field.md +398 -0
- package/src/routes/docs/forms/radio.md +303 -0
- package/src/routes/docs/forms/range.md +110 -0
- package/src/routes/docs/forms/search-input.md +133 -0
- package/src/routes/docs/forms/select.md +280 -0
- package/src/routes/docs/forms/textarea.md +142 -0
- package/src/routes/docs/forms/toggle.md +86 -0
- package/src/routes/docs/pages/[slug]/+page.js +13 -0
- package/src/routes/docs/pages/[slug]/+page.svelte +6 -0
- package/src/routes/docs/pages/colors.md +152 -0
- package/src/routes/docs/pages/compiler-speed.md +116 -0
- package/src/routes/docs/pages/customization.md +103 -0
- package/src/routes/docs/pages/how-to-contribute.md +138 -0
- package/src/routes/docs/pages/ide-support.md +19 -0
- package/src/routes/docs/pages/introduction.md +131 -0
- package/src/routes/docs/pages/license.md +22 -0
- package/src/routes/docs/pages/quickstart.md +128 -0
- package/src/routes/docs/pages/typescript.md +25 -0
- package/src/routes/docs/plugins/[slug]/+page.js +13 -0
- package/src/routes/docs/plugins/[slug]/+page.svelte +6 -0
- package/src/routes/docs/plugins/charts.md +990 -0
- package/src/routes/docs/typography/[slug]/+page.js +13 -0
- package/src/routes/docs/typography/[slug]/+page.svelte +6 -0
- package/src/routes/docs/typography/blockquote.md +214 -0
- package/src/routes/docs/typography/heading.md +270 -0
- package/src/routes/docs/typography/hr.md +115 -0
- package/src/routes/docs/typography/image.md +244 -0
- package/src/routes/docs/typography/link.md +147 -0
- package/src/routes/docs/typography/list.md +358 -0
- package/src/routes/docs/typography/paragraph.md +265 -0
- package/src/routes/docs/typography/text.md +340 -0
- package/src/routes/docs/utilities/[slug]/+page.js +13 -0
- package/src/routes/docs/utilities/[slug]/+page.svelte +6 -0
- package/src/routes/docs/utilities/close-button.md +42 -0
- package/src/routes/docs/utilities/label.md +41 -0
- package/src/routes/docs/utilities/toolbar.md +157 -0
- package/src/routes/landing/CTA.svelte +98 -0
- package/src/routes/landing/Components.svelte +42 -0
- package/src/routes/landing/Contributors.svelte +55 -0
- package/src/routes/landing/DesignFigma.svelte +39 -0
- package/src/routes/landing/Featured.svelte +33 -0
- package/src/routes/landing/GetStarted.svelte +23 -0
- package/src/routes/landing/Hero.svelte +38 -0
- package/src/routes/landing/SocialProof.svelte +80 -0
- package/src/routes/landing/utils/A.svelte +5 -0
- package/src/routes/landing/utils/H2.svelte +1 -0
- package/src/routes/landing/utils/Row.svelte +16 -0
- package/src/routes/landing/utils/Section.svelte +9 -0
- package/src/routes/layouts/component/+page.svelte +44 -0
- package/src/routes/layouts/component/Anchor.svelte +29 -0
- package/src/routes/layouts/component/code.svelte +1 -0
- package/src/routes/layouts/component/h1.svelte +0 -0
- package/src/routes/layouts/component/h2.svelte +5 -0
- package/src/routes/layouts/component/h3.svelte +5 -0
- package/src/routes/layouts/testLayout/+page.svelte +5 -0
- package/src/routes/utils/AlgoliaSearch.svelte +22 -0
- package/src/routes/utils/CompoAttributesViewer.svelte +78 -0
- package/src/routes/utils/CompoCard.svelte +36 -0
- package/src/routes/utils/CompoDescription.svelte +7 -0
- package/src/routes/utils/CopyCliboardInput.svelte +45 -0
- package/src/routes/utils/DocBadge.svelte +7 -0
- package/src/routes/utils/DocBadgeList.svelte +10 -0
- package/src/routes/utils/ExampleDarkMode.svelte +16 -0
- package/src/routes/utils/ExampleWrapper.svelte +143 -0
- package/src/routes/utils/Footer.svelte +64 -0
- package/src/routes/utils/GitHubSource.svelte +13 -0
- package/src/routes/utils/GitHubSourceList.svelte +21 -0
- package/src/routes/utils/MetaTag.svelte +42 -0
- package/src/routes/utils/Newsletter.svelte +52 -0
- package/src/routes/utils/PageHeadSection.svelte +20 -0
- package/src/routes/utils/Paging.svelte +60 -0
- package/src/routes/utils/TableDefaultRow.svelte +81 -0
- package/src/routes/utils/TableProp.svelte +41 -0
- package/src/routes/utils/Toc.svelte +55 -0
- package/src/routes/utils/ToolbarLink.svelte +12 -0
- package/src/routes/utils/data.json +48 -0
- package/src/routes/utils/icons/Angular.svelte +3 -0
- package/src/routes/utils/icons/ArrowLeft.svelte +3 -0
- package/src/routes/utils/icons/ArrowRight.svelte +3 -0
- package/src/routes/utils/icons/Check.svelte +3 -0
- package/src/routes/utils/icons/China.svelte +9 -0
- package/src/routes/utils/icons/Clipboard.svelte +3 -0
- package/src/routes/utils/icons/CoinbaseWallet.svelte +4 -0
- package/src/routes/utils/icons/Combinator.svelte +35 -0
- package/src/routes/utils/icons/Community.svelte +5 -0
- package/src/routes/utils/icons/Dev.svelte +9 -0
- package/src/routes/utils/icons/Discord.svelte +5 -0
- package/src/routes/utils/icons/Dribble.svelte +3 -0
- package/src/routes/utils/icons/Figma.svelte +14 -0
- package/src/routes/utils/icons/FlowbiteLogo.svelte +49 -0
- package/src/routes/utils/icons/Fortmatic.svelte +4 -0
- package/src/routes/utils/icons/Germany.svelte +5 -0
- package/src/routes/utils/icons/GitHub.svelte +13 -0
- package/src/routes/utils/icons/Hunt.svelte +17 -0
- package/src/routes/utils/icons/Italy.svelte +7 -0
- package/src/routes/utils/icons/Mail.svelte +4 -0
- package/src/routes/utils/icons/MetaMask.svelte +31 -0
- package/src/routes/utils/icons/Moon.svelte +3 -0
- package/src/routes/utils/icons/Npm.svelte +3 -0
- package/src/routes/utils/icons/OperaWallet.svelte +17 -0
- package/src/routes/utils/icons/Quote.svelte +3 -0
- package/src/routes/utils/icons/React.svelte +4 -0
- package/src/routes/utils/icons/Reddit.svelte +23 -0
- package/src/routes/utils/icons/Sun.svelte +7 -0
- package/src/routes/utils/icons/Usa.svelte +31 -0
- package/src/routes/utils/icons/Vue.svelte +3 -0
- package/src/routes/utils/icons/WalletConnect.svelte +18 -0
- package/src/routes/utils/icons/YouTube.svelte +3 -0
- package/src/routes/utils/icons/YouTubeFull.svelte +17 -0
- package/src/routes/utils/index.ts +146 -0
- package/src/routes/utils/mdsvex.d.ts +8 -0
- package/static/images/alert-prop.png +0 -0
- package/static/images/carousel/cosmic-timetraveler-pYyOZ8q7AII-unsplash.webp +0 -0
- package/static/images/carousel/cristina-gottardi-CSpjU6hYo_0-unsplash.webp +0 -0
- package/static/images/carousel/johannes-plenio-RwHv7LgeC7s-unsplash.webp +0 -0
- package/static/images/carousel/jonatan-pie-3l3RwQdHRHg-unsplash.webp +0 -0
- package/static/images/carousel/mark-harpur-K2s_YE031CA-unsplash.webp +0 -0
- package/static/images/carousel/pietro-de-grandi-T7K4aEPoGGk-unsplash.webp +0 -0
- package/static/images/carousel/sergey-pesterev-tMvuB9se2uQ-unsplash.webp +0 -0
- package/static/images/carousel/solotravelgoals-7kLufxYoqWk-unsplash.webp +0 -0
- package/static/images/carousel-1.svg +4 -0
- package/static/images/carousel-2.svg +4 -0
- package/static/images/carousel-3.svg +4 -0
- package/static/images/carousel-4.svg +4 -0
- package/static/images/carousel-5.svg +4 -0
- package/static/images/code-example-dark.png +0 -0
- package/static/images/code-example.png +0 -0
- package/static/images/colors.webp +0 -0
- package/static/images/components/accordion-dark.svg +40 -0
- package/static/images/components/accordion.svg +40 -0
- package/static/images/components/alert-dark.svg +11 -0
- package/static/images/components/alert.svg +11 -0
- package/static/images/components/avatar-dark.svg +117 -0
- package/static/images/components/avatar.svg +117 -0
- package/static/images/components/badge-dark.svg +5 -0
- package/static/images/components/badge.svg +5 -0
- package/static/images/components/banner-dark.svg +34 -0
- package/static/images/components/banner.svg +33 -0
- package/static/images/components/bottom-navigation-dark.svg +44 -0
- package/static/images/components/bottom-navigation.svg +43 -0
- package/static/images/components/breadcrumb-dark.svg +7 -0
- package/static/images/components/breadcrumb.svg +7 -0
- package/static/images/components/button-dark.svg +10 -0
- package/static/images/components/button-group-dark.svg +10 -0
- package/static/images/components/button-group.svg +10 -0
- package/static/images/components/button.svg +10 -0
- package/static/images/components/card-dark.svg +31 -0
- package/static/images/components/card.svg +32 -0
- package/static/images/components/carousel-dark.svg +13 -0
- package/static/images/components/carousel.svg +13 -0
- package/static/images/components/charts-dark.svg +29 -0
- package/static/images/components/charts.svg +29 -0
- package/static/images/components/darkmode-dark.svg +7 -0
- package/static/images/components/darkmode.svg +3 -0
- package/static/images/components/device-mockups-dark.svg +17 -0
- package/static/images/components/device-mockups.svg +17 -0
- package/static/images/components/drawer-dark.svg +32 -0
- package/static/images/components/drawer.svg +32 -0
- package/static/images/components/dropdown-dark.svg +35 -0
- package/static/images/components/dropdown.svg +35 -0
- package/static/images/components/footer-dark.svg +52 -0
- package/static/images/components/footer.svg +50 -0
- package/static/images/components/forms-dark.svg +64 -0
- package/static/images/components/forms.svg +64 -0
- package/static/images/components/gallery-dark.svg +14 -0
- package/static/images/components/gallery.svg +14 -0
- package/static/images/components/indicators-dark.svg +38 -0
- package/static/images/components/indicators.svg +38 -0
- package/static/images/components/jumbotron-dark.svg +13 -0
- package/static/images/components/jumbotron.svg +13 -0
- package/static/images/components/kbd-dark.svg +460 -0
- package/static/images/components/kbd.svg +462 -0
- package/static/images/components/list-group-dark.svg +58 -0
- package/static/images/components/list-group.svg +58 -0
- package/static/images/components/mega-menu-dark.svg +71 -0
- package/static/images/components/mega-menu.svg +71 -0
- package/static/images/components/modal-dark.svg +32 -0
- package/static/images/components/modal.svg +33 -0
- package/static/images/components/navbar-dark.svg +78 -0
- package/static/images/components/navbar.svg +78 -0
- package/static/images/components/pagination-dark.svg +50 -0
- package/static/images/components/pagination.svg +50 -0
- package/static/images/components/popover-dark.svg +18 -0
- package/static/images/components/popover.svg +17 -0
- package/static/images/components/progress-dark.svg +10 -0
- package/static/images/components/progress.svg +10 -0
- package/static/images/components/rating-dark.svg +29 -0
- package/static/images/components/rating.svg +29 -0
- package/static/images/components/sidebar-dark.svg +17 -0
- package/static/images/components/sidebar.svg +18 -0
- package/static/images/components/skeleton-dark.svg +10 -0
- package/static/images/components/skeleton.svg +10 -0
- package/static/images/components/speed-dial-dark.svg +69 -0
- package/static/images/components/speed-dial.svg +69 -0
- package/static/images/components/spinner-dark.svg +6 -0
- package/static/images/components/spinner.svg +6 -0
- package/static/images/components/stepper-dark.svg +11 -0
- package/static/images/components/stepper.svg +10 -0
- package/static/images/components/tab-dark.svg +10 -0
- package/static/images/components/tab.svg +10 -0
- package/static/images/components/table-dark.svg +47 -0
- package/static/images/components/table.svg +47 -0
- package/static/images/components/timeline-dark.svg +20 -0
- package/static/images/components/timeline.svg +20 -0
- package/static/images/components/toast-dark.svg +49 -0
- package/static/images/components/toast.svg +49 -0
- package/static/images/components/tooltip-dark.svg +7 -0
- package/static/images/components/tooltip.svg +7 -0
- package/static/images/components/typography-dark.svg +13 -0
- package/static/images/components/typography.svg +13 -0
- package/static/images/components/video-dark.svg +4 -0
- package/static/images/components/video.svg +4 -0
- package/static/images/eugene.jpg +0 -0
- package/static/images/examples/content-gallery-3.png +0 -0
- package/static/images/examples/image-1.jpg +0 -0
- package/static/images/examples/image-1@2x.jpg +0 -0
- package/static/images/examples/image-2@2x.jpg +0 -0
- package/static/images/examples/image-3@2x.jpg +0 -0
- package/static/images/examples/image-4@2x.jpg +0 -0
- package/static/images/experimental/datepicker-dark.svg +67 -0
- package/static/images/experimental/datepicker.svg +67 -0
- package/static/images/favicon.png +0 -0
- package/static/images/favicon.svg +49 -0
- package/static/images/figma-dark.png +0 -0
- package/static/images/figma.png +0 -0
- package/static/images/flowbite-svelte-blocks-optimized.png +0 -0
- package/static/images/flowbite-svelte-icon-logo.svg +49 -0
- package/static/images/flowbite-svelte-icon.svg +49 -0
- package/static/images/flowbite-svelte-og-image.png +0 -0
- package/static/images/flowbite-svelte.png +0 -0
- package/static/images/forms/checkbox-dark.svg +14 -0
- package/static/images/forms/checkbox.svg +14 -0
- package/static/images/forms/file-input-dark.svg +59 -0
- package/static/images/forms/file-input.svg +46 -0
- package/static/images/forms/floating-label-dark.svg +11 -0
- package/static/images/forms/floating-label.svg +11 -0
- package/static/images/forms/input-field-dark.svg +65 -0
- package/static/images/forms/input-field.svg +66 -0
- package/static/images/forms/radio-dark.svg +14 -0
- package/static/images/forms/radio.svg +12 -0
- package/static/images/forms/range-dark.svg +38 -0
- package/static/images/forms/range.svg +38 -0
- package/static/images/forms/search-input-dark.svg +82 -0
- package/static/images/forms/search-input.svg +82 -0
- package/static/images/forms/select-dark.svg +64 -0
- package/static/images/forms/select.svg +64 -0
- package/static/images/forms/textarea-dark.svg +16 -0
- package/static/images/forms/textarea.svg +16 -0
- package/static/images/forms/toggle-dark.svg +12 -0
- package/static/images/forms/toggle.svg +12 -0
- package/static/images/gallery-dark.png +0 -0
- package/static/images/gallery.png +0 -0
- package/static/images/graphs-dark.png +0 -0
- package/static/images/graphs.png +0 -0
- package/static/images/image-1.jpeg +0 -0
- package/static/images/image-1.png +0 -0
- package/static/images/image-1.webp +0 -0
- package/static/images/image-2.jpeg +0 -0
- package/static/images/image-2.png +0 -0
- package/static/images/image-2.webp +0 -0
- package/static/images/image-4.jpeg +0 -0
- package/static/images/image-4.png +0 -0
- package/static/images/image-4.webp +0 -0
- package/static/images/italy.png +0 -0
- package/static/images/nature-1.jpeg +0 -0
- package/static/images/office1.webp +0 -0
- package/static/images/product-1.webp +0 -0
- package/static/images/profile-picture-1.webp +0 -0
- package/static/images/profile-picture-2.webp +0 -0
- package/static/images/profile-picture-3.webp +0 -0
- package/static/images/profile-picture-4.webp +0 -0
- package/static/images/profile-picture-5.webp +0 -0
- package/static/images/sveltekit-sidebar-layout-optimized.png +0 -0
- package/static/images/tailwind-code-dark.png +0 -0
- package/static/images/tailwind-code.png +0 -0
- package/static/images/typography/blockquote-dark.svg +8 -0
- package/static/images/typography/blockquote.svg +8 -0
- package/static/images/typography/heading-dark.svg +5 -0
- package/static/images/typography/heading.svg +5 -0
- package/static/images/typography/hr-dark.svg +7 -0
- package/static/images/typography/hr.svg +7 -0
- package/static/images/typography/image-dark.svg +6 -0
- package/static/images/typography/image.svg +6 -0
- package/static/images/typography/link-dark.svg +4 -0
- package/static/images/typography/link.svg +4 -0
- package/static/images/typography/list-dark.svg +26 -0
- package/static/images/typography/list.svg +26 -0
- package/static/images/typography/paragraph-dark.svg +13 -0
- package/static/images/typography/paragraph.svg +13 -0
- package/static/images/typography/text-dark.svg +11 -0
- package/static/images/typography/text.svg +11 -0
- package/static/site.webmanifest +12 -0
- package/static/styles/docs.css +537 -0
- package/static/videos/compo-doc.gif +0 -0
- package/static/videos/flowbite.mp4 +0 -0
- package/svelte.config.js +28 -0
- package/tailwind.config.cjs +89 -0
- package/tests/components.spec.ts +199 -0
- package/tests/examples.spec.ts +11 -0
- package/tests/extend.spec.ts +19 -0
- package/tests/forms.spec.ts +62 -0
- package/tests/page.spec.ts +46 -0
- package/tests/plugins.spec.ts +7 -0
- package/tests/redirect.spec.ts +175 -0
- package/tests/typography.spec.ts +52 -0
- package/tests/utilities.spec.ts +22 -0
- package/tsconfig.json +21 -0
- package/vite.config.ts +22 -0
- package/vite.config.ts.timestamp-1692816833518-844de2c3e2008.mjs +22 -0
- package/dist/carousels/Caption.svelte +0 -17
- package/dist/carousels/Caption.svelte.d.ts +0 -26
- package/dist/carousels/Caption.svelte.d.ts.map +0 -1
- package/dist/carousels/CarouselTransition.svelte +0 -174
- package/dist/carousels/CarouselTransition.svelte.d.ts +0 -68
- package/dist/carousels/CarouselTransition.svelte.d.ts.map +0 -1
- package/dist/carousels/Indicator.svelte +0 -20
- package/dist/carousels/Indicator.svelte.d.ts +0 -28
- package/dist/carousels/Indicator.svelte.d.ts.map +0 -1
- package/dist/carousels/Slide.svelte +0 -23
- package/dist/carousels/Slide.svelte.d.ts +0 -30
- package/dist/carousels/Slide.svelte.d.ts.map +0 -1
|
@@ -0,0 +1,50 @@
|
|
|
1
|
+
<svg width="330" height="220" viewBox="0 0 330 220" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<rect x="21.5" y="15.5" width="35" height="35" rx="3.5" fill="white"/>
|
|
3
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M42.2483 27.3518C42.4733 27.5769 42.5996 27.882 42.5996 28.2002C42.5996 28.5184 42.4733 28.8236 42.2483 29.0486L38.2967 33.0002L42.2483 36.9518C42.4669 37.1782 42.5878 37.4813 42.5851 37.7959C42.5824 38.1105 42.4562 38.4115 42.2337 38.634C42.0112 38.8565 41.7102 38.9827 41.3956 38.9854C41.0809 38.9882 40.7778 38.8672 40.5515 38.6486L35.7515 33.8486C35.5265 33.6236 35.4001 33.3184 35.4001 33.0002C35.4001 32.682 35.5265 32.3769 35.7515 32.1518L40.5515 27.3518C40.7765 27.1269 41.0817 27.0005 41.3999 27.0005C41.7181 27.0005 42.0233 27.1269 42.2483 27.3518Z" fill="#9CA3AF"/>
|
|
4
|
+
<rect x="21.5" y="15.5" width="35" height="35" rx="3.5" stroke="#D1D5DB"/>
|
|
5
|
+
<rect x="81.5" y="15.5" width="35" height="35" rx="3.5" fill="white"/>
|
|
6
|
+
<rect x="94" y="28" width="10" height="10" rx="4" fill="#D1D5DB"/>
|
|
7
|
+
<rect x="81.5" y="15.5" width="35" height="35" rx="3.5" stroke="#D1D5DB"/>
|
|
8
|
+
<rect x="125.5" y="15.5" width="35" height="35" rx="3.5" fill="white"/>
|
|
9
|
+
<rect x="138" y="28" width="10" height="10" rx="4" fill="#D1D5DB"/>
|
|
10
|
+
<rect x="125.5" y="15.5" width="35" height="35" rx="3.5" stroke="#D1D5DB"/>
|
|
11
|
+
<rect x="169.5" y="15.5" width="35" height="35" rx="3.5" fill="white"/>
|
|
12
|
+
<rect x="182" y="28" width="10" height="10" rx="4" fill="#D1D5DB"/>
|
|
13
|
+
<rect x="169.5" y="15.5" width="35" height="35" rx="3.5" stroke="#D1D5DB"/>
|
|
14
|
+
<rect x="213.5" y="15.5" width="35" height="35" rx="3.5" fill="white"/>
|
|
15
|
+
<rect x="226" y="28" width="10" height="10" rx="4" fill="#D1D5DB"/>
|
|
16
|
+
<rect x="213.5" y="15.5" width="35" height="35" rx="3.5" stroke="#D1D5DB"/>
|
|
17
|
+
<rect x="273.5" y="15.5" width="35" height="35" rx="3.5" fill="white"/>
|
|
18
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M287.751 38.6483C287.527 38.4233 287.4 38.1181 287.4 37.7999C287.4 37.4817 287.527 37.1765 287.751 36.9515L291.703 32.9999L287.751 29.0483C287.533 28.822 287.412 28.5189 287.415 28.2042C287.417 27.8896 287.544 27.5886 287.766 27.3661C287.989 27.1436 288.29 27.0174 288.604 27.0147C288.919 27.012 289.222 27.1329 289.448 27.3515L294.248 32.1515C294.473 32.3765 294.6 32.6817 294.6 32.9999C294.6 33.3181 294.473 33.6233 294.248 33.8483L289.448 38.6483C289.223 38.8733 288.918 38.9996 288.6 38.9996C288.282 38.9996 287.977 38.8733 287.751 38.6483Z" fill="#9CA3AF"/>
|
|
19
|
+
<rect x="273.5" y="15.5" width="35" height="35" rx="3.5" stroke="#D1D5DB"/>
|
|
20
|
+
<path d="M57.5 85V84.5H57H25C22.5147 84.5 20.5 86.5147 20.5 89V117C20.5 119.485 22.5147 121.5 25 121.5H57H57.5V121V85Z" fill="white"/>
|
|
21
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M42.2483 97.3518C42.4733 97.5769 42.5996 97.882 42.5996 98.2002C42.5996 98.5184 42.4733 98.8236 42.2483 99.0486L38.2967 103L42.2483 106.952C42.4669 107.178 42.5878 107.481 42.5851 107.796C42.5824 108.111 42.4562 108.412 42.2337 108.634C42.0112 108.857 41.7102 108.983 41.3956 108.985C41.0809 108.988 40.7778 108.867 40.5515 108.649L35.7515 103.849C35.5265 103.624 35.4001 103.318 35.4001 103C35.4001 102.682 35.5265 102.377 35.7515 102.152L40.5515 97.3518C40.7765 97.1269 41.0817 97.0005 41.3999 97.0005C41.7181 97.0005 42.0233 97.1269 42.2483 97.3518Z" fill="#9CA3AF"/>
|
|
22
|
+
<path d="M57.5 85V84.5H57H25C22.5147 84.5 20.5 86.5147 20.5 89V117C20.5 119.485 22.5147 121.5 25 121.5H57H57.5V121V85Z" stroke="#D1D5DB"/>
|
|
23
|
+
<rect x="56.5" y="84.5" width="37" height="37" fill="white"/>
|
|
24
|
+
<rect x="70" y="98" width="10" height="10" rx="4" fill="#D1D5DB"/>
|
|
25
|
+
<rect x="56.5" y="84.5" width="37" height="37" stroke="#D1D5DB"/>
|
|
26
|
+
<rect x="92.5" y="84.5" width="37" height="37" fill="white"/>
|
|
27
|
+
<rect x="106" y="98" width="10" height="10" rx="4" fill="#D1D5DB"/>
|
|
28
|
+
<rect x="92.5" y="84.5" width="37" height="37" stroke="#D1D5DB"/>
|
|
29
|
+
<rect x="128.5" y="84.5" width="37" height="37" fill="white"/>
|
|
30
|
+
<rect x="142" y="98" width="10" height="10" rx="4" fill="#D1D5DB"/>
|
|
31
|
+
<rect x="128.5" y="84.5" width="37" height="37" stroke="#D1D5DB"/>
|
|
32
|
+
<rect x="164.5" y="84.5" width="37" height="37" fill="white"/>
|
|
33
|
+
<rect x="178" y="98" width="10" height="10" rx="4" fill="#D1D5DB"/>
|
|
34
|
+
<rect x="164.5" y="84.5" width="37" height="37" stroke="#D1D5DB"/>
|
|
35
|
+
<rect x="200.5" y="84.5" width="37" height="37" fill="white"/>
|
|
36
|
+
<rect x="214" y="98" width="10" height="10" rx="4" fill="#D1D5DB"/>
|
|
37
|
+
<rect x="200.5" y="84.5" width="37" height="37" stroke="#D1D5DB"/>
|
|
38
|
+
<rect x="236.5" y="84.5" width="37" height="37" fill="white"/>
|
|
39
|
+
<rect x="250" y="98" width="10" height="10" rx="4" fill="#D1D5DB"/>
|
|
40
|
+
<rect x="236.5" y="84.5" width="37" height="37" stroke="#D1D5DB"/>
|
|
41
|
+
<path d="M273 84.5H272.5V85V121V121.5H273H305C307.485 121.5 309.5 119.485 309.5 117V89C309.5 86.5147 307.485 84.5 305 84.5H273Z" fill="white"/>
|
|
42
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M287.751 108.648C287.527 108.423 287.4 108.118 287.4 107.8C287.4 107.482 287.527 107.177 287.751 106.952L291.703 103L287.751 99.0483C287.533 98.822 287.412 98.5189 287.415 98.2042C287.417 97.8896 287.544 97.5886 287.766 97.3661C287.989 97.1436 288.29 97.0174 288.604 97.0147C288.919 97.012 289.222 97.1329 289.448 97.3515L294.248 102.152C294.473 102.377 294.6 102.682 294.6 103C294.6 103.318 294.473 103.623 294.248 103.848L289.448 108.648C289.223 108.873 288.918 109 288.6 109C288.282 109 287.977 108.873 287.751 108.648Z" fill="#9CA3AF"/>
|
|
43
|
+
<path d="M273 84.5H272.5V85V121V121.5H273H305C307.485 121.5 309.5 119.485 309.5 117V89C309.5 86.5147 307.485 84.5 305 84.5H273Z" stroke="#D1D5DB"/>
|
|
44
|
+
<rect x="122.5" y="155" width="85" height="12" rx="6" fill="#D1D5DB"/>
|
|
45
|
+
<path d="M91 183C91 180.791 92.7909 179 95 179H165V205H95C92.7909 205 91 203.209 91 201V183Z" fill="#EB4F27"/>
|
|
46
|
+
<rect x="115" y="188" width="26" height="8" rx="2" fill="white"/>
|
|
47
|
+
<line x1="164.5" y1="205" x2="164.5" y2="179" stroke="#1E429F"/>
|
|
48
|
+
<path d="M165 179H237C239.209 179 241 180.791 241 183V201C241 203.209 239.209 205 237 205H165V179Z" fill="#EB4F27"/>
|
|
49
|
+
<rect x="189" y="188" width="28" height="8" rx="2" fill="white"/>
|
|
50
|
+
</svg>
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
<svg width="350" height="230" viewBox="0 0 350 230" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<rect width="10.2379" height="9.774" transform="matrix(0.586967 -0.809611 0.586967 0.809611 169 148.289)" fill="#374151"/>
|
|
3
|
+
<rect x="86" y="21" width="176" height="129" rx="6" fill="#374151"/>
|
|
4
|
+
<rect width="169" height="93" transform="translate(92 24)" fill="#374151"/>
|
|
5
|
+
<path d="M97.5477 48.2877C99.821 47.0027 102.389 46.3294 105 46.3333C107.708 46.3333 110.251 47.0429 112.452 48.2877M108.25 39.8333C108.25 40.6953 107.908 41.5219 107.298 42.1314C106.689 42.7409 105.862 43.0833 105 43.0833C104.138 43.0833 103.311 42.7409 102.702 42.1314C102.092 41.5219 101.75 40.6953 101.75 39.8333C101.75 38.9714 102.092 38.1447 102.702 37.5352C103.311 36.9257 104.138 36.5833 105 36.5833C105.862 36.5833 106.689 36.9257 107.298 37.5352C107.908 38.1447 108.25 38.9714 108.25 39.8333ZM114.75 42C114.75 43.2804 114.498 44.5482 114.008 45.7312C113.518 46.9141 112.8 47.9889 111.894 48.8943C110.989 49.7997 109.914 50.5178 108.731 51.0078C107.548 51.4978 106.28 51.75 105 51.75C103.72 51.75 102.452 51.4978 101.269 51.0078C100.086 50.5178 99.0111 49.7997 98.1057 48.8943C97.2003 47.9889 96.4822 46.9141 95.9922 45.7312C95.5022 44.5482 95.25 43.2804 95.25 42C95.25 39.4141 96.2772 36.9342 98.1057 35.1057C99.9342 33.2772 102.414 32.25 105 32.25C107.586 32.25 110.066 33.2772 111.894 35.1057C113.723 36.9342 114.75 39.4141 114.75 42Z" stroke="#9CA3AF" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
|
|
6
|
+
<rect x="92" y="60" width="54" height="8" rx="2" fill="#9CA3AF"/>
|
|
7
|
+
<rect x="92" y="73" width="76" height="6" rx="2" fill="#6B7280"/>
|
|
8
|
+
<rect x="92" y="95" width="157" height="6" rx="2" fill="#6B7280"/>
|
|
9
|
+
<rect x="92" y="106" width="96" height="6" rx="2" fill="#6B7280"/>
|
|
10
|
+
<rect x="92" y="132" width="20" height="6" rx="2" fill="#9CA3AF"/>
|
|
11
|
+
<rect x="119" y="132" width="48" height="6" rx="2" fill="#6B7280"/>
|
|
12
|
+
<rect x="181" y="132" width="20" height="6" rx="2" fill="#9CA3AF"/>
|
|
13
|
+
<rect x="208" y="132" width="31" height="6" rx="2" fill="#6B7280"/>
|
|
14
|
+
<rect x="218" y="28" width="38.2963" height="16" rx="3" fill="#EB4F27"/>
|
|
15
|
+
<rect x="228" y="33.5" width="18.2963" height="5" rx="2" fill="white"/>
|
|
16
|
+
<rect x="99" y="163" width="151" height="35" rx="8" fill="#EB4F27"/>
|
|
17
|
+
<rect x="123" y="175.5" width="103" height="10" rx="2" fill="white"/>
|
|
18
|
+
</svg>
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
<svg width="350" height="230" viewBox="0 0 350 230" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<rect width="10.2379" height="9.774" transform="matrix(0.586967 -0.809611 0.586967 0.809611 169 148.289)" fill="#F3F4F6"/>
|
|
3
|
+
<rect x="86" y="21" width="176" height="129" rx="6" fill="#F3F4F6"/>
|
|
4
|
+
<path d="M97.5477 48.2877C99.821 47.0027 102.389 46.3294 105 46.3333C107.708 46.3333 110.251 47.0429 112.452 48.2877M108.25 39.8333C108.25 40.6953 107.908 41.5219 107.298 42.1314C106.689 42.7409 105.862 43.0833 105 43.0833C104.138 43.0833 103.311 42.7409 102.702 42.1314C102.092 41.5219 101.75 40.6953 101.75 39.8333C101.75 38.9714 102.092 38.1447 102.702 37.5352C103.311 36.9257 104.138 36.5833 105 36.5833C105.862 36.5833 106.689 36.9257 107.298 37.5352C107.908 38.1447 108.25 38.9714 108.25 39.8333ZM114.75 42C114.75 43.2804 114.498 44.5482 114.008 45.7312C113.518 46.9141 112.8 47.9889 111.894 48.8943C110.989 49.7997 109.914 50.5178 108.731 51.0078C107.548 51.4978 106.28 51.75 105 51.75C103.72 51.75 102.452 51.4978 101.269 51.0078C100.086 50.5178 99.0111 49.7997 98.1057 48.8943C97.2003 47.9889 96.4822 46.9141 95.9922 45.7312C95.5022 44.5482 95.25 43.2804 95.25 42C95.25 39.4141 96.2772 36.9342 98.1057 35.1057C99.9342 33.2772 102.414 32.25 105 32.25C107.586 32.25 110.066 33.2772 111.894 35.1057C113.723 36.9342 114.75 39.4141 114.75 42Z" stroke="#9CA3AF" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
|
|
5
|
+
<rect x="92" y="60" width="54" height="8" rx="2" fill="#9CA3AF"/>
|
|
6
|
+
<rect x="92" y="73" width="76" height="6" rx="2" fill="#D1D5DB"/>
|
|
7
|
+
<rect x="92" y="95" width="157" height="6" rx="2" fill="#E5E7EB"/>
|
|
8
|
+
<rect x="92" y="106" width="96" height="6" rx="2" fill="#E5E7EB"/>
|
|
9
|
+
<rect x="91.7031" y="132" width="20" height="6" rx="2" fill="#D1D5DB"/>
|
|
10
|
+
<rect x="118.703" y="132" width="48" height="6" rx="2" fill="#E5E7EB"/>
|
|
11
|
+
<rect x="181" y="132" width="20" height="6" rx="2" fill="#D1D5DB"/>
|
|
12
|
+
<rect x="208" y="132" width="31" height="6" rx="2" fill="#E5E7EB"/>
|
|
13
|
+
<rect x="218" y="28" width="38.2963" height="16" rx="3" fill="#EB4F27"/>
|
|
14
|
+
<rect x="228" y="33.5" width="18.2963" height="5" rx="2" fill="white"/>
|
|
15
|
+
<rect x="99" y="163" width="151" height="35" rx="8" fill="#EB4F27"/>
|
|
16
|
+
<rect x="123" y="175.5" width="103" height="10" rx="2" fill="white"/>
|
|
17
|
+
</svg>
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
<svg width="340" height="130" viewBox="0 0 340 130" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<rect x="12" y="110" width="315.08" height="12" rx="6" fill="#374151"/>
|
|
3
|
+
<rect x="12" y="110" width="99.8079" height="12" rx="6" fill="#6B7280"/>
|
|
4
|
+
<rect x="12" y="95" width="55.3654" height="5" rx="2.5" fill="#6B7280"/>
|
|
5
|
+
<rect x="12" y="59" width="315.08" height="12" rx="6" fill="#374151"/>
|
|
6
|
+
<rect x="12" y="59" width="189.353" height="12" rx="6" fill="#6B7280"/>
|
|
7
|
+
<rect x="272" y="44" width="55.3654" height="5" rx="2.5" fill="#6B7280"/>
|
|
8
|
+
<rect x="12" y="8" width="315.08" height="12" rx="6" fill="#374151"/>
|
|
9
|
+
<rect x="12" y="8" width="151.5" height="12" rx="6" fill="#6B7280"/>
|
|
10
|
+
</svg>
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
<svg width="340" height="130" viewBox="0 0 340 130" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<rect x="12" y="110" width="315.08" height="12" rx="6" fill="#D1D5DB"/>
|
|
3
|
+
<rect x="12" y="110" width="99.8079" height="12" rx="6" fill="#9CA3AF"/>
|
|
4
|
+
<rect x="12" y="95" width="55.3654" height="5" rx="2.5" fill="#D1D5DB"/>
|
|
5
|
+
<rect x="12" y="59" width="315.08" height="12" rx="6" fill="#D1D5DB"/>
|
|
6
|
+
<rect x="12" y="59" width="189.353" height="12" rx="6" fill="#9CA3AF"/>
|
|
7
|
+
<rect x="272" y="44" width="55.3654" height="5" rx="2.5" fill="#D1D5DB"/>
|
|
8
|
+
<rect x="12" y="8" width="315.08" height="12" rx="6" fill="#D1D5DB"/>
|
|
9
|
+
<rect x="12" y="8" width="151.5" height="12" rx="6" fill="#9CA3AF"/>
|
|
10
|
+
</svg>
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
<svg width="410" height="240" viewBox="0 0 410 240" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path d="M105.644 59.6344C105.914 58.8055 107.087 58.8055 107.356 59.6344L108.319 62.5972C108.378 62.7776 108.492 62.9348 108.646 63.0464C108.799 63.1579 108.984 63.218 109.174 63.2182H112.29C113.162 63.2182 113.524 64.3342 112.819 64.8472L110.299 66.6778C110.145 66.7894 110.03 66.9469 109.972 67.1276C109.913 67.3084 109.913 67.5031 109.971 67.684L110.934 70.6468C111.204 71.4757 110.255 72.166 109.548 71.653L107.028 69.8224C106.875 69.7108 106.69 69.6507 106.5 69.6507C106.31 69.6507 106.125 69.7108 105.971 69.8224L103.451 71.653C102.745 72.166 101.797 71.4757 102.066 70.6468L103.029 67.684C103.087 67.5031 103.087 67.3084 103.028 67.1276C102.97 66.9469 102.855 66.7894 102.701 66.6778L100.182 64.8481C99.4773 64.3351 99.84 63.2191 100.711 63.2191H103.826C104.016 63.2191 104.201 63.1591 104.355 63.0475C104.509 62.936 104.623 62.7787 104.682 62.5981L105.645 59.6353L105.644 59.6344Z" fill="#FACA15"/>
|
|
3
|
+
<path d="M124.644 59.6344C124.914 58.8055 126.087 58.8055 126.356 59.6344L127.319 62.5972C127.378 62.7776 127.492 62.9348 127.646 63.0464C127.799 63.1579 127.984 63.218 128.174 63.2182H131.29C132.162 63.2182 132.524 64.3342 131.819 64.8472L129.299 66.6778C129.145 66.7894 129.03 66.9469 128.972 67.1276C128.913 67.3084 128.913 67.5031 128.971 67.684L129.934 70.6468C130.204 71.4757 129.255 72.166 128.548 71.653L126.028 69.8224C125.875 69.7108 125.69 69.6507 125.5 69.6507C125.31 69.6507 125.125 69.7108 124.971 69.8224L122.451 71.653C121.745 72.166 120.797 71.4757 121.066 70.6468L122.029 67.684C122.087 67.5031 122.087 67.3084 122.028 67.1276C121.97 66.9469 121.855 66.7894 121.701 66.6778L119.182 64.8481C118.477 64.3351 118.84 63.2191 119.711 63.2191H122.826C123.016 63.2191 123.201 63.1591 123.355 63.0475C123.509 62.936 123.623 62.7787 123.682 62.5981L124.645 59.6353L124.644 59.6344Z" fill="#FACA15"/>
|
|
4
|
+
<path d="M143.644 59.6344C143.914 58.8055 145.087 58.8055 145.356 59.6344L146.319 62.5972C146.378 62.7776 146.492 62.9348 146.646 63.0464C146.799 63.1579 146.984 63.218 147.174 63.2182H150.29C151.162 63.2182 151.524 64.3342 150.819 64.8472L148.299 66.6778C148.145 66.7894 148.03 66.9469 147.972 67.1276C147.913 67.3084 147.913 67.5031 147.971 67.684L148.934 70.6468C149.204 71.4757 148.255 72.166 147.548 71.653L145.028 69.8224C144.875 69.7108 144.69 69.6507 144.5 69.6507C144.31 69.6507 144.125 69.7108 143.971 69.8224L141.451 71.653C140.745 72.166 139.797 71.4757 140.066 70.6468L141.029 67.684C141.087 67.5031 141.087 67.3084 141.028 67.1276C140.97 66.9469 140.855 66.7894 140.701 66.6778L138.182 64.8481C137.477 64.3351 137.84 63.2191 138.711 63.2191H141.826C142.016 63.2191 142.201 63.1591 142.355 63.0475C142.509 62.936 142.623 62.7787 142.682 62.5981L143.645 59.6353L143.644 59.6344Z" fill="#FACA15"/>
|
|
5
|
+
<path d="M162.644 59.6344C162.914 58.8055 164.087 58.8055 164.356 59.6344L165.319 62.5972C165.378 62.7776 165.492 62.9348 165.646 63.0464C165.799 63.1579 165.984 63.218 166.174 63.2182H169.29C170.162 63.2182 170.524 64.3342 169.819 64.8472L167.299 66.6778C167.145 66.7894 167.03 66.9469 166.972 67.1276C166.913 67.3084 166.913 67.5031 166.971 67.684L167.934 70.6468C168.204 71.4757 167.255 72.166 166.548 71.653L164.028 69.8224C163.875 69.7108 163.69 69.6507 163.5 69.6507C163.31 69.6507 163.125 69.7108 162.971 69.8224L160.451 71.653C159.745 72.166 158.797 71.4757 159.066 70.6468L160.029 67.684C160.087 67.5031 160.087 67.3084 160.028 67.1276C159.97 66.9469 159.855 66.7894 159.701 66.6778L157.182 64.8481C156.477 64.3351 156.84 63.2191 157.711 63.2191H160.826C161.016 63.2191 161.201 63.1591 161.355 63.0475C161.509 62.936 161.623 62.7787 161.682 62.5981L162.645 59.6353L162.644 59.6344Z" fill="#FACA15"/>
|
|
6
|
+
<path d="M181.644 59.6344C181.914 58.8055 183.087 58.8055 183.356 59.6344L184.319 62.5972C184.378 62.7776 184.492 62.9348 184.646 63.0464C184.799 63.1579 184.984 63.218 185.174 63.2182H188.29C189.162 63.2182 189.524 64.3342 188.819 64.8472L186.299 66.6778C186.145 66.7894 186.03 66.9469 185.972 67.1276C185.913 67.3084 185.913 67.5031 185.971 67.684L186.934 70.6468C187.204 71.4757 186.255 72.166 185.548 71.653L183.028 69.8224C182.875 69.7108 182.69 69.6507 182.5 69.6507C182.31 69.6507 182.125 69.7108 181.971 69.8224L179.451 71.653C178.745 72.166 177.797 71.4757 178.066 70.6468L179.029 67.684C179.087 67.5031 179.087 67.3084 179.028 67.1276C178.97 66.9469 178.855 66.7894 178.701 66.6778L176.182 64.8481C175.477 64.3351 175.84 63.2191 176.711 63.2191H179.826C180.016 63.2191 180.201 63.1591 180.355 63.0475C180.509 62.936 180.623 62.7787 180.682 62.5981L181.645 59.6353L181.644 59.6344Z" fill="#4B5563"/>
|
|
7
|
+
<path d="M105.644 89.6344C105.914 88.8055 107.087 88.8055 107.356 89.6344L108.319 92.5972C108.378 92.7776 108.492 92.9348 108.646 93.0464C108.799 93.1579 108.984 93.218 109.174 93.2182H112.29C113.162 93.2182 113.524 94.3342 112.819 94.8472L110.299 96.6778C110.145 96.7894 110.03 96.9469 109.972 97.1276C109.913 97.3084 109.913 97.5031 109.971 97.684L110.934 100.647C111.204 101.476 110.255 102.166 109.548 101.653L107.028 99.8224C106.875 99.7108 106.69 99.6507 106.5 99.6507C106.31 99.6507 106.125 99.7108 105.971 99.8224L103.451 101.653C102.745 102.166 101.797 101.476 102.066 100.647L103.029 97.684C103.087 97.5031 103.087 97.3084 103.028 97.1276C102.97 96.9469 102.855 96.7894 102.701 96.6778L100.182 94.8481C99.4773 94.3351 99.84 93.2191 100.711 93.2191H103.826C104.016 93.2191 104.201 93.1591 104.355 93.0475C104.509 92.936 104.623 92.7787 104.682 92.5981L105.645 89.6353L105.644 89.6344Z" fill="#FACA15"/>
|
|
8
|
+
<rect x="118.5" y="94" width="17" height="4" rx="2" fill="#6B7280"/>
|
|
9
|
+
<rect x="141.5" y="94" width="36" height="4" rx="2" fill="#9CA3AF"/>
|
|
10
|
+
<path d="M105.644 119.634C105.914 118.805 107.087 118.805 107.356 119.634L108.319 122.597C108.378 122.778 108.492 122.935 108.646 123.046C108.799 123.158 108.984 123.218 109.174 123.218H112.29C113.162 123.218 113.524 124.334 112.819 124.847L110.299 126.678C110.145 126.789 110.03 126.947 109.972 127.128C109.913 127.308 109.913 127.503 109.971 127.684L110.934 130.647C111.204 131.476 110.255 132.166 109.548 131.653L107.028 129.822C106.875 129.711 106.69 129.651 106.5 129.651C106.31 129.651 106.125 129.711 105.971 129.822L103.451 131.653C102.745 132.166 101.797 131.476 102.066 130.647L103.029 127.684C103.087 127.503 103.087 127.308 103.028 127.128C102.97 126.947 102.855 126.789 102.701 126.678L100.182 124.848C99.4773 124.335 99.84 123.219 100.711 123.219H103.826C104.016 123.219 104.201 123.159 104.355 123.048C104.509 122.936 104.623 122.779 104.682 122.598L105.645 119.635L105.644 119.634Z" fill="#FACA15"/>
|
|
11
|
+
<path d="M124.644 119.634C124.914 118.805 126.087 118.805 126.356 119.634L127.319 122.597C127.378 122.778 127.492 122.935 127.646 123.046C127.799 123.158 127.984 123.218 128.174 123.218H131.29C132.162 123.218 132.524 124.334 131.819 124.847L129.299 126.678C129.145 126.789 129.03 126.947 128.972 127.128C128.913 127.308 128.913 127.503 128.971 127.684L129.934 130.647C130.204 131.476 129.255 132.166 128.548 131.653L126.028 129.822C125.875 129.711 125.69 129.651 125.5 129.651C125.31 129.651 125.125 129.711 124.971 129.822L122.451 131.653C121.745 132.166 120.797 131.476 121.066 130.647L122.029 127.684C122.087 127.503 122.087 127.308 122.028 127.128C121.97 126.947 121.855 126.789 121.701 126.678L119.182 124.848C118.477 124.335 118.84 123.219 119.711 123.219H122.826C123.016 123.219 123.201 123.159 123.355 123.048C123.509 122.936 123.623 122.779 123.682 122.598L124.645 119.635L124.644 119.634Z" fill="#FACA15"/>
|
|
12
|
+
<path d="M143.644 119.634C143.914 118.805 145.087 118.805 145.356 119.634L146.319 122.597C146.378 122.778 146.492 122.935 146.646 123.046C146.799 123.158 146.984 123.218 147.174 123.218H150.29C151.162 123.218 151.524 124.334 150.819 124.847L148.299 126.678C148.145 126.789 148.03 126.947 147.972 127.128C147.913 127.308 147.913 127.503 147.971 127.684L148.934 130.647C149.204 131.476 148.255 132.166 147.548 131.653L145.028 129.822C144.875 129.711 144.69 129.651 144.5 129.651C144.31 129.651 144.125 129.711 143.971 129.822L141.451 131.653C140.745 132.166 139.797 131.476 140.066 130.647L141.029 127.684C141.087 127.503 141.087 127.308 141.028 127.128C140.97 126.947 140.855 126.789 140.701 126.678L138.182 124.848C137.477 124.335 137.84 123.219 138.711 123.219H141.826C142.016 123.219 142.201 123.159 142.355 123.048C142.509 122.936 142.623 122.779 142.682 122.598L143.645 119.635L143.644 119.634Z" fill="#FACA15"/>
|
|
13
|
+
<path d="M162.644 119.634C162.914 118.805 164.087 118.805 164.356 119.634L165.319 122.597C165.378 122.778 165.492 122.935 165.646 123.046C165.799 123.158 165.984 123.218 166.174 123.218H169.29C170.162 123.218 170.524 124.334 169.819 124.847L167.299 126.678C167.145 126.789 167.03 126.947 166.972 127.128C166.913 127.308 166.913 127.503 166.971 127.684L167.934 130.647C168.204 131.476 167.255 132.166 166.548 131.653L164.028 129.822C163.875 129.711 163.69 129.651 163.5 129.651C163.31 129.651 163.125 129.711 162.971 129.822L160.451 131.653C159.745 132.166 158.797 131.476 159.066 130.647L160.029 127.684C160.087 127.503 160.087 127.308 160.028 127.128C159.97 126.947 159.855 126.789 159.701 126.678L157.182 124.848C156.477 124.335 156.84 123.219 157.711 123.219H160.826C161.016 123.219 161.201 123.159 161.355 123.048C161.509 122.936 161.623 122.779 161.682 122.598L162.645 119.635L162.644 119.634Z" fill="#FACA15"/>
|
|
14
|
+
<path d="M181.644 119.634C181.914 118.805 183.087 118.805 183.356 119.634L184.319 122.597C184.378 122.778 184.492 122.935 184.646 123.046C184.799 123.158 184.984 123.218 185.174 123.218H188.29C189.162 123.218 189.524 124.334 188.819 124.847L186.299 126.678C186.145 126.789 186.03 126.947 185.972 127.128C185.913 127.308 185.913 127.503 185.971 127.684L186.934 130.647C187.204 131.476 186.255 132.166 185.548 131.653L183.028 129.822C182.875 129.711 182.69 129.651 182.5 129.651C182.31 129.651 182.125 129.711 181.971 129.822L179.451 131.653C178.745 132.166 177.797 131.476 178.066 130.647L179.029 127.684C179.087 127.503 179.087 127.308 179.028 127.128C178.97 126.947 178.855 126.789 178.701 126.678L176.182 124.848C175.477 124.335 175.84 123.219 176.711 123.219H179.826C180.016 123.219 180.201 123.159 180.355 123.048C180.509 122.936 180.623 122.779 180.682 122.598L181.645 119.635L181.644 119.634Z" fill="#FACA15"/>
|
|
15
|
+
<rect x="194.5" y="124" width="17" height="4" rx="2" fill="#6B7280"/>
|
|
16
|
+
<rect x="217.5" y="124" width="36" height="4" rx="2" fill="#9CA3AF"/>
|
|
17
|
+
<rect x="97.5" y="143" width="17" height="4" rx="2" fill="#9CA3AF"/>
|
|
18
|
+
<rect x="120.5" y="143" width="169" height="4" rx="2" fill="#6B7280"/>
|
|
19
|
+
<rect x="295.5" y="143" width="17" height="4" rx="2" fill="#9CA3AF"/>
|
|
20
|
+
<rect x="97.5" y="155" width="17" height="4" rx="2" fill="#9CA3AF"/>
|
|
21
|
+
<rect x="120.5" y="155" width="169" height="4" rx="2" fill="#6B7280"/>
|
|
22
|
+
<rect x="295.5" y="155" width="17" height="4" rx="2" fill="#9CA3AF"/>
|
|
23
|
+
<rect x="97.5" y="167" width="17" height="4" rx="2" fill="#9CA3AF"/>
|
|
24
|
+
<rect x="120.5" y="167" width="169" height="4" rx="2" fill="#6B7280"/>
|
|
25
|
+
<rect x="295.5" y="167" width="17" height="4" rx="2" fill="#9CA3AF"/>
|
|
26
|
+
<rect x="97.5" y="179" width="17" height="4" rx="2" fill="#9CA3AF"/>
|
|
27
|
+
<rect x="120.5" y="179" width="169" height="4" rx="2" fill="#6B7280"/>
|
|
28
|
+
<rect x="295.5" y="179" width="17" height="4" rx="2" fill="#9CA3AF"/>
|
|
29
|
+
</svg>
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
<svg width="410" height="240" viewBox="0 0 410 240" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path d="M105.644 59.6344C105.914 58.8055 107.087 58.8055 107.356 59.6344L108.319 62.5972C108.378 62.7776 108.492 62.9348 108.646 63.0464C108.799 63.1579 108.984 63.218 109.174 63.2182H112.29C113.162 63.2182 113.524 64.3342 112.819 64.8472L110.299 66.6778C110.145 66.7894 110.03 66.9469 109.972 67.1276C109.913 67.3084 109.913 67.5031 109.971 67.684L110.934 70.6468C111.204 71.4757 110.255 72.166 109.548 71.653L107.028 69.8224C106.875 69.7108 106.69 69.6507 106.5 69.6507C106.31 69.6507 106.125 69.7108 105.971 69.8224L103.451 71.653C102.745 72.166 101.797 71.4757 102.066 70.6468L103.029 67.684C103.087 67.5031 103.087 67.3084 103.028 67.1276C102.97 66.9469 102.855 66.7894 102.701 66.6778L100.182 64.8481C99.4773 64.3351 99.84 63.2191 100.711 63.2191H103.826C104.016 63.2191 104.201 63.1591 104.355 63.0475C104.509 62.936 104.623 62.7787 104.682 62.5981L105.645 59.6353L105.644 59.6344Z" fill="#FACA15"/>
|
|
3
|
+
<path d="M124.644 59.6344C124.914 58.8055 126.087 58.8055 126.356 59.6344L127.319 62.5972C127.378 62.7776 127.492 62.9348 127.646 63.0464C127.799 63.1579 127.984 63.218 128.174 63.2182H131.29C132.162 63.2182 132.524 64.3342 131.819 64.8472L129.299 66.6778C129.145 66.7894 129.03 66.9469 128.972 67.1276C128.913 67.3084 128.913 67.5031 128.971 67.684L129.934 70.6468C130.204 71.4757 129.255 72.166 128.548 71.653L126.028 69.8224C125.875 69.7108 125.69 69.6507 125.5 69.6507C125.31 69.6507 125.125 69.7108 124.971 69.8224L122.451 71.653C121.745 72.166 120.797 71.4757 121.066 70.6468L122.029 67.684C122.087 67.5031 122.087 67.3084 122.028 67.1276C121.97 66.9469 121.855 66.7894 121.701 66.6778L119.182 64.8481C118.477 64.3351 118.84 63.2191 119.711 63.2191H122.826C123.016 63.2191 123.201 63.1591 123.355 63.0475C123.509 62.936 123.623 62.7787 123.682 62.5981L124.645 59.6353L124.644 59.6344Z" fill="#FACA15"/>
|
|
4
|
+
<path d="M143.644 59.6344C143.914 58.8055 145.087 58.8055 145.356 59.6344L146.319 62.5972C146.378 62.7776 146.492 62.9348 146.646 63.0464C146.799 63.1579 146.984 63.218 147.174 63.2182H150.29C151.162 63.2182 151.524 64.3342 150.819 64.8472L148.299 66.6778C148.145 66.7894 148.03 66.9469 147.972 67.1276C147.913 67.3084 147.913 67.5031 147.971 67.684L148.934 70.6468C149.204 71.4757 148.255 72.166 147.548 71.653L145.028 69.8224C144.875 69.7108 144.69 69.6507 144.5 69.6507C144.31 69.6507 144.125 69.7108 143.971 69.8224L141.451 71.653C140.745 72.166 139.797 71.4757 140.066 70.6468L141.029 67.684C141.087 67.5031 141.087 67.3084 141.028 67.1276C140.97 66.9469 140.855 66.7894 140.701 66.6778L138.182 64.8481C137.477 64.3351 137.84 63.2191 138.711 63.2191H141.826C142.016 63.2191 142.201 63.1591 142.355 63.0475C142.509 62.936 142.623 62.7787 142.682 62.5981L143.645 59.6353L143.644 59.6344Z" fill="#FACA15"/>
|
|
5
|
+
<path d="M162.644 59.6344C162.914 58.8055 164.087 58.8055 164.356 59.6344L165.319 62.5972C165.378 62.7776 165.492 62.9348 165.646 63.0464C165.799 63.1579 165.984 63.218 166.174 63.2182H169.29C170.162 63.2182 170.524 64.3342 169.819 64.8472L167.299 66.6778C167.145 66.7894 167.03 66.9469 166.972 67.1276C166.913 67.3084 166.913 67.5031 166.971 67.684L167.934 70.6468C168.204 71.4757 167.255 72.166 166.548 71.653L164.028 69.8224C163.875 69.7108 163.69 69.6507 163.5 69.6507C163.31 69.6507 163.125 69.7108 162.971 69.8224L160.451 71.653C159.745 72.166 158.797 71.4757 159.066 70.6468L160.029 67.684C160.087 67.5031 160.087 67.3084 160.028 67.1276C159.97 66.9469 159.855 66.7894 159.701 66.6778L157.182 64.8481C156.477 64.3351 156.84 63.2191 157.711 63.2191H160.826C161.016 63.2191 161.201 63.1591 161.355 63.0475C161.509 62.936 161.623 62.7787 161.682 62.5981L162.645 59.6353L162.644 59.6344Z" fill="#FACA15"/>
|
|
6
|
+
<path d="M181.644 59.6344C181.914 58.8055 183.087 58.8055 183.356 59.6344L184.319 62.5972C184.378 62.7776 184.492 62.9348 184.646 63.0464C184.799 63.1579 184.984 63.218 185.174 63.2182H188.29C189.162 63.2182 189.524 64.3342 188.819 64.8472L186.299 66.6778C186.145 66.7894 186.03 66.9469 185.972 67.1276C185.913 67.3084 185.913 67.5031 185.971 67.684L186.934 70.6468C187.204 71.4757 186.255 72.166 185.548 71.653L183.028 69.8224C182.875 69.7108 182.69 69.6507 182.5 69.6507C182.31 69.6507 182.125 69.7108 181.971 69.8224L179.451 71.653C178.745 72.166 177.797 71.4757 178.066 70.6468L179.029 67.684C179.087 67.5031 179.087 67.3084 179.028 67.1276C178.97 66.9469 178.855 66.7894 178.701 66.6778L176.182 64.8481C175.477 64.3351 175.84 63.2191 176.711 63.2191H179.826C180.016 63.2191 180.201 63.1591 180.355 63.0475C180.509 62.936 180.623 62.7787 180.682 62.5981L181.645 59.6353L181.644 59.6344Z" fill="#D1D5DB"/>
|
|
7
|
+
<path d="M105.644 89.6344C105.914 88.8055 107.087 88.8055 107.356 89.6344L108.319 92.5972C108.378 92.7776 108.492 92.9348 108.646 93.0464C108.799 93.1579 108.984 93.218 109.174 93.2182H112.29C113.162 93.2182 113.524 94.3342 112.819 94.8472L110.299 96.6778C110.145 96.7894 110.03 96.9469 109.972 97.1276C109.913 97.3084 109.913 97.5031 109.971 97.684L110.934 100.647C111.204 101.476 110.255 102.166 109.548 101.653L107.028 99.8224C106.875 99.7108 106.69 99.6507 106.5 99.6507C106.31 99.6507 106.125 99.7108 105.971 99.8224L103.451 101.653C102.745 102.166 101.797 101.476 102.066 100.647L103.029 97.684C103.087 97.5031 103.087 97.3084 103.028 97.1276C102.97 96.9469 102.855 96.7894 102.701 96.6778L100.182 94.8481C99.4773 94.3351 99.84 93.2191 100.711 93.2191H103.826C104.016 93.2191 104.201 93.1591 104.355 93.0475C104.509 92.936 104.623 92.7787 104.682 92.5981L105.645 89.6353L105.644 89.6344Z" fill="#FACA15"/>
|
|
8
|
+
<rect x="118.5" y="94" width="17" height="4" rx="2" fill="#9CA3AF"/>
|
|
9
|
+
<rect x="141.5" y="94" width="36" height="4" rx="2" fill="#E5E7EB"/>
|
|
10
|
+
<path d="M105.644 119.634C105.914 118.805 107.087 118.805 107.356 119.634L108.319 122.597C108.378 122.778 108.492 122.935 108.646 123.046C108.799 123.158 108.984 123.218 109.174 123.218H112.29C113.162 123.218 113.524 124.334 112.819 124.847L110.299 126.678C110.145 126.789 110.03 126.947 109.972 127.128C109.913 127.308 109.913 127.503 109.971 127.684L110.934 130.647C111.204 131.476 110.255 132.166 109.548 131.653L107.028 129.822C106.875 129.711 106.69 129.651 106.5 129.651C106.31 129.651 106.125 129.711 105.971 129.822L103.451 131.653C102.745 132.166 101.797 131.476 102.066 130.647L103.029 127.684C103.087 127.503 103.087 127.308 103.028 127.128C102.97 126.947 102.855 126.789 102.701 126.678L100.182 124.848C99.4773 124.335 99.84 123.219 100.711 123.219H103.826C104.016 123.219 104.201 123.159 104.355 123.048C104.509 122.936 104.623 122.779 104.682 122.598L105.645 119.635L105.644 119.634Z" fill="#FACA15"/>
|
|
11
|
+
<path d="M124.644 119.634C124.914 118.805 126.087 118.805 126.356 119.634L127.319 122.597C127.378 122.778 127.492 122.935 127.646 123.046C127.799 123.158 127.984 123.218 128.174 123.218H131.29C132.162 123.218 132.524 124.334 131.819 124.847L129.299 126.678C129.145 126.789 129.03 126.947 128.972 127.128C128.913 127.308 128.913 127.503 128.971 127.684L129.934 130.647C130.204 131.476 129.255 132.166 128.548 131.653L126.028 129.822C125.875 129.711 125.69 129.651 125.5 129.651C125.31 129.651 125.125 129.711 124.971 129.822L122.451 131.653C121.745 132.166 120.797 131.476 121.066 130.647L122.029 127.684C122.087 127.503 122.087 127.308 122.028 127.128C121.97 126.947 121.855 126.789 121.701 126.678L119.182 124.848C118.477 124.335 118.84 123.219 119.711 123.219H122.826C123.016 123.219 123.201 123.159 123.355 123.048C123.509 122.936 123.623 122.779 123.682 122.598L124.645 119.635L124.644 119.634Z" fill="#FACA15"/>
|
|
12
|
+
<path d="M143.644 119.634C143.914 118.805 145.087 118.805 145.356 119.634L146.319 122.597C146.378 122.778 146.492 122.935 146.646 123.046C146.799 123.158 146.984 123.218 147.174 123.218H150.29C151.162 123.218 151.524 124.334 150.819 124.847L148.299 126.678C148.145 126.789 148.03 126.947 147.972 127.128C147.913 127.308 147.913 127.503 147.971 127.684L148.934 130.647C149.204 131.476 148.255 132.166 147.548 131.653L145.028 129.822C144.875 129.711 144.69 129.651 144.5 129.651C144.31 129.651 144.125 129.711 143.971 129.822L141.451 131.653C140.745 132.166 139.797 131.476 140.066 130.647L141.029 127.684C141.087 127.503 141.087 127.308 141.028 127.128C140.97 126.947 140.855 126.789 140.701 126.678L138.182 124.848C137.477 124.335 137.84 123.219 138.711 123.219H141.826C142.016 123.219 142.201 123.159 142.355 123.048C142.509 122.936 142.623 122.779 142.682 122.598L143.645 119.635L143.644 119.634Z" fill="#FACA15"/>
|
|
13
|
+
<path d="M162.644 119.634C162.914 118.805 164.087 118.805 164.356 119.634L165.319 122.597C165.378 122.778 165.492 122.935 165.646 123.046C165.799 123.158 165.984 123.218 166.174 123.218H169.29C170.162 123.218 170.524 124.334 169.819 124.847L167.299 126.678C167.145 126.789 167.03 126.947 166.972 127.128C166.913 127.308 166.913 127.503 166.971 127.684L167.934 130.647C168.204 131.476 167.255 132.166 166.548 131.653L164.028 129.822C163.875 129.711 163.69 129.651 163.5 129.651C163.31 129.651 163.125 129.711 162.971 129.822L160.451 131.653C159.745 132.166 158.797 131.476 159.066 130.647L160.029 127.684C160.087 127.503 160.087 127.308 160.028 127.128C159.97 126.947 159.855 126.789 159.701 126.678L157.182 124.848C156.477 124.335 156.84 123.219 157.711 123.219H160.826C161.016 123.219 161.201 123.159 161.355 123.048C161.509 122.936 161.623 122.779 161.682 122.598L162.645 119.635L162.644 119.634Z" fill="#FACA15"/>
|
|
14
|
+
<path d="M181.644 119.634C181.914 118.805 183.087 118.805 183.356 119.634L184.319 122.597C184.378 122.778 184.492 122.935 184.646 123.046C184.799 123.158 184.984 123.218 185.174 123.218H188.29C189.162 123.218 189.524 124.334 188.819 124.847L186.299 126.678C186.145 126.789 186.03 126.947 185.972 127.128C185.913 127.308 185.913 127.503 185.971 127.684L186.934 130.647C187.204 131.476 186.255 132.166 185.548 131.653L183.028 129.822C182.875 129.711 182.69 129.651 182.5 129.651C182.31 129.651 182.125 129.711 181.971 129.822L179.451 131.653C178.745 132.166 177.797 131.476 178.066 130.647L179.029 127.684C179.087 127.503 179.087 127.308 179.028 127.128C178.97 126.947 178.855 126.789 178.701 126.678L176.182 124.848C175.477 124.335 175.84 123.219 176.711 123.219H179.826C180.016 123.219 180.201 123.159 180.355 123.048C180.509 122.936 180.623 122.779 180.682 122.598L181.645 119.635L181.644 119.634Z" fill="#FACA15"/>
|
|
15
|
+
<rect x="194.5" y="124" width="17" height="4" rx="2" fill="#9CA3AF"/>
|
|
16
|
+
<rect x="217.5" y="124" width="36" height="4" rx="2" fill="#E5E7EB"/>
|
|
17
|
+
<rect x="97.5" y="143" width="17" height="4" rx="2" fill="#E5E7EB"/>
|
|
18
|
+
<rect x="120.5" y="143" width="169" height="4" rx="2" fill="#9CA3AF"/>
|
|
19
|
+
<rect x="295.5" y="143" width="17" height="4" rx="2" fill="#E5E7EB"/>
|
|
20
|
+
<rect x="97.5" y="155" width="17" height="4" rx="2" fill="#E5E7EB"/>
|
|
21
|
+
<rect x="120.5" y="155" width="169" height="4" rx="2" fill="#9CA3AF"/>
|
|
22
|
+
<rect x="295.5" y="155" width="17" height="4" rx="2" fill="#E5E7EB"/>
|
|
23
|
+
<rect x="97.5" y="167" width="17" height="4" rx="2" fill="#E5E7EB"/>
|
|
24
|
+
<rect x="120.5" y="167" width="169" height="4" rx="2" fill="#9CA3AF"/>
|
|
25
|
+
<rect x="295.5" y="167" width="17" height="4" rx="2" fill="#E5E7EB"/>
|
|
26
|
+
<rect x="97.5" y="179" width="17" height="4" rx="2" fill="#E5E7EB"/>
|
|
27
|
+
<rect x="120.5" y="179" width="169" height="4" rx="2" fill="#9CA3AF"/>
|
|
28
|
+
<rect x="295.5" y="179" width="17" height="4" rx="2" fill="#E5E7EB"/>
|
|
29
|
+
</svg>
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
<svg width="410" height="240" viewBox="0 0 410 240" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<rect x="164.252" y="29.5" width="81.4961" height="181" rx="2" fill="#374151"/>
|
|
3
|
+
<rect x="176.252" y="41.5" width="33" height="5" rx="1" fill="#9CA3AF"/>
|
|
4
|
+
<rect x="176.252" y="62.5" width="5" height="5" rx="2.5" fill="#9CA3AF"/>
|
|
5
|
+
<rect x="185.252" y="62.5" width="48.4961" height="5" rx="1" fill="#9CA3AF"/>
|
|
6
|
+
<rect x="176.252" y="80.5" width="5" height="5" rx="2.5" fill="#9CA3AF"/>
|
|
7
|
+
<rect x="185.252" y="80.5" width="48.4961" height="5" rx="1" fill="#9CA3AF"/>
|
|
8
|
+
<rect x="176.252" y="98.5" width="5" height="5" rx="2.5" fill="#9CA3AF"/>
|
|
9
|
+
<rect x="185.252" y="98.5" width="48.4961" height="5" rx="1" fill="#9CA3AF"/>
|
|
10
|
+
<rect x="176.252" y="116.5" width="5" height="5" rx="2.5" fill="#9CA3AF"/>
|
|
11
|
+
<rect x="185.252" y="116.5" width="48.4961" height="5" rx="1" fill="#9CA3AF"/>
|
|
12
|
+
<rect x="176.252" y="134.5" width="5" height="5" rx="2.5" fill="#9CA3AF"/>
|
|
13
|
+
<rect x="185.252" y="134.5" width="48.4961" height="5" rx="1" fill="#9CA3AF"/>
|
|
14
|
+
<rect x="185.5" y="193.5" width="5" height="5" rx="2.5" fill="#6B7280"/>
|
|
15
|
+
<rect x="202.5" y="193.5" width="5" height="5" rx="2.5" fill="#6B7280"/>
|
|
16
|
+
<rect x="219.5" y="193.5" width="5" height="5" rx="2.5" fill="#6B7280"/>
|
|
17
|
+
</svg>
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
<svg width="410" height="240" viewBox="0 0 410 240" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<rect x="164.25" y="29.25" width="80.9961" height="180.5" rx="1.75" fill="#FAFAFA"/>
|
|
3
|
+
<rect x="176" y="41" width="33" height="5" rx="1" fill="#9CA3AF"/>
|
|
4
|
+
<rect x="176" y="62" width="5" height="5" rx="2.5" fill="#9CA3AF"/>
|
|
5
|
+
<rect x="185" y="62" width="48.4961" height="5" rx="1" fill="#9CA3AF"/>
|
|
6
|
+
<rect x="176" y="80" width="5" height="5" rx="2.5" fill="#9CA3AF"/>
|
|
7
|
+
<rect x="185" y="80" width="48.4961" height="5" rx="1" fill="#9CA3AF"/>
|
|
8
|
+
<rect x="176" y="98" width="5" height="5" rx="2.5" fill="#9CA3AF"/>
|
|
9
|
+
<rect x="185" y="98" width="48.4961" height="5" rx="1" fill="#9CA3AF"/>
|
|
10
|
+
<rect x="176" y="116" width="5" height="5" rx="2.5" fill="#9CA3AF"/>
|
|
11
|
+
<rect x="185" y="116" width="48.4961" height="5" rx="1" fill="#9CA3AF"/>
|
|
12
|
+
<rect x="176" y="134" width="5" height="5" rx="2.5" fill="#9CA3AF"/>
|
|
13
|
+
<rect x="185" y="134" width="48.4961" height="5" rx="1" fill="#9CA3AF"/>
|
|
14
|
+
<rect x="185.248" y="193" width="5" height="5" rx="2.5" fill="#D1D5DB"/>
|
|
15
|
+
<rect x="202.248" y="193" width="5" height="5" rx="2.5" fill="#D1D5DB"/>
|
|
16
|
+
<rect x="219.248" y="193" width="5" height="5" rx="2.5" fill="#D1D5DB"/>
|
|
17
|
+
<rect x="164.25" y="29.25" width="80.9961" height="180.5" rx="1.75" stroke="#E5E7EB" stroke-width="0.5"/>
|
|
18
|
+
</svg>
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
<svg width="350" height="230" viewBox="0 0 350 230" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<rect x="23" y="45" width="195" height="12" rx="3" fill="#6B7280"/>
|
|
3
|
+
<rect x="23" y="69" width="269" height="10" rx="3" fill="#4B5563"/>
|
|
4
|
+
<rect x="23" y="91" width="303" height="10" rx="3" fill="#4B5563"/>
|
|
5
|
+
<rect x="23" y="111" width="269" height="10" rx="3" fill="#4B5563"/>
|
|
6
|
+
<rect x="23" y="133" width="157" height="10" rx="3" fill="#4B5563"/>
|
|
7
|
+
<path d="M29.4012 177.255C32.0243 175.772 34.987 174.995 38 175C41.125 175 44.0587 175.819 46.5987 177.255M41.75 167.5C41.75 168.495 41.3549 169.448 40.6517 170.152C39.9484 170.855 38.9946 171.25 38 171.25C37.0054 171.25 36.0516 170.855 35.3483 170.152C34.6451 169.448 34.25 168.495 34.25 167.5C34.25 166.505 34.6451 165.552 35.3483 164.848C36.0516 164.145 37.0054 163.75 38 163.75C38.9946 163.75 39.9484 164.145 40.6517 164.848C41.3549 165.552 41.75 166.505 41.75 167.5ZM49.25 170C49.25 171.477 48.959 172.94 48.3936 174.305C47.8283 175.67 46.9996 176.91 45.955 177.955C44.9103 179 43.6701 179.828 42.3052 180.394C40.9403 180.959 39.4774 181.25 38 181.25C36.5226 181.25 35.0597 180.959 33.6948 180.394C32.3299 179.828 31.0897 179 30.045 177.955C29.0004 176.91 28.1717 175.67 27.6064 174.305C27.041 172.94 26.75 171.477 26.75 170C26.75 167.016 27.9353 164.155 30.045 162.045C32.1548 159.935 35.0163 158.75 38 158.75C40.9837 158.75 43.8452 159.935 45.955 162.045C48.0647 164.155 49.25 167.016 49.25 170Z" stroke="#6B7280" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
|
|
8
|
+
<rect x="61" y="158" width="54" height="10" rx="5" fill="#6B7280"/>
|
|
9
|
+
<rect x="61" y="176" width="76" height="6" rx="3" fill="#4B5563"/>
|
|
10
|
+
</svg>
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
<svg width="350" height="230" viewBox="0 0 350 230" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<rect x="23" y="45" width="195" height="12" rx="3" fill="#D1D5DB"/>
|
|
3
|
+
<rect x="23" y="69" width="269" height="10" rx="3" fill="#E5E7EB"/>
|
|
4
|
+
<rect x="23" y="91" width="303" height="10" rx="3" fill="#E5E7EB"/>
|
|
5
|
+
<rect x="23" y="111" width="269" height="10" rx="3" fill="#E5E7EB"/>
|
|
6
|
+
<rect x="23" y="133" width="157" height="10" rx="3" fill="#E5E7EB"/>
|
|
7
|
+
<path d="M29.4012 177.255C32.0243 175.772 34.987 174.995 38 175C41.125 175 44.0587 175.819 46.5987 177.255M41.75 167.5C41.75 168.495 41.3549 169.448 40.6517 170.152C39.9484 170.855 38.9946 171.25 38 171.25C37.0054 171.25 36.0516 170.855 35.3483 170.152C34.6451 169.448 34.25 168.495 34.25 167.5C34.25 166.505 34.6451 165.552 35.3483 164.848C36.0516 164.145 37.0054 163.75 38 163.75C38.9946 163.75 39.9484 164.145 40.6517 164.848C41.3549 165.552 41.75 166.505 41.75 167.5ZM49.25 170C49.25 171.477 48.959 172.94 48.3936 174.305C47.8283 175.67 46.9996 176.91 45.955 177.955C44.9103 179 43.6701 179.828 42.3052 180.394C40.9403 180.959 39.4774 181.25 38 181.25C36.5226 181.25 35.0597 180.959 33.6948 180.394C32.3299 179.828 31.0897 179 30.045 177.955C29.0004 176.91 28.1717 175.67 27.6064 174.305C27.041 172.94 26.75 171.477 26.75 170C26.75 167.016 27.9353 164.155 30.045 162.045C32.1548 159.935 35.0163 158.75 38 158.75C40.9837 158.75 43.8452 159.935 45.955 162.045C48.0647 164.155 49.25 167.016 49.25 170Z" stroke="#D1D5DB" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
|
|
8
|
+
<rect x="61" y="158" width="54" height="10" rx="5" fill="#D1D5DB"/>
|
|
9
|
+
<rect x="61" y="176" width="76" height="6" rx="3" fill="#E5E7EB"/>
|
|
10
|
+
</svg>
|
|
@@ -0,0 +1,69 @@
|
|
|
1
|
+
<svg width="350" height="230" viewBox="0 0 350 230" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<g clip-path="url(#clip0_169_149196)">
|
|
3
|
+
<g filter="url(#filter0_d_169_149196)">
|
|
4
|
+
<rect x="163" y="6" width="44" height="44" rx="22" fill="#4B5563"/>
|
|
5
|
+
<path d="M181 26.1001H181.5V25.6001V23.2001C181.5 22.9084 181.616 22.6286 181.822 22.4223L181.469 22.0687L181.822 22.4223C182.029 22.216 182.308 22.1001 182.6 22.1001H187.4C187.692 22.1001 187.972 22.216 188.178 22.4223C188.384 22.6286 188.5 22.9084 188.5 23.2001V25.6001V26.1001H189H189.8C190.092 26.1001 190.372 26.216 190.578 26.4223C190.784 26.6286 190.9 26.9084 190.9 27.2001V29.6001C190.9 29.8918 190.784 30.1716 190.578 30.3779C190.372 30.5842 190.092 30.7001 189.8 30.7001H189H188.5V31.2001V32.8001C188.5 33.0918 188.384 33.3716 188.178 33.5779C187.972 33.7842 187.692 33.9001 187.4 33.9001H182.6C182.308 33.9001 182.029 33.7842 181.822 33.5779L181.469 33.9315L181.822 33.5779C181.616 33.3716 181.5 33.0918 181.5 32.8001V31.2001V30.7001H181H180.2C179.908 30.7001 179.629 30.5842 179.422 30.3779C179.216 30.1716 179.1 29.8918 179.1 29.6001V27.2001C179.1 26.9084 179.216 26.6286 179.422 26.4223L179.069 26.0687L179.422 26.4223C179.629 26.216 179.908 26.1001 180.2 26.1001H181ZM187.9 23.2001V22.7001H187.4H182.6H182.1V23.2001V25.6001V26.1001H182.6H187.4H187.9V25.6001V23.2001ZM187.9 29.6001V29.1001H187.4H182.6H182.1V29.6001V32.8001V33.3001H182.6H187.4H187.9V32.8001V29.6001Z" fill="#9CA3AF" stroke="#9CA3AF"/>
|
|
6
|
+
<rect x="162.5" y="5.5" width="45" height="45" rx="22.5" stroke="#6B7280"/>
|
|
7
|
+
</g>
|
|
8
|
+
<g filter="url(#filter1_d_169_149196)">
|
|
9
|
+
<rect x="163" y="60" width="44" height="44" rx="22" fill="#4B5563"/>
|
|
10
|
+
<path d="M181.387 82.2978L181.85 82.4871L181.387 82.2978C181.322 82.4576 181.289 82.6288 181.29 82.8014C181.292 82.974 181.328 83.1446 181.396 83.3032C181.463 83.4603 181.561 83.6025 181.684 83.7218L184.081 86.1191L184.081 86.1191C184.325 86.3628 184.655 86.4997 185 86.4997C185.345 86.4997 185.675 86.3628 185.919 86.1191L185.919 86.1191L188.319 83.7191L188.319 83.7191L188.325 83.7129C188.562 83.4677 188.693 83.1393 188.69 82.7984C188.687 82.4576 188.551 82.1315 188.31 81.8905C188.068 81.6495 187.742 81.5127 187.402 81.5098C187.061 81.5068 186.732 81.6379 186.487 81.8747L186.487 81.8746L186.481 81.8807L186.3 82.0616V79.2999H189.8C190.092 79.2999 190.372 79.4158 190.578 79.6221C190.784 79.8284 190.9 80.1082 190.9 80.3999V85.9999C190.9 86.2916 190.784 86.5714 190.578 86.7777C190.372 86.984 190.092 87.0999 189.8 87.0999H180.2C179.908 87.0999 179.629 86.984 179.422 86.7777C179.216 86.5714 179.1 86.2916 179.1 85.9999V80.3999C179.1 80.1082 179.216 79.8284 179.422 79.6221C179.629 79.4158 179.908 79.2999 180.2 79.2999H183.7V82.0616L183.522 81.8835C183.403 81.7609 183.26 81.6631 183.103 81.5956L182.906 82.055L183.103 81.5956C182.945 81.5275 182.774 81.4916 182.602 81.4901C182.429 81.4886 182.258 81.5215 182.098 81.5869C181.938 81.6522 181.793 81.7488 181.671 81.8708C181.549 81.9929 181.452 82.138 181.387 82.2978ZM185.3 78.2999H184.7V77.1999C184.7 77.1203 184.732 77.044 184.788 76.9878C184.844 76.9315 184.921 76.8999 185 76.8999C185.08 76.8999 185.156 76.9315 185.212 76.9878C185.268 77.044 185.3 77.1203 185.3 77.1999V78.2999Z" fill="#9CA3AF" stroke="#9CA3AF"/>
|
|
11
|
+
<rect x="162.5" y="59.5" width="45" height="45" rx="22.5" stroke="#6B7280"/>
|
|
12
|
+
</g>
|
|
13
|
+
<g filter="url(#filter2_d_169_149196)">
|
|
14
|
+
<rect x="163" y="114" width="44" height="44" rx="22" fill="#4B5563"/>
|
|
15
|
+
<path d="M183.1 135.2C183.1 134.908 183.216 134.629 183.422 134.422C183.629 134.216 183.908 134.1 184.2 134.1H189C189.292 134.1 189.572 134.216 189.778 134.422C189.984 134.629 190.1 134.908 190.1 135.2V140C190.1 140.292 189.984 140.572 189.778 140.778C189.572 140.984 189.292 141.1 189 141.1H184.2C183.908 141.1 183.629 140.984 183.422 140.778C183.216 140.572 183.1 140.292 183.1 140V135.2Z" fill="#9CA3AF" stroke="#9CA3AF"/>
|
|
16
|
+
<path d="M181 130.4C180.576 130.4 180.169 130.568 179.869 130.869C179.568 131.169 179.4 131.576 179.4 132V136.8C179.4 137.224 179.568 137.631 179.869 137.931C180.169 138.231 180.576 138.4 181 138.4V132H187.4C187.4 131.576 187.231 131.169 186.931 130.869C186.631 130.568 186.224 130.4 185.8 130.4H181Z" fill="#9CA3AF"/>
|
|
17
|
+
<rect x="162.5" y="113.5" width="45" height="45" rx="22.5" stroke="#6B7280"/>
|
|
18
|
+
</g>
|
|
19
|
+
<rect x="160" y="174" width="50" height="50" rx="25" fill="#EB4F27"/>
|
|
20
|
+
<path d="M185 199H179.5H185Z" fill="white"/>
|
|
21
|
+
<path d="M185 193.5V199M185 199V204.5M185 199H190.5M185 199H179.5" stroke="white" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
|
|
22
|
+
<g filter="url(#filter3_d_169_149196)">
|
|
23
|
+
<rect x="91" y="69" width="56" height="26" rx="4" fill="#4B5563"/>
|
|
24
|
+
<rect x="103" y="80.5" width="32" height="3" rx="1.5" fill="#9CA3AF"/>
|
|
25
|
+
<path d="M153.961 82.7944L147.393 87.8175C147.145 88.0067 147 88.3003 147 88.6118V75.3882C147 75.6996 147.145 75.9933 147.393 76.1825L153.961 81.2056C154.485 81.6059 154.485 82.3941 153.961 82.7944Z" fill="#4B5563"/>
|
|
26
|
+
</g>
|
|
27
|
+
</g>
|
|
28
|
+
<defs>
|
|
29
|
+
<filter id="filter0_d_169_149196" x="160" y="4" width="50" height="50" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
|
30
|
+
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
|
31
|
+
<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"/>
|
|
32
|
+
<feOffset dy="1"/>
|
|
33
|
+
<feGaussianBlur stdDeviation="1"/>
|
|
34
|
+
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.08 0"/>
|
|
35
|
+
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_169_149196"/>
|
|
36
|
+
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_169_149196" result="shape"/>
|
|
37
|
+
</filter>
|
|
38
|
+
<filter id="filter1_d_169_149196" x="160" y="58" width="50" height="50" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
|
39
|
+
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
|
40
|
+
<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"/>
|
|
41
|
+
<feOffset dy="1"/>
|
|
42
|
+
<feGaussianBlur stdDeviation="1"/>
|
|
43
|
+
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.08 0"/>
|
|
44
|
+
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_169_149196"/>
|
|
45
|
+
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_169_149196" result="shape"/>
|
|
46
|
+
</filter>
|
|
47
|
+
<filter id="filter2_d_169_149196" x="160" y="112" width="50" height="50" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
|
48
|
+
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
|
49
|
+
<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"/>
|
|
50
|
+
<feOffset dy="1"/>
|
|
51
|
+
<feGaussianBlur stdDeviation="1"/>
|
|
52
|
+
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.08 0"/>
|
|
53
|
+
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_169_149196"/>
|
|
54
|
+
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_169_149196" result="shape"/>
|
|
55
|
+
</filter>
|
|
56
|
+
<filter id="filter3_d_169_149196" x="89" y="68" width="68" height="30" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
|
57
|
+
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
|
58
|
+
<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"/>
|
|
59
|
+
<feOffset dy="1"/>
|
|
60
|
+
<feGaussianBlur stdDeviation="1"/>
|
|
61
|
+
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.08 0"/>
|
|
62
|
+
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_169_149196"/>
|
|
63
|
+
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_169_149196" result="shape"/>
|
|
64
|
+
</filter>
|
|
65
|
+
<clipPath id="clip0_169_149196">
|
|
66
|
+
<rect width="350" height="230" fill="white"/>
|
|
67
|
+
</clipPath>
|
|
68
|
+
</defs>
|
|
69
|
+
</svg>
|
|
@@ -0,0 +1,69 @@
|
|
|
1
|
+
<svg width="350" height="230" viewBox="0 0 350 230" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<g clip-path="url(#clip0_169_149179)">
|
|
3
|
+
<g filter="url(#filter0_d_169_149179)">
|
|
4
|
+
<rect x="163" y="6" width="44" height="44" rx="22" fill="white"/>
|
|
5
|
+
<path d="M181 26.1001H181.5V25.6001V23.2001C181.5 22.9084 181.616 22.6286 181.822 22.4223L181.469 22.0687L181.822 22.4223C182.029 22.216 182.308 22.1001 182.6 22.1001H187.4C187.692 22.1001 187.972 22.216 188.178 22.4223C188.384 22.6286 188.5 22.9084 188.5 23.2001V25.6001V26.1001H189H189.8C190.092 26.1001 190.372 26.216 190.578 26.4223C190.784 26.6286 190.9 26.9084 190.9 27.2001V29.6001C190.9 29.8918 190.784 30.1716 190.578 30.3779C190.372 30.5842 190.092 30.7001 189.8 30.7001H189H188.5V31.2001V32.8001C188.5 33.0918 188.384 33.3716 188.178 33.5779C187.972 33.7842 187.692 33.9001 187.4 33.9001H182.6C182.308 33.9001 182.029 33.7842 181.822 33.5779L181.469 33.9315L181.822 33.5779C181.616 33.3716 181.5 33.0918 181.5 32.8001V31.2001V30.7001H181H180.2C179.908 30.7001 179.629 30.5842 179.422 30.3779C179.216 30.1716 179.1 29.8918 179.1 29.6001V27.2001C179.1 26.9084 179.216 26.6286 179.422 26.4223L179.069 26.0687L179.422 26.4223C179.629 26.216 179.908 26.1001 180.2 26.1001H181ZM187.9 23.2001V22.7001H187.4H182.6H182.1V23.2001V25.6001V26.1001H182.6H187.4H187.9V25.6001V23.2001ZM187.9 29.6001V29.1001H187.4H182.6H182.1V29.6001V32.8001V33.3001H182.6H187.4H187.9V32.8001V29.6001Z" fill="#6B7280" stroke="#6B7280"/>
|
|
6
|
+
<rect x="162.5" y="5.5" width="45" height="45" rx="22.5" stroke="#E5E7EB"/>
|
|
7
|
+
</g>
|
|
8
|
+
<g filter="url(#filter1_d_169_149179)">
|
|
9
|
+
<rect x="163" y="60" width="44" height="44" rx="22" fill="white"/>
|
|
10
|
+
<path d="M181.387 82.2978L181.85 82.4871L181.387 82.2978C181.322 82.4576 181.289 82.6288 181.29 82.8014C181.292 82.974 181.328 83.1446 181.396 83.3032C181.463 83.4603 181.561 83.6025 181.684 83.7218L184.081 86.1191L184.081 86.1191C184.325 86.3628 184.655 86.4997 185 86.4997C185.345 86.4997 185.675 86.3628 185.919 86.1191L185.919 86.1191L188.319 83.7191L188.319 83.7191L188.325 83.7129C188.562 83.4677 188.693 83.1393 188.69 82.7984C188.687 82.4576 188.551 82.1315 188.31 81.8905C188.068 81.6495 187.742 81.5127 187.402 81.5098C187.061 81.5068 186.732 81.6379 186.487 81.8747L186.487 81.8746L186.481 81.8807L186.3 82.0616V79.2999H189.8C190.092 79.2999 190.372 79.4158 190.578 79.6221C190.784 79.8284 190.9 80.1082 190.9 80.3999V85.9999C190.9 86.2916 190.784 86.5714 190.578 86.7777C190.372 86.984 190.092 87.0999 189.8 87.0999H180.2C179.908 87.0999 179.629 86.984 179.422 86.7777C179.216 86.5714 179.1 86.2916 179.1 85.9999V80.3999C179.1 80.1082 179.216 79.8284 179.422 79.6221C179.629 79.4158 179.908 79.2999 180.2 79.2999H183.7V82.0616L183.522 81.8835C183.403 81.7609 183.26 81.6631 183.103 81.5956L182.906 82.055L183.103 81.5956C182.945 81.5275 182.774 81.4916 182.602 81.4901C182.429 81.4886 182.258 81.5215 182.098 81.5869C181.938 81.6522 181.793 81.7488 181.671 81.8708C181.549 81.9929 181.452 82.138 181.387 82.2978ZM185.3 78.2999H184.7V77.1999C184.7 77.1203 184.732 77.044 184.788 76.9878C184.844 76.9315 184.921 76.8999 185 76.8999C185.08 76.8999 185.156 76.9315 185.212 76.9878C185.268 77.044 185.3 77.1203 185.3 77.1999V78.2999Z" fill="#6B7280" stroke="#6B7280"/>
|
|
11
|
+
<rect x="162.5" y="59.5" width="45" height="45" rx="22.5" stroke="#E5E7EB"/>
|
|
12
|
+
</g>
|
|
13
|
+
<g filter="url(#filter2_d_169_149179)">
|
|
14
|
+
<rect x="163" y="114" width="44" height="44" rx="22" fill="white"/>
|
|
15
|
+
<path d="M183.1 135.2C183.1 134.908 183.216 134.629 183.422 134.422C183.629 134.216 183.908 134.1 184.2 134.1H189C189.292 134.1 189.572 134.216 189.778 134.422C189.984 134.629 190.1 134.908 190.1 135.2V140C190.1 140.292 189.984 140.572 189.778 140.778C189.572 140.984 189.292 141.1 189 141.1H184.2C183.908 141.1 183.629 140.984 183.422 140.778C183.216 140.572 183.1 140.292 183.1 140V135.2Z" fill="#6B7280" stroke="#6B7280"/>
|
|
16
|
+
<path d="M181 130.4C180.576 130.4 180.169 130.568 179.869 130.869C179.568 131.169 179.4 131.576 179.4 132V136.8C179.4 137.224 179.568 137.631 179.869 137.931C180.169 138.231 180.576 138.4 181 138.4V132H187.4C187.4 131.576 187.231 131.169 186.931 130.869C186.631 130.568 186.224 130.4 185.8 130.4H181Z" fill="#6B7280"/>
|
|
17
|
+
<rect x="162.5" y="113.5" width="45" height="45" rx="22.5" stroke="#E5E7EB"/>
|
|
18
|
+
</g>
|
|
19
|
+
<rect x="160" y="174" width="50" height="50" rx="25" fill="#EB4F27"/>
|
|
20
|
+
<path d="M185 199H179.5H185Z" fill="white"/>
|
|
21
|
+
<path d="M185 193.5V199M185 199V204.5M185 199H190.5M185 199H179.5" stroke="white" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
|
|
22
|
+
<g filter="url(#filter3_d_169_149179)">
|
|
23
|
+
<rect x="91" y="69" width="56" height="26" rx="4" fill="#111928"/>
|
|
24
|
+
<rect x="103" y="80.5" width="32" height="3" rx="1.5" fill="#9CA3AF"/>
|
|
25
|
+
<path d="M153.961 82.7944L147.393 87.8175C147.145 88.0067 147 88.3003 147 88.6118V75.3882C147 75.6996 147.145 75.9933 147.393 76.1825L153.961 81.2056C154.485 81.6059 154.485 82.3941 153.961 82.7944Z" fill="#111928"/>
|
|
26
|
+
</g>
|
|
27
|
+
</g>
|
|
28
|
+
<defs>
|
|
29
|
+
<filter id="filter0_d_169_149179" x="160" y="4" width="50" height="50" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
|
30
|
+
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
|
31
|
+
<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"/>
|
|
32
|
+
<feOffset dy="1"/>
|
|
33
|
+
<feGaussianBlur stdDeviation="1"/>
|
|
34
|
+
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.08 0"/>
|
|
35
|
+
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_169_149179"/>
|
|
36
|
+
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_169_149179" result="shape"/>
|
|
37
|
+
</filter>
|
|
38
|
+
<filter id="filter1_d_169_149179" x="160" y="58" width="50" height="50" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
|
39
|
+
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
|
40
|
+
<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"/>
|
|
41
|
+
<feOffset dy="1"/>
|
|
42
|
+
<feGaussianBlur stdDeviation="1"/>
|
|
43
|
+
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.08 0"/>
|
|
44
|
+
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_169_149179"/>
|
|
45
|
+
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_169_149179" result="shape"/>
|
|
46
|
+
</filter>
|
|
47
|
+
<filter id="filter2_d_169_149179" x="160" y="112" width="50" height="50" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
|
48
|
+
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
|
49
|
+
<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"/>
|
|
50
|
+
<feOffset dy="1"/>
|
|
51
|
+
<feGaussianBlur stdDeviation="1"/>
|
|
52
|
+
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.08 0"/>
|
|
53
|
+
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_169_149179"/>
|
|
54
|
+
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_169_149179" result="shape"/>
|
|
55
|
+
</filter>
|
|
56
|
+
<filter id="filter3_d_169_149179" x="89" y="68" width="68" height="30" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
|
57
|
+
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
|
58
|
+
<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"/>
|
|
59
|
+
<feOffset dy="1"/>
|
|
60
|
+
<feGaussianBlur stdDeviation="1"/>
|
|
61
|
+
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.08 0"/>
|
|
62
|
+
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_169_149179"/>
|
|
63
|
+
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_169_149179" result="shape"/>
|
|
64
|
+
</filter>
|
|
65
|
+
<clipPath id="clip0_169_149179">
|
|
66
|
+
<rect width="350" height="230" fill="white"/>
|
|
67
|
+
</clipPath>
|
|
68
|
+
</defs>
|
|
69
|
+
</svg>
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
<svg width="410" height="240" viewBox="0 0 410 240" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<rect x="105" y="94" width="198" height="50" rx="8" fill="#374151"/>
|
|
3
|
+
<path d="M151 119C151 126.18 145.18 132 138 132C130.82 132 125 126.18 125 119C125 111.82 130.82 106 138 106C145.18 106 151 111.82 151 119ZM128.033 119C128.033 124.505 132.495 128.967 138 128.967C143.505 128.967 147.967 124.505 147.967 119C147.967 113.495 143.505 109.033 138 109.033C132.495 109.033 128.033 113.495 128.033 119Z" fill="#6B7280"/>
|
|
4
|
+
<path d="M149.098 116.085C149.913 115.871 150.408 115.032 150.1 114.248C149.664 113.138 149.077 112.091 148.352 111.137C147.32 109.777 146.029 108.635 144.555 107.774C143.081 106.913 141.452 106.351 139.76 106.12C138.574 105.958 137.373 105.96 136.191 106.126C135.357 106.244 134.871 107.087 135.085 107.902C135.299 108.716 136.133 109.191 136.971 109.104C137.76 109.022 138.558 109.034 139.347 109.142C140.642 109.319 141.889 109.749 143.017 110.408C144.146 111.067 145.133 111.941 145.923 112.982C146.405 113.616 146.808 114.305 147.125 115.032C147.46 115.805 148.284 116.299 149.098 116.085Z" fill="#EF562F"/>
|
|
5
|
+
<rect x="163" y="111" width="120" height="16" rx="4" fill="white"/>
|
|
6
|
+
</svg>
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
<svg width="410" height="240" viewBox="0 0 410 240" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<rect x="107" y="95" width="198" height="50" rx="8" fill="#D1D5DB"/>
|
|
3
|
+
<path d="M153 120C153 127.18 147.18 133 140 133C132.82 133 127 127.18 127 120C127 112.82 132.82 107 140 107C147.18 107 153 112.82 153 120ZM130.033 120C130.033 125.505 134.495 129.967 140 129.967C145.505 129.967 149.967 125.505 149.967 120C149.967 114.495 145.505 110.033 140 110.033C134.495 110.033 130.033 114.495 130.033 120Z" fill="white"/>
|
|
4
|
+
<path d="M151.098 117.085C151.913 116.871 152.408 116.032 152.1 115.248C151.664 114.138 151.077 113.091 150.352 112.137C149.32 110.777 148.029 109.635 146.555 108.774C145.081 107.913 143.452 107.351 141.76 107.12C140.574 106.958 139.373 106.96 138.191 107.126C137.357 107.244 136.871 108.087 137.085 108.902C137.299 109.716 138.133 110.191 138.971 110.104C139.76 110.022 140.558 110.034 141.347 110.142C142.642 110.319 143.889 110.749 145.017 111.408C146.146 112.067 147.133 112.941 147.923 113.982C148.405 114.616 148.808 115.305 149.125 116.032C149.46 116.805 150.284 117.299 151.098 117.085Z" fill="#EF562F"/>
|
|
5
|
+
<rect x="165" y="112" width="120" height="16" rx="4" fill="white"/>
|
|
6
|
+
</svg>
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
<svg width="350" height="230" viewBox="0 0 350 230" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<rect width="350" height="230" fill="#111928"/>
|
|
3
|
+
<rect x="5" y="79" width="48" height="48" rx="24" fill="#A82200"/>
|
|
4
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M38.8894 96.4104C39.1519 96.6729 39.2993 97.029 39.2993 97.4002C39.2993 97.7714 39.1519 98.1274 38.8894 98.39L27.6894 109.59C27.4269 109.852 27.0708 110 26.6996 110C26.3284 110 25.9723 109.852 25.7098 109.59L20.1098 103.99C19.8548 103.726 19.7137 103.372 19.7168 103.005C19.72 102.638 19.8673 102.287 20.1268 102.027C20.3864 101.768 20.7376 101.621 21.1046 101.617C21.4717 101.614 21.8254 101.755 22.0894 102.01L26.6996 106.621L36.9098 96.4104C37.1723 96.1479 37.5284 96.0005 37.8996 96.0005C38.2708 96.0005 38.6269 96.1479 38.8894 96.4104Z" fill="#FFF1EE"/>
|
|
5
|
+
<path d="M52 100H152V106H52V100Z" fill="#A82200"/>
|
|
6
|
+
<rect x="151" y="79" width="48" height="48" rx="24" fill="#374151"/>
|
|
7
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M175.501 91.7998C175.129 91.7998 174.773 91.9473 174.511 92.2099C174.248 92.4724 174.101 92.8285 174.101 93.1998V94.5998C174.101 94.9711 174.248 95.3272 174.511 95.5898C174.773 95.8523 175.129 95.9998 175.501 95.9998C175.872 95.9998 176.228 95.8523 176.491 95.5898C176.753 95.3272 176.901 94.9711 176.901 94.5998V93.1998C176.901 92.8285 176.753 92.4724 176.491 92.2099C176.228 91.9473 175.872 91.7998 175.501 91.7998ZM167.101 94.5998H171.301C171.301 95.7137 171.743 96.782 172.531 97.5697C173.319 98.3573 174.387 98.7998 175.501 98.7998C176.615 98.7998 177.683 98.3573 178.471 97.5697C179.258 96.782 179.701 95.7137 179.701 94.5998H183.901C184.643 94.5998 185.356 94.8948 185.881 95.4199C186.406 95.945 186.701 96.6572 186.701 97.3998V110C186.701 110.742 186.406 111.455 185.881 111.98C185.356 112.505 184.643 112.8 183.901 112.8H167.101C166.358 112.8 165.646 112.505 165.121 111.98C164.596 111.455 164.301 110.742 164.301 110V97.3998C164.301 96.6572 164.596 95.945 165.121 95.4199C165.646 94.8948 166.358 94.5998 167.101 94.5998ZM170.601 104.4C171.158 104.4 171.692 104.179 172.086 103.785C172.48 103.391 172.701 102.857 172.701 102.3C172.701 101.743 172.48 101.209 172.086 100.815C171.692 100.421 171.158 100.2 170.601 100.2C170.044 100.2 169.51 100.421 169.116 100.815C168.722 101.209 168.501 101.743 168.501 102.3C168.501 102.857 168.722 103.391 169.116 103.785C169.51 104.179 170.044 104.4 170.601 104.4ZM174.031 110C174.134 109.491 174.123 108.967 173.998 108.463C173.874 107.96 173.639 107.49 173.311 107.088C172.982 106.687 172.569 106.363 172.1 106.141C171.632 105.919 171.119 105.803 170.601 105.803C170.082 105.803 169.57 105.919 169.101 106.141C168.633 106.363 168.219 106.687 167.891 107.088C167.563 107.49 167.328 107.96 167.203 108.463C167.079 108.967 167.068 109.491 167.171 110H174.031ZM178.301 101.6C177.929 101.6 177.573 101.747 177.311 102.01C177.048 102.272 176.901 102.629 176.901 103C176.901 103.371 177.048 103.727 177.311 103.99C177.573 104.252 177.929 104.4 178.301 104.4H182.501C182.872 104.4 183.228 104.252 183.491 103.99C183.753 103.727 183.901 103.371 183.901 103C183.901 102.629 183.753 102.272 183.491 102.01C183.228 101.747 182.872 101.6 182.501 101.6H178.301ZM176.901 107.2C176.901 106.829 177.048 106.472 177.311 106.21C177.573 105.947 177.929 105.8 178.301 105.8H181.101C181.472 105.8 181.828 105.947 182.091 106.21C182.353 106.472 182.501 106.829 182.501 107.2C182.501 107.571 182.353 107.927 182.091 108.19C181.828 108.452 181.472 108.6 181.101 108.6H178.301C177.929 108.6 177.573 108.452 177.311 108.19C177.048 107.927 176.901 107.571 176.901 107.2Z" fill="#9CA3AF"/>
|
|
8
|
+
<path d="M198 100H298V106H198V100Z" fill="#374151"/>
|
|
9
|
+
<rect x="297" y="79" width="48" height="48" rx="24" fill="#374151"/>
|
|
10
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M310.533 95.9987C314.586 95.9483 318.484 94.4285 321.501 91.7217C324.518 94.429 328.415 95.9493 332.468 96.0001C332.622 96.9101 332.701 97.8481 332.701 98.8015C332.701 106.116 328.025 112.339 321.501 114.645C314.977 112.338 310.301 106.115 310.301 98.8001C310.301 97.8453 310.381 96.9101 310.533 95.9987ZM326.691 101.19C326.946 100.926 327.087 100.572 327.084 100.205C327.08 99.838 326.933 99.4869 326.674 99.2273C326.414 98.9678 326.063 98.8205 325.696 98.8173C325.329 98.8141 324.975 98.9553 324.711 99.2103L320.101 103.82L318.291 102.01C318.027 101.755 317.673 101.614 317.306 101.617C316.939 101.621 316.588 101.768 316.328 102.027C316.068 102.287 315.921 102.638 315.918 103.005C315.915 103.372 316.056 103.726 316.311 103.99L319.111 106.79C319.374 107.052 319.73 107.2 320.101 107.2C320.472 107.2 320.828 107.052 321.091 106.79L326.691 101.19Z" fill="#9CA3AF"/>
|
|
11
|
+
</svg>
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
<svg width="350" height="230" viewBox="0 0 350 230" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<rect x="5" y="79" width="48" height="48" rx="24" fill="#FFF1EE"/>
|
|
3
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M38.8894 96.4104C39.1519 96.6729 39.2993 97.029 39.2993 97.4002C39.2993 97.7714 39.1519 98.1274 38.8894 98.39L27.6894 109.59C27.4269 109.852 27.0708 110 26.6996 110C26.3284 110 25.9723 109.852 25.7098 109.59L20.1098 103.99C19.8548 103.726 19.7137 103.372 19.7168 103.005C19.72 102.638 19.8673 102.287 20.1268 102.027C20.3864 101.768 20.7376 101.621 21.1046 101.617C21.4717 101.614 21.8254 101.755 22.0894 102.01L26.6996 106.621L36.9098 96.4104C37.1723 96.1479 37.5284 96.0005 37.8996 96.0005C38.2708 96.0005 38.6269 96.1479 38.8894 96.4104Z" fill="#EB4F27"/>
|
|
4
|
+
<path d="M52 100H152V106H52V100Z" fill="#FFF1EE"/>
|
|
5
|
+
<rect x="151" y="79" width="48" height="48" rx="24" fill="#E5E7EB"/>
|
|
6
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M175.501 91.7998C175.129 91.7998 174.773 91.9473 174.511 92.2099C174.248 92.4724 174.101 92.8285 174.101 93.1998V94.5998C174.101 94.9711 174.248 95.3272 174.511 95.5898C174.773 95.8523 175.129 95.9998 175.501 95.9998C175.872 95.9998 176.228 95.8523 176.491 95.5898C176.753 95.3272 176.901 94.9711 176.901 94.5998V93.1998C176.901 92.8285 176.753 92.4724 176.491 92.2099C176.228 91.9473 175.872 91.7998 175.501 91.7998ZM167.101 94.5998H171.301C171.301 95.7137 171.743 96.782 172.531 97.5697C173.319 98.3573 174.387 98.7998 175.501 98.7998C176.615 98.7998 177.683 98.3573 178.471 97.5697C179.258 96.782 179.701 95.7137 179.701 94.5998H183.901C184.643 94.5998 185.356 94.8948 185.881 95.4199C186.406 95.945 186.701 96.6572 186.701 97.3998V110C186.701 110.742 186.406 111.455 185.881 111.98C185.356 112.505 184.643 112.8 183.901 112.8H167.101C166.358 112.8 165.646 112.505 165.121 111.98C164.596 111.455 164.301 110.742 164.301 110V97.3998C164.301 96.6572 164.596 95.945 165.121 95.4199C165.646 94.8948 166.358 94.5998 167.101 94.5998ZM170.601 104.4C171.158 104.4 171.692 104.179 172.086 103.785C172.48 103.391 172.701 102.857 172.701 102.3C172.701 101.743 172.48 101.209 172.086 100.815C171.692 100.421 171.158 100.2 170.601 100.2C170.044 100.2 169.51 100.421 169.116 100.815C168.722 101.209 168.501 101.743 168.501 102.3C168.501 102.857 168.722 103.391 169.116 103.785C169.51 104.179 170.044 104.4 170.601 104.4ZM174.031 110C174.134 109.491 174.123 108.967 173.998 108.463C173.874 107.96 173.639 107.49 173.311 107.088C172.982 106.687 172.569 106.363 172.1 106.141C171.632 105.919 171.119 105.803 170.601 105.803C170.082 105.803 169.57 105.919 169.101 106.141C168.633 106.363 168.219 106.687 167.891 107.088C167.563 107.49 167.328 107.96 167.203 108.463C167.079 108.967 167.068 109.491 167.171 110H174.031ZM178.301 101.6C177.929 101.6 177.573 101.747 177.311 102.01C177.048 102.272 176.901 102.629 176.901 103C176.901 103.371 177.048 103.727 177.311 103.99C177.573 104.252 177.929 104.4 178.301 104.4H182.501C182.872 104.4 183.228 104.252 183.491 103.99C183.753 103.727 183.901 103.371 183.901 103C183.901 102.629 183.753 102.272 183.491 102.01C183.228 101.747 182.872 101.6 182.501 101.6H178.301ZM176.901 107.2C176.901 106.829 177.048 106.472 177.311 106.21C177.573 105.947 177.929 105.8 178.301 105.8H181.101C181.472 105.8 181.828 105.947 182.091 106.21C182.353 106.472 182.501 106.829 182.501 107.2C182.501 107.571 182.353 107.927 182.091 108.19C181.828 108.452 181.472 108.6 181.101 108.6H178.301C177.929 108.6 177.573 108.452 177.311 108.19C177.048 107.927 176.901 107.571 176.901 107.2Z" fill="#6B7280"/>
|
|
7
|
+
<path d="M198 100H298V106H198V100Z" fill="#E5E7EB"/>
|
|
8
|
+
<rect x="297" y="79" width="48" height="48" rx="24" fill="#E5E7EB"/>
|
|
9
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M310.533 95.9987C314.586 95.9483 318.484 94.4285 321.501 91.7217C324.518 94.429 328.415 95.9493 332.468 96.0001C332.622 96.9101 332.701 97.8481 332.701 98.8015C332.701 106.116 328.025 112.339 321.501 114.645C314.977 112.338 310.301 106.115 310.301 98.8001C310.301 97.8453 310.381 96.9101 310.533 95.9987ZM326.691 101.19C326.946 100.926 327.087 100.572 327.084 100.205C327.08 99.838 326.933 99.4869 326.674 99.2273C326.414 98.9678 326.063 98.8205 325.696 98.8173C325.329 98.8141 324.975 98.9553 324.711 99.2103L320.101 103.82L318.291 102.01C318.027 101.755 317.673 101.614 317.306 101.617C316.939 101.621 316.588 101.768 316.328 102.027C316.068 102.287 315.921 102.638 315.918 103.005C315.915 103.372 316.056 103.726 316.311 103.99L319.111 106.79C319.374 107.052 319.73 107.2 320.101 107.2C320.472 107.2 320.828 107.052 321.091 106.79L326.691 101.19Z" fill="#6B7280"/>
|
|
10
|
+
</svg>
|
|
@@ -0,0 +1,10 @@
|
|
|
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="#EB4F27"/>
|
|
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>
|
|
@@ -0,0 +1,10 @@
|
|
|
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="#EB4F27"/>
|
|
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>
|