@canmingir/link 1.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.babelrc +3 -0
- package/.browserslistrc +1 -0
- package/.env +2 -0
- package/.eslintignore +3 -0
- package/.eslintrc.json +49 -0
- package/.gitattributes +1 -0
- package/.github/workflows/publish.yml +9 -0
- package/.prettierignore +1 -0
- package/.prettierrc +10 -0
- package/README.md +1 -0
- package/commands/index.js +111 -0
- package/commands/user.json +34 -0
- package/components/AddItemWizard/AddItemWizard.jsx +211 -0
- package/components/AddItemWizard/index.js +1 -0
- package/components/IconSelector/IconSelector.jsx +88 -0
- package/components/ItemSummary/ItemSummary.jsx +77 -0
- package/components/ItemSummary/ItemsSummary.jsx +163 -0
- package/components/ProjectWizard.jsx +137 -0
- package/components/SparkleInput/SparkleInput.jsx +51 -0
- package/components/StepComponent/StepComponent.jsx +98 -0
- package/components/index.js +2 -0
- package/components/lib/Icons.js +40 -0
- package/components/lib/context.json +272 -0
- package/cypress/cypress.js +12 -0
- package/index.js +1 -0
- package/minimal/.editorconfig +9 -0
- package/minimal/.eslintignore +22 -0
- package/minimal/.prettierignore +9 -0
- package/minimal/.prettierrc +6 -0
- package/minimal/README.md +13 -0
- package/minimal/index.html +44 -0
- package/minimal/jsconfig.json +5 -0
- package/minimal/package-lock.json +20845 -0
- package/minimal/package.json +104 -0
- package/minimal/public/_redirects +1 -0
- package/minimal/public/assets/background/overlay_1.svg +1 -0
- package/minimal/public/assets/background/overlay_2.jpg +0 -0
- package/minimal/public/assets/background/overlay_3.jpg +0 -0
- package/minimal/public/assets/background/overlay_4.jpg +0 -0
- package/minimal/public/assets/cyan-blur.png +0 -0
- package/minimal/public/assets/icons/app/ic_chrome.svg +6 -0
- package/minimal/public/assets/icons/app/ic_drive.svg +5 -0
- package/minimal/public/assets/icons/app/ic_dropbox.svg +3 -0
- package/minimal/public/assets/icons/app/ic_evernote.svg +3 -0
- package/minimal/public/assets/icons/app/ic_github.svg +3 -0
- package/minimal/public/assets/icons/app/ic_onedrive.svg +4 -0
- package/minimal/public/assets/icons/auth/ic_amplify.svg +12 -0
- package/minimal/public/assets/icons/auth/ic_auth0.svg +5 -0
- package/minimal/public/assets/icons/auth/ic_firebase.svg +12 -0
- package/minimal/public/assets/icons/auth/ic_jwt.svg +15 -0
- package/minimal/public/assets/icons/brands/ic_brand_amazon.svg +3 -0
- package/minimal/public/assets/icons/brands/ic_brand_hbo.svg +3 -0
- package/minimal/public/assets/icons/brands/ic_brand_ibm.svg +3 -0
- package/minimal/public/assets/icons/brands/ic_brand_lya.svg +3 -0
- package/minimal/public/assets/icons/brands/ic_brand_netflix.svg +3 -0
- package/minimal/public/assets/icons/brands/ic_brand_spotify.svg +3 -0
- package/minimal/public/assets/icons/components/ic_accordion.svg +11 -0
- package/minimal/public/assets/icons/components/ic_alert.svg +6 -0
- package/minimal/public/assets/icons/components/ic_autocomplete.svg +8 -0
- package/minimal/public/assets/icons/components/ic_avatar.svg +4 -0
- package/minimal/public/assets/icons/components/ic_badge.svg +7 -0
- package/minimal/public/assets/icons/components/ic_breadcrumbs.svg +4 -0
- package/minimal/public/assets/icons/components/ic_buttons.svg +4 -0
- package/minimal/public/assets/icons/components/ic_checkbox.svg +4 -0
- package/minimal/public/assets/icons/components/ic_chip.svg +5 -0
- package/minimal/public/assets/icons/components/ic_colors.svg +5 -0
- package/minimal/public/assets/icons/components/ic_data_grid.svg +12 -0
- package/minimal/public/assets/icons/components/ic_dialog.svg +8 -0
- package/minimal/public/assets/icons/components/ic_extra_animate.svg +26 -0
- package/minimal/public/assets/icons/components/ic_extra_carousel.svg +98 -0
- package/minimal/public/assets/icons/components/ic_extra_chart.svg +60 -0
- package/minimal/public/assets/icons/components/ic_extra_copy_to_clipboard.svg +24 -0
- package/minimal/public/assets/icons/components/ic_extra_editor.svg +45 -0
- package/minimal/public/assets/icons/components/ic_extra_form_validation.svg +112 -0
- package/minimal/public/assets/icons/components/ic_extra_image.svg +59 -0
- package/minimal/public/assets/icons/components/ic_extra_label.svg +40 -0
- package/minimal/public/assets/icons/components/ic_extra_lightbox.svg +97 -0
- package/minimal/public/assets/icons/components/ic_extra_map.svg +60 -0
- package/minimal/public/assets/icons/components/ic_extra_markdown.svg +40 -0
- package/minimal/public/assets/icons/components/ic_extra_mega_menu.svg +120 -0
- package/minimal/public/assets/icons/components/ic_extra_multi_language.svg +59 -0
- package/minimal/public/assets/icons/components/ic_extra_navigation_bar.svg +122 -0
- package/minimal/public/assets/icons/components/ic_extra_organization_chart.svg +101 -0
- package/minimal/public/assets/icons/components/ic_extra_scroll.svg +67 -0
- package/minimal/public/assets/icons/components/ic_extra_scroll_progress.svg +46 -0
- package/minimal/public/assets/icons/components/ic_extra_snackbar.svg +47 -0
- package/minimal/public/assets/icons/components/ic_extra_text_max_line.svg +100 -0
- package/minimal/public/assets/icons/components/ic_extra_upload.svg +40 -0
- package/minimal/public/assets/icons/components/ic_grid.svg +8 -0
- package/minimal/public/assets/icons/components/ic_icons.svg +4 -0
- package/minimal/public/assets/icons/components/ic_list.svg +12 -0
- package/minimal/public/assets/icons/components/ic_menu.svg +7 -0
- package/minimal/public/assets/icons/components/ic_pagination.svg +6 -0
- package/minimal/public/assets/icons/components/ic_pickers.svg +18 -0
- package/minimal/public/assets/icons/components/ic_popover.svg +6 -0
- package/minimal/public/assets/icons/components/ic_progress.svg +4 -0
- package/minimal/public/assets/icons/components/ic_radio_button.svg +4 -0
- package/minimal/public/assets/icons/components/ic_rating.svg +9 -0
- package/minimal/public/assets/icons/components/ic_shadows.svg +4 -0
- package/minimal/public/assets/icons/components/ic_slider.svg +5 -0
- package/minimal/public/assets/icons/components/ic_stepper.svg +6 -0
- package/minimal/public/assets/icons/components/ic_switch.svg +4 -0
- package/minimal/public/assets/icons/components/ic_table.svg +10 -0
- package/minimal/public/assets/icons/components/ic_tabs.svg +5 -0
- package/minimal/public/assets/icons/components/ic_textfield.svg +5 -0
- package/minimal/public/assets/icons/components/ic_timeline.svg +12 -0
- package/minimal/public/assets/icons/components/ic_tooltip.svg +7 -0
- package/minimal/public/assets/icons/components/ic_transfer_list.svg +13 -0
- package/minimal/public/assets/icons/components/ic_tree_view.svg +11 -0
- package/minimal/public/assets/icons/components/ic_typography.svg +4 -0
- package/minimal/public/assets/icons/empty/ic_cart.svg +76 -0
- package/minimal/public/assets/icons/empty/ic_content.svg +57 -0
- package/minimal/public/assets/icons/empty/ic_email_disabled.svg +44 -0
- package/minimal/public/assets/icons/empty/ic_email_selected.svg +57 -0
- package/minimal/public/assets/icons/empty/ic_folder_empty.svg +32 -0
- package/minimal/public/assets/icons/empty/ic_mail.svg +56 -0
- package/minimal/public/assets/icons/faqs/ic_account.svg +34 -0
- package/minimal/public/assets/icons/faqs/ic_assurances.svg +33 -0
- package/minimal/public/assets/icons/faqs/ic_delivery.svg +30 -0
- package/minimal/public/assets/icons/faqs/ic_package.svg +29 -0
- package/minimal/public/assets/icons/faqs/ic_payment.svg +33 -0
- package/minimal/public/assets/icons/faqs/ic_refund.svg +31 -0
- package/minimal/public/assets/icons/files/ic_ai.svg +25 -0
- package/minimal/public/assets/icons/files/ic_audio.svg +24 -0
- package/minimal/public/assets/icons/files/ic_document.svg +19 -0
- package/minimal/public/assets/icons/files/ic_excel.svg +19 -0
- package/minimal/public/assets/icons/files/ic_file.svg +18 -0
- package/minimal/public/assets/icons/files/ic_folder.svg +5 -0
- package/minimal/public/assets/icons/files/ic_img.svg +26 -0
- package/minimal/public/assets/icons/files/ic_js.svg +12 -0
- package/minimal/public/assets/icons/files/ic_pdf.svg +19 -0
- package/minimal/public/assets/icons/files/ic_power_point.svg +20 -0
- package/minimal/public/assets/icons/files/ic_pts.svg +25 -0
- package/minimal/public/assets/icons/files/ic_txt.svg +26 -0
- package/minimal/public/assets/icons/files/ic_video.svg +20 -0
- package/minimal/public/assets/icons/files/ic_word.svg +19 -0
- package/minimal/public/assets/icons/files/ic_zip.svg +27 -0
- package/minimal/public/assets/icons/glass/ic_glass_bag.png +0 -0
- package/minimal/public/assets/icons/glass/ic_glass_buy.png +0 -0
- package/minimal/public/assets/icons/glass/ic_glass_message.png +0 -0
- package/minimal/public/assets/icons/glass/ic_glass_users.png +0 -0
- package/minimal/public/assets/icons/home/ic_design.svg +6 -0
- package/minimal/public/assets/icons/home/ic_development.svg +5 -0
- package/minimal/public/assets/icons/home/ic_make_brand.svg +6 -0
- package/minimal/public/assets/icons/navbar/ic_analytics.svg +8 -0
- package/minimal/public/assets/icons/navbar/ic_banking.svg +10 -0
- package/minimal/public/assets/icons/navbar/ic_blank.svg +4 -0
- package/minimal/public/assets/icons/navbar/ic_blog.svg +7 -0
- package/minimal/public/assets/icons/navbar/ic_booking.svg +4 -0
- package/minimal/public/assets/icons/navbar/ic_calendar.svg +5 -0
- package/minimal/public/assets/icons/navbar/ic_chat.svg +6 -0
- package/minimal/public/assets/icons/navbar/ic_dashboard.svg +4 -0
- package/minimal/public/assets/icons/navbar/ic_disabled.svg +4 -0
- package/minimal/public/assets/icons/navbar/ic_ecommerce.svg +5 -0
- package/minimal/public/assets/icons/navbar/ic_external.svg +4 -0
- package/minimal/public/assets/icons/navbar/ic_file.svg +6 -0
- package/minimal/public/assets/icons/navbar/ic_folder.svg +4 -0
- package/minimal/public/assets/icons/navbar/ic_invoice.svg +5 -0
- package/minimal/public/assets/icons/navbar/ic_job.svg +4 -0
- package/minimal/public/assets/icons/navbar/ic_kanban.svg +5 -0
- package/minimal/public/assets/icons/navbar/ic_label.svg +4 -0
- package/minimal/public/assets/icons/navbar/ic_lock.svg +4 -0
- package/minimal/public/assets/icons/navbar/ic_mail.svg +6 -0
- package/minimal/public/assets/icons/navbar/ic_menu_item.svg +5 -0
- package/minimal/public/assets/icons/navbar/ic_order.svg +7 -0
- package/minimal/public/assets/icons/navbar/ic_product.svg +4 -0
- package/minimal/public/assets/icons/navbar/ic_tour.svg +4 -0
- package/minimal/public/assets/icons/navbar/ic_user.svg +4 -0
- package/minimal/public/assets/icons/notification/ic_chat.svg +28 -0
- package/minimal/public/assets/icons/notification/ic_delivery.svg +20 -0
- package/minimal/public/assets/icons/notification/ic_mail.svg +15 -0
- package/minimal/public/assets/icons/notification/ic_order.svg +45 -0
- package/minimal/public/assets/icons/platforms/ic_figma.svg +7 -0
- package/minimal/public/assets/icons/platforms/ic_js.svg +4 -0
- package/minimal/public/assets/icons/platforms/ic_nextjs.svg +3 -0
- package/minimal/public/assets/icons/platforms/ic_ts.svg +4 -0
- package/minimal/public/assets/icons/platforms/ic_vite.svg +15 -0
- package/minimal/public/assets/icons/setting/ic_align_left.svg +7 -0
- package/minimal/public/assets/icons/setting/ic_align_right.svg +7 -0
- package/minimal/public/assets/icons/setting/ic_collapse.svg +4 -0
- package/minimal/public/assets/icons/setting/ic_contrast.svg +5 -0
- package/minimal/public/assets/icons/setting/ic_contrast_bold.svg +4 -0
- package/minimal/public/assets/icons/setting/ic_exit_full_screen.svg +6 -0
- package/minimal/public/assets/icons/setting/ic_full_screen.svg +6 -0
- package/minimal/public/assets/icons/setting/ic_moon.svg +4 -0
- package/minimal/public/assets/icons/setting/ic_setting.svg +6 -0
- package/minimal/public/assets/icons/setting/ic_sun.svg +13 -0
- package/minimal/public/assets/illustrations/characters/character_1.png +0 -0
- package/minimal/public/assets/illustrations/characters/character_10.png +0 -0
- package/minimal/public/assets/illustrations/characters/character_11.png +0 -0
- package/minimal/public/assets/illustrations/characters/character_2.png +0 -0
- package/minimal/public/assets/illustrations/characters/character_3.png +0 -0
- package/minimal/public/assets/illustrations/characters/character_4.png +0 -0
- package/minimal/public/assets/illustrations/characters/character_5.png +0 -0
- package/minimal/public/assets/illustrations/characters/character_6.png +0 -0
- package/minimal/public/assets/illustrations/characters/character_7.png +0 -0
- package/minimal/public/assets/illustrations/characters/character_8.png +0 -0
- package/minimal/public/assets/illustrations/characters/character_9.png +0 -0
- package/minimal/public/assets/illustrations/illustration_dashboard.png +0 -0
- package/minimal/public/assets/images/about/hero.jpg +0 -0
- package/minimal/public/assets/images/about/testimonials.jpg +0 -0
- package/minimal/public/assets/images/about/vision.jpg +0 -0
- package/minimal/public/assets/images/about/what_1.png +0 -0
- package/minimal/public/assets/images/about/what_2.png +0 -0
- package/minimal/public/assets/images/contact/hero.jpg +0 -0
- package/minimal/public/assets/images/faqs/hero.jpg +0 -0
- package/minimal/public/assets/images/home/clean/page_1.webp +0 -0
- package/minimal/public/assets/images/home/clean/page_10.webp +0 -0
- package/minimal/public/assets/images/home/clean/page_2.webp +0 -0
- package/minimal/public/assets/images/home/clean/page_3.webp +0 -0
- package/minimal/public/assets/images/home/clean/page_4.webp +0 -0
- package/minimal/public/assets/images/home/clean/page_5.webp +0 -0
- package/minimal/public/assets/images/home/clean/page_6.webp +0 -0
- package/minimal/public/assets/images/home/clean/page_7.webp +0 -0
- package/minimal/public/assets/images/home/clean/page_8.webp +0 -0
- package/minimal/public/assets/images/home/clean/page_9.webp +0 -0
- package/minimal/public/assets/images/home/darkmode.webp +0 -0
- package/minimal/public/assets/images/home/for_designer.webp +0 -0
- package/minimal/public/assets/images/home/hero/dark_1.webp +0 -0
- package/minimal/public/assets/images/home/hero/dark_2.webp +0 -0
- package/minimal/public/assets/images/home/hero/light_1.webp +0 -0
- package/minimal/public/assets/images/home/hero/light_2.webp +0 -0
- package/minimal/public/assets/images/home/presets/block_blue.webp +0 -0
- package/minimal/public/assets/images/home/presets/block_cyan.webp +0 -0
- package/minimal/public/assets/images/home/presets/block_default.webp +0 -0
- package/minimal/public/assets/images/home/presets/block_orange.webp +0 -0
- package/minimal/public/assets/images/home/presets/block_purple.webp +0 -0
- package/minimal/public/assets/images/home/presets/block_red.webp +0 -0
- package/minimal/public/assets/images/home/presets/chart_blue.webp +0 -0
- package/minimal/public/assets/images/home/presets/chart_cyan.webp +0 -0
- package/minimal/public/assets/images/home/presets/chart_default.webp +0 -0
- package/minimal/public/assets/images/home/presets/chart_orange.webp +0 -0
- package/minimal/public/assets/images/home/presets/chart_purple.webp +0 -0
- package/minimal/public/assets/images/home/presets/chart_red.webp +0 -0
- package/minimal/public/assets/images/home/presets/grid.webp +0 -0
- package/minimal/public/assets/images/home/presets/screen_blue.webp +0 -0
- package/minimal/public/assets/images/home/presets/screen_cyan.webp +0 -0
- package/minimal/public/assets/images/home/presets/screen_default.webp +0 -0
- package/minimal/public/assets/images/home/presets/screen_orange.webp +0 -0
- package/minimal/public/assets/images/home/presets/screen_purple.webp +0 -0
- package/minimal/public/assets/images/home/presets/screen_red.webp +0 -0
- package/minimal/public/assets/images/home/presets/sidebar_blue.webp +0 -0
- package/minimal/public/assets/images/home/presets/sidebar_cyan.webp +0 -0
- package/minimal/public/assets/images/home/presets/sidebar_default.webp +0 -0
- package/minimal/public/assets/images/home/presets/sidebar_orange.webp +0 -0
- package/minimal/public/assets/images/home/presets/sidebar_purple.webp +0 -0
- package/minimal/public/assets/images/home/presets/sidebar_red.webp +0 -0
- package/minimal/public/assets/images/home/rocket.webp +0 -0
- package/minimal/public/assets/images/home/zone_landing.webp +0 -0
- package/minimal/public/assets/placeholder.svg +8 -0
- package/minimal/public/assets/red-blur.png +0 -0
- package/minimal/public/assets/transparent.png +0 -0
- package/minimal/public/favicon/android-chrome-192x192.png +0 -0
- package/minimal/public/favicon/android-chrome-512x512.png +0 -0
- package/minimal/public/favicon/apple-touch-icon.png +0 -0
- package/minimal/public/favicon/favicon-16x16.png +0 -0
- package/minimal/public/favicon/favicon-32x32.png +0 -0
- package/minimal/public/favicon/favicon.ico +0 -0
- package/minimal/public/fonts/CircularStd-Bold.otf +0 -0
- package/minimal/public/fonts/CircularStd-Book.otf +0 -0
- package/minimal/public/fonts/CircularStd-Medium.otf +0 -0
- package/minimal/public/fonts/Roboto-Bold.ttf +0 -0
- package/minimal/public/fonts/Roboto-Regular.ttf +0 -0
- package/minimal/public/fonts/index.css +22 -0
- package/minimal/public/logo/logo_full.svg +1 -0
- package/minimal/public/logo/logo_single.png +0 -0
- package/minimal/public/logo/logo_single.svg +1 -0
- package/minimal/public/manifest.json +20 -0
- package/minimal/public/robots.txt +3 -0
- package/minimal/src/_mock/_blog.js +16 -0
- package/minimal/src/_mock/_calendar.js +14 -0
- package/minimal/src/_mock/_files.js +123 -0
- package/minimal/src/_mock/_invoice.js +65 -0
- package/minimal/src/_mock/_job.js +172 -0
- package/minimal/src/_mock/_mock.js +75 -0
- package/minimal/src/_mock/_order.js +95 -0
- package/minimal/src/_mock/_others.js +253 -0
- package/minimal/src/_mock/_overview.js +330 -0
- package/minimal/src/_mock/_product.js +88 -0
- package/minimal/src/_mock/_tour.js +150 -0
- package/minimal/src/_mock/_user.js +157 -0
- package/minimal/src/_mock/assets.js +527 -0
- package/minimal/src/_mock/index.js +16 -0
- package/minimal/src/_mock/map/cities.js +182 -0
- package/minimal/src/_mock/map/countries.js +86 -0
- package/minimal/src/_mock/map/map-style-basic-v8.json +554 -0
- package/minimal/src/api/blog.js +89 -0
- package/minimal/src/api/calendar.js +115 -0
- package/minimal/src/api/chat.js +206 -0
- package/minimal/src/api/kanban.js +401 -0
- package/minimal/src/api/mail.js +72 -0
- package/minimal/src/api/product.js +68 -0
- package/minimal/src/app.jsx +74 -0
- package/minimal/src/assets/data/countries.js +425 -0
- package/minimal/src/assets/data/index.js +1 -0
- package/minimal/src/assets/icons/email-inbox-icon.jsx +140 -0
- package/minimal/src/assets/icons/index.js +6 -0
- package/minimal/src/assets/icons/password-icon.jsx +107 -0
- package/minimal/src/assets/icons/plan-free-icon.jsx +49 -0
- package/minimal/src/assets/icons/plan-premium-icon.jsx +86 -0
- package/minimal/src/assets/icons/plan-starter-icon.jsx +73 -0
- package/minimal/src/assets/icons/sent-icon.jsx +73 -0
- package/minimal/src/assets/illustrations/avatar-shape.jsx +36 -0
- package/minimal/src/assets/illustrations/background-shape.jsx +31 -0
- package/minimal/src/assets/illustrations/booking-illustration.jsx +307 -0
- package/minimal/src/assets/illustrations/check-in-illustration.jsx +96 -0
- package/minimal/src/assets/illustrations/check-out-illustration.jsx +69 -0
- package/minimal/src/assets/illustrations/coming-soon-illustration.jsx +118 -0
- package/minimal/src/assets/illustrations/forbidden-illustration.jsx +88 -0
- package/minimal/src/assets/illustrations/index.js +15 -0
- package/minimal/src/assets/illustrations/maintenance-illustration.jsx +215 -0
- package/minimal/src/assets/illustrations/motivation-illustration.jsx +70 -0
- package/minimal/src/assets/illustrations/order-complete-illustration.jsx +122 -0
- package/minimal/src/assets/illustrations/page-not-found-illustration.jsx +74 -0
- package/minimal/src/assets/illustrations/seo-illustration.jsx +234 -0
- package/minimal/src/assets/illustrations/sever-error-illustration.jsx +148 -0
- package/minimal/src/assets/illustrations/upgrade-storage-illustration.jsx +157 -0
- package/minimal/src/assets/illustrations/upload-illustration.jsx +617 -0
- package/minimal/src/auth/context/amplify/auth-consumer.jsx +19 -0
- package/minimal/src/auth/context/amplify/auth-context.js +5 -0
- package/minimal/src/auth/context/amplify/auth-provider.jsx +183 -0
- package/minimal/src/auth/context/amplify/index.js +3 -0
- package/minimal/src/auth/context/auth0/auth-consumer.jsx +19 -0
- package/minimal/src/auth/context/auth0/auth-context.js +5 -0
- package/minimal/src/auth/context/auth0/auth-provider.jsx +101 -0
- package/minimal/src/auth/context/auth0/index.js +3 -0
- package/minimal/src/auth/context/firebase/auth-consumer.jsx +19 -0
- package/minimal/src/auth/context/firebase/auth-context.js +5 -0
- package/minimal/src/auth/context/firebase/auth-provider.jsx +202 -0
- package/minimal/src/auth/context/firebase/index.js +3 -0
- package/minimal/src/auth/context/jwt/auth-consumer.jsx +19 -0
- package/minimal/src/auth/context/jwt/auth-context.js +5 -0
- package/minimal/src/auth/context/jwt/auth-provider.jsx +184 -0
- package/minimal/src/auth/context/jwt/index.js +3 -0
- package/minimal/src/auth/context/jwt/utils.js +74 -0
- package/minimal/src/auth/guard/auth-guard.jsx +71 -0
- package/minimal/src/auth/guard/guest-guard.jsx +49 -0
- package/minimal/src/auth/guard/index.js +3 -0
- package/minimal/src/auth/guard/role-based-guard.jsx +57 -0
- package/minimal/src/auth/hooks/index.js +1 -0
- package/minimal/src/auth/hooks/use-auth-context.js +16 -0
- package/minimal/src/components/animate/index.js +6 -0
- package/minimal/src/components/animate/motion-container.jsx +43 -0
- package/minimal/src/components/animate/motion-lazy.jsx +16 -0
- package/minimal/src/components/animate/motion-viewport.jsx +36 -0
- package/minimal/src/components/animate/variants/actions.js +6 -0
- package/minimal/src/components/animate/variants/background.js +103 -0
- package/minimal/src/components/animate/variants/bounce.js +111 -0
- package/minimal/src/components/animate/variants/container.js +22 -0
- package/minimal/src/components/animate/variants/fade.js +131 -0
- package/minimal/src/components/animate/variants/flip.js +58 -0
- package/minimal/src/components/animate/variants/index.js +12 -0
- package/minimal/src/components/animate/variants/path.js +14 -0
- package/minimal/src/components/animate/variants/rotate.js +37 -0
- package/minimal/src/components/animate/variants/scale.js +58 -0
- package/minimal/src/components/animate/variants/slide.js +69 -0
- package/minimal/src/components/animate/variants/transition.js +22 -0
- package/minimal/src/components/animate/variants/zoom.js +134 -0
- package/minimal/src/components/carousel/arrow-icons.jsx +42 -0
- package/minimal/src/components/carousel/carousel-arrow-index.jsx +69 -0
- package/minimal/src/components/carousel/carousel-arrows.jsx +127 -0
- package/minimal/src/components/carousel/carousel-dots.jsx +85 -0
- package/minimal/src/components/carousel/index.js +9 -0
- package/minimal/src/components/carousel/use-carousel.js +65 -0
- package/minimal/src/components/chart/chart.js +67 -0
- package/minimal/src/components/chart/index.js +5 -0
- package/minimal/src/components/chart/use-chart.js +216 -0
- package/minimal/src/components/color-utils/color-picker.jsx +111 -0
- package/minimal/src/components/color-utils/color-preview.jsx +42 -0
- package/minimal/src/components/color-utils/index.js +2 -0
- package/minimal/src/components/custom-breadcrumbs/custom-breadcrumbs.jsx +97 -0
- package/minimal/src/components/custom-breadcrumbs/index.js +1 -0
- package/minimal/src/components/custom-breadcrumbs/link-item.jsx +62 -0
- package/minimal/src/components/custom-date-range-picker/custom-date-range-picker.jsx +130 -0
- package/minimal/src/components/custom-date-range-picker/index.js +5 -0
- package/minimal/src/components/custom-date-range-picker/use-date-range-picker.js +65 -0
- package/minimal/src/components/custom-date-range-picker/utils.js +32 -0
- package/minimal/src/components/custom-dialog/confirm-dialog.jsx +35 -0
- package/minimal/src/components/custom-dialog/index.js +1 -0
- package/minimal/src/components/custom-popover/custom-popover.jsx +72 -0
- package/minimal/src/components/custom-popover/index.js +3 -0
- package/minimal/src/components/custom-popover/styles.js +82 -0
- package/minimal/src/components/custom-popover/use-popover.js +22 -0
- package/minimal/src/components/custom-popover/utils.js +100 -0
- package/minimal/src/components/editor/editor.jsx +71 -0
- package/minimal/src/components/editor/index.js +1 -0
- package/minimal/src/components/editor/styles.js +180 -0
- package/minimal/src/components/editor/toolbar.jsx +108 -0
- package/minimal/src/components/empty-content/empty-content.jsx +63 -0
- package/minimal/src/components/empty-content/index.js +1 -0
- package/minimal/src/components/file-thumbnail/download-button.jsx +49 -0
- package/minimal/src/components/file-thumbnail/file-thumbnail.jsx +78 -0
- package/minimal/src/components/file-thumbnail/index.js +5 -0
- package/minimal/src/components/file-thumbnail/utils.js +148 -0
- package/minimal/src/components/hook-form/form-provider.jsx +18 -0
- package/minimal/src/components/hook-form/index.js +13 -0
- package/minimal/src/components/hook-form/rhf-autocomplete.jsx +41 -0
- package/minimal/src/components/hook-form/rhf-checkbox.jsx +113 -0
- package/minimal/src/components/hook-form/rhf-code.jsx +43 -0
- package/minimal/src/components/hook-form/rhf-editor.jsx +56 -0
- package/minimal/src/components/hook-form/rhf-radio-group.jsx +78 -0
- package/minimal/src/components/hook-form/rhf-select.jsx +151 -0
- package/minimal/src/components/hook-form/rhf-slider.jsx +32 -0
- package/minimal/src/components/hook-form/rhf-switch.jsx +33 -0
- package/minimal/src/components/hook-form/rhf-text-field.jsx +41 -0
- package/minimal/src/components/hook-form/rhf-upload.jsx +105 -0
- package/minimal/src/components/iconify/iconify.jsx +26 -0
- package/minimal/src/components/iconify/index.js +1 -0
- package/minimal/src/components/image/image.jsx +141 -0
- package/minimal/src/components/image/index.js +1 -0
- package/minimal/src/components/image/utils.js +15 -0
- package/minimal/src/components/index.js +214 -0
- package/minimal/src/components/label/index.js +1 -0
- package/minimal/src/components/label/label.jsx +61 -0
- package/minimal/src/components/label/styles.js +77 -0
- package/minimal/src/components/lightbox/index.js +5 -0
- package/minimal/src/components/lightbox/lightbox.jsx +152 -0
- package/minimal/src/components/lightbox/styles.jsx +52 -0
- package/minimal/src/components/lightbox/use-light-box.js +30 -0
- package/minimal/src/components/loading-screen/index.js +2 -0
- package/minimal/src/components/loading-screen/loading-screen.jsx +30 -0
- package/minimal/src/components/loading-screen/splash-screen.jsx +100 -0
- package/minimal/src/components/logo/index.js +1 -0
- package/minimal/src/components/logo/logo.jsx +95 -0
- package/minimal/src/components/map/index.js +5 -0
- package/minimal/src/components/map/map-control.jsx +36 -0
- package/minimal/src/components/map/map-marker.jsx +33 -0
- package/minimal/src/components/map/map-popup.jsx +18 -0
- package/minimal/src/components/map/styles.jsx +107 -0
- package/minimal/src/components/markdown/index.js +1 -0
- package/minimal/src/components/markdown/markdown.jsx +51 -0
- package/minimal/src/components/markdown/styles.js +146 -0
- package/minimal/src/components/mega-menu/common/menu-more-link.jsx +33 -0
- package/minimal/src/components/mega-menu/common/menu-products.jsx +81 -0
- package/minimal/src/components/mega-menu/common/menu-tags.jsx +47 -0
- package/minimal/src/components/mega-menu/common/nav-sub-list.jsx +64 -0
- package/minimal/src/components/mega-menu/horizontal/mega-menu-desktop-horizontal.jsx +33 -0
- package/minimal/src/components/mega-menu/horizontal/nav-item.jsx +104 -0
- package/minimal/src/components/mega-menu/horizontal/nav-list.jsx +169 -0
- package/minimal/src/components/mega-menu/index.js +3 -0
- package/minimal/src/components/mega-menu/mobile/mega-menu-mobile.jsx +22 -0
- package/minimal/src/components/mega-menu/mobile/nav-item.jsx +95 -0
- package/minimal/src/components/mega-menu/mobile/nav-list.jsx +218 -0
- package/minimal/src/components/mega-menu/vertical/mega-menu-desktop-vertical.jsx +31 -0
- package/minimal/src/components/mega-menu/vertical/nav-item.jsx +99 -0
- package/minimal/src/components/mega-menu/vertical/nav-list.jsx +124 -0
- package/minimal/src/components/nav-basic/desktop/nav-basic-desktop.jsx +25 -0
- package/minimal/src/components/nav-basic/desktop/nav-item.jsx +166 -0
- package/minimal/src/components/nav-basic/desktop/nav-list.jsx +122 -0
- package/minimal/src/components/nav-basic/index.js +2 -0
- package/minimal/src/components/nav-basic/mobile/nav-basic-mobile.jsx +25 -0
- package/minimal/src/components/nav-basic/mobile/nav-item.jsx +171 -0
- package/minimal/src/components/nav-basic/mobile/nav-list.jsx +87 -0
- package/minimal/src/components/nav-section/horizontal/index.js +1 -0
- package/minimal/src/components/nav-section/horizontal/nav-item.jsx +246 -0
- package/minimal/src/components/nav-section/horizontal/nav-list.jsx +126 -0
- package/minimal/src/components/nav-section/horizontal/nav-section-horizontal.jsx +54 -0
- package/minimal/src/components/nav-section/index.js +3 -0
- package/minimal/src/components/nav-section/mini/index.js +1 -0
- package/minimal/src/components/nav-section/mini/nav-item.jsx +260 -0
- package/minimal/src/components/nav-section/mini/nav-list.jsx +119 -0
- package/minimal/src/components/nav-section/mini/nav-section-mini.jsx +42 -0
- package/minimal/src/components/nav-section/vertical/index.js +1 -0
- package/minimal/src/components/nav-section/vertical/nav-item.jsx +298 -0
- package/minimal/src/components/nav-section/vertical/nav-list.jsx +95 -0
- package/minimal/src/components/nav-section/vertical/nav-section-vertical.jsx +89 -0
- package/minimal/src/components/organizational-chart/common/group-node.jsx +115 -0
- package/minimal/src/components/organizational-chart/common/simple-node.jsx +32 -0
- package/minimal/src/components/organizational-chart/common/standard-node.jsx +95 -0
- package/minimal/src/components/organizational-chart/index.js +1 -0
- package/minimal/src/components/organizational-chart/organizational-chart.jsx +106 -0
- package/minimal/src/components/progress-bar/index.js +3 -0
- package/minimal/src/components/progress-bar/progress-bar.jsx +48 -0
- package/minimal/src/components/progress-bar/styles.jsx +40 -0
- package/minimal/src/components/scroll-progress/index.js +1 -0
- package/minimal/src/components/scroll-progress/scroll-progress.jsx +58 -0
- package/minimal/src/components/scrollbar/index.js +1 -0
- package/minimal/src/components/scrollbar/scrollbar.jsx +44 -0
- package/minimal/src/components/scrollbar/styles.js +26 -0
- package/minimal/src/components/search-not-found/index.js +1 -0
- package/minimal/src/components/search-not-found/search-not-found.jsx +38 -0
- package/minimal/src/components/settings/context/index.js +2 -0
- package/minimal/src/components/settings/context/settings-context.js +13 -0
- package/minimal/src/components/settings/context/settings-provider.jsx +80 -0
- package/minimal/src/components/settings/drawer/base-option.jsx +59 -0
- package/minimal/src/components/settings/drawer/fullscreen-option.jsx +57 -0
- package/minimal/src/components/settings/drawer/index.js +1 -0
- package/minimal/src/components/settings/drawer/layout-options.jsx +153 -0
- package/minimal/src/components/settings/drawer/presets-options.jsx +55 -0
- package/minimal/src/components/settings/drawer/settings-drawer.jsx +193 -0
- package/minimal/src/components/settings/drawer/stretch-options.jsx +70 -0
- package/minimal/src/components/settings/index.js +3 -0
- package/minimal/src/components/snackbar/index.js +3 -0
- package/minimal/src/components/snackbar/snackbar-provider.jsx +73 -0
- package/minimal/src/components/snackbar/styles.js +47 -0
- package/minimal/src/components/svg-color/index.js +1 -0
- package/minimal/src/components/svg-color/svg-color.jsx +31 -0
- package/minimal/src/components/table/index.js +10 -0
- package/minimal/src/components/table/table-empty-rows.jsx +29 -0
- package/minimal/src/components/table/table-head-custom.jsx +90 -0
- package/minimal/src/components/table/table-no-data.jsx +34 -0
- package/minimal/src/components/table/table-pagination-custom.jsx +51 -0
- package/minimal/src/components/table/table-selected-action.jsx +75 -0
- package/minimal/src/components/table/table-skeleton.jsx +23 -0
- package/minimal/src/components/table/use-table.js +123 -0
- package/minimal/src/components/table/utils.js +27 -0
- package/minimal/src/components/text-max-line/index.js +3 -0
- package/minimal/src/components/text-max-line/text-max-line.jsx +67 -0
- package/minimal/src/components/text-max-line/use-typography.js +38 -0
- package/minimal/src/components/upload/errors-rejection-files.jsx +55 -0
- package/minimal/src/components/upload/index.js +8 -0
- package/minimal/src/components/upload/preview-multi-file.jsx +121 -0
- package/minimal/src/components/upload/preview-single-file.jsx +36 -0
- package/minimal/src/components/upload/upload-avatar.jsx +151 -0
- package/minimal/src/components/upload/upload-box.jsx +65 -0
- package/minimal/src/components/upload/upload.jsx +186 -0
- package/minimal/src/config-global.js +34 -0
- package/minimal/src/global.css +20 -0
- package/minimal/src/hooks/use-boolean.js +27 -0
- package/minimal/src/hooks/use-copy-to-clipboard.js +27 -0
- package/minimal/src/hooks/use-countdown.js +78 -0
- package/minimal/src/hooks/use-debounce.js +19 -0
- package/minimal/src/hooks/use-double-click.js +29 -0
- package/minimal/src/hooks/use-event-listener.js +33 -0
- package/minimal/src/hooks/use-local-storage.js +89 -0
- package/minimal/src/hooks/use-mocked-user.js +34 -0
- package/minimal/src/hooks/use-off-set-top.js +36 -0
- package/minimal/src/hooks/use-responsive.js +47 -0
- package/minimal/src/hooks/use-scroll-to-top.js +14 -0
- package/minimal/src/layouts/auth/classic.jsx +158 -0
- package/minimal/src/layouts/auth/modern-compact.jsx +56 -0
- package/minimal/src/layouts/auth/modern.jsx +95 -0
- package/minimal/src/layouts/common/account-popover.jsx +132 -0
- package/minimal/src/layouts/common/contacts-popover.jsx +73 -0
- package/minimal/src/layouts/common/header-shadow.jsx +31 -0
- package/minimal/src/layouts/common/header-simple.jsx +69 -0
- package/minimal/src/layouts/common/language-popover.jsx +64 -0
- package/minimal/src/layouts/common/login-button.jsx +21 -0
- package/minimal/src/layouts/common/nav-toggle-button.jsx +63 -0
- package/minimal/src/layouts/common/nav-upgrade.jsx +61 -0
- package/minimal/src/layouts/common/notifications-popover/index.jsx +191 -0
- package/minimal/src/layouts/common/notifications-popover/notification-item.jsx +246 -0
- package/minimal/src/layouts/common/searchbar/index.jsx +171 -0
- package/minimal/src/layouts/common/searchbar/result-item.jsx +69 -0
- package/minimal/src/layouts/common/searchbar/utils.js +86 -0
- package/minimal/src/layouts/common/settings-button.jsx +62 -0
- package/minimal/src/layouts/compact/index.jsx +35 -0
- package/minimal/src/layouts/config-layout.js +12 -0
- package/minimal/src/layouts/dashboard/config-navigation.jsx +324 -0
- package/minimal/src/layouts/dashboard/header.jsx +118 -0
- package/minimal/src/layouts/dashboard/index.jsx +88 -0
- package/minimal/src/layouts/dashboard/main.jsx +74 -0
- package/minimal/src/layouts/dashboard/nav-horizontal.jsx +65 -0
- package/minimal/src/layouts/dashboard/nav-mini.jsx +57 -0
- package/minimal/src/layouts/dashboard/nav-vertical.jsx +106 -0
- package/minimal/src/layouts/main/config-navigation.jsx +90 -0
- package/minimal/src/layouts/main/footer.jsx +172 -0
- package/minimal/src/layouts/main/header.jsx +112 -0
- package/minimal/src/layouts/main/index.jsx +40 -0
- package/minimal/src/layouts/main/nav/desktop/index.jsx +21 -0
- package/minimal/src/layouts/main/nav/desktop/nav-item.jsx +184 -0
- package/minimal/src/layouts/main/nav/desktop/nav-list.jsx +158 -0
- package/minimal/src/layouts/main/nav/mobile/index.jsx +67 -0
- package/minimal/src/layouts/main/nav/mobile/nav-item.jsx +90 -0
- package/minimal/src/layouts/main/nav/mobile/nav-list.jsx +83 -0
- package/minimal/src/layouts/simple/index.jsx +19 -0
- package/minimal/src/locales/config-lang.js +79 -0
- package/minimal/src/locales/i18n.js +39 -0
- package/minimal/src/locales/index.js +5 -0
- package/minimal/src/locales/langs/ar.json +54 -0
- package/minimal/src/locales/langs/cn.json +54 -0
- package/minimal/src/locales/langs/en.json +54 -0
- package/minimal/src/locales/langs/fr.json +54 -0
- package/minimal/src/locales/langs/vi.json +54 -0
- package/minimal/src/locales/localization-provider.jsx +22 -0
- package/minimal/src/locales/use-locales.js +44 -0
- package/minimal/src/main.jsx +20 -0
- package/minimal/src/pages/403.jsx +17 -0
- package/minimal/src/pages/404.jsx +17 -0
- package/minimal/src/pages/500.jsx +17 -0
- package/minimal/src/pages/about-us.jsx +17 -0
- package/minimal/src/pages/auth/amplify/forgot-password.jsx +17 -0
- package/minimal/src/pages/auth/amplify/login.jsx +17 -0
- package/minimal/src/pages/auth/amplify/new-password.jsx +17 -0
- package/minimal/src/pages/auth/amplify/register.jsx +17 -0
- package/minimal/src/pages/auth/amplify/verify.jsx +17 -0
- package/minimal/src/pages/auth/auth0/callback.js +6 -0
- package/minimal/src/pages/auth/auth0/login.jsx +17 -0
- package/minimal/src/pages/auth/firebase/forgot-password.jsx +17 -0
- package/minimal/src/pages/auth/firebase/login.jsx +17 -0
- package/minimal/src/pages/auth/firebase/register.jsx +17 -0
- package/minimal/src/pages/auth/firebase/verify.jsx +17 -0
- package/minimal/src/pages/auth/jwt/login.jsx +17 -0
- package/minimal/src/pages/auth/jwt/register.jsx +17 -0
- package/minimal/src/pages/auth-demo/classic/forgot-password.jsx +17 -0
- package/minimal/src/pages/auth-demo/classic/login.jsx +17 -0
- package/minimal/src/pages/auth-demo/classic/new-password.jsx +17 -0
- package/minimal/src/pages/auth-demo/classic/register.jsx +17 -0
- package/minimal/src/pages/auth-demo/classic/verify.jsx +17 -0
- package/minimal/src/pages/auth-demo/modern/forgot-password.jsx +17 -0
- package/minimal/src/pages/auth-demo/modern/login.jsx +17 -0
- package/minimal/src/pages/auth-demo/modern/new-password.jsx +17 -0
- package/minimal/src/pages/auth-demo/modern/register.jsx +17 -0
- package/minimal/src/pages/auth-demo/modern/verify.jsx +17 -0
- package/minimal/src/pages/coming-soon.jsx +17 -0
- package/minimal/src/pages/components/extra/animate.jsx +17 -0
- package/minimal/src/pages/components/extra/carousel.jsx +17 -0
- package/minimal/src/pages/components/extra/chart.jsx +17 -0
- package/minimal/src/pages/components/extra/copy-to-clipboard.jsx +17 -0
- package/minimal/src/pages/components/extra/editor.jsx +17 -0
- package/minimal/src/pages/components/extra/form-validation.jsx +17 -0
- package/minimal/src/pages/components/extra/image.jsx +17 -0
- package/minimal/src/pages/components/extra/label.jsx +17 -0
- package/minimal/src/pages/components/extra/lightbox.jsx +17 -0
- package/minimal/src/pages/components/extra/map.jsx +17 -0
- package/minimal/src/pages/components/extra/markdown.jsx +17 -0
- package/minimal/src/pages/components/extra/mega-menu.jsx +17 -0
- package/minimal/src/pages/components/extra/multi-language.jsx +17 -0
- package/minimal/src/pages/components/extra/navigation-bar.jsx +17 -0
- package/minimal/src/pages/components/extra/organization-chart.jsx +17 -0
- package/minimal/src/pages/components/extra/scroll-progress.jsx +17 -0
- package/minimal/src/pages/components/extra/scroll.jsx +17 -0
- package/minimal/src/pages/components/extra/snackbar.jsx +17 -0
- package/minimal/src/pages/components/extra/text-max-line.jsx +17 -0
- package/minimal/src/pages/components/extra/upload.jsx +17 -0
- package/minimal/src/pages/components/foundation/colors.jsx +17 -0
- package/minimal/src/pages/components/foundation/grid.jsx +17 -0
- package/minimal/src/pages/components/foundation/icons.jsx +17 -0
- package/minimal/src/pages/components/foundation/shadows.jsx +17 -0
- package/minimal/src/pages/components/foundation/typography.jsx +17 -0
- package/minimal/src/pages/components/index.jsx +17 -0
- package/minimal/src/pages/components/mui/accordion.jsx +17 -0
- package/minimal/src/pages/components/mui/alert.jsx +17 -0
- package/minimal/src/pages/components/mui/autocomplete.jsx +17 -0
- package/minimal/src/pages/components/mui/avatar.jsx +17 -0
- package/minimal/src/pages/components/mui/badge.jsx +17 -0
- package/minimal/src/pages/components/mui/breadcrumbs.jsx +17 -0
- package/minimal/src/pages/components/mui/buttons.jsx +17 -0
- package/minimal/src/pages/components/mui/checkbox.jsx +17 -0
- package/minimal/src/pages/components/mui/chip.jsx +17 -0
- package/minimal/src/pages/components/mui/data-grid.jsx +17 -0
- package/minimal/src/pages/components/mui/dialog.jsx +17 -0
- package/minimal/src/pages/components/mui/list.jsx +17 -0
- package/minimal/src/pages/components/mui/menu.jsx +17 -0
- package/minimal/src/pages/components/mui/pagination.jsx +17 -0
- package/minimal/src/pages/components/mui/pickers.jsx +17 -0
- package/minimal/src/pages/components/mui/popover.jsx +17 -0
- package/minimal/src/pages/components/mui/progress.jsx +17 -0
- package/minimal/src/pages/components/mui/radio-button.jsx +17 -0
- package/minimal/src/pages/components/mui/rating.jsx +17 -0
- package/minimal/src/pages/components/mui/slider.jsx +17 -0
- package/minimal/src/pages/components/mui/stepper.jsx +17 -0
- package/minimal/src/pages/components/mui/switch.jsx +17 -0
- package/minimal/src/pages/components/mui/table.jsx +17 -0
- package/minimal/src/pages/components/mui/tabs.jsx +17 -0
- package/minimal/src/pages/components/mui/textfield.jsx +17 -0
- package/minimal/src/pages/components/mui/timeline.jsx +17 -0
- package/minimal/src/pages/components/mui/tooltip.jsx +17 -0
- package/minimal/src/pages/components/mui/transfer-list.jsx +17 -0
- package/minimal/src/pages/contact-us.jsx +17 -0
- package/minimal/src/pages/dashboard/analytics.jsx +17 -0
- package/minimal/src/pages/dashboard/app.jsx +17 -0
- package/minimal/src/pages/dashboard/banking.jsx +17 -0
- package/minimal/src/pages/dashboard/blank.jsx +17 -0
- package/minimal/src/pages/dashboard/booking.jsx +17 -0
- package/minimal/src/pages/dashboard/calendar.jsx +17 -0
- package/minimal/src/pages/dashboard/chat.jsx +17 -0
- package/minimal/src/pages/dashboard/ecommerce.jsx +17 -0
- package/minimal/src/pages/dashboard/file-manager.jsx +17 -0
- package/minimal/src/pages/dashboard/file.jsx +17 -0
- package/minimal/src/pages/dashboard/invoice/details.jsx +23 -0
- package/minimal/src/pages/dashboard/invoice/edit.jsx +23 -0
- package/minimal/src/pages/dashboard/invoice/list.jsx +17 -0
- package/minimal/src/pages/dashboard/invoice/new.jsx +17 -0
- package/minimal/src/pages/dashboard/job/details.jsx +23 -0
- package/minimal/src/pages/dashboard/job/edit.jsx +23 -0
- package/minimal/src/pages/dashboard/job/list.jsx +17 -0
- package/minimal/src/pages/dashboard/job/new.jsx +17 -0
- package/minimal/src/pages/dashboard/kanban.jsx +17 -0
- package/minimal/src/pages/dashboard/mail.jsx +17 -0
- package/minimal/src/pages/dashboard/order/details.jsx +23 -0
- package/minimal/src/pages/dashboard/order/list.jsx +17 -0
- package/minimal/src/pages/dashboard/permission.jsx +17 -0
- package/minimal/src/pages/dashboard/post/details.jsx +23 -0
- package/minimal/src/pages/dashboard/post/edit.jsx +23 -0
- package/minimal/src/pages/dashboard/post/list.jsx +17 -0
- package/minimal/src/pages/dashboard/post/new.jsx +17 -0
- package/minimal/src/pages/dashboard/product/details.jsx +23 -0
- package/minimal/src/pages/dashboard/product/edit.jsx +23 -0
- package/minimal/src/pages/dashboard/product/list.jsx +17 -0
- package/minimal/src/pages/dashboard/product/new.jsx +17 -0
- package/minimal/src/pages/dashboard/tour/details.jsx +23 -0
- package/minimal/src/pages/dashboard/tour/edit.jsx +23 -0
- package/minimal/src/pages/dashboard/tour/list.jsx +17 -0
- package/minimal/src/pages/dashboard/tour/new.jsx +17 -0
- package/minimal/src/pages/dashboard/user/account.jsx +17 -0
- package/minimal/src/pages/dashboard/user/cards.jsx +17 -0
- package/minimal/src/pages/dashboard/user/edit.jsx +23 -0
- package/minimal/src/pages/dashboard/user/list.jsx +17 -0
- package/minimal/src/pages/dashboard/user/new.jsx +17 -0
- package/minimal/src/pages/dashboard/user/profile.jsx +17 -0
- package/minimal/src/pages/faqs.jsx +17 -0
- package/minimal/src/pages/home.jsx +17 -0
- package/minimal/src/pages/maintenance.jsx +17 -0
- package/minimal/src/pages/payment.jsx +17 -0
- package/minimal/src/pages/post/details.jsx +23 -0
- package/minimal/src/pages/post/list.jsx +17 -0
- package/minimal/src/pages/pricing.jsx +17 -0
- package/minimal/src/pages/product/checkout.jsx +17 -0
- package/minimal/src/pages/product/details.jsx +23 -0
- package/minimal/src/pages/product/list.jsx +17 -0
- package/minimal/src/routes/components/index.js +1 -0
- package/minimal/src/routes/components/router-link.jsx +13 -0
- package/minimal/src/routes/hooks/index.js +6 -0
- package/minimal/src/routes/hooks/use-active-link.js +13 -0
- package/minimal/src/routes/hooks/use-params.js +10 -0
- package/minimal/src/routes/hooks/use-pathname.js +10 -0
- package/minimal/src/routes/hooks/use-router.js +21 -0
- package/minimal/src/routes/hooks/use-search-params.js +10 -0
- package/minimal/src/routes/paths.js +180 -0
- package/minimal/src/routes/sections/auth-demo.jsx +112 -0
- package/minimal/src/routes/sections/auth.jsx +175 -0
- package/minimal/src/routes/sections/components.jsx +173 -0
- package/minimal/src/routes/sections/dashboard.jsx +165 -0
- package/minimal/src/routes/sections/index.jsx +50 -0
- package/minimal/src/routes/sections/main.jsx +94 -0
- package/minimal/src/sections/_examples/component-block.jsx +45 -0
- package/minimal/src/sections/_examples/component-card.jsx +54 -0
- package/minimal/src/sections/_examples/component-hero.jsx +80 -0
- package/minimal/src/sections/_examples/config-navigation.js +73 -0
- package/minimal/src/sections/_examples/extra/animate-view/background/container.jsx +42 -0
- package/minimal/src/sections/_examples/extra/animate-view/background/index.jsx +61 -0
- package/minimal/src/sections/_examples/extra/animate-view/background/toolbar.jsx +22 -0
- package/minimal/src/sections/_examples/extra/animate-view/control-panel.jsx +58 -0
- package/minimal/src/sections/_examples/extra/animate-view/dialog/container.jsx +72 -0
- package/minimal/src/sections/_examples/extra/animate-view/dialog/index.jsx +76 -0
- package/minimal/src/sections/_examples/extra/animate-view/get-variant.js +91 -0
- package/minimal/src/sections/_examples/extra/animate-view/index.jsx +78 -0
- package/minimal/src/sections/_examples/extra/animate-view/inview/container.jsx +80 -0
- package/minimal/src/sections/_examples/extra/animate-view/inview/index.jsx +129 -0
- package/minimal/src/sections/_examples/extra/animate-view/inview/toolbar.jsx +57 -0
- package/minimal/src/sections/_examples/extra/animate-view/other/buttons.jsx +86 -0
- package/minimal/src/sections/_examples/extra/animate-view/other/index.jsx +48 -0
- package/minimal/src/sections/_examples/extra/animate-view/other/logo.jsx +60 -0
- package/minimal/src/sections/_examples/extra/animate-view/scroll/container.jsx +60 -0
- package/minimal/src/sections/_examples/extra/animate-view/scroll/index.jsx +80 -0
- package/minimal/src/sections/_examples/extra/animate-view/scroll/toolbar.jsx +29 -0
- package/minimal/src/sections/_examples/extra/carousel-view/carousel-animation.jsx +113 -0
- package/minimal/src/sections/_examples/extra/carousel-view/carousel-basic-1.jsx +35 -0
- package/minimal/src/sections/_examples/extra/carousel-view/carousel-basic-2.jsx +53 -0
- package/minimal/src/sections/_examples/extra/carousel-view/carousel-basic-3.jsx +57 -0
- package/minimal/src/sections/_examples/extra/carousel-view/carousel-basic-4.jsx +89 -0
- package/minimal/src/sections/_examples/extra/carousel-view/carousel-center-mode.jsx +125 -0
- package/minimal/src/sections/_examples/extra/carousel-view/carousel-thumbnail.jsx +160 -0
- package/minimal/src/sections/_examples/extra/carousel-view/index.jsx +124 -0
- package/minimal/src/sections/_examples/extra/chart-view/chart-area.jsx +35 -0
- package/minimal/src/sections/_examples/extra/chart-view/chart-bar.jsx +43 -0
- package/minimal/src/sections/_examples/extra/chart-view/chart-column-multiple.jsx +32 -0
- package/minimal/src/sections/_examples/extra/chart-view/chart-column-negative.jsx +77 -0
- package/minimal/src/sections/_examples/extra/chart-view/chart-column-single.jsx +34 -0
- package/minimal/src/sections/_examples/extra/chart-view/chart-column-stacked.jsx +50 -0
- package/minimal/src/sections/_examples/extra/chart-view/chart-donut.jsx +42 -0
- package/minimal/src/sections/_examples/extra/chart-view/chart-line.jsx +27 -0
- package/minimal/src/sections/_examples/extra/chart-view/chart-mixed.jsx +59 -0
- package/minimal/src/sections/_examples/extra/chart-view/chart-pie.jsx +48 -0
- package/minimal/src/sections/_examples/extra/chart-view/chart-radar-bar.jsx +73 -0
- package/minimal/src/sections/_examples/extra/chart-view/chart-radial-bar.jsx +73 -0
- package/minimal/src/sections/_examples/extra/chart-view/index.jsx +234 -0
- package/minimal/src/sections/_examples/extra/copy-to-clipboard-view.jsx +115 -0
- package/minimal/src/sections/_examples/extra/editor-view.jsx +95 -0
- package/minimal/src/sections/_examples/extra/form-validation-view/index.jsx +59 -0
- package/minimal/src/sections/_examples/extra/form-validation-view/react-hook-form.jsx +405 -0
- package/minimal/src/sections/_examples/extra/form-validation-view/schema.js +50 -0
- package/minimal/src/sections/_examples/extra/form-validation-view/values-preview.jsx +87 -0
- package/minimal/src/sections/_examples/extra/image-view.jsx +94 -0
- package/minimal/src/sections/_examples/extra/label-view.jsx +116 -0
- package/minimal/src/sections/_examples/extra/lightbox-view.jsx +239 -0
- package/minimal/src/sections/_examples/extra/map-view/change-theme/control-panel.jsx +41 -0
- package/minimal/src/sections/_examples/extra/map-view/change-theme/index.jsx +41 -0
- package/minimal/src/sections/_examples/extra/map-view/clusters/index.jsx +61 -0
- package/minimal/src/sections/_examples/extra/map-view/clusters/layers.js +37 -0
- package/minimal/src/sections/_examples/extra/map-view/draggable-markers/control-panel.jsx +49 -0
- package/minimal/src/sections/_examples/extra/map-view/draggable-markers/index.jsx +56 -0
- package/minimal/src/sections/_examples/extra/map-view/heatmap/control-panel.jsx +91 -0
- package/minimal/src/sections/_examples/extra/map-view/heatmap/index.jsx +94 -0
- package/minimal/src/sections/_examples/extra/map-view/heatmap/map-style.js +40 -0
- package/minimal/src/sections/_examples/extra/map-view/index.jsx +183 -0
- package/minimal/src/sections/_examples/extra/map-view/interaction/control-panel.jsx +85 -0
- package/minimal/src/sections/_examples/extra/map-view/interaction/index.jsx +56 -0
- package/minimal/src/sections/_examples/extra/map-view/map-geo-json-animation.jsx +68 -0
- package/minimal/src/sections/_examples/extra/map-view/map-highlight-by-filter.jsx +83 -0
- package/minimal/src/sections/_examples/extra/map-view/map-markers-popups.jsx +95 -0
- package/minimal/src/sections/_examples/extra/map-view/side-by-side/control-panel.jsx +28 -0
- package/minimal/src/sections/_examples/extra/map-view/side-by-side/index.jsx +106 -0
- package/minimal/src/sections/_examples/extra/map-view/viewport-animation/control-panel.jsx +39 -0
- package/minimal/src/sections/_examples/extra/map-view/viewport-animation/index.jsx +44 -0
- package/minimal/src/sections/_examples/extra/markdown-view.jsx +204 -0
- package/minimal/src/sections/_examples/extra/mega-menu-view.jsx +318 -0
- package/minimal/src/sections/_examples/extra/multi-language-view.jsx +124 -0
- package/minimal/src/sections/_examples/extra/navigation-bar-view.jsx +564 -0
- package/minimal/src/sections/_examples/extra/organizational-chart-view.jsx +206 -0
- package/minimal/src/sections/_examples/extra/scroll-progress-view.jsx +136 -0
- package/minimal/src/sections/_examples/extra/scroll-view.jsx +113 -0
- package/minimal/src/sections/_examples/extra/snackbar-view.jsx +212 -0
- package/minimal/src/sections/_examples/extra/text-max-line-view.jsx +112 -0
- package/minimal/src/sections/_examples/extra/upload-view.jsx +190 -0
- package/minimal/src/sections/_examples/foundation/colors-view.jsx +181 -0
- package/minimal/src/sections/_examples/foundation/grid-view.jsx +154 -0
- package/minimal/src/sections/_examples/foundation/icons-view.jsx +95 -0
- package/minimal/src/sections/_examples/foundation/index.js +5 -0
- package/minimal/src/sections/_examples/foundation/shadows-view.jsx +122 -0
- package/minimal/src/sections/_examples/foundation/typography-view.jsx +153 -0
- package/minimal/src/sections/_examples/mui/accordion-view.jsx +101 -0
- package/minimal/src/sections/_examples/mui/alert-view.jsx +176 -0
- package/minimal/src/sections/_examples/mui/autocomplete-view.jsx +384 -0
- package/minimal/src/sections/_examples/mui/avatar-view.jsx +188 -0
- package/minimal/src/sections/_examples/mui/badge-view.jsx +139 -0
- package/minimal/src/sections/_examples/mui/breadcrumbs-view.jsx +158 -0
- package/minimal/src/sections/_examples/mui/button-view/button-groups.jsx +111 -0
- package/minimal/src/sections/_examples/mui/button-view/button-variants.jsx +144 -0
- package/minimal/src/sections/_examples/mui/button-view/floating-action-button.jsx +198 -0
- package/minimal/src/sections/_examples/mui/button-view/icon-buttons.jsx +90 -0
- package/minimal/src/sections/_examples/mui/button-view/index.jsx +102 -0
- package/minimal/src/sections/_examples/mui/button-view/toggle-buttons.jsx +183 -0
- package/minimal/src/sections/_examples/mui/checkbox-view.jsx +187 -0
- package/minimal/src/sections/_examples/mui/chip-view/chip.jsx +241 -0
- package/minimal/src/sections/_examples/mui/chip-view/index.jsx +72 -0
- package/minimal/src/sections/_examples/mui/data-grid-view/data-grid-basic.jsx +65 -0
- package/minimal/src/sections/_examples/mui/data-grid-view/data-grid-custom.jsx +236 -0
- package/minimal/src/sections/_examples/mui/data-grid-view/index.jsx +95 -0
- package/minimal/src/sections/_examples/mui/dialog-view/alert-dialog.jsx +39 -0
- package/minimal/src/sections/_examples/mui/dialog-view/form-dialog.jsx +52 -0
- package/minimal/src/sections/_examples/mui/dialog-view/full-screen-dialog.jsx +68 -0
- package/minimal/src/sections/_examples/mui/dialog-view/index.jsx +77 -0
- package/minimal/src/sections/_examples/mui/dialog-view/max-width-dialog.jsx +105 -0
- package/minimal/src/sections/_examples/mui/dialog-view/scroll-dialog.jsx +74 -0
- package/minimal/src/sections/_examples/mui/dialog-view/simple-dialog.jsx +69 -0
- package/minimal/src/sections/_examples/mui/dialog-view/transitions-dialog.jsx +49 -0
- package/minimal/src/sections/_examples/mui/list-view.jsx +324 -0
- package/minimal/src/sections/_examples/mui/menu-view.jsx +193 -0
- package/minimal/src/sections/_examples/mui/pagination-view.jsx +126 -0
- package/minimal/src/sections/_examples/mui/picker-view/index.jsx +76 -0
- package/minimal/src/sections/_examples/mui/picker-view/picker-date-range.jsx +91 -0
- package/minimal/src/sections/_examples/mui/picker-view/picker-date-time.jsx +74 -0
- package/minimal/src/sections/_examples/mui/picker-view/picker-date.jsx +140 -0
- package/minimal/src/sections/_examples/mui/picker-view/picker-time.jsx +115 -0
- package/minimal/src/sections/_examples/mui/popover-view.jsx +186 -0
- package/minimal/src/sections/_examples/mui/progress-view/index.jsx +99 -0
- package/minimal/src/sections/_examples/mui/progress-view/progress-circular.jsx +58 -0
- package/minimal/src/sections/_examples/mui/progress-view/progress-linear.jsx +86 -0
- package/minimal/src/sections/_examples/mui/radio-button-view.jsx +117 -0
- package/minimal/src/sections/_examples/mui/rating-view.jsx +184 -0
- package/minimal/src/sections/_examples/mui/slider-view.jsx +204 -0
- package/minimal/src/sections/_examples/mui/stepper-view/customized-steppers.jsx +260 -0
- package/minimal/src/sections/_examples/mui/stepper-view/horizontal-linear-stepper.jsx +125 -0
- package/minimal/src/sections/_examples/mui/stepper-view/index.jsx +95 -0
- package/minimal/src/sections/_examples/mui/stepper-view/linear-alternative-label-stepper.jsx +123 -0
- package/minimal/src/sections/_examples/mui/stepper-view/vertical-linear-stepper.jsx +89 -0
- package/minimal/src/sections/_examples/mui/switch-view.jsx +99 -0
- package/minimal/src/sections/_examples/mui/table-view/basic-table.jsx +56 -0
- package/minimal/src/sections/_examples/mui/table-view/collapsible-table.jsx +143 -0
- package/minimal/src/sections/_examples/mui/table-view/grouping-fixed-header-table.jsx +135 -0
- package/minimal/src/sections/_examples/mui/table-view/index.jsx +75 -0
- package/minimal/src/sections/_examples/mui/table-view/sorting-selecting-table.jsx +187 -0
- package/minimal/src/sections/_examples/mui/table-view/utils.js +24 -0
- package/minimal/src/sections/_examples/mui/tabs-view.jsx +211 -0
- package/minimal/src/sections/_examples/mui/textfield-view/index.jsx +86 -0
- package/minimal/src/sections/_examples/mui/textfield-view/textfield.jsx +278 -0
- package/minimal/src/sections/_examples/mui/timeline-view.jsx +237 -0
- package/minimal/src/sections/_examples/mui/tooltip-view.jsx +184 -0
- package/minimal/src/sections/_examples/mui/transfer-list-view/enhanced-transfer-list.jsx +159 -0
- package/minimal/src/sections/_examples/mui/transfer-list-view/index.jsx +52 -0
- package/minimal/src/sections/_examples/mui/transfer-list-view/simple-transfer-list.jsx +154 -0
- package/minimal/src/sections/_examples/view.jsx +120 -0
- package/minimal/src/sections/about/about-hero.jsx +93 -0
- package/minimal/src/sections/about/about-team.jsx +158 -0
- package/minimal/src/sections/about/about-testimonials.jsx +202 -0
- package/minimal/src/sections/about/about-vision.jsx +105 -0
- package/minimal/src/sections/about/about-what.jsx +133 -0
- package/minimal/src/sections/about/view/about-view.jsx +23 -0
- package/minimal/src/sections/about/view/index.js +1 -0
- package/minimal/src/sections/account/account-billing-address.jsx +130 -0
- package/minimal/src/sections/account/account-billing-history.jsx +78 -0
- package/minimal/src/sections/account/account-billing-payment.jsx +60 -0
- package/minimal/src/sections/account/account-billing-plan.jsx +225 -0
- package/minimal/src/sections/account/account-billing.jsx +35 -0
- package/minimal/src/sections/account/account-change-password.jsx +125 -0
- package/minimal/src/sections/account/account-general.jsx +201 -0
- package/minimal/src/sections/account/account-notifications.jsx +131 -0
- package/minimal/src/sections/account/account-social-links.jsx +87 -0
- package/minimal/src/sections/account/view/index.js +1 -0
- package/minimal/src/sections/account/view/user-account-view.jsx +106 -0
- package/minimal/src/sections/address/address-item.jsx +61 -0
- package/minimal/src/sections/address/address-list-dialog.jsx +165 -0
- package/minimal/src/sections/address/address-new-form.jsx +176 -0
- package/minimal/src/sections/address/index.js +3 -0
- package/minimal/src/sections/auth/amplify/amplify-forgot-password-view.jsx +112 -0
- package/minimal/src/sections/auth/amplify/amplify-login-view.jsx +140 -0
- package/minimal/src/sections/auth/amplify/amplify-new-password-view.jsx +199 -0
- package/minimal/src/sections/auth/amplify/amplify-register-view.jsx +163 -0
- package/minimal/src/sections/auth/amplify/amplify-verify-view.jsx +154 -0
- package/minimal/src/sections/auth/amplify/index.js +5 -0
- package/minimal/src/sections/auth/auth0/auth0-login-view.jsx +120 -0
- package/minimal/src/sections/auth/auth0/index.js +1 -0
- package/minimal/src/sections/auth/firebase/firebase-forgot-password-view.jsx +112 -0
- package/minimal/src/sections/auth/firebase/firebase-login-view.jsx +198 -0
- package/minimal/src/sections/auth/firebase/firebase-register-view.jsx +220 -0
- package/minimal/src/sections/auth/firebase/firebase-verify-view.jsx +56 -0
- package/minimal/src/sections/auth/firebase/index.js +4 -0
- package/minimal/src/sections/auth/jwt/index.js +2 -0
- package/minimal/src/sections/auth/jwt/jwt-login-view.jsx +137 -0
- package/minimal/src/sections/auth/jwt/jwt-register-view.jsx +164 -0
- package/minimal/src/sections/auth-demo/classic/classic-forgot-password-view.jsx +100 -0
- package/minimal/src/sections/auth-demo/classic/classic-login-view.jsx +118 -0
- package/minimal/src/sections/auth-demo/classic/classic-new-password-view.jsx +167 -0
- package/minimal/src/sections/auth-demo/classic/classic-register-view.jsx +140 -0
- package/minimal/src/sections/auth-demo/classic/classic-verify-view.jsx +122 -0
- package/minimal/src/sections/auth-demo/classic/index.js +5 -0
- package/minimal/src/sections/auth-demo/modern/index.js +5 -0
- package/minimal/src/sections/auth-demo/modern/modern-forgot-password-view.jsx +102 -0
- package/minimal/src/sections/auth-demo/modern/modern-login-view.jsx +120 -0
- package/minimal/src/sections/auth-demo/modern/modern-new-password-view.jsx +167 -0
- package/minimal/src/sections/auth-demo/modern/modern-register-view.jsx +142 -0
- package/minimal/src/sections/auth-demo/modern/modern-verify-view.jsx +122 -0
- package/minimal/src/sections/blank/view.jsx +29 -0
- package/minimal/src/sections/blog/post-comment-form.jsx +80 -0
- package/minimal/src/sections/blog/post-comment-item.jsx +88 -0
- package/minimal/src/sections/blog/post-comment-list.jsx +55 -0
- package/minimal/src/sections/blog/post-details-hero.jsx +124 -0
- package/minimal/src/sections/blog/post-details-preview.jsx +96 -0
- package/minimal/src/sections/blog/post-details-toolbar.jsx +111 -0
- package/minimal/src/sections/blog/post-item-horizontal.jsx +183 -0
- package/minimal/src/sections/blog/post-item.jsx +203 -0
- package/minimal/src/sections/blog/post-list-horizontal.jsx +59 -0
- package/minimal/src/sections/blog/post-list.jsx +66 -0
- package/minimal/src/sections/blog/post-new-edit-form.jsx +315 -0
- package/minimal/src/sections/blog/post-search.jsx +129 -0
- package/minimal/src/sections/blog/post-skeleton.jsx +94 -0
- package/minimal/src/sections/blog/post-sort.jsx +56 -0
- package/minimal/src/sections/blog/view/index.js +6 -0
- package/minimal/src/sections/blog/view/post-create-view.jsx +40 -0
- package/minimal/src/sections/blog/view/post-details-home-view.jsx +188 -0
- package/minimal/src/sections/blog/view/post-details-view.jsx +172 -0
- package/minimal/src/sections/blog/view/post-edit-view.jsx +50 -0
- package/minimal/src/sections/blog/view/post-list-home-view.jsx +99 -0
- package/minimal/src/sections/blog/view/post-list-view.jsx +187 -0
- package/minimal/src/sections/calendar/calendar-filters-result.jsx +132 -0
- package/minimal/src/sections/calendar/calendar-filters.jsx +217 -0
- package/minimal/src/sections/calendar/calendar-form.jsx +198 -0
- package/minimal/src/sections/calendar/calendar-toolbar.jsx +141 -0
- package/minimal/src/sections/calendar/hooks/index.js +2 -0
- package/minimal/src/sections/calendar/hooks/use-calendar.js +168 -0
- package/minimal/src/sections/calendar/hooks/use-event.js +33 -0
- package/minimal/src/sections/calendar/styles.js +163 -0
- package/minimal/src/sections/calendar/view/calendar-view.jsx +265 -0
- package/minimal/src/sections/calendar/view/index.js +1 -0
- package/minimal/src/sections/chat/chat-header-compose.jsx +112 -0
- package/minimal/src/sections/chat/chat-header-detail.jsx +84 -0
- package/minimal/src/sections/chat/chat-message-input.jsx +153 -0
- package/minimal/src/sections/chat/chat-message-item.jsx +153 -0
- package/minimal/src/sections/chat/chat-message-list.jsx +50 -0
- package/minimal/src/sections/chat/chat-nav-account.jsx +115 -0
- package/minimal/src/sections/chat/chat-nav-item.jsx +152 -0
- package/minimal/src/sections/chat/chat-nav-search-results.jsx +64 -0
- package/minimal/src/sections/chat/chat-nav.jsx +264 -0
- package/minimal/src/sections/chat/chat-room-attachments.jsx +125 -0
- package/minimal/src/sections/chat/chat-room-group.jsx +106 -0
- package/minimal/src/sections/chat/chat-room-participant-dialog.jsx +112 -0
- package/minimal/src/sections/chat/chat-room-single.jsx +102 -0
- package/minimal/src/sections/chat/chat-room.jsx +150 -0
- package/minimal/src/sections/chat/chat-skeleton.jsx +33 -0
- package/minimal/src/sections/chat/hooks/index.js +4 -0
- package/minimal/src/sections/chat/hooks/use-collapse-nav.js +35 -0
- package/minimal/src/sections/chat/hooks/use-get-message.js +25 -0
- package/minimal/src/sections/chat/hooks/use-get-nav-item.js +38 -0
- package/minimal/src/sections/chat/hooks/use-messages-scroll.js +33 -0
- package/minimal/src/sections/chat/view/chat-view.jsx +145 -0
- package/minimal/src/sections/chat/view/index.js +1 -0
- package/minimal/src/sections/checkout/checkout-billing-address.jsx +92 -0
- package/minimal/src/sections/checkout/checkout-billing-info.jsx +43 -0
- package/minimal/src/sections/checkout/checkout-cart-product-list.jsx +58 -0
- package/minimal/src/sections/checkout/checkout-cart-product.jsx +81 -0
- package/minimal/src/sections/checkout/checkout-cart.jsx +88 -0
- package/minimal/src/sections/checkout/checkout-delivery.jsx +103 -0
- package/minimal/src/sections/checkout/checkout-order-complete.jsx +116 -0
- package/minimal/src/sections/checkout/checkout-payment-methods.jsx +149 -0
- package/minimal/src/sections/checkout/checkout-payment.jsx +140 -0
- package/minimal/src/sections/checkout/checkout-steps.jsx +103 -0
- package/minimal/src/sections/checkout/checkout-summary.jsx +112 -0
- package/minimal/src/sections/checkout/context/checkout-context.js +13 -0
- package/minimal/src/sections/checkout/context/checkout-provider.jsx +219 -0
- package/minimal/src/sections/checkout/context/index.js +2 -0
- package/minimal/src/sections/checkout/view/checkout-view.jsx +52 -0
- package/minimal/src/sections/checkout/view/index.js +1 -0
- package/minimal/src/sections/coming-soon/view.jsx +113 -0
- package/minimal/src/sections/contact/contact-form.jsx +47 -0
- package/minimal/src/sections/contact/contact-hero.jsx +129 -0
- package/minimal/src/sections/contact/contact-map.jsx +100 -0
- package/minimal/src/sections/contact/view/contact-view.jsx +33 -0
- package/minimal/src/sections/contact/view/index.js +1 -0
- package/minimal/src/sections/error/403-view.jsx +43 -0
- package/minimal/src/sections/error/500-view.jsx +41 -0
- package/minimal/src/sections/error/index.js +3 -0
- package/minimal/src/sections/error/not-found-view.jsx +47 -0
- package/minimal/src/sections/faqs/faqs-category.jsx +172 -0
- package/minimal/src/sections/faqs/faqs-form.jsx +42 -0
- package/minimal/src/sections/faqs/faqs-hero.jsx +111 -0
- package/minimal/src/sections/faqs/faqs-list.jsx +28 -0
- package/minimal/src/sections/faqs/view/faqs-view.jsx +50 -0
- package/minimal/src/sections/faqs/view/index.js +1 -0
- package/minimal/src/sections/file-manager/file-data-activity.jsx +125 -0
- package/minimal/src/sections/file-manager/file-manager-action-selected.jsx +74 -0
- package/minimal/src/sections/file-manager/file-manager-file-details.jsx +281 -0
- package/minimal/src/sections/file-manager/file-manager-file-item.jsx +270 -0
- package/minimal/src/sections/file-manager/file-manager-filters-result.jsx +115 -0
- package/minimal/src/sections/file-manager/file-manager-filters.jsx +217 -0
- package/minimal/src/sections/file-manager/file-manager-folder-item.jsx +309 -0
- package/minimal/src/sections/file-manager/file-manager-grid-view.jsx +201 -0
- package/minimal/src/sections/file-manager/file-manager-invited-item.jsx +113 -0
- package/minimal/src/sections/file-manager/file-manager-new-folder-dialog.jsx +117 -0
- package/minimal/src/sections/file-manager/file-manager-panel.jsx +81 -0
- package/minimal/src/sections/file-manager/file-manager-share-dialog.jsx +95 -0
- package/minimal/src/sections/file-manager/file-manager-table-row.jsx +287 -0
- package/minimal/src/sections/file-manager/file-manager-table.jsx +208 -0
- package/minimal/src/sections/file-manager/file-recent-item.jsx +240 -0
- package/minimal/src/sections/file-manager/file-storage-overview.jsx +110 -0
- package/minimal/src/sections/file-manager/file-upgrade.jsx +60 -0
- package/minimal/src/sections/file-manager/file-widget.jsx +64 -0
- package/minimal/src/sections/file-manager/view/file-manager-view.jsx +284 -0
- package/minimal/src/sections/file-manager/view/index.js +1 -0
- package/minimal/src/sections/home/home-advertisement.jsx +118 -0
- package/minimal/src/sections/home/home-clean-interfaces.jsx +84 -0
- package/minimal/src/sections/home/home-color-presets.jsx +156 -0
- package/minimal/src/sections/home/home-dark-mode.jsx +80 -0
- package/minimal/src/sections/home/home-for-designer.jsx +114 -0
- package/minimal/src/sections/home/home-hero.jsx +425 -0
- package/minimal/src/sections/home/home-hugepack-elements.jsx +473 -0
- package/minimal/src/sections/home/home-looking-for.jsx +93 -0
- package/minimal/src/sections/home/home-minimal.jsx +109 -0
- package/minimal/src/sections/home/home-pricing.jsx +266 -0
- package/minimal/src/sections/home/view/home-view.jsx +83 -0
- package/minimal/src/sections/home/view/index.js +1 -0
- package/minimal/src/sections/invoice/invoice-analytic.jsx +70 -0
- package/minimal/src/sections/invoice/invoice-details.jsx +253 -0
- package/minimal/src/sections/invoice/invoice-new-edit-address.jsx +131 -0
- package/minimal/src/sections/invoice/invoice-new-edit-details.jsx +321 -0
- package/minimal/src/sections/invoice/invoice-new-edit-form.jsx +157 -0
- package/minimal/src/sections/invoice/invoice-new-edit-status-date.jsx +86 -0
- package/minimal/src/sections/invoice/invoice-pdf.jsx +278 -0
- package/minimal/src/sections/invoice/invoice-table-filters-result.jsx +126 -0
- package/minimal/src/sections/invoice/invoice-table-row.jsx +186 -0
- package/minimal/src/sections/invoice/invoice-table-toolbar.jsx +188 -0
- package/minimal/src/sections/invoice/invoice-toolbar.jsx +140 -0
- package/minimal/src/sections/invoice/view/index.js +4 -0
- package/minimal/src/sections/invoice/view/invoice-create-view.jsx +40 -0
- package/minimal/src/sections/invoice/view/invoice-details-view.jsx +46 -0
- package/minimal/src/sections/invoice/view/invoice-edit-view.jsx +48 -0
- package/minimal/src/sections/invoice/view/invoice-list-view.jsx +519 -0
- package/minimal/src/sections/job/job-details-candidates.jsx +114 -0
- package/minimal/src/sections/job/job-details-content.jsx +149 -0
- package/minimal/src/sections/job/job-details-toolbar.jsx +111 -0
- package/minimal/src/sections/job/job-filters-result.jsx +165 -0
- package/minimal/src/sections/job/job-filters.jsx +315 -0
- package/minimal/src/sections/job/job-item.jsx +160 -0
- package/minimal/src/sections/job/job-list.jsx +74 -0
- package/minimal/src/sections/job/job-new-edit-form.jsx +443 -0
- package/minimal/src/sections/job/job-search.jsx +93 -0
- package/minimal/src/sections/job/job-sort.jsx +63 -0
- package/minimal/src/sections/job/view/index.js +4 -0
- package/minimal/src/sections/job/view/job-create-view.jsx +38 -0
- package/minimal/src/sections/job/view/job-details-view.jsx +85 -0
- package/minimal/src/sections/job/view/job-edit-view.jsx +48 -0
- package/minimal/src/sections/job/view/job-list-view.jsx +244 -0
- package/minimal/src/sections/kanban/kanban-column-add.jsx +85 -0
- package/minimal/src/sections/kanban/kanban-column-tool-bar.jsx +149 -0
- package/minimal/src/sections/kanban/kanban-column.jsx +202 -0
- package/minimal/src/sections/kanban/kanban-contacts-dialog.jsx +138 -0
- package/minimal/src/sections/kanban/kanban-details-attachments.jsx +50 -0
- package/minimal/src/sections/kanban/kanban-details-comment-input.jsx +47 -0
- package/minimal/src/sections/kanban/kanban-details-comment-list.jsx +78 -0
- package/minimal/src/sections/kanban/kanban-details-priority.jsx +62 -0
- package/minimal/src/sections/kanban/kanban-details-toolbar.jsx +133 -0
- package/minimal/src/sections/kanban/kanban-details.jsx +303 -0
- package/minimal/src/sections/kanban/kanban-input-name.jsx +36 -0
- package/minimal/src/sections/kanban/kanban-skeleton.jsx +39 -0
- package/minimal/src/sections/kanban/kanban-task-add.jsx +94 -0
- package/minimal/src/sections/kanban/kanban-task-item.jsx +169 -0
- package/minimal/src/sections/kanban/view/index.js +1 -0
- package/minimal/src/sections/kanban/view/kanban-view.jsx +182 -0
- package/minimal/src/sections/mail/mail-compose.jsx +170 -0
- package/minimal/src/sections/mail/mail-details.jsx +335 -0
- package/minimal/src/sections/mail/mail-header.jsx +46 -0
- package/minimal/src/sections/mail/mail-item.jsx +87 -0
- package/minimal/src/sections/mail/mail-list.jsx +121 -0
- package/minimal/src/sections/mail/mail-nav-item.jsx +75 -0
- package/minimal/src/sections/mail/mail-nav.jsx +123 -0
- package/minimal/src/sections/mail/mail-skeleton.jsx +59 -0
- package/minimal/src/sections/mail/view/index.js +1 -0
- package/minimal/src/sections/mail/view/mail-view.jsx +237 -0
- package/minimal/src/sections/maintenance/view.jsx +29 -0
- package/minimal/src/sections/order/order-details-history.jsx +109 -0
- package/minimal/src/sections/order/order-details-info.jsx +169 -0
- package/minimal/src/sections/order/order-details-item.jsx +138 -0
- package/minimal/src/sections/order/order-details-toolbar.jsx +126 -0
- package/minimal/src/sections/order/order-table-filters-result.jsx +108 -0
- package/minimal/src/sections/order/order-table-row.jsx +229 -0
- package/minimal/src/sections/order/order-table-toolbar.jsx +159 -0
- package/minimal/src/sections/order/view/index.js +2 -0
- package/minimal/src/sections/order/view/order-details-view.jsx +74 -0
- package/minimal/src/sections/order/view/order-list-view.jsx +382 -0
- package/minimal/src/sections/overview/analytics/analytics-conversion-rates.jsx +64 -0
- package/minimal/src/sections/overview/analytics/analytics-current-subject.jsx +78 -0
- package/minimal/src/sections/overview/analytics/analytics-current-visits.jsx +101 -0
- package/minimal/src/sections/overview/analytics/analytics-news.jsx +95 -0
- package/minimal/src/sections/overview/analytics/analytics-order-timeline.jsx +79 -0
- package/minimal/src/sections/overview/analytics/analytics-tasks.jsx +135 -0
- package/minimal/src/sections/overview/analytics/analytics-traffic-by-site.jsx +53 -0
- package/minimal/src/sections/overview/analytics/analytics-website-visits.jsx +65 -0
- package/minimal/src/sections/overview/analytics/analytics-widget-summary.jsx +59 -0
- package/minimal/src/sections/overview/analytics/view/index.js +1 -0
- package/minimal/src/sections/overview/analytics/view/overview-analytics-view.jsx +185 -0
- package/minimal/src/sections/overview/app/app-area-installed.jsx +123 -0
- package/minimal/src/sections/overview/app/app-current-download.jsx +103 -0
- package/minimal/src/sections/overview/app/app-featured.jsx +118 -0
- package/minimal/src/sections/overview/app/app-new-invoice.jsx +155 -0
- package/minimal/src/sections/overview/app/app-top-authors.jsx +88 -0
- package/minimal/src/sections/overview/app/app-top-installed-countries.jsx +74 -0
- package/minimal/src/sections/overview/app/app-top-related.jsx +92 -0
- package/minimal/src/sections/overview/app/app-welcome.jsx +83 -0
- package/minimal/src/sections/overview/app/app-widget-summary.jsx +110 -0
- package/minimal/src/sections/overview/app/app-widget.jsx +120 -0
- package/minimal/src/sections/overview/app/view/index.js +1 -0
- package/minimal/src/sections/overview/app/view/overview-app-view.jsx +205 -0
- package/minimal/src/sections/overview/banking/banking-balance-statistics.jsx +113 -0
- package/minimal/src/sections/overview/banking/banking-contacts.jsx +56 -0
- package/minimal/src/sections/overview/banking/banking-current-balance.jsx +193 -0
- package/minimal/src/sections/overview/banking/banking-expenses-categories.jsx +115 -0
- package/minimal/src/sections/overview/banking/banking-invite-friends.jsx +78 -0
- package/minimal/src/sections/overview/banking/banking-quick-transfer.jsx +368 -0
- package/minimal/src/sections/overview/banking/banking-recent-transitions.jsx +223 -0
- package/minimal/src/sections/overview/banking/banking-widget-summary.jsx +144 -0
- package/minimal/src/sections/overview/banking/view/index.js +1 -0
- package/minimal/src/sections/overview/banking/view/overview-banking-view.jsx +202 -0
- package/minimal/src/sections/overview/booking/booking-available.jsx +109 -0
- package/minimal/src/sections/overview/booking/booking-booked.jsx +56 -0
- package/minimal/src/sections/overview/booking/booking-check-in-widgets.jsx +136 -0
- package/minimal/src/sections/overview/booking/booking-customer-reviews.jsx +115 -0
- package/minimal/src/sections/overview/booking/booking-details.jsx +204 -0
- package/minimal/src/sections/overview/booking/booking-newest.jsx +156 -0
- package/minimal/src/sections/overview/booking/booking-statistics.jsx +113 -0
- package/minimal/src/sections/overview/booking/booking-total-incomes.jsx +137 -0
- package/minimal/src/sections/overview/booking/booking-widget-summary.jsx +48 -0
- package/minimal/src/sections/overview/booking/view/index.js +1 -0
- package/minimal/src/sections/overview/booking/view/overview-booking-view.jsx +183 -0
- package/minimal/src/sections/overview/e-commerce/ecommerce-best-salesman.jsx +94 -0
- package/minimal/src/sections/overview/e-commerce/ecommerce-current-balance.jsx +70 -0
- package/minimal/src/sections/overview/e-commerce/ecommerce-latest-products.jsx +84 -0
- package/minimal/src/sections/overview/e-commerce/ecommerce-new-products.jsx +98 -0
- package/minimal/src/sections/overview/e-commerce/ecommerce-sale-by-gender.jsx +102 -0
- package/minimal/src/sections/overview/e-commerce/ecommerce-sales-overview.jsx +65 -0
- package/minimal/src/sections/overview/e-commerce/ecommerce-welcome.jsx +83 -0
- package/minimal/src/sections/overview/e-commerce/ecommerce-widget-summary.jsx +124 -0
- package/minimal/src/sections/overview/e-commerce/ecommerce-yearly-sales.jsx +107 -0
- package/minimal/src/sections/overview/e-commerce/view/index.js +1 -0
- package/minimal/src/sections/overview/e-commerce/view/overview-ecommerce-view.jsx +188 -0
- package/minimal/src/sections/overview/file/view/index.js +1 -0
- package/minimal/src/sections/overview/file/view/overview-file-view.jsx +285 -0
- package/minimal/src/sections/payment/payment-billing-address.jsx +20 -0
- package/minimal/src/sections/payment/payment-card-item.jsx +78 -0
- package/minimal/src/sections/payment/payment-card-list-dialog.jsx +116 -0
- package/minimal/src/sections/payment/payment-methods.jsx +165 -0
- package/minimal/src/sections/payment/payment-new-card-dialog.jsx +99 -0
- package/minimal/src/sections/payment/payment-summary.jsx +103 -0
- package/minimal/src/sections/payment/view/index.js +1 -0
- package/minimal/src/sections/payment/view/payment-view.jsx +58 -0
- package/minimal/src/sections/permission/view.jsx +82 -0
- package/minimal/src/sections/pricing/pricing-card.jsx +151 -0
- package/minimal/src/sections/pricing/view.jsx +84 -0
- package/minimal/src/sections/product/common/cart-icon.jsx +44 -0
- package/minimal/src/sections/product/common/incrementer-button.jsx +62 -0
- package/minimal/src/sections/product/product-details-carousel.jsx +191 -0
- package/minimal/src/sections/product/product-details-description.jsx +34 -0
- package/minimal/src/sections/product/product-details-review.jsx +137 -0
- package/minimal/src/sections/product/product-details-summary.jsx +355 -0
- package/minimal/src/sections/product/product-details-toolbar.jsx +111 -0
- package/minimal/src/sections/product/product-filters-result.jsx +170 -0
- package/minimal/src/sections/product/product-filters.jsx +365 -0
- package/minimal/src/sections/product/product-item.jsx +153 -0
- package/minimal/src/sections/product/product-list.jsx +62 -0
- package/minimal/src/sections/product/product-new-edit-form.jsx +452 -0
- package/minimal/src/sections/product/product-review-item.jsx +123 -0
- package/minimal/src/sections/product/product-review-list.jsx +33 -0
- package/minimal/src/sections/product/product-review-new-form.jsx +115 -0
- package/minimal/src/sections/product/product-search.jsx +131 -0
- package/minimal/src/sections/product/product-skeleton.jsx +81 -0
- package/minimal/src/sections/product/product-sort.jsx +58 -0
- package/minimal/src/sections/product/product-table-filters-result.jsx +115 -0
- package/minimal/src/sections/product/product-table-row.jsx +189 -0
- package/minimal/src/sections/product/product-table-toolbar.jsx +191 -0
- package/minimal/src/sections/product/view/index.js +6 -0
- package/minimal/src/sections/product/view/product-create-view.jsx +38 -0
- package/minimal/src/sections/product/view/product-details-view.jsx +193 -0
- package/minimal/src/sections/product/view/product-edit-view.jsx +45 -0
- package/minimal/src/sections/product/view/product-list-view.jsx +345 -0
- package/minimal/src/sections/product/view/product-shop-details-view.jsx +200 -0
- package/minimal/src/sections/product/view/product-shop-view.jsx +240 -0
- package/minimal/src/sections/tour/tour-details-bookers.jsx +145 -0
- package/minimal/src/sections/tour/tour-details-content.jsx +271 -0
- package/minimal/src/sections/tour/tour-details-toolbar.jsx +111 -0
- package/minimal/src/sections/tour/tour-filters-result.jsx +158 -0
- package/minimal/src/sections/tour/tour-filters.jsx +298 -0
- package/minimal/src/sections/tour/tour-item.jsx +227 -0
- package/minimal/src/sections/tour/tour-list.jsx +74 -0
- package/minimal/src/sections/tour/tour-new-edit-form.jsx +413 -0
- package/minimal/src/sections/tour/tour-search.jsx +123 -0
- package/minimal/src/sections/tour/tour-sort.jsx +63 -0
- package/minimal/src/sections/tour/view/index.js +4 -0
- package/minimal/src/sections/tour/view/tour-create-view.jsx +38 -0
- package/minimal/src/sections/tour/view/tour-details-view.jsx +85 -0
- package/minimal/src/sections/tour/view/tour-edit-view.jsx +48 -0
- package/minimal/src/sections/tour/view/tour-list-view.jsx +252 -0
- package/minimal/src/sections/user/profile-cover.jsx +77 -0
- package/minimal/src/sections/user/profile-followers.jsx +121 -0
- package/minimal/src/sections/user/profile-friends.jsx +180 -0
- package/minimal/src/sections/user/profile-gallery.jsx +97 -0
- package/minimal/src/sections/user/profile-home.jsx +201 -0
- package/minimal/src/sections/user/profile-post-item.jsx +226 -0
- package/minimal/src/sections/user/user-card-list.jsx +29 -0
- package/minimal/src/sections/user/user-card.jsx +124 -0
- package/minimal/src/sections/user/user-new-edit-form.jsx +285 -0
- package/minimal/src/sections/user/user-quick-edit-form.jsx +177 -0
- package/minimal/src/sections/user/user-table-filters-result.jsx +107 -0
- package/minimal/src/sections/user/user-table-row.jsx +138 -0
- package/minimal/src/sections/user/user-table-toolbar.jsx +150 -0
- package/minimal/src/sections/user/view/index.js +5 -0
- package/minimal/src/sections/user/view/user-cards-view.jsx +45 -0
- package/minimal/src/sections/user/view/user-create-view.jsx +38 -0
- package/minimal/src/sections/user/view/user-edit-view.jsx +48 -0
- package/minimal/src/sections/user/view/user-list-view.jsx +367 -0
- package/minimal/src/sections/user/view/user-profile-view.jsx +134 -0
- package/minimal/src/theme/css.js +152 -0
- package/minimal/src/theme/custom-shadows.js +32 -0
- package/minimal/src/theme/index.jsx +80 -0
- package/minimal/src/theme/options/contrast.js +34 -0
- package/minimal/src/theme/options/presets.js +89 -0
- package/minimal/src/theme/options/right-to-left.jsx +31 -0
- package/minimal/src/theme/overrides/components/accordion.js +43 -0
- package/minimal/src/theme/overrides/components/alert.js +68 -0
- package/minimal/src/theme/overrides/components/appbar.js +13 -0
- package/minimal/src/theme/overrides/components/autocomplete.js +44 -0
- package/minimal/src/theme/overrides/components/avatar.js +103 -0
- package/minimal/src/theme/overrides/components/backdrop.js +18 -0
- package/minimal/src/theme/overrides/components/badge.js +90 -0
- package/minimal/src/theme/overrides/components/breadcrumbs.js +21 -0
- package/minimal/src/theme/overrides/components/button-group.js +90 -0
- package/minimal/src/theme/overrides/components/button.js +139 -0
- package/minimal/src/theme/overrides/components/card.js +30 -0
- package/minimal/src/theme/overrides/components/checkbox.js +13 -0
- package/minimal/src/theme/overrides/components/chip.js +123 -0
- package/minimal/src/theme/overrides/components/css-baseline.js +48 -0
- package/minimal/src/theme/overrides/components/data-grid.js +95 -0
- package/minimal/src/theme/overrides/components/date-picker.jsx +83 -0
- package/minimal/src/theme/overrides/components/dialog.js +49 -0
- package/minimal/src/theme/overrides/components/drawer.js +36 -0
- package/minimal/src/theme/overrides/components/fab.js +159 -0
- package/minimal/src/theme/overrides/components/list.js +33 -0
- package/minimal/src/theme/overrides/components/loading-button.js +30 -0
- package/minimal/src/theme/overrides/components/menu.js +15 -0
- package/minimal/src/theme/overrides/components/pagination.js +77 -0
- package/minimal/src/theme/overrides/components/paper.js +18 -0
- package/minimal/src/theme/overrides/components/popover.js +21 -0
- package/minimal/src/theme/overrides/components/progress.js +40 -0
- package/minimal/src/theme/overrides/components/radio.js +22 -0
- package/minimal/src/theme/overrides/components/rating.js +40 -0
- package/minimal/src/theme/overrides/components/select.js +26 -0
- package/minimal/src/theme/overrides/components/skeleton.js +16 -0
- package/minimal/src/theme/overrides/components/slider.js +30 -0
- package/minimal/src/theme/overrides/components/stepper.js +13 -0
- package/minimal/src/theme/overrides/components/svg-icon.js +15 -0
- package/minimal/src/theme/overrides/components/switch.js +66 -0
- package/minimal/src/theme/overrides/components/table.js +79 -0
- package/minimal/src/theme/overrides/components/tabs.js +39 -0
- package/minimal/src/theme/overrides/components/textfield.js +146 -0
- package/minimal/src/theme/overrides/components/timeline.js +20 -0
- package/minimal/src/theme/overrides/components/toggle-button.js +67 -0
- package/minimal/src/theme/overrides/components/tooltip.js +18 -0
- package/minimal/src/theme/overrides/components/tree-view.js +16 -0
- package/minimal/src/theme/overrides/components/typography.js +16 -0
- package/minimal/src/theme/overrides/default-props.jsx +239 -0
- package/minimal/src/theme/overrides/index.js +98 -0
- package/minimal/src/theme/palette.js +144 -0
- package/minimal/src/theme/shadows.js +41 -0
- package/minimal/src/theme/typography.js +107 -0
- package/minimal/src/utils/axios.js +53 -0
- package/minimal/src/utils/change-case.js +13 -0
- package/minimal/src/utils/flatten-array.js +14 -0
- package/minimal/src/utils/format-number.js +37 -0
- package/minimal/src/utils/format-time.js +27 -0
- package/minimal/src/utils/highlight.js +12 -0
- package/minimal/src/utils/storage-available.js +24 -0
- package/minimal/src/utils/uuidv4.js +10 -0
- package/minimal/vercel.json +8 -0
- package/minimal/vite.config.js +35 -0
- package/minimal/yarn.lock +6748 -0
- package/package.json +94 -0
- package/project/.eslintrc.cjs +22 -0
- package/project/config.js +18 -0
- package/project/config.menu.js +39 -0
- package/project/config.template.js +31 -0
- package/project/cypress/e2e/layouts.cy.js +170 -0
- package/project/cypress/e2e/login.cy.js +35 -0
- package/project/cypress/e2e/selectbar.cy.js +80 -0
- package/project/cypress/fixtures/CONFIG/MENU_CONFIG.js +39 -0
- package/project/cypress/fixtures/EMPEROR/EMPERORS_GET.json +51 -0
- package/project/cypress/fixtures/EMPEROR/EMPERORS_POST.json +9 -0
- package/project/cypress/fixtures/OAUTH/GITHUB/user.json +46 -0
- package/project/cypress/fixtures/example.json +5 -0
- package/project/cypress/support/commands.js +104 -0
- package/project/cypress/support/e2e.js +1 -0
- package/project/cypress.config.js +10 -0
- package/project/index.html +12 -0
- package/project/media/ProjectIcons/3d.png +0 -0
- package/project/media/ProjectIcons/box.png +0 -0
- package/project/media/ProjectIcons/cafe.png +0 -0
- package/project/media/ProjectIcons/cargo.png +0 -0
- package/project/media/ProjectIcons/cloud.png +0 -0
- package/project/media/ProjectIcons/code.png +0 -0
- package/project/media/ProjectIcons/company.png +0 -0
- package/project/media/ProjectIcons/conversation.png +0 -0
- package/project/media/ProjectIcons/distributed.png +0 -0
- package/project/media/ProjectIcons/fingerprint.png +0 -0
- package/project/media/ProjectIcons/forest.png +0 -0
- package/project/media/ProjectIcons/headphones.png +0 -0
- package/project/media/ProjectIcons/office.png +0 -0
- package/project/media/ProjectIcons/path.png +0 -0
- package/project/media/ProjectIcons/printer.png +0 -0
- package/project/media/ProjectIcons/project.png +0 -0
- package/project/media/ProjectIcons/resume.png +0 -0
- package/project/media/ProjectIcons/rocket.png +0 -0
- package/project/media/ProjectIcons/rtruck.png +0 -0
- package/project/media/ProjectIcons/sign.png +0 -0
- package/project/media/ProjectIcons/site.png +0 -0
- package/project/media/ProjectIcons/truck.png +0 -0
- package/project/media/logo.png +0 -0
- package/project/package-lock.json +22434 -0
- package/project/package.json +42 -0
- package/project/public/assets/background/overlay_2.jpg +0 -0
- package/project/public/assets/illustrations/illustration_dashboard.png +0 -0
- package/project/public/media/largeLogo.png +0 -0
- package/project/public/media/logo.png +0 -0
- package/project/public/vite.svg +1 -0
- package/project/routes.jsx +47 -0
- package/project/server/mock.json +110 -0
- package/project/server/oauthMock.js +27 -0
- package/project/server/package-lock.json +1505 -0
- package/project/server/package.json +20 -0
- package/project/server/server.js +127 -0
- package/project/src/Container.jsx +7 -0
- package/project/src/components/ActionButton.jsx +18 -0
- package/project/src/hooks/useEmperor.jsx +21 -0
- package/project/src/http/index.js +39 -0
- package/project/src/main.jsx +10 -0
- package/project/src/pages/Battles.jsx +16 -0
- package/project/src/pages/Emperor.jsx +50 -0
- package/project/src/pages/index.jsx +33 -0
- package/project/src/theme.js +151 -0
- package/project/src/widgets/ActionButton.jsx +68 -0
- package/project/src/widgets/AddNewEmperor.jsx +120 -0
- package/project/src/widgets/ProjectContainer.jsx +27 -0
- package/project/vite.config.js +6 -0
- package/project/vite.config.js.timestamp-1709564450418-45fdd27900806.mjs +341 -0
- package/public/assets/background/overlay_2.jpg +0 -0
- package/public/assets/illustrations/illustration_dashboard.png +0 -0
- package/public/vite.svg +1 -0
- package/src/ContextProvider/ContextProvider.jsx +19 -0
- package/src/GlobalSnackMessage/GlobalSnackMessage.jsx +45 -0
- package/src/GlobalSnackMessage/index.js +1 -0
- package/src/GlobalSnackMessage/styles.js +3 -0
- package/src/Platform.jsx +76 -0
- package/src/RouteManager/RouteManager.jsx +56 -0
- package/src/RouteManager/index.js +1 -0
- package/src/assets/illustrations/avatar-shape.jsx +31 -0
- package/src/assets/illustrations/background-shape.jsx +37 -0
- package/src/assets/illustrations/booking-illustration.jsx +335 -0
- package/src/assets/illustrations/check-in-illustration.jsx +96 -0
- package/src/assets/illustrations/check-out-illustration.jsx +69 -0
- package/src/assets/illustrations/coming-soon-illustration.jsx +125 -0
- package/src/assets/illustrations/forbidden-illustration.jsx +95 -0
- package/src/assets/illustrations/index.js +2 -0
- package/src/assets/illustrations/maintenance-illustration.jsx +228 -0
- package/src/assets/illustrations/motivation-illustration.jsx +74 -0
- package/src/assets/illustrations/order-complete-illustration.jsx +126 -0
- package/src/assets/illustrations/page-not-found-illustration.jsx +81 -0
- package/src/assets/illustrations/seo-illustration.jsx +244 -0
- package/src/assets/illustrations/sever-error-illustration.jsx +152 -0
- package/src/assets/illustrations/upgrade-storage-illustration.jsx +161 -0
- package/src/assets/illustrations/upload-illustration.jsx +622 -0
- package/src/components/Iconify/Iconify.jsx +18 -0
- package/src/components/Iconify/index.js +1 -0
- package/src/components/MiniTopBar/MiniTopBar.jsx +20 -0
- package/src/components/MiniTopBar/index.js +1 -0
- package/src/components/MiniTopBar/styles.js +6 -0
- package/src/components/NucleoidLoginForm/NucleoidLoginForm.jsx +69 -0
- package/src/components/NucleoidLoginForm/index.js +1 -0
- package/src/components/NucleoidLoginForm/styles.js +3 -0
- package/src/components/Sidebar/Sidebar.jsx +76 -0
- package/src/components/Sidebar/index.js +1 -0
- package/src/components/Sidebar/styles.js +25 -0
- package/src/components/SocialLoginButtons/SocialLoginButtons.jsx +55 -0
- package/src/components/SocialLoginButtons/index.js +1 -0
- package/src/components/SocialLoginButtons/styles.js +3 -0
- package/src/components/TopNavBar/TopNavBar.jsx +186 -0
- package/src/components/TopNavBar/index.js +1 -0
- package/src/components/TopNavBar/styles.js +7 -0
- package/src/components/animate/index.js +6 -0
- package/src/components/animate/motion-container.jsx +40 -0
- package/src/components/animate/motion-lazy.jsx +13 -0
- package/src/components/animate/motion-viewport.jsx +32 -0
- package/src/components/animate/variants/actions.js +6 -0
- package/src/components/animate/variants/background.js +103 -0
- package/src/components/animate/variants/bounce.js +111 -0
- package/src/components/animate/variants/container.js +22 -0
- package/src/components/animate/variants/fade.js +131 -0
- package/src/components/animate/variants/flip.js +58 -0
- package/src/components/animate/variants/index.js +12 -0
- package/src/components/animate/variants/path.js +14 -0
- package/src/components/animate/variants/rotate.js +37 -0
- package/src/components/animate/variants/scale.js +58 -0
- package/src/components/animate/variants/slide.js +69 -0
- package/src/components/animate/variants/transition.js +22 -0
- package/src/components/animate/variants/zoom.js +134 -0
- package/src/components/chart/chart.js +69 -0
- package/src/components/chart/index.js +5 -0
- package/src/components/chart/use-chart.js +215 -0
- package/src/components/custom-popover/custom-popover.jsx +48 -0
- package/src/components/custom-popover/index.js +3 -0
- package/src/components/custom-popover/styles.js +84 -0
- package/src/components/custom-popover/use-popover.js +22 -0
- package/src/components/custom-popover/utils.js +100 -0
- package/src/components/file-thumbnail/download-button.jsx +41 -0
- package/src/components/file-thumbnail/file-thumbnail.jsx +74 -0
- package/src/components/file-thumbnail/index.js +5 -0
- package/src/components/file-thumbnail/utils.js +148 -0
- package/src/components/image/image.jsx +121 -0
- package/src/components/image/index.js +1 -0
- package/src/components/image/utils.js +15 -0
- package/src/components/label/index.js +1 -0
- package/src/components/label/label.jsx +53 -0
- package/src/components/label/styles.js +78 -0
- package/src/components/loading-screen/index.js +2 -0
- package/src/components/loading-screen/loading-screen.jsx +25 -0
- package/src/components/loading-screen/splash-screen.jsx +97 -0
- package/src/components/logo/index.js +1 -0
- package/src/components/logo/logo.jsx +30 -0
- package/src/components/logo/styles.js +17 -0
- package/src/components/nav-section/horizontal/index.js +1 -0
- package/src/components/nav-section/horizontal/nav-item.jsx +230 -0
- package/src/components/nav-section/horizontal/nav-list.jsx +120 -0
- package/src/components/nav-section/horizontal/nav-section-horizontal.jsx +45 -0
- package/src/components/nav-section/index.js +3 -0
- package/src/components/nav-section/mini/index.js +1 -0
- package/src/components/nav-section/mini/nav-item.jsx +249 -0
- package/src/components/nav-section/mini/nav-list.jsx +114 -0
- package/src/components/nav-section/mini/nav-section-mini.jsx +39 -0
- package/src/components/nav-section/vertical/index.js +1 -0
- package/src/components/nav-section/vertical/nav-item.jsx +302 -0
- package/src/components/nav-section/vertical/nav-list.jsx +73 -0
- package/src/components/nav-section/vertical/nav-section-vertical.jsx +78 -0
- package/src/components/scrollbar/index.js +1 -0
- package/src/components/scrollbar/scrollbar.jsx +41 -0
- package/src/components/scrollbar/styles.js +27 -0
- package/src/components/search-not-found/index.js +1 -0
- package/src/components/search-not-found/search-not-found.jsx +31 -0
- package/src/components/settings/context/index.js +2 -0
- package/src/components/settings/context/settings-context.js +14 -0
- package/src/components/settings/context/settings-provider.jsx +52 -0
- package/src/components/settings/drawer/base-option.jsx +54 -0
- package/src/components/settings/drawer/fullscreen-option.jsx +60 -0
- package/src/components/settings/drawer/index.js +1 -0
- package/src/components/settings/drawer/layout-options.jsx +146 -0
- package/src/components/settings/drawer/presets-options.jsx +55 -0
- package/src/components/settings/drawer/settings-drawer.jsx +191 -0
- package/src/components/settings/drawer/stretch-options.jsx +69 -0
- package/src/components/settings/index.js +3 -0
- package/src/components/svg-color/index.js +1 -0
- package/src/components/svg-color/svg-color.jsx +25 -0
- package/src/config/config.js +47 -0
- package/src/config/schemas.js +134 -0
- package/src/context/reducer.js +55 -0
- package/src/global.css +2 -0
- package/src/hooks/index.js +2 -0
- package/src/hooks/use-boolean.js +27 -0
- package/src/hooks/use-event-listener.js +34 -0
- package/src/hooks/use-local-storage.js +89 -0
- package/src/hooks/use-off-set-top.js +37 -0
- package/src/hooks/use-responsive.js +47 -0
- package/src/hooks/use-scroll-to-top.js +14 -0
- package/src/hooks/use-user.js +58 -0
- package/src/hooks/useApi.js +25 -0
- package/src/hooks/useItemsState.js +23 -0
- package/src/hooks/useProjects.js +24 -0
- package/src/hooks/useSettings.jsx +51 -0
- package/src/http/index.js +152 -0
- package/src/http/oauth.js +27 -0
- package/src/http/user.js +92 -0
- package/src/layouts/AppLayout.jsx +113 -0
- package/src/layouts/CompactLayout/CompactLayout.jsx +32 -0
- package/src/layouts/CompactLayout/index.js +1 -0
- package/src/layouts/DashboardLayout/DashboardLayout.jsx +87 -0
- package/src/layouts/DashboardLayout/config-navigation.jsx +0 -0
- package/src/layouts/DashboardLayout/header.jsx +106 -0
- package/src/layouts/DashboardLayout/index.js +2 -0
- package/src/layouts/DashboardLayout/main.jsx +64 -0
- package/src/layouts/DashboardLayout/nav-horizontal.jsx +62 -0
- package/src/layouts/DashboardLayout/nav-mini.jsx +79 -0
- package/src/layouts/DashboardLayout/nav-vertical.jsx +201 -0
- package/src/layouts/FullScreenLayout/FullScreenLayout.jsx +101 -0
- package/src/layouts/FullScreenLayout/index.js +1 -0
- package/src/layouts/FullScreenLayout/nav-horizontal.jsx +45 -0
- package/src/layouts/FullScreenLayout/nav-vertical.jsx +136 -0
- package/src/layouts/MainLayout/MainLayout.jsx +21 -0
- package/src/layouts/MainLayout/footer.jsx +153 -0
- package/src/layouts/MainLayout/header.jsx +81 -0
- package/src/layouts/MainLayout/index.js +1 -0
- package/src/layouts/MainLayout/nav/desktop/index.jsx +20 -0
- package/src/layouts/MainLayout/nav/desktop/nav-item.jsx +186 -0
- package/src/layouts/MainLayout/nav/desktop/nav-list.jsx +145 -0
- package/src/layouts/MainLayout/nav/mobile/index.jsx +60 -0
- package/src/layouts/MainLayout/nav/mobile/nav-item.jsx +90 -0
- package/src/layouts/MainLayout/nav/mobile/nav-list.jsx +72 -0
- package/src/layouts/Page.jsx +16 -0
- package/src/layouts/SimpleLayout/SimpleLayout.jsx +8 -0
- package/src/layouts/SimpleLayout/index.js +1 -0
- package/src/layouts/TwoSideLayout/TwoSideLayout.jsx +31 -0
- package/src/layouts/TwoSideLayout/index.js +1 -0
- package/src/layouts/auth/classic.jsx +95 -0
- package/src/layouts/auth/modern-compact.jsx +51 -0
- package/src/layouts/auth/modern.jsx +93 -0
- package/src/layouts/common/ProjectBar/index.jsx +324 -0
- package/src/layouts/common/ProjectBar/result-item.jsx +90 -0
- package/src/layouts/common/ProjectBar/utils.js +86 -0
- package/src/layouts/common/account-popover.jsx +117 -0
- package/src/layouts/common/header-shadow.jsx +26 -0
- package/src/layouts/common/header-sim.jsx +52 -0
- package/src/layouts/common/header-simple.jsx +76 -0
- package/src/layouts/common/nav-toggle-button.jsx +57 -0
- package/src/layouts/common/notifications-popover/index.jsx +177 -0
- package/src/layouts/common/notifications-popover/notification-item.jsx +252 -0
- package/src/layouts/common/settings-button.jsx +48 -0
- package/src/layouts/config-layout.js +12 -0
- package/src/layouts/index.js +7 -0
- package/src/pages/404.jsx +17 -0
- package/src/pages/Callback.jsx +66 -0
- package/src/pages/ConfigError.jsx +49 -0
- package/src/pages/LoginPage.jsx +35 -0
- package/src/routes/components/index.js +1 -0
- package/src/routes/components/router-link.jsx +11 -0
- package/src/routes/hooks/index.js +4 -0
- package/src/routes/hooks/use-active-link.js +15 -0
- package/src/routes/hooks/use-pathname.js +10 -0
- package/src/routes/hooks/use-router.js +21 -0
- package/src/theme/css.js +152 -0
- package/src/theme/custom-shadows.js +47 -0
- package/src/theme/index.jsx +63 -0
- package/src/theme/options/contrast.js +34 -0
- package/src/theme/options/presets.js +89 -0
- package/src/theme/options/right-to-left.jsx +26 -0
- package/src/theme/overrides/components/accordion.js +43 -0
- package/src/theme/overrides/components/alert.js +69 -0
- package/src/theme/overrides/components/appbar.js +13 -0
- package/src/theme/overrides/components/autocomplete.js +44 -0
- package/src/theme/overrides/components/avatar.js +111 -0
- package/src/theme/overrides/components/backdrop.js +18 -0
- package/src/theme/overrides/components/badge.js +90 -0
- package/src/theme/overrides/components/breadcrumbs.js +21 -0
- package/src/theme/overrides/components/button-group.js +90 -0
- package/src/theme/overrides/components/button.js +145 -0
- package/src/theme/overrides/components/card.js +30 -0
- package/src/theme/overrides/components/checkbox.js +13 -0
- package/src/theme/overrides/components/chip.js +129 -0
- package/src/theme/overrides/components/css-baseline.js +48 -0
- package/src/theme/overrides/components/data-grid.js +94 -0
- package/src/theme/overrides/components/date-picker.jsx +94 -0
- package/src/theme/overrides/components/dialog.js +49 -0
- package/src/theme/overrides/components/drawer.js +39 -0
- package/src/theme/overrides/components/fab.js +165 -0
- package/src/theme/overrides/components/list.js +33 -0
- package/src/theme/overrides/components/loading-button.js +30 -0
- package/src/theme/overrides/components/menu.js +15 -0
- package/src/theme/overrides/components/pagination.js +81 -0
- package/src/theme/overrides/components/paper.js +18 -0
- package/src/theme/overrides/components/popover.js +20 -0
- package/src/theme/overrides/components/progress.js +40 -0
- package/src/theme/overrides/components/radio.js +22 -0
- package/src/theme/overrides/components/rating.js +40 -0
- package/src/theme/overrides/components/select.js +26 -0
- package/src/theme/overrides/components/skeleton.js +16 -0
- package/src/theme/overrides/components/slider.js +30 -0
- package/src/theme/overrides/components/stepper.js +13 -0
- package/src/theme/overrides/components/svg-icon.js +15 -0
- package/src/theme/overrides/components/switch.js +66 -0
- package/src/theme/overrides/components/table.js +79 -0
- package/src/theme/overrides/components/tabs.js +39 -0
- package/src/theme/overrides/components/textfield.js +146 -0
- package/src/theme/overrides/components/timeline.js +20 -0
- package/src/theme/overrides/components/toggle-button.js +70 -0
- package/src/theme/overrides/components/tooltip.js +18 -0
- package/src/theme/overrides/components/tree-view.js +16 -0
- package/src/theme/overrides/components/typography.js +16 -0
- package/src/theme/overrides/default-props.jsx +238 -0
- package/src/theme/overrides/index.js +100 -0
- package/src/theme/palette.js +144 -0
- package/src/theme/shadows.js +41 -0
- package/src/theme/typography.js +107 -0
- package/src/utils/flatten-array.js +16 -0
- package/src/utils/format-number.js +37 -0
- package/src/utils/format-time.js +27 -0
- package/src/utils/storage-available.js +24 -0
- package/src/widgets/Login/Login.jsx +55 -0
- package/src/widgets/LoginForm/LoginForm.jsx +80 -0
- package/src/widgets/LoginForm/LoginFormStyles.js +43 -0
- package/src/widgets/LoginForm/index.js +1 -0
- package/src/widgets/SettingsDialog.jsx +308 -0
- package/src/widgets/error/index.js +1 -0
- package/src/widgets/error/not-found-view.jsx +42 -0
- package/vite/vite.js +77 -0
|
@@ -0,0 +1,44 @@
|
|
|
1
|
+
<svg width="120" height="120" viewBox="0 0 120 120" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<mask id="mask0_2733_150756" style="mask-type:alpha" maskUnits="userSpaceOnUse" x="53" y="19" width="50" height="44">
|
|
3
|
+
<path d="M100.622 33.793L68.5284 19.5041C66.6626 18.6734 64.4767 19.5125 63.646 21.3783L53.8694 43.3369C53.0387 45.2027 53.8778 47.3886 55.7436 48.2193L87.837 62.5082C89.7028 63.3389 91.8887 62.4998 92.7194 60.6341L102.496 38.6754C103.327 36.8096 102.488 34.6237 100.622 33.793Z" fill="black"/>
|
|
4
|
+
</mask>
|
|
5
|
+
<g mask="url(#mask0_2733_150756)">
|
|
6
|
+
<path d="M100.622 33.793L68.5284 19.5041C66.6626 18.6734 64.4767 19.5125 63.646 21.3783L53.8694 43.3369C53.0387 45.2027 53.8778 47.3886 55.7436 48.2193L87.837 62.5082C89.7028 63.3389 91.8887 62.4998 92.7194 60.6341L102.496 38.6754C103.327 36.8096 102.488 34.6237 100.622 33.793Z" fill="#F4F6F8"/>
|
|
7
|
+
<g opacity="0.24" filter="url(#filter0_f_2733_150756)">
|
|
8
|
+
<path d="M100.622 33.7929L68.5285 19.504C67.2651 18.9415 65.8648 19.159 64.8286 19.9272L75.1558 41.8726C75.5308 42.676 76.1834 43.317 76.9934 43.6777C77.8034 44.0383 78.7164 44.0943 79.5644 43.8354L102.783 36.8257C102.661 35.5408 101.885 34.3551 100.622 33.7929Z" fill="#919EAB"/>
|
|
9
|
+
</g>
|
|
10
|
+
<path d="M100.622 33.7929L68.5285 19.504C67.2651 18.9415 65.8648 19.159 64.8286 19.9272L75.1558 41.8726C75.5308 42.676 76.1834 43.317 76.9934 43.6777C77.8034 44.0383 78.7164 44.0943 79.5644 43.8354L102.783 36.8257C102.661 35.5408 101.885 34.3551 100.622 33.7929Z" fill="#F4F6F8"/>
|
|
11
|
+
</g>
|
|
12
|
+
<mask id="mask1_2733_150756" style="mask-type:alpha" maskUnits="userSpaceOnUse" x="16" y="50" width="64" height="52">
|
|
13
|
+
<path d="M66.8931 50.38L20.847 60.1674C18.1701 60.7364 16.4613 63.3677 17.0303 66.0446L23.7269 97.5499C24.2959 100.227 26.9272 101.936 29.6041 101.367L75.6503 91.5792C78.3272 91.0102 80.036 88.3789 79.467 85.702L72.7704 54.1967C72.2014 51.5198 69.57 49.811 66.8931 50.38Z" fill="black"/>
|
|
14
|
+
</mask>
|
|
15
|
+
<g mask="url(#mask1_2733_150756)">
|
|
16
|
+
<path d="M66.8931 50.38L20.847 60.1674C18.1701 60.7364 16.4613 63.3677 17.0303 66.0446L23.7269 97.5499C24.2959 100.227 26.9272 101.936 29.6041 101.367L75.6503 91.5792C78.3272 91.0102 80.036 88.3789 79.467 85.702L72.7704 54.1967C72.2014 51.5198 69.57 49.811 66.8931 50.38Z" fill="#F4F6F8"/>
|
|
17
|
+
<g opacity="0.24" filter="url(#filter1_f_2733_150756)">
|
|
18
|
+
<path d="M66.8935 50.3799L20.8473 60.1673C19.0346 60.5526 17.6879 61.8913 17.1696 63.5403L45.6499 79.1967C46.6893 79.7724 47.9016 79.9533 49.0637 79.7063C50.2259 79.4592 51.2598 78.8009 51.9752 77.8522L71.6252 51.9653C70.4808 50.6686 68.7051 49.9948 66.8935 50.3799Z" fill="#919EAB"/>
|
|
19
|
+
</g>
|
|
20
|
+
<path d="M66.8935 50.3799L20.8473 60.1673C19.0346 60.5526 17.6879 61.8913 17.1696 63.5403L45.6499 79.1967C46.6893 79.7724 47.9016 79.9533 49.0637 79.7063C50.2259 79.4592 51.2598 78.8009 51.9752 77.8522L71.6252 51.9653C70.4808 50.6686 68.7051 49.9948 66.8935 50.3799Z" fill="#F4F6F8"/>
|
|
21
|
+
</g>
|
|
22
|
+
<g opacity="0.48">
|
|
23
|
+
<path opacity="0.48" fill-rule="evenodd" clip-rule="evenodd" d="M21.1902 86.0659L22.6459 87.5217L24.1062 86.0619L24.7302 86.6858L23.2696 88.1453L24.7262 89.601L24.1005 90.2266L22.6438 88.771L21.1845 90.2306L20.5605 89.6067L22.0201 88.1474L20.5645 86.6915L21.1902 86.0659Z" fill="#919EAB"/>
|
|
24
|
+
<path opacity="0.48" fill-rule="evenodd" clip-rule="evenodd" d="M87.2381 12.7675L88.6937 14.2233L90.1541 12.7635L90.7781 13.3873L89.3175 14.8469L90.7741 16.3025L90.1483 16.9281L88.6916 15.4725L87.2323 16.9321L86.6083 16.3083L88.0679 14.849L86.6124 13.393L87.2381 12.7675Z" fill="#919EAB"/>
|
|
25
|
+
<path opacity="0.72" d="M61.4784 104.835C61.7522 104.562 62.1233 104.409 62.5101 104.409C62.897 104.409 63.268 104.562 63.5419 104.835L64.5809 105.874C64.717 106.009 64.8258 106.171 64.8995 106.348C64.9734 106.526 65.0115 106.716 65.0115 106.909C65.0115 107.101 64.9734 107.291 64.8995 107.469C64.8258 107.646 64.7178 107.807 64.5817 107.942L63.5419 108.982C63.268 109.255 62.897 109.409 62.5101 109.409C62.1233 109.409 61.7522 109.255 61.4784 108.982L60.4393 107.943C60.3032 107.808 60.1945 107.646 60.1207 107.469C60.0468 107.291 60.0088 107.101 60.0088 106.909C60.0088 106.716 60.0468 106.526 60.1207 106.348C60.1944 106.171 60.3024 106.01 60.4385 105.875L61.4784 104.835Z" fill="#919EAB"/>
|
|
26
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M96.6978 39.0406C96.6977 39.0406 96.6979 39.0405 96.6978 39.0406L95.6585 40.0796L95.2196 39.6406L95.6571 40.081C95.6368 40.1011 95.6207 40.1251 95.6097 40.1516C95.5987 40.178 95.593 40.2063 95.593 40.235C95.593 40.2636 95.5987 40.292 95.6097 40.3184C95.6207 40.3448 95.6368 40.3688 95.6571 40.389L95.6585 40.3904L96.6978 41.4294C96.6979 41.4295 96.6977 41.4293 96.6978 41.4294C96.739 41.4704 96.7948 41.4935 96.8529 41.4935C96.911 41.4935 96.9667 41.4705 97.0078 41.4296C97.0079 41.4296 97.0077 41.4297 97.0078 41.4296L98.0487 40.389C98.069 40.3688 98.0851 40.3448 98.0961 40.3184C98.1072 40.2919 98.1128 40.2635 98.1128 40.235C98.1128 40.2064 98.1072 40.1781 98.0961 40.1516C98.0851 40.1251 98.069 40.1011 98.0487 40.081L98.0473 40.0796L97.008 39.0406C97.008 39.0405 97.0081 39.0406 97.008 39.0406C96.9669 38.9997 96.911 38.9764 96.8529 38.9764C96.7948 38.9764 96.739 38.9996 96.6978 39.0406ZM94.7813 39.2011L95.8211 38.1616C96.095 37.8884 96.466 37.735 96.8529 37.735C97.2397 37.735 97.6108 37.8884 97.8847 38.1616L97.8852 38.1621L98.9237 39.2003C98.924 39.2005 98.9242 39.2008 98.9244 39.201C99.0606 39.3365 99.1686 39.4974 99.2423 39.6747C99.3162 39.8521 99.3543 40.0426 99.3543 40.235C99.3543 40.4274 99.3162 40.6178 99.2423 40.7953C99.1686 40.9725 99.0606 41.1335 98.9245 41.2689C98.9242 41.2692 98.924 41.2694 98.9237 41.2697L97.8847 42.3084C97.6108 42.5816 97.2397 42.735 96.8529 42.735C96.466 42.735 96.095 42.5816 95.8211 42.3084L94.7821 41.2697C94.7818 41.2694 94.7816 41.2691 94.7813 41.2689C94.6452 41.1334 94.5372 40.9725 94.4635 40.7953C94.3896 40.6177 94.3516 40.4273 94.3516 40.235C94.3516 40.0427 94.3896 39.8522 94.4635 39.6747C94.5372 39.4974 94.6452 39.3365 94.7813 39.2011Z" fill="#919EAB"/>
|
|
27
|
+
<path opacity="0.48" fill-rule="evenodd" clip-rule="evenodd" d="M104.552 66.3173C104.701 66.2788 104.858 66.2779 105.008 66.3152C105.173 66.356 105.322 66.4408 105.442 66.5601C105.561 66.6796 105.646 66.8294 105.687 66.9934C105.724 67.1436 105.723 67.3004 105.685 67.4496L105.109 70.541C105.062 70.7838 104.909 71.1333 104.522 71.2523C104.135 71.3713 103.812 71.1677 103.638 70.9932L101.009 68.3652C100.831 68.1887 100.628 67.865 100.748 67.4773C100.868 67.0898 101.219 66.9374 101.464 66.8921C101.465 66.8921 101.465 66.892 101.465 66.892L104.552 66.3173ZM104.448 67.5539L102.291 67.9553L104.046 69.7099L104.448 67.5539Z" fill="#919EAB"/>
|
|
28
|
+
<path opacity="0.8" fill-rule="evenodd" clip-rule="evenodd" d="M102.46 94.2659C102.609 94.2274 102.766 94.2265 102.916 94.2638C103.08 94.3046 103.23 94.3894 103.349 94.5087C103.469 94.6282 103.554 94.778 103.594 94.942C103.632 95.0922 103.631 95.249 103.592 95.3982L103.016 98.4896C102.97 98.7324 102.817 99.0819 102.43 99.2009C102.042 99.3199 101.72 99.1163 101.545 98.9418L98.9167 96.3138C98.7386 96.1373 98.5356 95.8136 98.6558 95.4259C98.776 95.0384 99.1263 94.886 99.3721 94.8407C99.3724 94.8407 99.3727 94.8406 99.373 94.8406L102.46 94.2659ZM102.356 95.5025L100.199 95.9039L101.954 97.6585L102.356 95.5025Z" fill="#637381"/>
|
|
29
|
+
<path opacity="0.8" fill-rule="evenodd" clip-rule="evenodd" d="M12.5004 72.4729C12.3186 72.4729 12.1408 72.5268 11.9896 72.6278C11.8383 72.7289 11.7205 72.8724 11.651 73.0402C11.5814 73.2081 11.5632 73.3929 11.5987 73.5711C11.6341 73.7494 11.7217 73.9131 11.8502 74.0416C11.9787 74.1701 12.1425 74.2576 12.321 74.2931C12.4996 74.3286 12.6845 74.3104 12.8523 74.2409C13.0203 74.1714 13.1639 74.0535 13.265 73.9023C13.366 73.7512 13.4199 73.5736 13.4199 73.3919C13.4199 73.1482 13.323 72.9144 13.1506 72.7421C12.9783 72.5697 12.7444 72.4729 12.5004 72.4729ZM11.1113 71.3132C11.5225 71.0385 12.0059 70.8918 12.5004 70.8918C13.1635 70.8918 13.7995 71.1551 14.2684 71.624C14.7374 72.0928 15.0009 72.7288 15.0009 73.3919C15.0009 73.8864 14.8542 74.3697 14.5794 74.7808C14.3047 75.1919 13.9142 75.5124 13.4572 75.7017C13.0002 75.8909 12.4975 75.9402 12.0127 75.8438C11.5278 75.7474 11.0822 75.5094 10.7324 75.1597C10.3827 74.8101 10.1446 74.3647 10.0481 73.8797C9.95156 73.3947 10.0011 72.8919 10.1904 72.435C10.3797 71.9781 10.7002 71.5878 11.1113 71.3132Z" fill="#637381"/>
|
|
30
|
+
<path opacity="0.8" fill-rule="evenodd" clip-rule="evenodd" d="M54.5424 18.4017C54.3606 18.4017 54.1828 18.4556 54.0316 18.5567C53.8803 18.6577 53.7625 18.8012 53.693 18.969C53.6234 19.1369 53.6052 19.3217 53.6407 19.5C53.6761 19.6782 53.7637 19.8419 53.8922 19.9705C54.0207 20.0989 54.1845 20.1865 54.363 20.222C54.5416 20.2575 54.7265 20.2393 54.8943 20.1698C55.0623 20.1002 55.2059 19.9824 55.307 19.8312C55.408 19.68 55.4619 19.5024 55.4619 19.3207C55.4619 19.077 55.365 18.8432 55.1926 18.6709C55.0203 18.4986 54.7864 18.4017 54.5424 18.4017ZM53.1533 17.242C53.5645 16.9674 54.0479 16.8207 54.5424 16.8207C55.2055 16.8207 55.8415 17.084 56.3104 17.5528C56.7794 18.0216 57.0429 18.6576 57.0429 19.3207C57.0429 19.8152 56.8962 20.2986 56.6214 20.7097C56.3467 21.1207 55.9562 21.4413 55.4992 21.6305C55.0422 21.8198 54.5395 21.869 54.0547 21.7726C53.5698 21.6762 53.1242 21.4383 52.7744 21.0886C52.4247 20.7389 52.1865 20.2935 52.09 19.8085C51.9936 19.3235 52.0431 18.8207 52.2324 18.3639C52.4217 17.9069 52.7422 17.5166 53.1533 17.242Z" fill="#637381"/>
|
|
31
|
+
</g>
|
|
32
|
+
<defs>
|
|
33
|
+
<filter id="filter0_f_2733_150756" x="52.8286" y="7.18811" width="61.9546" height="48.8077" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
|
34
|
+
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
|
35
|
+
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/>
|
|
36
|
+
<feGaussianBlur stdDeviation="6" result="effect1_foregroundBlur_2733_150756"/>
|
|
37
|
+
</filter>
|
|
38
|
+
<filter id="filter1_f_2733_150756" x="-6.83057" y="26.2721" width="102.456" height="77.5419" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
|
39
|
+
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
|
40
|
+
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/>
|
|
41
|
+
<feGaussianBlur stdDeviation="12" result="effect1_foregroundBlur_2733_150756"/>
|
|
42
|
+
</filter>
|
|
43
|
+
</defs>
|
|
44
|
+
</svg>
|
|
@@ -0,0 +1,57 @@
|
|
|
1
|
+
<svg width="120" height="120" viewBox="0 0 120 120" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<g clip-path="url(#clip0_2733_150717)">
|
|
3
|
+
<mask id="mask0_2733_150717" style="mask-type:alpha" maskUnits="userSpaceOnUse" x="53" y="19" width="50" height="44">
|
|
4
|
+
<path d="M100.622 33.793L68.5284 19.5041C66.6626 18.6734 64.4767 19.5125 63.646 21.3783L53.8694 43.3369C53.0387 45.2027 53.8778 47.3886 55.7436 48.2193L87.837 62.5082C89.7028 63.3389 91.8887 62.4998 92.7194 60.6341L102.496 38.6754C103.327 36.8096 102.488 34.6237 100.622 33.793Z" fill="black"/>
|
|
5
|
+
</mask>
|
|
6
|
+
<g mask="url(#mask0_2733_150717)">
|
|
7
|
+
<path d="M100.622 33.793L68.5284 19.5041C66.6626 18.6734 64.4767 19.5125 63.646 21.3783L53.8694 43.3369C53.0387 45.2027 53.8778 47.3886 55.7436 48.2193L87.837 62.5082C89.7028 63.3389 91.8887 62.4998 92.7194 60.6341L102.496 38.6754C103.327 36.8096 102.488 34.6237 100.622 33.793Z" fill="#F4F6F8"/>
|
|
8
|
+
<g opacity="0.24" filter="url(#filter0_f_2733_150717)">
|
|
9
|
+
<path d="M100.622 33.7929L68.5285 19.504C67.2651 18.9415 65.8648 19.159 64.8286 19.9272L75.1558 41.8726C75.5308 42.676 76.1834 43.317 76.9934 43.6777C77.8034 44.0383 78.7164 44.0943 79.5644 43.8354L102.783 36.8257C102.661 35.5408 101.885 34.3551 100.622 33.7929Z" fill="#919EAB"/>
|
|
10
|
+
</g>
|
|
11
|
+
<path d="M100.622 33.7929L68.5285 19.504C67.2651 18.9415 65.8648 19.159 64.8286 19.9272L75.1558 41.8726C75.5308 42.676 76.1834 43.317 76.9934 43.6777C77.8034 44.0383 78.7164 44.0943 79.5644 43.8354L102.783 36.8257C102.661 35.5408 101.885 34.3551 100.622 33.7929Z" fill="#F4F6F8"/>
|
|
12
|
+
</g>
|
|
13
|
+
<mask id="mask1_2733_150717" style="mask-type:alpha" maskUnits="userSpaceOnUse" x="16" y="50" width="64" height="52">
|
|
14
|
+
<path d="M66.8931 50.38L20.847 60.1674C18.1701 60.7364 16.4613 63.3677 17.0303 66.0446L23.7269 97.5499C24.2959 100.227 26.9272 101.936 29.6041 101.367L75.6503 91.5792C78.3272 91.0102 80.036 88.3789 79.467 85.7019L72.7704 54.1967C72.2014 51.5198 69.57 49.811 66.8931 50.38Z" fill="black"/>
|
|
15
|
+
</mask>
|
|
16
|
+
<g mask="url(#mask1_2733_150717)">
|
|
17
|
+
<path d="M66.8931 50.38L20.847 60.1674C18.1701 60.7364 16.4613 63.3677 17.0303 66.0446L23.7269 97.5499C24.2959 100.227 26.9272 101.936 29.6041 101.367L75.6503 91.5792C78.3272 91.0102 80.036 88.3789 79.467 85.7019L72.7704 54.1967C72.2014 51.5198 69.57 49.811 66.8931 50.38Z" fill="url(#paint0_linear_2733_150717)"/>
|
|
18
|
+
<g filter="url(#filter1_f_2733_150717)">
|
|
19
|
+
<path d="M66.8935 50.3799L20.8473 60.1673C19.0346 60.5526 17.6879 61.8913 17.1696 63.5403L45.6499 79.1967C46.6893 79.7724 47.9016 79.9533 49.0637 79.7063C50.2259 79.4592 51.2598 78.8009 51.9752 77.8522L71.6252 51.9653C70.4808 50.6686 68.7051 49.9948 66.8935 50.3799Z" fill="#006C9C"/>
|
|
20
|
+
</g>
|
|
21
|
+
<path d="M66.8935 50.3799L20.8473 60.1673C19.0346 60.5526 17.6879 61.8913 17.1696 63.5403L45.6499 79.1967C46.6893 79.7724 47.9016 79.9533 49.0637 79.7063C50.2259 79.4592 51.2598 78.8009 51.9752 77.8522L71.6252 51.9653C70.4808 50.6686 68.7051 49.9948 66.8935 50.3799Z" fill="url(#paint1_linear_2733_150717)"/>
|
|
22
|
+
</g>
|
|
23
|
+
<g opacity="0.48">
|
|
24
|
+
<path opacity="0.48" fill-rule="evenodd" clip-rule="evenodd" d="M21.1902 86.0659L22.6459 87.5217L24.1062 86.0619L24.7302 86.6858L23.2696 88.1453L24.7262 89.601L24.1005 90.2266L22.6438 88.771L21.1845 90.2306L20.5605 89.6067L22.0201 88.1474L20.5645 86.6915L21.1902 86.0659Z" fill="#919EAB"/>
|
|
25
|
+
<path opacity="0.48" fill-rule="evenodd" clip-rule="evenodd" d="M87.2381 12.7675L88.6937 14.2233L90.1541 12.7635L90.7781 13.3873L89.3175 14.8469L90.7741 16.3025L90.1483 16.9281L88.6916 15.4725L87.2323 16.9321L86.6083 16.3083L88.0679 14.849L86.6124 13.393L87.2381 12.7675Z" fill="#FF5630"/>
|
|
26
|
+
<path opacity="0.72" d="M61.4784 104.835C61.7522 104.562 62.1233 104.409 62.5101 104.409C62.897 104.409 63.268 104.562 63.5419 104.835L64.5809 105.874C64.717 106.009 64.8258 106.171 64.8995 106.348C64.9734 106.526 65.0115 106.716 65.0115 106.909C65.0115 107.101 64.9734 107.291 64.8995 107.469C64.8258 107.646 64.7178 107.807 64.5817 107.942L63.5419 108.982C63.268 109.255 62.897 109.409 62.5101 109.409C62.1233 109.409 61.7522 109.255 61.4784 108.982L60.4393 107.943C60.3032 107.808 60.1945 107.646 60.1207 107.469C60.0468 107.291 60.0088 107.101 60.0088 106.909C60.0088 106.716 60.0468 106.526 60.1207 106.348C60.1944 106.171 60.3024 106.01 60.4385 105.875L61.4784 104.835Z" fill="#FFAB00"/>
|
|
27
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M96.6978 39.0406C96.6977 39.0406 96.6979 39.0405 96.6978 39.0406L95.6585 40.0796L95.2196 39.6406L95.6571 40.081C95.6368 40.1011 95.6207 40.1251 95.6097 40.1516C95.5987 40.178 95.593 40.2063 95.593 40.235C95.593 40.2636 95.5987 40.292 95.6097 40.3184C95.6207 40.3448 95.6368 40.3688 95.6571 40.389L95.6585 40.3904L96.6978 41.4294C96.6979 41.4295 96.6977 41.4293 96.6978 41.4294C96.739 41.4704 96.7948 41.4935 96.8529 41.4935C96.911 41.4935 96.9667 41.4705 97.0078 41.4296C97.0079 41.4296 97.0077 41.4297 97.0078 41.4296L98.0487 40.389C98.069 40.3688 98.0851 40.3448 98.0961 40.3184C98.1072 40.2919 98.1128 40.2635 98.1128 40.235C98.1128 40.2064 98.1072 40.1781 98.0961 40.1516C98.0851 40.1251 98.069 40.1011 98.0487 40.081L98.0473 40.0796L97.008 39.0406C97.008 39.0405 97.0081 39.0406 97.008 39.0406C96.9669 38.9997 96.911 38.9764 96.8529 38.9764C96.7948 38.9764 96.739 38.9996 96.6978 39.0406ZM94.7813 39.2011L95.8211 38.1616C96.095 37.8884 96.466 37.735 96.8529 37.735C97.2397 37.735 97.6108 37.8884 97.8847 38.1616L97.8852 38.1621L98.9237 39.2003C98.924 39.2005 98.9242 39.2008 98.9244 39.201C99.0606 39.3365 99.1686 39.4974 99.2423 39.6747C99.3162 39.8521 99.3543 40.0426 99.3543 40.235C99.3543 40.4274 99.3162 40.6178 99.2423 40.7953C99.1686 40.9725 99.0606 41.1335 98.9245 41.2689C98.9242 41.2692 98.924 41.2694 98.9237 41.2697L97.8847 42.3084C97.6108 42.5816 97.2397 42.735 96.8529 42.735C96.466 42.735 96.095 42.5816 95.8211 42.3084L94.7821 41.2697C94.7818 41.2694 94.7816 41.2691 94.7813 41.2689C94.6452 41.1334 94.5372 40.9725 94.4635 40.7953C94.3896 40.6177 94.3516 40.4273 94.3516 40.235C94.3516 40.0427 94.3896 39.8522 94.4635 39.6747C94.5372 39.4974 94.6452 39.3365 94.7813 39.2011Z" fill="#FF5630"/>
|
|
28
|
+
<path opacity="0.48" fill-rule="evenodd" clip-rule="evenodd" d="M104.552 66.3173C104.701 66.2788 104.858 66.2779 105.008 66.3152C105.173 66.356 105.322 66.4408 105.442 66.5601C105.561 66.6796 105.646 66.8294 105.687 66.9934C105.724 67.1436 105.723 67.3004 105.685 67.4496L105.109 70.541C105.062 70.7838 104.909 71.1333 104.522 71.2523C104.135 71.3713 103.812 71.1677 103.638 70.9932L101.009 68.3652C100.831 68.1887 100.628 67.865 100.748 67.4773C100.868 67.0898 101.219 66.9374 101.464 66.8921C101.465 66.8921 101.465 66.892 101.465 66.892L104.552 66.3173ZM104.448 67.5539L102.291 67.9553L104.046 69.7099L104.448 67.5539Z" fill="#22C55E"/>
|
|
29
|
+
<path opacity="0.8" fill-rule="evenodd" clip-rule="evenodd" d="M102.46 94.2659C102.609 94.2274 102.766 94.2265 102.916 94.2638C103.08 94.3046 103.23 94.3894 103.349 94.5087C103.469 94.6282 103.554 94.778 103.594 94.942C103.632 95.0922 103.631 95.249 103.592 95.3982L103.016 98.4896C102.97 98.7324 102.817 99.0819 102.43 99.2009C102.042 99.3199 101.72 99.1163 101.545 98.9418L98.9167 96.3138C98.7386 96.1373 98.5356 95.8136 98.6558 95.4259C98.776 95.0384 99.1263 94.886 99.3721 94.8407C99.3724 94.8407 99.3727 94.8406 99.373 94.8406L102.46 94.2659ZM102.356 95.5025L100.199 95.9039L101.954 97.6585L102.356 95.5025Z" fill="#00A76F"/>
|
|
30
|
+
<path opacity="0.8" fill-rule="evenodd" clip-rule="evenodd" d="M12.5004 72.4729C12.3186 72.4729 12.1408 72.5268 11.9896 72.6278C11.8383 72.7289 11.7205 72.8724 11.651 73.0402C11.5814 73.2081 11.5632 73.3929 11.5987 73.5711C11.6341 73.7494 11.7217 73.9131 11.8502 74.0416C11.9787 74.1701 12.1425 74.2576 12.321 74.2931C12.4996 74.3286 12.6845 74.3104 12.8523 74.2409C13.0203 74.1714 13.1639 74.0535 13.265 73.9023C13.366 73.7512 13.4199 73.5736 13.4199 73.3919C13.4199 73.1482 13.323 72.9144 13.1506 72.7421C12.9783 72.5697 12.7444 72.4729 12.5004 72.4729ZM11.1113 71.3132C11.5225 71.0385 12.0059 70.8918 12.5004 70.8918C13.1635 70.8918 13.7995 71.1551 14.2684 71.624C14.7374 72.0928 15.0009 72.7288 15.0009 73.3919C15.0009 73.8864 14.8542 74.3697 14.5794 74.7808C14.3047 75.1919 13.9142 75.5124 13.4572 75.7017C13.0002 75.8909 12.4975 75.9402 12.0127 75.8438C11.5278 75.7474 11.0822 75.5094 10.7324 75.1597C10.3827 74.8101 10.1446 74.3647 10.0481 73.8797C9.95156 73.3947 10.0011 72.8919 10.1904 72.435C10.3797 71.9781 10.7002 71.5878 11.1113 71.3132Z" fill="#8E33FF"/>
|
|
31
|
+
<path opacity="0.8" fill-rule="evenodd" clip-rule="evenodd" d="M54.5424 18.4017C54.3606 18.4017 54.1828 18.4556 54.0316 18.5567C53.8803 18.6577 53.7625 18.8012 53.693 18.969C53.6234 19.1369 53.6052 19.3217 53.6407 19.5C53.6761 19.6782 53.7637 19.8419 53.8922 19.9705C54.0207 20.0989 54.1845 20.1865 54.363 20.222C54.5416 20.2575 54.7265 20.2393 54.8943 20.1698C55.0623 20.1002 55.2059 19.9824 55.307 19.8312C55.408 19.68 55.4619 19.5024 55.4619 19.3207C55.4619 19.077 55.365 18.8432 55.1926 18.6709C55.0203 18.4986 54.7864 18.4017 54.5424 18.4017ZM53.1533 17.242C53.5645 16.9674 54.0479 16.8207 54.5424 16.8207C55.2055 16.8207 55.8415 17.084 56.3104 17.5528C56.7794 18.0216 57.0429 18.6576 57.0429 19.3207C57.0429 19.8152 56.8962 20.2986 56.6214 20.7097C56.3467 21.1207 55.9562 21.4413 55.4992 21.6305C55.0422 21.8198 54.5395 21.869 54.0547 21.7726C53.5698 21.6762 53.1242 21.4383 52.7744 21.0886C52.4247 20.7389 52.1865 20.2935 52.09 19.8085C51.9936 19.3235 52.0431 18.8207 52.2324 18.3639C52.4217 17.9069 52.7422 17.5166 53.1533 17.242Z" fill="#8E33FF"/>
|
|
32
|
+
</g>
|
|
33
|
+
</g>
|
|
34
|
+
<defs>
|
|
35
|
+
<filter id="filter0_f_2733_150717" x="52.8286" y="7.18811" width="61.9546" height="48.8077" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
|
36
|
+
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
|
37
|
+
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/>
|
|
38
|
+
<feGaussianBlur stdDeviation="6" result="effect1_foregroundBlur_2733_150717"/>
|
|
39
|
+
</filter>
|
|
40
|
+
<filter id="filter1_f_2733_150717" x="-6.83057" y="26.2721" width="102.456" height="77.5419" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
|
41
|
+
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
|
42
|
+
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/>
|
|
43
|
+
<feGaussianBlur stdDeviation="12" result="effect1_foregroundBlur_2733_150717"/>
|
|
44
|
+
</filter>
|
|
45
|
+
<linearGradient id="paint0_linear_2733_150717" x1="16" y1="61.1976" x2="66.7125" y2="106.113" gradientUnits="userSpaceOnUse">
|
|
46
|
+
<stop stop-color="#61F3F3"/>
|
|
47
|
+
<stop offset="1" stop-color="#00B8D9"/>
|
|
48
|
+
</linearGradient>
|
|
49
|
+
<linearGradient id="paint1_linear_2733_150717" x1="16.6426" y1="61.061" x2="43.5393" y2="97.8586" gradientUnits="userSpaceOnUse">
|
|
50
|
+
<stop stop-color="#61F3F3"/>
|
|
51
|
+
<stop offset="1" stop-color="#00B8D9"/>
|
|
52
|
+
</linearGradient>
|
|
53
|
+
<clipPath id="clip0_2733_150717">
|
|
54
|
+
<rect width="120" height="120" fill="white"/>
|
|
55
|
+
</clipPath>
|
|
56
|
+
</defs>
|
|
57
|
+
</svg>
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
<svg width="120" height="120" viewBox="0 0 120 120" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path opacity="0.48" d="M60.0001 78.9487C59.9186 93.3254 59.7552 115.324 59.9994 115.367C60.3628 115.367 60.7263 115.314 61.0783 115.209L94.8283 105.084C95.6007 104.853 96.2779 104.378 96.7592 103.731C97.2405 103.084 97.5003 102.298 97.5001 101.492V66.7819L60.0001 78.9487Z" fill="#C4CDD5"/>
|
|
3
|
+
<path opacity="0.48" d="M59.9217 78.9233L22.5002 66.7819L22.5 101.492C22.4998 102.298 22.7597 103.083 23.241 103.731C23.7223 104.378 24.3994 104.852 25.1719 105.084L58.9219 115.209C59.2734 115.314 59.6365 115.367 59.9996 115.367C59.7549 115.345 59.84 93.3069 59.9217 78.9233Z" fill="#DFE3E8"/>
|
|
4
|
+
<path opacity="0.8" d="M60 78.9487L22.5001 66.7819L12.9844 80.8894C12.8218 81.1301 12.7173 81.4054 12.6792 81.6934C12.6412 81.9815 12.6706 82.2744 12.7651 82.5492C12.8597 82.8239 13.0168 83.0729 13.2241 83.2765C13.4313 83.4801 13.6831 83.6328 13.9594 83.7225L47.7001 94.6837C48.0866 94.8094 48.5036 94.8061 48.8881 94.6742C49.2726 94.5423 49.6039 94.289 49.8319 93.9525L60 78.9487Z" fill="url(#paint0_linear_2734_145270)"/>
|
|
5
|
+
<path opacity="0.8" d="M97.5 66.7819L60 78.9487L70.1681 93.9525C70.3962 94.289 70.7274 94.5423 71.1119 94.6742C71.4964 94.8061 71.9134 94.8094 72.3 94.6837L106.041 83.7225C106.317 83.6328 106.569 83.4801 106.776 83.2765C106.983 83.0729 107.14 82.8239 107.235 82.5492C107.329 82.2744 107.359 81.9815 107.321 81.6934C107.283 81.4054 107.178 81.1301 107.016 80.8894L97.5 66.7819Z" fill="url(#paint1_linear_2734_145270)"/>
|
|
6
|
+
<path opacity="0.64" d="M50.92 41.8196C50.6915 41.4841 50.3603 41.2318 49.9763 41.1006C49.5922 40.9695 49.1759 40.9664 48.79 41.0921L15.0475 52.0552C14.7709 52.1443 14.5189 52.2966 14.3114 52.4999C14.1039 52.7033 13.9466 52.9523 13.852 53.227C13.7574 53.5017 13.728 53.7947 13.7663 54.0827C13.8046 54.3708 13.9094 54.6459 14.0725 54.8864L22.4968 67.3777L59.9968 55.1696L50.92 41.8196Z" fill="url(#paint2_linear_2734_145270)"/>
|
|
7
|
+
<path opacity="0.64" d="M105.924 54.2906C106.087 54.0499 106.191 53.7748 106.229 53.487C106.267 53.1991 106.237 52.9065 106.142 52.632C106.048 52.3575 105.891 52.1087 105.684 51.9052C105.477 51.7017 105.225 51.5491 104.949 51.4594L71.2069 40.4962C70.8209 40.3706 70.4047 40.3736 70.0206 40.5048C69.6365 40.636 69.3053 40.8883 69.0769 41.2237L60 54.5737L97.5 66.7819L105.924 54.2906Z" fill="url(#paint3_linear_2734_145270)"/>
|
|
8
|
+
<path opacity="0.48" d="M97.5 66.7819L60 54.5737L22.5 66.7819L60 78.9487L97.5 66.7819Z" fill="#C4CDD5"/>
|
|
9
|
+
<path opacity="0.48" d="M60 66.6763V55L22.5 67.2081L60 79.375V66.6763Z" fill="#C4CDD5"/>
|
|
10
|
+
<path d="M57.9995 12.8081C60.0283 1.31999 77.6101 2.06249 67.3745 12.8081H57.9995Z" fill="#919EAB" fill-opacity="0.12"/>
|
|
11
|
+
<path d="M57.9995 15.7181C60.0283 27.2044 77.6101 26.4637 67.3745 15.7181H57.9995Z" fill="#919EAB" fill-opacity="0.12"/>
|
|
12
|
+
<path d="M52.4664 59.9587C51.721 59.4742 51.0162 58.9299 50.3589 58.3312C49.9904 58.0092 49.5106 57.844 49.022 57.8708C48.5334 57.8977 48.0746 58.1146 47.7437 58.4751C47.4128 58.8357 47.2359 59.3113 47.2509 59.8005C47.2659 60.2896 47.4715 60.7535 47.8239 61.0931C48.5908 61.7981 49.4552 62.4694 50.4152 63.0975C50.8314 63.3607 51.3344 63.4496 51.8156 63.3451C52.2968 63.2405 52.7176 62.9508 52.987 62.5386C53.2564 62.1263 53.3528 61.6247 53.2554 61.142C53.158 60.6593 52.8746 60.2342 52.4664 59.9587ZM46.6239 54.1987C46.0911 53.4807 45.6182 52.72 45.2102 51.9244C44.9847 51.481 44.5923 51.1455 44.1193 50.9914C43.6464 50.8374 43.1316 50.8776 42.6883 51.1031C42.245 51.3286 41.9094 51.721 41.7554 52.194C41.6014 52.6669 41.6415 53.1817 41.867 53.625C42.3433 54.5587 42.9208 55.4944 43.6052 56.4225C43.9037 56.8128 44.3436 57.0703 44.8301 57.1396C45.3166 57.2089 45.8109 57.0844 46.2065 56.793C46.6022 56.5015 46.8676 56.0664 46.9457 55.5812C47.0237 55.096 46.9082 54.5996 46.6239 54.1987ZM43.8827 46.5469C43.9014 45.7912 44.012 45.0581 44.2145 44.355C44.2824 44.1182 44.3029 43.8704 44.275 43.6258C44.2471 43.3811 44.1712 43.1443 44.0518 42.9289C43.9323 42.7135 43.7716 42.5238 43.5789 42.3705C43.3861 42.2173 43.165 42.1034 42.9283 42.0356C42.6915 41.9678 42.4438 41.9472 42.1991 41.9752C41.9544 42.0031 41.7176 42.0789 41.5022 42.1984C41.2868 42.3178 41.0971 42.4785 40.9438 42.6713C40.7906 42.864 40.6768 43.0851 40.6089 43.3219C40.3189 44.3414 40.1589 45.3935 40.1327 46.4531C40.1202 46.9504 40.3059 47.4322 40.6487 47.7927C40.9915 48.1531 41.4635 48.3626 41.9608 48.375C42.4581 48.3874 42.9399 48.2018 43.3003 47.859C43.6608 47.5161 43.8702 47.0441 43.8827 46.5469ZM46.7664 40.2844C47.2483 39.8381 47.7883 39.4256 48.3789 39.0525C48.5872 38.9211 48.7676 38.75 48.9098 38.5489C49.052 38.3479 49.1532 38.1207 49.2076 37.8806C49.262 37.6404 49.2686 37.3918 49.2269 37.1491C49.1853 36.9064 49.0962 36.6742 48.9649 36.4659C48.8335 36.2576 48.6624 36.0772 48.4613 35.935C48.2602 35.7929 48.0331 35.6917 47.7929 35.6373C47.5527 35.5829 47.3042 35.5763 47.0615 35.6179C46.8187 35.6596 46.5866 35.7486 46.3783 35.88C45.6088 36.3634 44.8857 36.917 44.2183 37.5337C43.8627 37.8739 43.6551 38.3402 43.6403 38.832C43.6254 39.3239 43.8045 39.8018 44.1389 40.1628C44.4733 40.5238 44.9363 40.7389 45.4278 40.7616C45.9193 40.7843 46.4001 40.6129 46.7664 40.2844ZM53.7395 37.05C54.7292 36.8692 55.7305 36.7589 56.7358 36.72C57.2209 36.6825 57.6725 36.4582 57.9954 36.0942C58.3183 35.7302 58.4872 35.2551 58.4665 34.7689C58.4459 34.2828 58.2372 33.8237 57.8846 33.4885C57.532 33.1532 57.063 32.968 56.5764 32.9719C55.3389 33.0244 54.1652 33.1575 53.057 33.3619C52.568 33.4524 52.1349 33.7334 51.853 34.1433C51.5712 34.5531 51.4637 35.0581 51.5542 35.5472C51.6447 36.0362 51.9258 36.4693 52.3356 36.7512C52.7455 37.033 53.2505 37.1405 53.7395 37.05ZM63.512 36.9394C65.1114 36.9581 66.6002 36.9019 67.982 36.78C68.4728 36.7303 68.9242 36.4892 69.2384 36.1089C69.5527 35.7287 69.7044 35.2399 69.6607 34.7486C69.6171 34.2572 69.3816 33.8029 69.0052 33.484C68.6289 33.1651 68.142 33.0074 67.6502 33.045C66.3845 33.1556 65.0214 33.2081 63.5552 33.1894C63.0579 33.1836 62.5787 33.3757 62.223 33.7233C61.8674 34.0709 61.6643 34.5455 61.6586 35.0428C61.6529 35.5401 61.8449 36.0193 62.1925 36.3749C62.5401 36.7306 63.0148 36.9336 63.512 36.9394ZM74.1452 35.6306C76.0014 35.0625 77.5689 34.335 78.8814 33.5006C79.0891 33.3683 79.2687 33.1963 79.4099 32.9945C79.5512 32.7928 79.6513 32.5652 79.7046 32.3247C79.7578 32.0843 79.7632 31.8357 79.7205 31.5932C79.6777 31.3507 79.5875 31.1189 79.4552 30.9112C79.3228 30.7035 79.1509 30.5239 78.9491 30.3827C78.7473 30.2415 78.5198 30.1414 78.2793 30.0881C78.0389 30.0348 77.7903 30.0294 77.5477 30.0722C77.3052 30.115 77.0735 30.2051 76.8658 30.3375C75.6758 31.0753 74.3917 31.6493 73.0483 32.0437C72.5726 32.1892 72.1743 32.5176 71.9408 32.9568C71.7073 33.396 71.6578 33.91 71.8033 34.3856C71.9487 34.8613 72.2772 35.2596 72.7164 35.4931C73.1556 35.7266 73.6695 35.7761 74.1452 35.6306ZM83.6889 28.2525C84.5326 26.5001 84.9239 24.5643 84.827 22.6219C84.8156 22.3759 84.7558 22.1346 84.6511 21.9117C84.5464 21.6888 84.3988 21.4887 84.2168 21.3229C84.0347 21.1571 83.8218 21.0287 83.5902 20.9451C83.3585 20.8616 83.1127 20.8245 82.8667 20.8359C82.6207 20.8474 82.3794 20.9072 82.1565 21.0119C81.9337 21.1166 81.7336 21.2642 81.5678 21.4462C81.4019 21.6282 81.2736 21.8411 81.19 22.0728C81.1065 22.3044 81.0693 22.5503 81.0808 22.7962C81.1482 24.1154 80.8839 25.4305 80.312 26.6212C80.1207 27.0655 80.1082 27.5665 80.2773 28.0197C80.4463 28.4729 80.7839 28.8434 81.2194 29.0538C81.655 29.2642 82.155 29.2983 82.6151 29.149C83.0752 28.9997 83.4599 28.6785 83.6889 28.2525ZM82.4945 15.9919C81.1277 14.145 79.2733 12.8587 77.252 12.4444C76.7723 12.3632 76.2798 12.4714 75.8784 12.7463C75.477 13.0212 75.198 13.4412 75.1002 13.9178C75.0024 14.3944 75.0936 14.8904 75.3544 15.3011C75.6152 15.7118 76.0254 16.0052 76.4983 16.1194C77.6645 16.3575 78.692 17.1581 79.4814 18.225C79.628 18.4228 79.8122 18.5899 80.0234 18.7165C80.2346 18.8432 80.4686 18.927 80.7122 18.9633C80.9558 18.9995 81.2041 18.9874 81.443 18.9276C81.6819 18.8678 81.9067 18.7616 82.1045 18.615C82.3024 18.4684 82.4694 18.2842 82.5961 18.073C82.7228 17.8618 82.8066 17.6278 82.8428 17.3842C82.879 17.1406 82.8669 16.8923 82.8072 16.6534C82.7474 16.4145 82.6412 16.1897 82.4945 15.9919Z" fill="#919EAB" fill-opacity="0.24"/>
|
|
13
|
+
<path d="M57.8308 16.1569H70.3858C70.8831 16.1569 71.36 15.9593 71.7116 15.6077C72.0632 15.2561 72.2608 14.7791 72.2608 14.2819C72.2608 13.7846 72.0632 13.3077 71.7116 12.956C71.36 12.6044 70.8831 12.4069 70.3858 12.4069H57.8308C57.348 12.4285 56.8922 12.6354 56.5582 12.9847C56.2242 13.334 56.0378 13.7986 56.0378 14.2819C56.0378 14.7651 56.2242 15.2298 56.5582 15.579C56.8922 15.9283 57.348 16.1353 57.8308 16.1569Z" fill="#919EAB" fill-opacity="0.24"/>
|
|
14
|
+
<defs>
|
|
15
|
+
<linearGradient id="paint0_linear_2734_145270" x1="22.7494" y1="66.7669" x2="27.9905" y2="101.442" gradientUnits="userSpaceOnUse">
|
|
16
|
+
<stop stop-color="#F4F6F8"/>
|
|
17
|
+
<stop offset="1" stop-color="#C4CDD5"/>
|
|
18
|
+
</linearGradient>
|
|
19
|
+
<linearGradient id="paint1_linear_2734_145270" x1="60.1519" y1="78.8212" x2="99.6838" y2="101.557" gradientUnits="userSpaceOnUse">
|
|
20
|
+
<stop stop-color="#F4F6F8"/>
|
|
21
|
+
<stop offset="1" stop-color="#C4CDD5"/>
|
|
22
|
+
</linearGradient>
|
|
23
|
+
<linearGradient id="paint2_linear_2734_145270" x1="17.5881" y1="60.1008" x2="23.245" y2="33.434" gradientUnits="userSpaceOnUse">
|
|
24
|
+
<stop stop-color="#F4F6F8"/>
|
|
25
|
+
<stop offset="1" stop-color="#C4CDD5"/>
|
|
26
|
+
</linearGradient>
|
|
27
|
+
<linearGradient id="paint3_linear_2734_145270" x1="70.0387" y1="40.0444" x2="72.0615" y2="72.9595" gradientUnits="userSpaceOnUse">
|
|
28
|
+
<stop stop-color="#F4F6F8"/>
|
|
29
|
+
<stop offset="1" stop-color="#C4CDD5"/>
|
|
30
|
+
</linearGradient>
|
|
31
|
+
</defs>
|
|
32
|
+
</svg>
|
|
@@ -0,0 +1,56 @@
|
|
|
1
|
+
<svg width="120" height="120" viewBox="0 0 120 120" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<g opacity="0.48">
|
|
3
|
+
<path opacity="0.48" fill-rule="evenodd" clip-rule="evenodd" d="M21.1902 86.0659L22.6459 87.5217L24.1062 86.0619L24.7302 86.6858L23.2696 88.1453L24.7262 89.601L24.1005 90.2266L22.6438 88.771L21.1845 90.2306L20.5605 89.6067L22.0201 88.1474L20.5645 86.6915L21.1902 86.0659Z" fill="#919EAB"/>
|
|
4
|
+
<path opacity="0.48" fill-rule="evenodd" clip-rule="evenodd" d="M87.2381 12.7675L88.6937 14.2233L90.1541 12.7635L90.7781 13.3873L89.3175 14.8469L90.7741 16.3025L90.1483 16.9281L88.6916 15.4725L87.2323 16.9321L86.6083 16.3083L88.0679 14.849L86.6124 13.393L87.2381 12.7675Z" fill="#919EAB"/>
|
|
5
|
+
<path opacity="0.72" d="M61.4784 104.835C61.7522 104.562 62.1233 104.409 62.5101 104.409C62.897 104.409 63.268 104.562 63.5419 104.835L64.5809 105.874C64.717 106.009 64.8258 106.171 64.8995 106.348C64.9734 106.526 65.0115 106.716 65.0115 106.909C65.0115 107.101 64.9734 107.291 64.8995 107.469C64.8258 107.646 64.7178 107.807 64.5817 107.942L63.5419 108.982C63.268 109.255 62.897 109.409 62.5101 109.409C62.1233 109.409 61.7522 109.255 61.4784 108.982L60.4393 107.943C60.3032 107.808 60.1945 107.646 60.1207 107.469C60.0468 107.291 60.0088 107.101 60.0088 106.909C60.0088 106.716 60.0468 106.526 60.1207 106.348C60.1944 106.171 60.3024 106.01 60.4385 105.875L61.4784 104.835Z" fill="#919EAB"/>
|
|
6
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M96.6978 39.0406C96.6977 39.0406 96.6979 39.0405 96.6978 39.0406L95.6585 40.0796L95.2196 39.6406L95.6571 40.081C95.6368 40.1011 95.6207 40.1251 95.6097 40.1516C95.5987 40.178 95.593 40.2063 95.593 40.235C95.593 40.2636 95.5987 40.292 95.6097 40.3184C95.6207 40.3448 95.6368 40.3688 95.6571 40.389L95.6585 40.3904L96.6978 41.4294C96.6977 41.4293 96.6979 41.4295 96.6978 41.4294C96.739 41.4704 96.7948 41.4935 96.8529 41.4935C96.911 41.4935 96.9667 41.4705 97.0078 41.4296C97.0077 41.4297 97.0079 41.4296 97.0078 41.4296L98.0487 40.389C98.069 40.3688 98.0851 40.3448 98.0961 40.3184C98.1072 40.2919 98.1128 40.2635 98.1128 40.235C98.1128 40.2064 98.1072 40.1781 98.0961 40.1516C98.0851 40.1251 98.069 40.1011 98.0487 40.081L98.0473 40.0796L97.008 39.0406C97.008 39.0405 97.0081 39.0406 97.008 39.0406C96.9669 38.9997 96.911 38.9764 96.8529 38.9764C96.7948 38.9764 96.739 38.9996 96.6978 39.0406ZM94.7813 39.2011L95.8211 38.1616C96.095 37.8884 96.466 37.735 96.8529 37.735C97.2397 37.735 97.6108 37.8884 97.8847 38.1616L97.8852 38.1621L98.9237 39.2003C98.924 39.2005 98.9242 39.2008 98.9244 39.201C99.0606 39.3365 99.1686 39.4974 99.2423 39.6747C99.3162 39.8521 99.3543 40.0426 99.3543 40.235C99.3543 40.4274 99.3162 40.6178 99.2423 40.7953C99.1686 40.9725 99.0606 41.1335 98.9245 41.2689C98.9242 41.2692 98.924 41.2694 98.9237 41.2697L97.8847 42.3084C97.6108 42.5816 97.2397 42.735 96.8529 42.735C96.466 42.735 96.095 42.5816 95.8211 42.3084L94.7821 41.2697C94.7818 41.2694 94.7816 41.2691 94.7813 41.2689C94.6452 41.1334 94.5372 40.9725 94.4635 40.7953C94.3896 40.6177 94.3516 40.4273 94.3516 40.235C94.3516 40.0427 94.3896 39.8522 94.4635 39.6747C94.5372 39.4974 94.6452 39.3365 94.7813 39.2011Z" fill="#919EAB"/>
|
|
7
|
+
<path opacity="0.48" fill-rule="evenodd" clip-rule="evenodd" d="M104.552 66.3173C104.701 66.2788 104.858 66.2779 105.008 66.3152C105.173 66.356 105.322 66.4408 105.442 66.5601C105.561 66.6796 105.646 66.8294 105.687 66.9934C105.724 67.1436 105.723 67.3004 105.685 67.4496L105.109 70.541C105.062 70.7838 104.909 71.1333 104.522 71.2523C104.135 71.3713 103.812 71.1677 103.638 70.9932L101.009 68.3652C100.831 68.1887 100.628 67.865 100.748 67.4773C100.868 67.0898 101.219 66.9374 101.464 66.8921C101.465 66.8921 101.465 66.892 101.465 66.892L104.552 66.3173ZM104.448 67.5539L102.291 67.9553L104.046 69.7099L104.448 67.5539Z" fill="#919EAB"/>
|
|
8
|
+
<path opacity="0.8" fill-rule="evenodd" clip-rule="evenodd" d="M102.46 94.2659C102.609 94.2274 102.766 94.2265 102.916 94.2638C103.08 94.3046 103.23 94.3894 103.349 94.5087C103.469 94.6282 103.554 94.778 103.594 94.942C103.632 95.0922 103.631 95.249 103.592 95.3982L103.016 98.4896C102.97 98.7324 102.817 99.0819 102.43 99.2009C102.042 99.3199 101.72 99.1163 101.545 98.9418L98.9167 96.3138C98.7386 96.1373 98.5356 95.8136 98.6558 95.4259C98.776 95.0384 99.1263 94.886 99.3721 94.8407C99.3724 94.8407 99.3727 94.8406 99.373 94.8406L102.46 94.2659ZM102.356 95.5025L100.199 95.9039L101.954 97.6585L102.356 95.5025Z" fill="#637381"/>
|
|
9
|
+
<path opacity="0.8" fill-rule="evenodd" clip-rule="evenodd" d="M12.5004 72.4729C12.3186 72.4729 12.1408 72.5268 11.9896 72.6278C11.8383 72.7289 11.7205 72.8724 11.651 73.0402C11.5814 73.2081 11.5632 73.3929 11.5987 73.5711C11.6341 73.7494 11.7217 73.9131 11.8502 74.0416C11.9787 74.1701 12.1425 74.2576 12.321 74.2931C12.4996 74.3286 12.6845 74.3104 12.8523 74.2409C13.0203 74.1714 13.1639 74.0535 13.265 73.9023C13.366 73.7512 13.4199 73.5736 13.4199 73.3918C13.4199 73.1482 13.323 72.9144 13.1506 72.7421C12.9783 72.5697 12.7444 72.4729 12.5004 72.4729ZM11.1113 71.3132C11.5225 71.0385 12.0059 70.8918 12.5004 70.8918C13.1635 70.8918 13.7995 71.1551 14.2684 71.624C14.7374 72.0928 15.0009 72.7288 15.0009 73.3918C15.0009 73.8864 14.8542 74.3697 14.5794 74.7808C14.3047 75.1919 13.9142 75.5124 13.4572 75.7017C13.0002 75.8909 12.4975 75.9402 12.0127 75.8438C11.5278 75.7474 11.0822 75.5094 10.7324 75.1597C10.3827 74.8101 10.1446 74.3647 10.0481 73.8797C9.95156 73.3947 10.0011 72.8919 10.1904 72.435C10.3797 71.9781 10.7002 71.5878 11.1113 71.3132Z" fill="#637381"/>
|
|
10
|
+
<path opacity="0.8" fill-rule="evenodd" clip-rule="evenodd" d="M54.5424 18.4017C54.3606 18.4017 54.1828 18.4556 54.0316 18.5567C53.8803 18.6577 53.7625 18.8012 53.693 18.969C53.6234 19.1369 53.6052 19.3217 53.6407 19.5C53.6761 19.6782 53.7637 19.8419 53.8922 19.9705C54.0207 20.0989 54.1845 20.1865 54.363 20.222C54.5416 20.2575 54.7265 20.2393 54.8943 20.1698C55.0623 20.1002 55.2059 19.9824 55.307 19.8312C55.408 19.68 55.4619 19.5024 55.4619 19.3207C55.4619 19.077 55.365 18.8432 55.1926 18.6709C55.0203 18.4986 54.7864 18.4017 54.5424 18.4017ZM53.1533 17.242C53.5645 16.9674 54.0479 16.8207 54.5424 16.8207C55.2055 16.8207 55.8415 17.084 56.3104 17.5528C56.7794 18.0216 57.0429 18.6576 57.0429 19.3207C57.0429 19.8152 56.8962 20.2986 56.6214 20.7097C56.3467 21.1207 55.9562 21.4413 55.4992 21.6305C55.0422 21.8198 54.5395 21.869 54.0547 21.7726C53.5698 21.6762 53.1242 21.4383 52.7744 21.0886C52.4247 20.7389 52.1865 20.2935 52.09 19.8085C51.9936 19.3235 52.0431 18.8207 52.2324 18.3639C52.4217 17.9069 52.7422 17.5166 53.1533 17.242Z" fill="#637381"/>
|
|
11
|
+
</g>
|
|
12
|
+
<g opacity="0.48">
|
|
13
|
+
<g filter="url(#filter0_di_2575_2781069)">
|
|
14
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M35.6189 39.1429V54.2437C35.6189 56.2389 36.5883 58.1045 38.2572 59.198C43.4158 62.5778 54.7884 69.619 59.9998 69.619C65.2113 69.619 76.5839 62.5778 81.7425 59.198C83.4114 58.1045 84.3808 56.2389 84.3808 54.2437V39.1429C84.3808 34.0934 80.2874 30 75.2379 30H44.7618C39.7123 30 35.6189 34.0934 35.6189 39.1429ZM47.0475 39.143C45.7851 39.143 44.7618 40.1664 44.7618 41.4287C44.7618 42.691 45.7851 43.7144 47.0475 43.7144H60.7618C62.0241 43.7144 63.0475 42.691 63.0475 41.4287C63.0475 40.1664 62.0241 39.143 60.7618 39.143H47.0475ZM47.0475 49.8097C45.7851 49.8097 44.7618 50.8331 44.7618 52.0954C44.7618 53.3577 45.7851 54.3811 47.0475 54.3811H69.9046C71.1669 54.3811 72.1903 53.3577 72.1903 52.0954C72.1903 50.8331 71.1669 49.8097 69.9046 49.8097H47.0475Z" fill="#DFE3E8"/>
|
|
15
|
+
</g>
|
|
16
|
+
<g filter="url(#filter1_di_2575_2781069)">
|
|
17
|
+
<path d="M35.619 42.9556C34.0663 44.1082 32.694 45.1623 31.593 46.0233C29.7583 47.458 28.6083 49.5738 28.4531 51.8976C28.2419 55.0598 28 60.3681 28 68.0954C28 75.403 28.4326 80.5472 28.8369 83.7589C29.1701 86.407 30.9431 88.507 33.557 89.0465C37.7482 89.9116 45.7515 90.9525 60 90.9525C74.2485 90.9525 82.2519 89.9116 86.443 89.0465C89.0569 88.507 90.8299 86.407 91.1631 83.7589C91.5674 80.5472 92 75.403 92 68.0954C92 60.3681 91.7582 55.0598 91.547 51.8976C91.3917 49.5738 90.2417 47.458 88.407 46.0233C87.306 45.1623 85.9337 44.1082 84.381 42.9556V54.2438C84.381 56.2391 83.4115 58.1047 81.7426 59.1982C76.5841 62.578 65.2114 69.6192 60 69.6192C54.7886 69.6192 43.4159 62.578 38.2574 59.1982C36.5884 58.1047 35.619 56.2391 35.619 54.2438V42.9556Z" fill="#919EAB"/>
|
|
18
|
+
</g>
|
|
19
|
+
<g opacity="0.8">
|
|
20
|
+
<path d="M44.7617 41.4288C44.7617 40.1665 45.7851 39.1431 47.0474 39.1431H60.7617C62.024 39.1431 63.0474 40.1665 63.0474 41.4288C63.0474 42.6911 62.024 43.7145 60.7617 43.7145H47.0474C45.7851 43.7145 44.7617 42.6911 44.7617 41.4288Z" fill="#637381"/>
|
|
21
|
+
<path d="M44.7617 52.0954C44.7617 50.8331 45.7851 49.8097 47.0474 49.8097H69.9046C71.1669 49.8097 72.1903 50.8331 72.1903 52.0954C72.1903 53.3578 71.1669 54.3812 69.9046 54.3812H47.0474C45.7851 54.3812 44.7617 53.3578 44.7617 52.0954Z" fill="#637381"/>
|
|
22
|
+
</g>
|
|
23
|
+
</g>
|
|
24
|
+
<defs>
|
|
25
|
+
<filter id="filter0_di_2575_2781069" x="27.6189" y="22" width="80.762" height="71.619" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
|
26
|
+
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
|
27
|
+
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
|
28
|
+
<feOffset dx="8" dy="8"/>
|
|
29
|
+
<feGaussianBlur stdDeviation="8"/>
|
|
30
|
+
<feColorMatrix type="matrix" values="0 0 0 0 0.270588 0 0 0 0 0.309804 0 0 0 0 0.356863 0 0 0 0.16 0"/>
|
|
31
|
+
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_2575_2781069"/>
|
|
32
|
+
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_2575_2781069" result="shape"/>
|
|
33
|
+
<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"/>
|
|
34
|
+
<feOffset dx="-2" dy="-2"/>
|
|
35
|
+
<feGaussianBlur stdDeviation="2"/>
|
|
36
|
+
<feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/>
|
|
37
|
+
<feColorMatrix type="matrix" values="0 0 0 0 0.270588 0 0 0 0 0.309804 0 0 0 0 0.356863 0 0 0 0.48 0"/>
|
|
38
|
+
<feBlend mode="normal" in2="shape" result="effect2_innerShadow_2575_2781069"/>
|
|
39
|
+
</filter>
|
|
40
|
+
<filter id="filter1_di_2575_2781069" x="20" y="34.9556" width="96" height="79.9969" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
|
41
|
+
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
|
42
|
+
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
|
43
|
+
<feOffset dx="8" dy="8"/>
|
|
44
|
+
<feGaussianBlur stdDeviation="8"/>
|
|
45
|
+
<feColorMatrix type="matrix" values="0 0 0 0 0.270588 0 0 0 0 0.309804 0 0 0 0 0.356863 0 0 0 0.16 0"/>
|
|
46
|
+
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_2575_2781069"/>
|
|
47
|
+
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_2575_2781069" result="shape"/>
|
|
48
|
+
<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"/>
|
|
49
|
+
<feOffset dx="-2" dy="-2"/>
|
|
50
|
+
<feGaussianBlur stdDeviation="2"/>
|
|
51
|
+
<feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/>
|
|
52
|
+
<feColorMatrix type="matrix" values="0 0 0 0 0.270588 0 0 0 0 0.309804 0 0 0 0 0.356863 0 0 0 0.48 0"/>
|
|
53
|
+
<feBlend mode="normal" in2="shape" result="effect2_innerShadow_2575_2781069"/>
|
|
54
|
+
</filter>
|
|
55
|
+
</defs>
|
|
56
|
+
</svg>
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
<svg width="64" height="64" viewBox="0 0 64 64" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<g clip-path="url(#clip0_296_3266)">
|
|
3
|
+
<mask id="mask0_296_3266" style="mask-type:alpha" maskUnits="userSpaceOnUse" x="0" y="7" width="64" height="53">
|
|
4
|
+
<path d="M58.9345 16.6644C50.7574 10.3778 42.8261 15.5013 33.9795 13.6898C25.069 11.8652 21.5189 5.78979 11.37 8.59417C2.37975 11.0783 -3.07525 21.038 1.867 29.3764C3.27537 31.7525 5.67462 33.5452 6.65512 36.2038C8.23675 40.4927 5.82925 43.7854 6.29887 48.0003C8.25037 65.5129 34.9956 58.7295 44.8368 53.2809C60.2705 44.7359 70.7115 25.7188 58.9345 16.6644Z" fill="url(#paint0_linear_296_3266)" fill-opacity="0.16"/>
|
|
5
|
+
</mask>
|
|
6
|
+
<g mask="url(#mask0_296_3266)">
|
|
7
|
+
<path d="M58.9345 16.6644C50.7574 10.3778 42.8261 15.5013 33.9795 13.6898C25.069 11.8652 21.5189 5.78979 11.37 8.59417C2.37975 11.0783 -3.07525 21.038 1.867 29.3764C3.27537 31.7525 5.67462 33.5452 6.65512 36.2038C8.23675 40.4927 5.82925 43.7854 6.29887 48.0003C8.25037 65.5129 34.9956 58.7295 44.8368 53.2809C60.2705 44.7359 70.7115 25.7188 58.9345 16.6644Z" fill="#00A76F"/>
|
|
8
|
+
</g>
|
|
9
|
+
<path opacity="0.08" d="M51.3966 10.297C50.9324 10.297 50.4683 10.1203 50.1149 9.76702C49.4083 9.0604 49.4083 7.91052 50.1149 7.20377C50.8216 6.49702 51.9716 6.49702 52.6782 7.20377C53.3848 7.91052 53.3848 9.06027 52.6782 9.76702C52.3249 10.1203 51.8608 10.297 51.3966 10.297ZM51.3967 7.92314C51.2526 7.92314 51.1086 7.97789 50.9989 8.08764C50.7797 8.30689 50.7797 8.66377 50.9989 8.88315C51.2182 9.1024 51.5751 9.10252 51.7944 8.88315C52.0137 8.6639 52.0137 8.30702 51.7944 8.08764C51.6847 7.97789 51.5407 7.92314 51.3967 7.92314Z" fill="#00A76F"/>
|
|
10
|
+
<path opacity="0.24" d="M54.54 16.4084C54.0759 16.4086 53.6118 16.2318 53.2584 15.8784C52.916 15.5361 52.7275 15.0809 52.7275 14.5968C52.7275 14.1127 52.916 13.6575 53.2584 13.3152C53.9649 12.6085 55.1148 12.6084 55.8215 13.3152C56.1639 13.6575 56.3524 14.1127 56.3524 14.5968C56.3524 15.0811 56.1639 15.5362 55.8214 15.8784C55.4684 16.2317 55.0042 16.4084 54.54 16.4084ZM54.54 14.0345C54.396 14.0345 54.2519 14.0893 54.1423 14.199C54.0359 14.3053 53.9775 14.4465 53.9775 14.5968C53.9775 14.7471 54.036 14.8883 54.1423 14.9946C54.3617 15.2139 54.7185 15.2139 54.9378 14.9946C55.0442 14.8883 55.1025 14.7471 55.1025 14.5968C55.1025 14.4465 55.044 14.3054 54.9378 14.199C54.8282 14.0893 54.6842 14.0345 54.54 14.0345Z" fill="#00A76F"/>
|
|
11
|
+
<path opacity="0.08" d="M13.1719 29.595C12.7078 29.595 12.2436 29.4182 11.8903 29.065C11.1837 28.3582 11.1837 27.2083 11.8903 26.5017C12.5969 25.7952 13.7469 25.7951 14.4536 26.5017C15.1602 27.2085 15.1602 28.3582 14.4536 29.065C14.1003 29.4182 13.6361 29.595 13.1719 29.595ZM13.1719 27.2211C13.0279 27.2211 12.8838 27.2758 12.7742 27.3856C12.5548 27.6048 12.5548 27.9617 12.7742 28.1811C12.9934 28.4005 13.3504 28.4003 13.5697 28.1811C13.7891 27.9618 13.7891 27.605 13.5697 27.3856C13.4601 27.2758 13.3161 27.2211 13.1719 27.2211Z" fill="#00A76F"/>
|
|
12
|
+
<path opacity="0.48" d="M12.3662 35.2127C12.2062 35.2127 12.0463 35.1517 11.9242 35.0297L11.1787 34.2842L10.4332 35.0297C10.1891 35.2737 9.79343 35.2737 9.5493 35.0297C9.30518 34.7855 9.30518 34.3898 9.5493 34.1458L10.7368 32.9583C10.9809 32.7143 11.3766 32.7143 11.6207 32.9583L12.8082 34.1458C13.0523 34.3899 13.0523 34.7857 12.8082 35.0297C12.6861 35.1515 12.5262 35.2127 12.3662 35.2127Z" fill="#00A76F"/>
|
|
13
|
+
<path opacity="0.24" d="M53.3525 53.3126C53.1925 53.3126 53.0326 53.2516 52.9105 53.1296L52.165 52.3841L51.4195 53.1296C51.1754 53.3736 50.7798 53.3736 50.5356 53.1296C50.2915 52.8855 50.2915 52.4897 50.5356 52.2457L51.7231 51.0582C51.9673 50.8142 52.3629 50.8142 52.607 51.0582L53.7945 52.2457C54.0386 52.4899 54.0386 52.8856 53.7945 53.1296C53.6724 53.2515 53.5125 53.3126 53.3525 53.3126Z" fill="#00A76F"/>
|
|
14
|
+
<path d="M48 32C48 40.8366 40.8364 48 32 48C23.1633 48 16 40.8366 16 32C16 23.1633 23.1633 16 32 16C40.8364 16 48 23.1633 48 32Z" fill="#FFD666"/>
|
|
15
|
+
<path d="M36.2146 22.4116C36.0327 21.7085 35.2566 20.7117 32.3161 20.7117C27.7732 20.7117 27.1262 21.3845 25.9172 20.2227C24.8972 19.2424 24.2981 23.9602 25.6582 25.4585C25.0842 27.5806 25.5434 29.706 25.5434 29.706H38.3254C38.3252 29.706 39.3979 24.7412 36.2146 22.4116Z" fill="#B76E00"/>
|
|
16
|
+
<path d="M26.8336 29.9292C26.8336 29.9292 26.2825 28.9199 25.1805 28.9199C24.0784 28.9199 23.2976 33.7652 26.8336 32.9576V29.9292Z" fill="#FFE4D1"/>
|
|
17
|
+
<path d="M37.0352 29.9292C37.0352 29.9292 37.5862 28.9199 38.6882 28.9199C39.7905 28.9199 40.5711 33.7652 37.0352 32.9576V29.9292Z" fill="#FFE4D1"/>
|
|
18
|
+
<path d="M31.9345 23.4365C23.4911 23.4365 25.1054 37.2842 31.9345 37.2842C38.7633 37.2842 40.3778 23.4365 31.9345 23.4365Z" fill="#FFEFE4"/>
|
|
19
|
+
<path d="M28.893 21.9785C27.2754 22.0911 26.72 22.1298 25.9159 21.3572C25.393 20.8545 24.9813 21.8508 24.8871 23.1426C24.7572 21.3955 25.2455 19.5784 25.9159 20.2227C26.7201 20.9953 27.2755 20.9567 28.8935 20.8441C29.7085 20.7874 30.7931 20.7119 32.3148 20.7119C35.2555 20.7119 36.0316 21.7085 36.2133 22.4119C38.3463 23.9724 38.568 26.7144 38.4825 28.3555C38.3956 26.769 37.9064 24.7849 36.2133 23.5461C36.0316 22.8428 35.2555 21.8462 32.3148 21.8462C30.7928 21.8462 29.708 21.9217 28.893 21.9785Z" fill="#B76E00"/>
|
|
20
|
+
<path d="M26.1909 29.2415C26.1909 21.8726 31.934 22.683 31.934 22.683C31.934 22.683 37.6769 21.8726 37.6769 29.2415C37.6769 29.2415 36.954 26.1959 35.2949 25.3653C34.9405 25.1878 34.6891 25.298 34.2983 25.4693C33.8371 25.6714 33.1818 25.9586 31.934 25.9586C30.6861 25.9586 30.0308 25.6714 29.5696 25.4693C29.1788 25.298 28.9274 25.1878 28.573 25.3653C26.914 26.1959 26.1909 29.2415 26.1909 29.2415Z" fill="#B76E00"/>
|
|
21
|
+
<path d="M43.553 43.0699C43.1426 42.0643 42.3088 41.2582 41.2319 40.9042L36.0434 39.1993C35.5539 39.0384 35.2214 38.5836 35.2168 38.0682L35.1982 35.973C34.331 36.7538 33.2515 37.2377 31.989 37.2489C30.7268 37.2599 29.6389 36.795 28.7578 36.0299L28.7756 38.0516C28.7803 38.5748 28.4458 39.0409 27.9485 39.2042L22.762 40.9051C21.6875 41.2577 20.8545 42.0602 20.4424 43.0624C23.355 46.1048 27.4568 47.9999 32.0015 47.9999C36.542 47.9999 40.6406 46.108 43.553 43.0699Z" fill="#FFAB00"/>
|
|
22
|
+
<path d="M31.8096 43.7394C34.47 43.7394 36.7393 42.0695 37.6296 39.7211L36.042 39.1993C35.5525 39.0385 35.22 38.5834 35.2156 38.0682L35.197 35.973C34.3296 36.7538 33.2502 37.2377 31.9878 37.2489C30.7253 37.2599 29.6375 36.795 28.7566 36.0299L28.7744 38.0516C28.7791 38.5748 28.4446 39.0409 27.9473 39.2042L26.0332 39.8319C26.9521 42.1217 29.1912 43.7394 31.8096 43.7394Z" fill="#FFE4D1"/>
|
|
23
|
+
<path d="M32 17.25C40.627 17.25 47.6582 24.0784 47.9866 32.625C47.9946 32.4175 48 32.2095 48 32C48 23.1636 40.8364 16 32 16C23.1633 16 16 23.1636 16 32C16 32.2095 16.0051 32.4175 16.0132 32.625C16.3416 24.0784 23.3728 17.25 32 17.25Z" fill="#FFAB00"/>
|
|
24
|
+
</g>
|
|
25
|
+
<defs>
|
|
26
|
+
<linearGradient id="paint0_linear_296_3266" x1="43.8414" y1="68.4015" x2="70.1982" y2="12.921" gradientUnits="userSpaceOnUse">
|
|
27
|
+
<stop/>
|
|
28
|
+
<stop offset="1" stop-opacity="0.01"/>
|
|
29
|
+
</linearGradient>
|
|
30
|
+
<clipPath id="clip0_296_3266">
|
|
31
|
+
<rect width="64" height="64" fill="white"/>
|
|
32
|
+
</clipPath>
|
|
33
|
+
</defs>
|
|
34
|
+
</svg>
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
<svg width="64" height="64" viewBox="0 0 64 64" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<g clip-path="url(#clip0_296_3262)">
|
|
3
|
+
<mask id="mask0_296_3262" style="mask-type:alpha" maskUnits="userSpaceOnUse" x="0" y="7" width="64" height="53">
|
|
4
|
+
<path d="M58.9345 16.6644C50.7574 10.3778 42.8261 15.5013 33.9795 13.6898C25.069 11.8652 21.5189 5.78979 11.37 8.59417C2.37975 11.0783 -3.07525 21.038 1.867 29.3764C3.27537 31.7525 5.67462 33.5452 6.65512 36.2038C8.23675 40.4927 5.82925 43.7854 6.29887 48.0003C8.25037 65.5129 34.9956 58.7295 44.8368 53.2809C60.2705 44.7359 70.7115 25.7188 58.9345 16.6644Z" fill="url(#paint0_linear_296_3262)" fill-opacity="0.16"/>
|
|
5
|
+
</mask>
|
|
6
|
+
<g mask="url(#mask0_296_3262)">
|
|
7
|
+
<path d="M58.9345 16.6644C50.7574 10.3778 42.8261 15.5013 33.9795 13.6898C25.069 11.8652 21.5189 5.78979 11.37 8.59417C2.37975 11.0783 -3.07525 21.038 1.867 29.3764C3.27537 31.7525 5.67462 33.5452 6.65512 36.2038C8.23675 40.4927 5.82925 43.7854 6.29887 48.0003C8.25037 65.5129 34.9956 58.7295 44.8368 53.2809C60.2705 44.7359 70.7115 25.7188 58.9345 16.6644Z" fill="#00A76F"/>
|
|
8
|
+
</g>
|
|
9
|
+
<path opacity="0.08" d="M51.3966 10.297C50.9324 10.297 50.4683 10.1203 50.1149 9.76702C49.4083 9.0604 49.4083 7.91052 50.1149 7.20377C50.8216 6.49702 51.9716 6.49702 52.6782 7.20377C53.3848 7.91052 53.3848 9.06027 52.6782 9.76702C52.3249 10.1203 51.8608 10.297 51.3966 10.297ZM51.3967 7.92314C51.2526 7.92314 51.1086 7.97789 50.9989 8.08764C50.7797 8.30689 50.7797 8.66377 50.9989 8.88315C51.2182 9.1024 51.5751 9.10252 51.7944 8.88315C52.0137 8.6639 52.0137 8.30702 51.7944 8.08764C51.6847 7.97789 51.5407 7.92314 51.3967 7.92314Z" fill="#00A76F"/>
|
|
10
|
+
<path opacity="0.24" d="M54.54 16.4084C54.0759 16.4086 53.6118 16.2318 53.2584 15.8784C52.916 15.5361 52.7275 15.0809 52.7275 14.5968C52.7275 14.1127 52.916 13.6575 53.2584 13.3152C53.9649 12.6085 55.1148 12.6084 55.8215 13.3152C56.1639 13.6575 56.3524 14.1127 56.3524 14.5968C56.3524 15.0811 56.1639 15.5362 55.8214 15.8784C55.4684 16.2317 55.0042 16.4084 54.54 16.4084ZM54.54 14.0345C54.396 14.0345 54.2519 14.0893 54.1423 14.199C54.0359 14.3053 53.9775 14.4465 53.9775 14.5968C53.9775 14.7471 54.036 14.8883 54.1423 14.9946C54.3617 15.2139 54.7185 15.2139 54.9378 14.9946C55.0442 14.8883 55.1025 14.7471 55.1025 14.5968C55.1025 14.4465 55.044 14.3054 54.9378 14.199C54.8282 14.0893 54.6842 14.0345 54.54 14.0345Z" fill="#00A76F"/>
|
|
11
|
+
<path opacity="0.08" d="M13.1719 29.595C12.7078 29.595 12.2436 29.4182 11.8903 29.065C11.1837 28.3582 11.1837 27.2083 11.8903 26.5017C12.5969 25.7952 13.7469 25.7951 14.4536 26.5017C15.1602 27.2085 15.1602 28.3582 14.4536 29.065C14.1003 29.4182 13.6361 29.595 13.1719 29.595ZM13.1719 27.2211C13.0279 27.2211 12.8838 27.2758 12.7742 27.3856C12.5548 27.6048 12.5548 27.9617 12.7742 28.1811C12.9934 28.4005 13.3504 28.4003 13.5697 28.1811C13.7891 27.9618 13.7891 27.605 13.5697 27.3856C13.4601 27.2758 13.3161 27.2211 13.1719 27.2211Z" fill="#00A76F"/>
|
|
12
|
+
<path opacity="0.48" d="M12.3662 35.2127C12.2062 35.2127 12.0463 35.1517 11.9242 35.0297L11.1787 34.2842L10.4332 35.0297C10.1891 35.2737 9.79343 35.2737 9.5493 35.0297C9.30518 34.7855 9.30518 34.3898 9.5493 34.1458L10.7368 32.9583C10.9809 32.7143 11.3766 32.7143 11.6207 32.9583L12.8082 34.1458C13.0523 34.3899 13.0523 34.7857 12.8082 35.0297C12.6861 35.1515 12.5262 35.2127 12.3662 35.2127Z" fill="#00A76F"/>
|
|
13
|
+
<path opacity="0.24" d="M53.3525 53.3126C53.1925 53.3126 53.0326 53.2516 52.9105 53.1296L52.165 52.3841L51.4195 53.1296C51.1754 53.3736 50.7798 53.3736 50.5356 53.1296C50.2915 52.8855 50.2915 52.4897 50.5356 52.2457L51.7231 51.0582C51.9673 50.8142 52.3629 50.8142 52.607 51.0582L53.7945 52.2457C54.0386 52.4899 54.0386 52.8856 53.7945 53.1296C53.6724 53.2515 53.5125 53.3126 53.3525 53.3126Z" fill="#00A76F"/>
|
|
14
|
+
<path d="M40.3208 20.2264H23.4151C22.0813 20.2264 21 21.3077 21 22.6415V45.5849C21 46.9188 22.0813 48 23.4151 48H40.3208C41.6546 48 42.7358 46.9188 42.7358 45.5849V22.6415C42.7358 21.3077 41.6546 20.2264 40.3208 20.2264Z" fill="#FFAB00"/>
|
|
15
|
+
<path d="M23 23H41V46H23V23Z" fill="#FFD666"/>
|
|
16
|
+
<path d="M36.5 43H23V23H41V38.8824L36.5 43Z" fill="#FFF5CC"/>
|
|
17
|
+
<path d="M34.2829 19.6226V18.4151C34.2829 17.7746 34.0285 17.1603 33.5755 16.7074C33.1226 16.2544 32.5083 16 31.8678 16C31.2273 16 30.613 16.2544 30.1601 16.7074C29.7072 17.1603 29.4527 17.7746 29.4527 18.4151V19.6226H27.0376L25.8301 21.434V23.2453H37.9056V21.434L36.698 19.6226H34.2829Z" fill="#FFD666"/>
|
|
18
|
+
<path d="M37 43.2264V39H41.2264L37 43.2264Z" fill="#FFAB00"/>
|
|
19
|
+
<path d="M31.8685 38.3396C30.2862 37.8122 28.9099 36.8002 27.9347 35.4471C26.9594 34.094 26.4346 32.4683 26.4346 30.8004V28.0755C28.0149 28.0755 29.5655 27.646 30.9206 26.8329L31.8685 26.2642L32.8165 26.8329C34.1716 27.646 35.7222 28.0755 37.3025 28.0755V30.8004C37.3025 32.4683 36.7777 34.094 35.8024 35.4471C34.8272 36.8002 33.4509 37.8122 31.8685 38.3396Z" fill="#5BE49B"/>
|
|
20
|
+
<path d="M31.8676 33.5094C31.7738 33.5094 31.6814 33.4876 31.5976 33.4457C31.5137 33.4038 31.4408 33.3429 31.3846 33.2679L29.5732 30.8528L30.5393 30.1283L31.8676 31.8994L36.8185 25.2981L37.7846 26.0226L32.3506 33.2679C32.2944 33.3429 32.2214 33.4038 32.1376 33.4457C32.0538 33.4876 31.9613 33.5094 31.8676 33.5094Z" fill="#007867"/>
|
|
21
|
+
<path d="M25.2266 37.7358H28.2454V38.9434H25.2266V37.7358Z" fill="#FFAB00"/>
|
|
22
|
+
<path d="M25.2266 40.151H29.453V41.3585H25.2266V40.151Z" fill="#FFAB00"/>
|
|
23
|
+
</g>
|
|
24
|
+
<defs>
|
|
25
|
+
<linearGradient id="paint0_linear_296_3262" x1="43.8414" y1="68.4015" x2="70.1982" y2="12.921" gradientUnits="userSpaceOnUse">
|
|
26
|
+
<stop/>
|
|
27
|
+
<stop offset="1" stop-opacity="0.01"/>
|
|
28
|
+
</linearGradient>
|
|
29
|
+
<clipPath id="clip0_296_3262">
|
|
30
|
+
<rect width="64" height="64" fill="white"/>
|
|
31
|
+
</clipPath>
|
|
32
|
+
</defs>
|
|
33
|
+
</svg>
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
<svg width="64" height="64" viewBox="0 0 64 64" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<g clip-path="url(#clip0_296_3265)">
|
|
3
|
+
<mask id="mask0_296_3265" style="mask-type:alpha" maskUnits="userSpaceOnUse" x="0" y="7" width="64" height="53">
|
|
4
|
+
<path d="M58.9345 16.6644C50.7574 10.3778 42.8261 15.5013 33.9795 13.6898C25.069 11.8652 21.5189 5.78979 11.37 8.59417C2.37975 11.0783 -3.07525 21.038 1.867 29.3764C3.27537 31.7525 5.67462 33.5452 6.65512 36.2038C8.23675 40.4927 5.82925 43.7854 6.29887 48.0003C8.25037 65.5129 34.9956 58.7295 44.8368 53.2809C60.2705 44.7359 70.7115 25.7188 58.9345 16.6644Z" fill="url(#paint0_linear_296_3265)" fill-opacity="0.16"/>
|
|
5
|
+
</mask>
|
|
6
|
+
<g mask="url(#mask0_296_3265)">
|
|
7
|
+
<path d="M58.9345 16.6644C50.7574 10.3778 42.8261 15.5013 33.9795 13.6898C25.069 11.8652 21.5189 5.78979 11.37 8.59417C2.37975 11.0783 -3.07525 21.038 1.867 29.3764C3.27537 31.7525 5.67462 33.5452 6.65512 36.2038C8.23675 40.4927 5.82925 43.7854 6.29887 48.0003C8.25037 65.5129 34.9956 58.7295 44.8368 53.2809C60.2705 44.7359 70.7115 25.7188 58.9345 16.6644Z" fill="#00A76F"/>
|
|
8
|
+
</g>
|
|
9
|
+
<path opacity="0.08" d="M51.3966 10.297C50.9324 10.297 50.4683 10.1203 50.1149 9.76702C49.4083 9.0604 49.4083 7.91052 50.1149 7.20377C50.8216 6.49702 51.9716 6.49702 52.6782 7.20377C53.3848 7.91052 53.3848 9.06027 52.6782 9.76702C52.3249 10.1203 51.8608 10.297 51.3966 10.297ZM51.3967 7.92314C51.2526 7.92314 51.1086 7.97789 50.9989 8.08764C50.7797 8.30689 50.7797 8.66377 50.9989 8.88315C51.2182 9.1024 51.5751 9.10252 51.7944 8.88315C52.0137 8.6639 52.0137 8.30702 51.7944 8.08764C51.6847 7.97789 51.5407 7.92314 51.3967 7.92314Z" fill="#00A76F"/>
|
|
10
|
+
<path opacity="0.24" d="M54.54 16.4084C54.0759 16.4086 53.6118 16.2318 53.2584 15.8784C52.916 15.5361 52.7275 15.0809 52.7275 14.5968C52.7275 14.1127 52.916 13.6575 53.2584 13.3152C53.9649 12.6085 55.1148 12.6084 55.8215 13.3152C56.1639 13.6575 56.3524 14.1127 56.3524 14.5968C56.3524 15.0811 56.1639 15.5362 55.8214 15.8784C55.4684 16.2317 55.0042 16.4084 54.54 16.4084ZM54.54 14.0345C54.396 14.0345 54.2519 14.0893 54.1423 14.199C54.0359 14.3053 53.9775 14.4465 53.9775 14.5968C53.9775 14.7471 54.036 14.8883 54.1423 14.9946C54.3617 15.2139 54.7185 15.2139 54.9378 14.9946C55.0442 14.8883 55.1025 14.7471 55.1025 14.5968C55.1025 14.4465 55.044 14.3054 54.9378 14.199C54.8282 14.0893 54.6842 14.0345 54.54 14.0345Z" fill="#00A76F"/>
|
|
11
|
+
<path opacity="0.08" d="M13.1719 29.595C12.7078 29.595 12.2436 29.4182 11.8903 29.065C11.1837 28.3582 11.1837 27.2083 11.8903 26.5017C12.5969 25.7952 13.7469 25.7951 14.4536 26.5017C15.1602 27.2085 15.1602 28.3582 14.4536 29.065C14.1003 29.4182 13.6361 29.595 13.1719 29.595ZM13.1719 27.2211C13.0279 27.2211 12.8838 27.2758 12.7742 27.3856C12.5548 27.6048 12.5548 27.9617 12.7742 28.1811C12.9934 28.4005 13.3504 28.4003 13.5697 28.1811C13.7891 27.9618 13.7891 27.605 13.5697 27.3856C13.4601 27.2758 13.3161 27.2211 13.1719 27.2211Z" fill="#00A76F"/>
|
|
12
|
+
<path opacity="0.48" d="M12.3662 35.2127C12.2062 35.2127 12.0463 35.1517 11.9242 35.0297L11.1787 34.2842L10.4332 35.0297C10.1891 35.2737 9.79343 35.2737 9.5493 35.0297C9.30518 34.7855 9.30518 34.3898 9.5493 34.1458L10.7368 32.9583C10.9809 32.7143 11.3766 32.7143 11.6207 32.9583L12.8082 34.1458C13.0523 34.3899 13.0523 34.7857 12.8082 35.0297C12.6861 35.1515 12.5262 35.2127 12.3662 35.2127Z" fill="#00A76F"/>
|
|
13
|
+
<path opacity="0.24" d="M53.3525 53.3126C53.1925 53.3126 53.0326 53.2516 52.9105 53.1296L52.165 52.3841L51.4195 53.1296C51.1754 53.3736 50.7798 53.3736 50.5356 53.1296C50.2915 52.8855 50.2915 52.4897 50.5356 52.2457L51.7231 51.0582C51.9673 50.8142 52.3629 50.8142 52.607 51.0582L53.7945 52.2457C54.0386 52.4899 54.0386 52.8856 53.7945 53.1296C53.6724 53.2515 53.5125 53.3126 53.3525 53.3126Z" fill="#00A76F"/>
|
|
14
|
+
<path d="M47.9999 34.7078L43.3129 29.6013C42.9684 29.2256 42.482 29.0118 41.9724 29.0118H36.1535L36.1533 42.993H38.3791C38.3791 41.2345 39.8046 39.809 41.5631 39.809C43.3216 39.809 44.7471 41.2345 44.7471 42.993H46.18C46.6627 42.9931 47.1255 42.8014 47.4668 42.4602C47.8081 42.1189 47.9998 41.656 47.9997 41.1734L47.9999 34.7078Z" fill="#FFAB00"/>
|
|
15
|
+
<circle cx="41.5629" cy="42.993" r="3.18402" fill="#B76E00"/>
|
|
16
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M36.1533 34.7077V42.993H26.4626C26.4626 41.2343 25.0369 39.8086 23.2782 39.8086C21.5195 39.8086 20.0938 41.2343 20.0938 42.993H17.8197C17.337 42.9931 16.8741 42.8014 16.5329 42.4601C16.1916 42.1189 15.9999 41.656 16 41.1734V25.9813C15.9999 25.4986 16.1916 25.0358 16.5329 24.6945C16.8741 24.3532 17.337 24.1615 17.8197 24.1616H19.7936C19.907 27.3699 22.5408 29.9121 25.751 29.9121C28.9613 29.9121 31.595 27.3699 31.7085 24.1616H34.3336C35.3386 24.1617 36.1532 24.9763 36.1533 25.9813V34.7077Z" fill="#FFD666"/>
|
|
17
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M31.7124 23.9612C31.7124 24.0283 31.7117 24.0953 31.7087 24.1616C31.5952 27.3699 28.9615 29.9121 25.7512 29.9121C22.541 29.9121 19.9072 27.3699 19.7938 24.1616C19.7908 24.0953 19.79 24.0283 19.79 23.9612C19.79 20.6689 22.459 18 25.7512 18C29.0435 18 31.7124 20.6689 31.7124 23.9612Z" fill="#61F3F3"/>
|
|
18
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M23.2778 39.809C25.0363 39.809 26.4618 41.2345 26.4618 42.993C26.4618 44.7515 25.0363 46.177 23.2778 46.177C21.5193 46.177 20.0938 44.7515 20.0938 42.993C20.0938 41.2345 21.5193 39.809 23.2778 39.809Z" fill="#B76E00"/>
|
|
19
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M27.7405 26.3456C27.6081 26.3458 27.4806 26.2954 27.3841 26.2048L25.3945 24.3419C25.2892 24.2433 25.2295 24.1055 25.2295 23.9612V20.0953C25.2295 19.8073 25.463 19.5737 25.7511 19.5737C26.0392 19.5737 26.2727 19.8073 26.2727 20.0953V23.7354L28.0971 25.4436C28.2534 25.59 28.3044 25.817 28.2257 26.0161C28.1471 26.2152 27.9547 26.346 27.7406 26.346L27.7405 26.3456Z" fill="#006C9C"/>
|
|
20
|
+
</g>
|
|
21
|
+
<defs>
|
|
22
|
+
<linearGradient id="paint0_linear_296_3265" x1="43.8414" y1="68.4015" x2="70.1982" y2="12.921" gradientUnits="userSpaceOnUse">
|
|
23
|
+
<stop/>
|
|
24
|
+
<stop offset="1" stop-opacity="0.01"/>
|
|
25
|
+
</linearGradient>
|
|
26
|
+
<clipPath id="clip0_296_3265">
|
|
27
|
+
<rect width="64" height="64" fill="white"/>
|
|
28
|
+
</clipPath>
|
|
29
|
+
</defs>
|
|
30
|
+
</svg>
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
<svg width="64" height="64" viewBox="0 0 64 64" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<g clip-path="url(#clip0_296_3264)">
|
|
3
|
+
<mask id="mask0_296_3264" style="mask-type:alpha" maskUnits="userSpaceOnUse" x="0" y="7" width="64" height="53">
|
|
4
|
+
<path d="M58.9345 16.6644C50.7574 10.3778 42.8261 15.5013 33.9795 13.6898C25.069 11.8652 21.5189 5.78979 11.37 8.59417C2.37975 11.0783 -3.07525 21.038 1.867 29.3764C3.27537 31.7525 5.67462 33.5452 6.65512 36.2038C8.23675 40.4927 5.82925 43.7854 6.29887 48.0003C8.25037 65.5129 34.9956 58.7295 44.8368 53.2809C60.2705 44.7359 70.7115 25.7188 58.9345 16.6644Z" fill="url(#paint0_linear_296_3264)" fill-opacity="0.16"/>
|
|
5
|
+
</mask>
|
|
6
|
+
<g mask="url(#mask0_296_3264)">
|
|
7
|
+
<path d="M58.9345 16.6644C50.7574 10.3778 42.8261 15.5013 33.9795 13.6898C25.069 11.8652 21.5189 5.78979 11.37 8.59417C2.37975 11.0783 -3.07525 21.038 1.867 29.3764C3.27537 31.7525 5.67462 33.5452 6.65512 36.2038C8.23675 40.4927 5.82925 43.7854 6.29887 48.0003C8.25037 65.5129 34.9956 58.7295 44.8368 53.2809C60.2705 44.7359 70.7115 25.7188 58.9345 16.6644Z" fill="#00A76F"/>
|
|
8
|
+
</g>
|
|
9
|
+
<path opacity="0.08" d="M51.3966 10.297C50.9324 10.297 50.4683 10.1203 50.1149 9.76702C49.4083 9.0604 49.4083 7.91052 50.1149 7.20377C50.8216 6.49702 51.9716 6.49702 52.6782 7.20377C53.3848 7.91052 53.3848 9.06027 52.6782 9.76702C52.3249 10.1203 51.8608 10.297 51.3966 10.297ZM51.3967 7.92314C51.2526 7.92314 51.1086 7.97789 50.9989 8.08764C50.7797 8.30689 50.7797 8.66377 50.9989 8.88315C51.2182 9.1024 51.5751 9.10252 51.7944 8.88315C52.0137 8.6639 52.0137 8.30702 51.7944 8.08764C51.6847 7.97789 51.5407 7.92314 51.3967 7.92314Z" fill="#00A76F"/>
|
|
10
|
+
<path opacity="0.24" d="M54.54 16.4084C54.0759 16.4086 53.6118 16.2318 53.2584 15.8784C52.916 15.5361 52.7275 15.0809 52.7275 14.5968C52.7275 14.1127 52.916 13.6575 53.2584 13.3152C53.9649 12.6085 55.1148 12.6084 55.8215 13.3152C56.1639 13.6575 56.3524 14.1127 56.3524 14.5968C56.3524 15.0811 56.1639 15.5362 55.8214 15.8784C55.4684 16.2317 55.0042 16.4084 54.54 16.4084ZM54.54 14.0345C54.396 14.0345 54.2519 14.0893 54.1423 14.199C54.0359 14.3053 53.9775 14.4465 53.9775 14.5968C53.9775 14.7471 54.036 14.8883 54.1423 14.9946C54.3617 15.2139 54.7185 15.2139 54.9378 14.9946C55.0442 14.8883 55.1025 14.7471 55.1025 14.5968C55.1025 14.4465 55.044 14.3054 54.9378 14.199C54.8282 14.0893 54.6842 14.0345 54.54 14.0345Z" fill="#00A76F"/>
|
|
11
|
+
<path opacity="0.08" d="M13.1719 29.595C12.7078 29.595 12.2436 29.4182 11.8903 29.065C11.1837 28.3582 11.1837 27.2083 11.8903 26.5017C12.5969 25.7952 13.7469 25.7951 14.4536 26.5017C15.1602 27.2085 15.1602 28.3582 14.4536 29.065C14.1003 29.4182 13.6361 29.595 13.1719 29.595ZM13.1719 27.2211C13.0279 27.2211 12.8838 27.2758 12.7742 27.3856C12.5548 27.6048 12.5548 27.9617 12.7742 28.1811C12.9934 28.4005 13.3504 28.4003 13.5697 28.1811C13.7891 27.9618 13.7891 27.605 13.5697 27.3856C13.4601 27.2758 13.3161 27.2211 13.1719 27.2211Z" fill="#00A76F"/>
|
|
12
|
+
<path opacity="0.48" d="M12.3662 35.2127C12.2062 35.2127 12.0463 35.1517 11.9242 35.0297L11.1787 34.2842L10.4332 35.0297C10.1891 35.2737 9.79343 35.2737 9.5493 35.0297C9.30518 34.7855 9.30518 34.3898 9.5493 34.1458L10.7368 32.9583C10.9809 32.7143 11.3766 32.7143 11.6207 32.9583L12.8082 34.1458C13.0523 34.3899 13.0523 34.7857 12.8082 35.0297C12.6861 35.1515 12.5262 35.2127 12.3662 35.2127Z" fill="#00A76F"/>
|
|
13
|
+
<path opacity="0.24" d="M53.3525 53.3126C53.1925 53.3126 53.0326 53.2516 52.9105 53.1296L52.165 52.3841L51.4195 53.1296C51.1754 53.3736 50.7798 53.3736 50.5356 53.1296C50.2915 52.8855 50.2915 52.4897 50.5356 52.2457L51.7231 51.0582C51.9673 50.8142 52.3629 50.8142 52.607 51.0582L53.7945 52.2457C54.0386 52.4899 54.0386 52.8856 53.7945 53.1296C53.6724 53.2515 53.5125 53.3126 53.3525 53.3126Z" fill="#00A76F"/>
|
|
14
|
+
<path d="M48 25.3631V38.6353C48 39.4756 47.5333 40.2297 46.7823 40.6052L32.6461 47.7683C32.3381 47.9214 32.0013 47.9982 31.6652 47.9982H31.6514C31.3053 47.9957 30.9598 47.9133 30.6462 47.7496L30.6406 47.7464L17.1814 40.6033C16.4529 40.2216 16 39.4743 16 38.6515V25.3468C16 24.9713 16.0937 24.6127 16.2649 24.2966C16.4699 23.9192 16.7847 23.6031 17.1815 23.3956L30.6461 16.2494C31.2696 15.9239 32.0169 15.917 32.6461 16.2306L32.6523 16.2331L46.7824 23.3931C47.1972 23.6006 47.5252 23.9236 47.7352 24.3128C47.9063 24.6283 48 24.9869 48 25.3631Z" fill="#FFD666"/>
|
|
15
|
+
<path d="M47.9999 25.363V38.6352C47.9999 39.4755 47.5332 40.2296 46.7822 40.6051L32.646 47.7682C32.338 47.9213 32.0012 47.9982 31.6651 47.9982H31.6514V32.2606L47.7351 24.3127C47.9062 24.6282 47.9999 24.9869 47.9999 25.363Z" fill="#FFAB00"/>
|
|
16
|
+
<path d="M47.7358 24.3128L40.5733 27.8522L38.8114 28.7231L31.6521 32.2606L16.2656 24.2965C16.4706 23.9192 16.7854 23.603 17.1822 23.3956L22.9546 20.3317L24.9557 19.2695L30.6469 16.2493C30.9611 16.085 31.3066 16.0019 31.6521 16C31.9932 15.9982 32.3344 16.075 32.6467 16.2306L32.653 16.2331L46.783 23.3931C47.1979 23.6005 47.5259 23.9235 47.7358 24.3128Z" fill="#FFF5CC"/>
|
|
17
|
+
<path d="M40.612 28.1189C40.612 28.1189 40.612 28.1189 40.612 28.1195V33.0484C40.612 33.5657 40.1922 33.9856 39.6748 33.9856C39.1575 33.9856 38.7377 33.5657 38.7377 33.0484V28.6843L31.6514 24.9344L22.9539 20.3317L24.955 19.2695L31.6514 22.8133L40.1134 27.2911C40.1147 27.2917 40.1159 27.2923 40.1172 27.293C40.1353 27.303 40.1528 27.3142 40.1703 27.3248C40.1797 27.3305 40.1897 27.3361 40.199 27.3423L40.1997 27.343C40.2728 27.3923 40.3371 27.451 40.3915 27.516C40.394 27.5192 40.3965 27.5217 40.3983 27.5242C40.4121 27.5404 40.424 27.5579 40.4365 27.5748C40.4421 27.5829 40.4483 27.5904 40.454 27.5992C40.4627 27.6117 40.4696 27.6248 40.4777 27.6379C40.4858 27.6517 40.4946 27.6654 40.5021 27.6798C40.5065 27.6879 40.5102 27.696 40.514 27.7042C40.524 27.7242 40.5333 27.7442 40.5421 27.7648C40.5433 27.7679 40.544 27.7704 40.5452 27.7729C40.5558 27.7992 40.5646 27.8254 40.5721 27.8523C40.5896 27.9079 40.6015 27.966 40.6071 28.026C40.6102 28.057 40.612 28.0877 40.612 28.1189Z" fill="#FFD666"/>
|
|
18
|
+
<path d="M40.6109 28.119C40.6109 28.119 40.6109 28.119 40.6109 28.1196V33.0485C40.6109 33.5658 40.1911 33.9857 39.6738 33.9857C39.1564 33.9857 38.7366 33.5658 38.7366 33.0485V28.7587L40.5709 27.8522C40.5884 27.9078 40.6003 27.9659 40.6059 28.0259C40.6091 28.0571 40.6109 28.0877 40.6109 28.119Z" fill="#B76E00"/>
|
|
19
|
+
</g>
|
|
20
|
+
<defs>
|
|
21
|
+
<linearGradient id="paint0_linear_296_3264" x1="43.8414" y1="68.4015" x2="70.1982" y2="12.921" gradientUnits="userSpaceOnUse">
|
|
22
|
+
<stop/>
|
|
23
|
+
<stop offset="1" stop-opacity="0.01"/>
|
|
24
|
+
</linearGradient>
|
|
25
|
+
<clipPath id="clip0_296_3264">
|
|
26
|
+
<rect width="64" height="64" fill="white"/>
|
|
27
|
+
</clipPath>
|
|
28
|
+
</defs>
|
|
29
|
+
</svg>
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
<svg width="64" height="64" viewBox="0 0 64 64" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<g clip-path="url(#clip0_296_2015)">
|
|
3
|
+
<mask id="mask0_296_2015" style="mask-type:alpha" maskUnits="userSpaceOnUse" x="0" y="7" width="64" height="53">
|
|
4
|
+
<path d="M58.9345 16.6644C50.7574 10.3778 42.8261 15.5013 33.9795 13.6898C25.069 11.8652 21.5189 5.78979 11.37 8.59417C2.37975 11.0783 -3.07525 21.038 1.867 29.3764C3.27537 31.7525 5.67462 33.5452 6.65512 36.2038C8.23675 40.4927 5.82925 43.7854 6.29887 48.0003C8.25037 65.5129 34.9956 58.7295 44.8368 53.2809C60.2705 44.7359 70.7115 25.7188 58.9345 16.6644Z" fill="url(#paint0_linear_296_2015)" fill-opacity="0.16"/>
|
|
5
|
+
</mask>
|
|
6
|
+
<g mask="url(#mask0_296_2015)">
|
|
7
|
+
<path d="M58.9345 16.6644C50.7574 10.3778 42.8261 15.5013 33.9795 13.6898C25.069 11.8652 21.5189 5.78979 11.37 8.59417C2.37975 11.0783 -3.07525 21.038 1.867 29.3764C3.27537 31.7525 5.67462 33.5452 6.65512 36.2038C8.23675 40.4927 5.82925 43.7854 6.29887 48.0003C8.25037 65.5129 34.9956 58.7295 44.8368 53.2809C60.2705 44.7359 70.7115 25.7188 58.9345 16.6644Z" fill="#00A76F"/>
|
|
8
|
+
</g>
|
|
9
|
+
<path opacity="0.08" d="M51.3966 10.297C50.9324 10.297 50.4683 10.1203 50.1149 9.76702C49.4083 9.0604 49.4083 7.91052 50.1149 7.20377C50.8216 6.49702 51.9716 6.49702 52.6782 7.20377C53.3848 7.91052 53.3848 9.06027 52.6782 9.76702C52.3249 10.1203 51.8608 10.297 51.3966 10.297ZM51.3967 7.92314C51.2526 7.92314 51.1086 7.97789 50.9989 8.08764C50.7797 8.30689 50.7797 8.66377 50.9989 8.88315C51.2182 9.1024 51.5751 9.10252 51.7944 8.88315C52.0137 8.6639 52.0137 8.30702 51.7944 8.08764C51.6847 7.97789 51.5407 7.92314 51.3967 7.92314Z" fill="#00A76F"/>
|
|
10
|
+
<path opacity="0.24" d="M54.54 16.4084C54.0759 16.4086 53.6118 16.2318 53.2584 15.8784C52.916 15.5361 52.7275 15.0809 52.7275 14.5968C52.7275 14.1127 52.916 13.6575 53.2584 13.3152C53.9649 12.6085 55.1148 12.6084 55.8215 13.3152C56.1639 13.6575 56.3524 14.1127 56.3524 14.5968C56.3524 15.0811 56.1639 15.5362 55.8214 15.8784C55.4684 16.2317 55.0042 16.4084 54.54 16.4084ZM54.54 14.0345C54.396 14.0345 54.2519 14.0893 54.1423 14.199C54.0359 14.3053 53.9775 14.4465 53.9775 14.5968C53.9775 14.7471 54.036 14.8883 54.1423 14.9946C54.3617 15.2139 54.7185 15.2139 54.9378 14.9946C55.0442 14.8883 55.1025 14.7471 55.1025 14.5968C55.1025 14.4465 55.044 14.3054 54.9378 14.199C54.8282 14.0893 54.6842 14.0345 54.54 14.0345Z" fill="#00A76F"/>
|
|
11
|
+
<path opacity="0.08" d="M13.1719 29.595C12.7078 29.595 12.2436 29.4182 11.8903 29.065C11.1837 28.3582 11.1837 27.2083 11.8903 26.5017C12.5969 25.7952 13.7469 25.7951 14.4536 26.5017C15.1602 27.2085 15.1602 28.3582 14.4536 29.065C14.1003 29.4182 13.6361 29.595 13.1719 29.595ZM13.1719 27.2211C13.0279 27.2211 12.8838 27.2758 12.7742 27.3856C12.5548 27.6048 12.5548 27.9617 12.7742 28.1811C12.9934 28.4005 13.3504 28.4003 13.5697 28.1811C13.7891 27.9618 13.7891 27.605 13.5697 27.3856C13.4601 27.2758 13.3161 27.2211 13.1719 27.2211Z" fill="#00A76F"/>
|
|
12
|
+
<path opacity="0.48" d="M12.3662 35.2127C12.2062 35.2127 12.0463 35.1517 11.9242 35.0297L11.1787 34.2842L10.4332 35.0297C10.1891 35.2737 9.79343 35.2737 9.5493 35.0297C9.30518 34.7855 9.30518 34.3898 9.5493 34.1458L10.7368 32.9583C10.9809 32.7143 11.3766 32.7143 11.6207 32.9583L12.8082 34.1458C13.0523 34.3899 13.0523 34.7857 12.8082 35.0297C12.6861 35.1515 12.5262 35.2127 12.3662 35.2127Z" fill="#00A76F"/>
|
|
13
|
+
<path opacity="0.24" d="M53.3525 53.3126C53.1925 53.3126 53.0326 53.2516 52.9105 53.1296L52.165 52.3841L51.4195 53.1296C51.1754 53.3736 50.7798 53.3736 50.5356 53.1296C50.2915 52.8855 50.2915 52.4897 50.5356 52.2457L51.7231 51.0582C51.9673 50.8142 52.3629 50.8142 52.607 51.0582L53.7945 52.2457C54.0386 52.4899 54.0386 52.8856 53.7945 53.1296C53.6724 53.2515 53.5125 53.3126 53.3525 53.3126Z" fill="#00A76F"/>
|
|
14
|
+
<path d="M44.5625 31.9792L46.1424 31.3405C47.6453 30.7322 48.3835 29.0318 47.8016 27.5184L44.1035 17.9048C43.5117 16.3717 41.789 15.6086 40.2559 16.2005C40.2342 16.2089 40.2125 16.2175 40.1911 16.2264L21.7138 23.8859C20.2352 24.5007 19.5083 26.1755 20.0689 27.6755L20.8129 29.6593L22.0615 33.0813H40.7972L44.5625 31.9792Z" fill="#61F3F3"/>
|
|
15
|
+
<path d="M24.8997 29.6609L23.7314 26.7404L28.4043 24.4039L29.5726 27.3245L24.8997 29.6609Z" fill="#006C9C"/>
|
|
16
|
+
<path d="M38.6953 26.8215L43.952 24.484L44.3998 25.491L39.1431 27.8286L38.6953 26.8215Z" fill="#006C9C"/>
|
|
17
|
+
<path d="M35.1836 25.6559L42.7766 22.1515L43.2382 23.1516L35.6452 26.6561L35.1836 25.6559Z" fill="#006C9C"/>
|
|
18
|
+
<path opacity="0.12" d="M46.1425 31.3406C46.1915 31.3208 46.2328 31.2905 46.2802 31.2684C46.1326 29.7961 44.8944 28.6746 43.4148 28.673H20.4404L20.8107 29.661L22.0616 33.0814H40.7973L44.5626 31.9793L46.1425 31.3406Z" fill="black"/>
|
|
19
|
+
<path d="M18.893 29.775H42.3126C43.9104 29.775 45.2056 31.0703 45.2056 32.668V45.0666C45.2056 46.6644 43.9104 47.9596 42.3126 47.9596H18.893C17.2952 47.9596 16 46.6644 16 45.0666V32.668C16 31.0703 17.2952 29.775 18.893 29.775Z" fill="#FFD666"/>
|
|
20
|
+
<path d="M36.9401 46.3066C35.114 46.3066 33.6338 44.8263 33.6338 43.0003C33.6338 41.1742 35.114 39.694 36.9401 39.694C38.7661 39.694 40.2464 41.1742 40.2464 43.0003C40.2446 44.8255 38.7654 46.3048 36.9401 46.3066ZM36.9401 40.7961C35.7227 40.7961 34.7359 41.7829 34.7359 43.0003C34.7359 44.2176 35.7227 45.2045 36.9401 45.2045C38.1574 45.2045 39.1443 44.2176 39.1443 43.0003C39.1443 41.7829 38.1574 40.7961 36.9401 40.7961Z" fill="#B76E00"/>
|
|
21
|
+
<path d="M40.2467 46.3066C38.4207 46.3066 36.9404 44.8263 36.9404 43.0003C36.9404 41.1742 38.4207 39.694 40.2467 39.694C42.0728 39.694 43.553 41.1742 43.553 43.0003C43.5512 44.8255 42.072 46.3048 40.2467 46.3066ZM40.2467 40.7961C39.0294 40.7961 38.0425 41.7829 38.0425 43.0003C38.0425 44.2176 39.0294 45.2045 40.2467 45.2045C41.4641 45.2045 42.4509 44.2176 42.4509 43.0003C42.4509 41.7829 41.4641 40.7961 40.2467 40.7961Z" fill="#B76E00"/>
|
|
22
|
+
<path d="M16 33.0813H45.2056V37.4897H16V33.0813Z" fill="#B76E00"/>
|
|
23
|
+
</g>
|
|
24
|
+
<defs>
|
|
25
|
+
<linearGradient id="paint0_linear_296_2015" x1="43.8414" y1="68.4015" x2="70.1982" y2="12.921" gradientUnits="userSpaceOnUse">
|
|
26
|
+
<stop/>
|
|
27
|
+
<stop offset="1" stop-opacity="0.01"/>
|
|
28
|
+
</linearGradient>
|
|
29
|
+
<clipPath id="clip0_296_2015">
|
|
30
|
+
<rect width="64" height="64" fill="white"/>
|
|
31
|
+
</clipPath>
|
|
32
|
+
</defs>
|
|
33
|
+
</svg>
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
<svg width="64" height="64" viewBox="0 0 64 64" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<g clip-path="url(#clip0_296_3263)">
|
|
3
|
+
<mask id="mask0_296_3263" style="mask-type:alpha" maskUnits="userSpaceOnUse" x="0" y="7" width="64" height="53">
|
|
4
|
+
<path d="M58.9345 16.6644C50.7574 10.3778 42.8261 15.5013 33.9795 13.6898C25.069 11.8652 21.5189 5.78979 11.37 8.59417C2.37975 11.0783 -3.07525 21.038 1.867 29.3764C3.27537 31.7525 5.67462 33.5452 6.65512 36.2038C8.23675 40.4927 5.82925 43.7854 6.29887 48.0003C8.25037 65.5129 34.9956 58.7295 44.8368 53.2809C60.2705 44.7359 70.7115 25.7188 58.9345 16.6644Z" fill="url(#paint0_linear_296_3263)" fill-opacity="0.16"/>
|
|
5
|
+
</mask>
|
|
6
|
+
<g mask="url(#mask0_296_3263)">
|
|
7
|
+
<path d="M58.9345 16.6644C50.7574 10.3778 42.8261 15.5013 33.9795 13.6898C25.069 11.8652 21.5189 5.78979 11.37 8.59417C2.37975 11.0783 -3.07525 21.038 1.867 29.3764C3.27537 31.7525 5.67462 33.5452 6.65512 36.2038C8.23675 40.4927 5.82925 43.7854 6.29887 48.0003C8.25037 65.5129 34.9956 58.7295 44.8368 53.2809C60.2705 44.7359 70.7115 25.7188 58.9345 16.6644Z" fill="#00A76F"/>
|
|
8
|
+
</g>
|
|
9
|
+
<path opacity="0.08" d="M51.3966 10.297C50.9324 10.297 50.4683 10.1203 50.1149 9.76702C49.4083 9.0604 49.4083 7.91052 50.1149 7.20377C50.8216 6.49702 51.9716 6.49702 52.6782 7.20377C53.3848 7.91052 53.3848 9.06027 52.6782 9.76702C52.3249 10.1203 51.8608 10.297 51.3966 10.297ZM51.3967 7.92314C51.2526 7.92314 51.1086 7.97789 50.9989 8.08764C50.7797 8.30689 50.7797 8.66377 50.9989 8.88315C51.2182 9.1024 51.5751 9.10252 51.7944 8.88315C52.0137 8.6639 52.0137 8.30702 51.7944 8.08764C51.6847 7.97789 51.5407 7.92314 51.3967 7.92314Z" fill="#00A76F"/>
|
|
10
|
+
<path opacity="0.24" d="M54.54 16.4084C54.0759 16.4086 53.6118 16.2318 53.2584 15.8784C52.916 15.5361 52.7275 15.0809 52.7275 14.5968C52.7275 14.1127 52.916 13.6575 53.2584 13.3152C53.9649 12.6085 55.1148 12.6084 55.8215 13.3152C56.1639 13.6575 56.3524 14.1127 56.3524 14.5968C56.3524 15.0811 56.1639 15.5362 55.8214 15.8784C55.4684 16.2317 55.0042 16.4084 54.54 16.4084ZM54.54 14.0345C54.396 14.0345 54.2519 14.0893 54.1423 14.199C54.0359 14.3053 53.9775 14.4465 53.9775 14.5968C53.9775 14.7471 54.036 14.8883 54.1423 14.9946C54.3617 15.2139 54.7185 15.2139 54.9378 14.9946C55.0442 14.8883 55.1025 14.7471 55.1025 14.5968C55.1025 14.4465 55.044 14.3054 54.9378 14.199C54.8282 14.0893 54.6842 14.0345 54.54 14.0345Z" fill="#00A76F"/>
|
|
11
|
+
<path opacity="0.08" d="M13.1719 29.595C12.7078 29.595 12.2436 29.4182 11.8903 29.065C11.1837 28.3582 11.1837 27.2083 11.8903 26.5017C12.5969 25.7952 13.7469 25.7951 14.4536 26.5017C15.1602 27.2085 15.1602 28.3582 14.4536 29.065C14.1003 29.4182 13.6361 29.595 13.1719 29.595ZM13.1719 27.2211C13.0279 27.2211 12.8838 27.2758 12.7742 27.3856C12.5548 27.6048 12.5548 27.9617 12.7742 28.1811C12.9934 28.4005 13.3504 28.4003 13.5697 28.1811C13.7891 27.9618 13.7891 27.605 13.5697 27.3856C13.4601 27.2758 13.3161 27.2211 13.1719 27.2211Z" fill="#00A76F"/>
|
|
12
|
+
<path opacity="0.48" d="M12.3662 35.2127C12.2062 35.2127 12.0463 35.1517 11.9242 35.0297L11.1787 34.2842L10.4332 35.0297C10.1891 35.2737 9.79343 35.2737 9.5493 35.0297C9.30518 34.7855 9.30518 34.3898 9.5493 34.1458L10.7368 32.9583C10.9809 32.7143 11.3766 32.7143 11.6207 32.9583L12.8082 34.1458C13.0523 34.3899 13.0523 34.7857 12.8082 35.0297C12.6861 35.1515 12.5262 35.2127 12.3662 35.2127Z" fill="#00A76F"/>
|
|
13
|
+
<path opacity="0.24" d="M53.3525 53.3126C53.1925 53.3126 53.0326 53.2516 52.9105 53.1296L52.165 52.3841L51.4195 53.1296C51.1754 53.3736 50.7798 53.3736 50.5356 53.1296C50.2915 52.8855 50.2915 52.4897 50.5356 52.2457L51.7231 51.0582C51.9673 50.8142 52.3629 50.8142 52.607 51.0582L53.7945 52.2457C54.0386 52.4899 54.0386 52.8856 53.7945 53.1296C53.6724 53.2515 53.5125 53.3126 53.3525 53.3126Z" fill="#00A76F"/>
|
|
14
|
+
<path d="M34.0285 42.5509C39.2046 41.3274 42.4088 36.1395 41.1852 30.9634C39.9617 25.7873 34.7738 22.5831 29.5977 23.8067C24.4215 25.0302 21.2173 30.2181 22.4409 35.3942C23.6644 40.5703 28.8523 43.7745 34.0285 42.5509Z" fill="#FFD666"/>
|
|
15
|
+
<path d="M31.8136 23.5548V42.8193C37.1249 42.8193 41.4458 38.4983 41.4458 33.1871C41.4458 27.8759 37.1248 23.5548 31.8136 23.5548Z" fill="#FFAB00"/>
|
|
16
|
+
<path d="M42.2873 22.7128C39.9941 20.4197 37.0814 18.9717 33.9268 18.5237L34.85 17.6004C35.2161 17.2342 35.2161 16.6407 34.85 16.2745C34.4839 15.9085 33.8903 15.9085 33.5242 16.2745L31.15 18.6487C30.7839 19.0148 30.7839 19.6084 31.15 19.9745L33.5241 22.3487C33.7072 22.5317 33.9471 22.6233 34.187 22.6233C34.4269 22.6233 34.6669 22.5317 34.8499 22.3487C35.216 21.9826 35.216 21.389 34.8499 21.0229L34.321 20.494C40.2586 21.6652 44.7508 26.9111 44.7508 33.1871C44.7509 40.3211 38.9469 46.125 31.8129 46.125C24.679 46.125 18.875 40.3211 18.875 33.1871C18.875 30.4649 19.7104 27.8609 21.2911 25.6567C22.8389 23.4981 24.9726 21.8874 27.4618 20.9988C27.9494 20.8247 28.2036 20.2883 28.0295 19.8006C27.8554 19.313 27.3189 19.0589 26.8313 19.2329C23.9811 20.2505 21.5384 22.094 19.7673 24.5641C17.9569 27.0888 17 30.0706 17 33.1872C17 37.1439 18.5408 40.8637 21.3386 43.6615C24.1364 46.4591 27.8563 48 31.8129 48C35.7696 48 39.4894 46.4592 42.2873 43.6614C45.0851 40.8636 46.6259 37.1438 46.6259 33.1871C46.6259 29.2304 45.085 25.5106 42.2873 22.7128Z" fill="#00B8D9"/>
|
|
17
|
+
<path d="M32.9591 32.2568C32.2175 31.9947 31.3983 31.6788 30.9456 31.3238C30.8323 31.2349 30.784 31.0098 30.828 30.7763C30.8511 30.6538 30.9584 30.2445 31.3706 30.1204C32.0961 29.9018 32.5903 30.1893 32.7692 30.3228C33.1841 30.633 33.7715 30.5481 34.0814 30.1333C34.3915 29.7186 34.3066 29.1312 33.8919 28.8212C33.72 28.6927 33.3009 28.4178 32.701 28.2687V28.0171C32.701 27.4993 32.2813 27.0796 31.7635 27.0796C31.2458 27.0796 30.826 27.4993 30.826 28.0171V28.3264C29.8811 28.6127 29.176 29.4178 28.9855 30.429C28.8093 31.3642 29.117 32.2723 29.7886 32.7991C30.4528 33.32 31.4045 33.696 32.3341 34.0246C33.0675 34.2838 33.0891 34.8453 33.0367 35.157C32.9493 35.6771 32.5116 36.2394 31.7573 36.2444C30.9696 36.2495 30.7456 36.2141 30.1511 35.8251C29.7177 35.5416 29.1368 35.6631 28.8533 36.0965C28.5698 36.5298 28.6913 37.1108 29.1246 37.3943C29.7712 37.8173 30.2558 38.0018 30.826 38.0756V38.3569C30.826 38.8746 31.2458 39.2944 31.7635 39.2944C32.2813 39.2944 32.701 38.8746 32.701 38.3569V37.9798C33.1428 37.8454 33.5465 37.6158 33.8944 37.2962C34.4161 36.8169 34.7681 36.1675 34.8858 35.4677C35.1259 34.0395 34.3516 32.7491 32.9591 32.2568Z" fill="#B76E00"/>
|
|
18
|
+
<path d="M33.9274 18.5237L34.8506 17.6004C35.2168 17.2342 35.2168 16.6407 34.8506 16.2745C34.4846 15.9085 33.8909 15.9085 33.5248 16.2745L31.1507 18.6487C30.7846 19.0148 30.7846 19.6084 31.1507 19.9745L33.5248 22.3487C33.7079 22.5317 33.9478 22.6233 34.1877 22.6233C34.4276 22.6233 34.6676 22.5317 34.8506 22.3487C35.2167 21.9826 35.2167 21.389 34.8506 21.0229L34.3217 20.494C40.2593 21.6652 44.7514 26.9111 44.7514 33.1871C44.7516 40.3211 38.9476 46.125 31.8136 46.125V48C35.7703 48 39.4901 46.4592 42.2879 43.6614C45.0858 40.8636 46.6266 37.1438 46.6266 33.1871C46.6266 29.2304 45.0858 25.5106 42.2879 22.7128C39.9948 20.4197 37.0821 18.9717 33.9274 18.5237Z" fill="#00B8D9"/>
|
|
19
|
+
<path d="M32.9582 32.257C32.577 32.1222 32.1755 31.9731 31.8136 31.8119V33.8356C31.9863 33.9007 32.1602 33.9636 32.3333 34.0248C33.0666 34.2839 33.0882 34.8455 33.0359 35.1571C32.9507 35.6638 32.5323 36.2089 31.8136 36.2416V39.292C32.3075 39.2654 32.7002 38.8576 32.7002 38.3571V37.9799C33.1419 37.8456 33.5456 37.616 33.8935 37.2964C34.4152 36.8171 34.7672 36.1677 34.8849 35.4679C35.1251 34.0396 34.3508 32.7492 32.9582 32.257Z" fill="#B76E00"/>
|
|
20
|
+
<path d="M31.8136 27.0823V30.0438C32.2968 30.0221 32.6289 30.2188 32.7684 30.323C33.1832 30.6331 33.7706 30.5483 34.0806 30.1335C34.3906 29.7188 34.3057 29.1313 33.8911 28.8213C33.7192 28.6928 33.3 28.418 32.7002 28.2688V28.0173C32.7002 27.5166 32.3075 27.1089 31.8136 27.0823Z" fill="#B76E00"/>
|
|
21
|
+
</g>
|
|
22
|
+
<defs>
|
|
23
|
+
<linearGradient id="paint0_linear_296_3263" x1="43.8414" y1="68.4015" x2="70.1982" y2="12.921" gradientUnits="userSpaceOnUse">
|
|
24
|
+
<stop/>
|
|
25
|
+
<stop offset="1" stop-opacity="0.01"/>
|
|
26
|
+
</linearGradient>
|
|
27
|
+
<clipPath id="clip0_296_3263">
|
|
28
|
+
<rect width="64" height="64" fill="white"/>
|
|
29
|
+
</clipPath>
|
|
30
|
+
</defs>
|
|
31
|
+
</svg>
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
<svg width="40" height="40" viewBox="0 0 40 40" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<g clip-path="url(#clip0_1255_158111)">
|
|
3
|
+
<path d="M23.172 0C23.7022 0 24.2107 0.210507 24.5857 0.585255L36.4137 12.4044C36.7891 12.7795 37 13.2884 37 13.8191V35.3333C37 37.9107 34.8689 40 32.24 40H7.76C5.13112 40 3 37.9107 3 35.3333V4.66667C3 2.08934 5.13112 0 7.76 0H23.172Z" fill="#3B1F03"/>
|
|
4
|
+
<g filter="url(#filter0_d_1255_158111)">
|
|
5
|
+
<path d="M35.1548 12.1381C35.4678 12.4537 35.2443 12.9902 34.7998 12.9902H29C26.4227 12.9902 24.0976 10.7233 24.0976 8.21031V2.20435C24.0976 1.75791 24.6382 1.53528 24.9526 1.85224L35.1548 12.1381Z" fill="white" fill-opacity="0.24" shape-rendering="crispEdges"/>
|
|
6
|
+
</g>
|
|
7
|
+
<path d="M13.9998 31L17.0718 22.324H19.4598L22.5318 31H20.2278L19.6518 29.32H16.9158L16.3278 31H13.9998ZM17.4078 27.328H19.1238L18.2718 24.556L17.4078 27.328Z" fill="#FF860D"/>
|
|
8
|
+
<path d="M23.5243 22.324H25.8583V31H23.5243V22.324Z" fill="#FF860D"/>
|
|
9
|
+
</g>
|
|
10
|
+
<defs>
|
|
11
|
+
<filter id="filter0_d_1255_158111" x="22.0977" y="1.70337" width="15.2031" height="15.2869" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
|
12
|
+
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
|
13
|
+
<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"/>
|
|
14
|
+
<feOffset dy="2"/>
|
|
15
|
+
<feGaussianBlur stdDeviation="1"/>
|
|
16
|
+
<feComposite in2="hardAlpha" operator="out"/>
|
|
17
|
+
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.04 0"/>
|
|
18
|
+
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_1255_158111"/>
|
|
19
|
+
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_1255_158111" result="shape"/>
|
|
20
|
+
</filter>
|
|
21
|
+
<clipPath id="clip0_1255_158111">
|
|
22
|
+
<rect width="40" height="40" fill="white"/>
|
|
23
|
+
</clipPath>
|
|
24
|
+
</defs>
|
|
25
|
+
</svg>
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
<svg width="40" height="40" viewBox="0 0 40 40" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<g clip-path="url(#clip0_1255_158073)">
|
|
3
|
+
<path d="M23.172 0C23.7022 0 24.2107 0.210507 24.5857 0.585255L36.4137 12.4044C36.7891 12.7795 37 13.2884 37 13.8191V35.3333C37 37.9107 34.8689 40 32.24 40H7.76C5.13112 40 3 37.9107 3 35.3333V4.66667C3 2.08934 5.13112 0 7.76 0H23.172Z" fill="#8E33FF"/>
|
|
4
|
+
<g filter="url(#filter0_d_1255_158073)">
|
|
5
|
+
<path d="M35.1548 12.1381C35.4678 12.4537 35.2443 12.9902 34.7998 12.9902H29C26.4227 12.9902 24.0976 10.7233 24.0976 8.21031V2.20435C24.0976 1.75791 24.6382 1.53528 24.9526 1.85224L35.1548 12.1381Z" fill="white" fill-opacity="0.24" shape-rendering="crispEdges"/>
|
|
6
|
+
</g>
|
|
7
|
+
<path d="M22.9233 16.7978V26.221C22.9233 26.5014 22.8279 26.751 22.6372 26.9697C22.4465 27.1885 22.2053 27.3582 21.9137 27.4787C21.622 27.5993 21.3317 27.6891 21.0429 27.748C20.754 27.8069 20.4833 27.8363 20.2309 27.8363C19.9786 27.8363 19.7079 27.8069 19.419 27.748C19.1301 27.6891 18.8399 27.5994 18.5482 27.4787C18.2566 27.3581 18.0154 27.1885 17.8247 26.9697C17.6339 26.751 17.5386 26.5014 17.5386 26.221C17.5386 25.9405 17.6339 25.6909 17.8247 25.4722C18.0154 25.2535 18.2566 25.0838 18.5482 24.9632C18.8399 24.8425 19.1301 24.7528 19.419 24.6939C19.7079 24.6351 19.9786 24.6056 20.2309 24.6056C20.8199 24.6056 21.3583 24.715 21.8463 24.9337V20.4157L15.3848 22.4097V28.3749C15.3848 28.6553 15.2894 28.9049 15.0987 29.1237C14.908 29.3424 14.6668 29.5121 14.3751 29.6327C14.0834 29.7532 13.7932 29.843 13.5043 29.9019C13.2154 29.9608 12.9448 29.9902 12.6924 29.9902C12.44 29.9902 12.1693 29.9608 11.8805 29.9019C11.5916 29.843 11.3013 29.7533 11.0097 29.6327C10.718 29.512 10.4768 29.3424 10.2861 29.1237C10.0954 28.905 10 28.6554 10 28.3749C10 28.0944 10.0954 27.8448 10.2861 27.6261C10.4768 27.4074 10.718 27.2377 11.0097 27.1171C11.3013 26.9965 11.5916 26.9067 11.8805 26.8478C12.1693 26.789 12.44 26.7595 12.6924 26.7595C13.2813 26.7595 13.8198 26.8689 14.3078 27.0876V18.9518C14.3078 18.7779 14.361 18.6195 14.4676 18.4764C14.5742 18.3334 14.7116 18.2338 14.8799 18.1778L21.8799 16.0239C21.9472 16.0015 22.0257 15.9902 22.1155 15.9902C22.3399 15.9902 22.5306 16.0688 22.6876 16.2258C22.8446 16.3829 22.9233 16.5735 22.9233 16.7978Z" fill="white"/>
|
|
8
|
+
</g>
|
|
9
|
+
<defs>
|
|
10
|
+
<filter id="filter0_d_1255_158073" x="22.0977" y="1.70337" width="15.2031" height="15.2869" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
|
11
|
+
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
|
12
|
+
<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"/>
|
|
13
|
+
<feOffset dy="2"/>
|
|
14
|
+
<feGaussianBlur stdDeviation="1"/>
|
|
15
|
+
<feComposite in2="hardAlpha" operator="out"/>
|
|
16
|
+
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.04 0"/>
|
|
17
|
+
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_1255_158073"/>
|
|
18
|
+
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_1255_158073" result="shape"/>
|
|
19
|
+
</filter>
|
|
20
|
+
<clipPath id="clip0_1255_158073">
|
|
21
|
+
<rect width="40" height="40" fill="white"/>
|
|
22
|
+
</clipPath>
|
|
23
|
+
</defs>
|
|
24
|
+
</svg>
|