@espressif/dashboard-ui-components 1.2.2 → 1.3.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/CHANGELOG.md +126 -0
- package/README.md +15 -6
- package/dist/{app-logo.props-TKCDuodn.d.ts → app-logo.props-Ct7QBdTd.d.ts} +1 -1
- package/dist/{chunk-F5P6S7K2.js → chunk-7BO76CNB.js} +75 -14
- package/dist/{chunk-JPMN2UMF.js → chunk-KCMVLNM5.js} +12 -12
- package/dist/{chunk-YWRID3U3.js → chunk-O5BFYRPY.js} +1541 -339
- package/dist/{chunk-XDY5H3S3.js → chunk-RCRU3JW2.js} +40 -28
- package/dist/{chunk-IEHT62YM.js → chunk-RKAFXJRD.js} +3 -3
- package/dist/{chunk-4J5RO6E2.js → chunk-TSNA6BHK.js} +30 -8
- package/dist/{chunk-KGOWRVSU.js → chunk-UHRNPXO5.js} +404 -225
- package/dist/common/index.d.ts +4 -4
- package/dist/common/index.js +6 -6
- package/dist/components/index.d.ts +201 -13
- package/dist/components/index.js +4 -4
- package/dist/core/index.d.ts +2 -2
- package/dist/core/index.js +2 -2
- package/dist/{index-Cv9vHALn.d.ts → index-BQANnKs9.d.ts} +1 -1
- package/dist/index.d.ts +6 -6
- package/dist/index.js +7 -7
- package/dist/layouts/index.d.ts +20 -7
- package/dist/layouts/index.js +4 -4
- package/dist/{list.props-DBDJt4C1.d.ts → list.props-x1j3CbcF.d.ts} +1 -1
- package/dist/{popover-CRznb4Q7.d.ts → popover-ByLD3-Qv.d.ts} +21 -3
- package/dist/{types-4i2wWAqP.d.ts → types-DtUxK-Am.d.ts} +2 -2
- package/dist/utils/index.d.ts +1 -1
- package/package.json +4 -1
- package/src/assets/logos/launchpad/launchpad-no-text-dm.svg +1 -0
- package/src/assets/logos/launchpad/launchpad-no-text.svg +1 -1
- package/src/assets/logos/launchpad/launchpad-with-text-dm.svg +1 -1
- package/src/assets/logos/launchpad/launchpad-with-text.svg +46 -1
- package/src/assets/logos/zerocode-ai/zerocode-ai-no-text.svg +1 -0
- package/src/assets/logos/zerocode-ai/zerocode-ai-with-text-dm.svg +186 -0
- package/src/assets/logos/zerocode-ai/zerocode-ai-with-text.svg +246 -0
- package/src/styles/globals.css +93 -15
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import { FooterCard, MyAccountMenu, ProfileCard, AppLogo } from './chunk-
|
|
2
|
-
import { useSidebar, SidebarTrigger, SidebarProvider, Sidebar2, SidebarInset, parseTextMarkup, isPathPrefixOf, isSidebarGroup } from './chunk-
|
|
3
|
-
import { Button, Breadcrumb, BreadcrumbList, BreadcrumbItem, BreadcrumbLink, BreadcrumbPage, BreadcrumbSeparator } from './chunk-
|
|
1
|
+
import { FooterCard, MyAccountMenu, ProfileCard, AppLogo } from './chunk-TSNA6BHK.js';
|
|
2
|
+
import { useSidebar, SidebarTrigger, SidebarProvider, Sidebar2, SidebarInset, parseTextMarkup, isPathPrefixOf, isSidebarGroup } from './chunk-UHRNPXO5.js';
|
|
3
|
+
import { Button, Breadcrumb, BreadcrumbList, BreadcrumbItem, BreadcrumbLink, BreadcrumbPage, BreadcrumbSeparator } from './chunk-7BO76CNB.js';
|
|
4
4
|
import { cn } from './chunk-VU4CZ76T.js';
|
|
5
5
|
import { Menu, Palette, Check, Globe, LogOut } from 'lucide-react';
|
|
6
6
|
import { jsx, jsxs } from 'react/jsx-runtime';
|
|
@@ -197,7 +197,7 @@ function AccountMenu({
|
|
|
197
197
|
}
|
|
198
198
|
function WorkspaceBreadcrumbs({
|
|
199
199
|
items,
|
|
200
|
-
LinkComponent,
|
|
200
|
+
linkComponent: LinkComponent,
|
|
201
201
|
collapseOnMobile = false
|
|
202
202
|
}) {
|
|
203
203
|
const { isMobile } = useSidebar();
|
|
@@ -274,7 +274,7 @@ function SidebarLogo({
|
|
|
274
274
|
appName,
|
|
275
275
|
darkMode,
|
|
276
276
|
indexPath,
|
|
277
|
-
LinkComponent
|
|
277
|
+
linkComponent: LinkComponent
|
|
278
278
|
}) {
|
|
279
279
|
const { state, isMobile } = useSidebar();
|
|
280
280
|
const node = renderLogoForState({
|
|
@@ -338,6 +338,7 @@ function WorkspaceLayout({
|
|
|
338
338
|
accountMenuItems,
|
|
339
339
|
hideBreadcrumbs
|
|
340
340
|
}) {
|
|
341
|
+
const SidebarLinkComp = sidebarConfig.linkComponent;
|
|
341
342
|
const hideFooter = footerConfig?.hidden ?? false;
|
|
342
343
|
const darkMode = colorTheme === "dark";
|
|
343
344
|
const contentHeight = hideFooter ? "calc(100vh - var(--espd-header-height) - var(--espd-hidden-footer-height))" : "calc(100vh - var(--espd-header-height) - var(--espd-footer-height))";
|
|
@@ -349,7 +350,7 @@ function WorkspaceLayout({
|
|
|
349
350
|
const defaultMobileLogo = logoAssets ? /* @__PURE__ */ jsx(AppLogo, { logo: logoAssets, darkMode, minimal: true, width: 24 }) : appName ? /* @__PURE__ */ jsx(AppLogo, { name: appName, darkMode, minimal: true, width: 24 }) : null;
|
|
350
351
|
const mobileLogoNode = logoMobile ?? defaultMobileLogo;
|
|
351
352
|
const mobileLogo = mobileLogoNode && sidebarConfig.indexPath ? /* @__PURE__ */ jsx(
|
|
352
|
-
|
|
353
|
+
SidebarLinkComp,
|
|
353
354
|
{
|
|
354
355
|
to: sidebarConfig.indexPath,
|
|
355
356
|
className: "no-underline",
|
|
@@ -360,7 +361,7 @@ function WorkspaceLayout({
|
|
|
360
361
|
WorkspaceBreadcrumbs,
|
|
361
362
|
{
|
|
362
363
|
items: breadcrumbItems,
|
|
363
|
-
|
|
364
|
+
linkComponent: SidebarLinkComp,
|
|
364
365
|
collapseOnMobile: headerConfig?.collapseBreadcrumbsOnMobile ?? false
|
|
365
366
|
}
|
|
366
367
|
) : null;
|
|
@@ -414,12 +415,12 @@ function WorkspaceLayout({
|
|
|
414
415
|
appName,
|
|
415
416
|
darkMode,
|
|
416
417
|
indexPath: sidebarConfig.indexPath,
|
|
417
|
-
|
|
418
|
+
linkComponent: SidebarLinkComp
|
|
418
419
|
}
|
|
419
420
|
),
|
|
420
421
|
headerHeight: "var(--espd-header-height)",
|
|
421
422
|
footer: sidebarFooter,
|
|
422
|
-
|
|
423
|
+
linkComponent: SidebarLinkComp,
|
|
423
424
|
collapsible: sidebarConfig.allowCollapsible ? "icon" : "none",
|
|
424
425
|
variant: sidebarConfig.variant,
|
|
425
426
|
focusActiveGroup: sidebarConfig.focusActiveGroup
|
|
@@ -463,27 +464,38 @@ function EntryLayout({
|
|
|
463
464
|
heading,
|
|
464
465
|
darkMode,
|
|
465
466
|
logo,
|
|
466
|
-
logoAssets
|
|
467
|
+
logoAssets,
|
|
468
|
+
customRightPanel,
|
|
469
|
+
disableBackgroundImage,
|
|
470
|
+
hideLogo,
|
|
471
|
+
hideFooter,
|
|
472
|
+
hideRightPanel
|
|
467
473
|
}) {
|
|
468
|
-
const bgImage = backgroundImageUrl ?? entry_layout_bg_default;
|
|
474
|
+
const bgImage = backgroundImageUrl ?? (disableBackgroundImage ? void 0 : entry_layout_bg_default);
|
|
469
475
|
const resolvedLogo = logo !== void 0 ? logo : logoAssets ? /* @__PURE__ */ jsx(AppLogo, { logo: logoAssets, darkMode, width: 256 }) : appName ? /* @__PURE__ */ jsx(AppLogo, { name: appName, darkMode, width: 256 }) : null;
|
|
470
|
-
return /* @__PURE__ */ jsxs(
|
|
471
|
-
|
|
472
|
-
|
|
473
|
-
|
|
474
|
-
|
|
475
|
-
/* @__PURE__ */ jsx("div", { className: "
|
|
476
|
-
|
|
477
|
-
|
|
478
|
-
|
|
479
|
-
|
|
480
|
-
|
|
481
|
-
|
|
482
|
-
|
|
483
|
-
|
|
484
|
-
|
|
485
|
-
|
|
486
|
-
|
|
476
|
+
return /* @__PURE__ */ jsxs(
|
|
477
|
+
"div",
|
|
478
|
+
{
|
|
479
|
+
className: `flex h-screen overflow-hidden w-full${hideRightPanel ? " justify-center" : ""}`,
|
|
480
|
+
children: [
|
|
481
|
+
/* @__PURE__ */ jsx("div", { className: "w-[40%] flex flex-col overflow-y-auto bg-gradient-to-b from-background to-transparent max-xl:w-full max-xl:py-8 max-xl:px-5", children: /* @__PURE__ */ jsxs("div", { className: "main-content-wrapper h-full flex flex-col justify-center", children: [
|
|
482
|
+
!hideLogo && resolvedLogo !== null && /* @__PURE__ */ jsx("div", { className: "sticky top-0 z-10 shrink-0 flex justify-center py-6 bg-background/75 backdrop-blur-xs w-full logo-wrapper", children: resolvedLogo }),
|
|
483
|
+
/* @__PURE__ */ jsxs("div", { children: [
|
|
484
|
+
/* @__PURE__ */ jsx("div", { className: "flex-1 flex flex-col items-center justify-center main-content", children }),
|
|
485
|
+
!hideFooter && /* @__PURE__ */ jsx("div", { className: "shrink-0 text-center text-xs text-muted-foreground footer-card-wrapper py-10", children: /* @__PURE__ */ jsx(FooterCard, {}) })
|
|
486
|
+
] })
|
|
487
|
+
] }) }),
|
|
488
|
+
!hideRightPanel && /* @__PURE__ */ jsx(
|
|
489
|
+
"div",
|
|
490
|
+
{
|
|
491
|
+
className: "w-[60%] relative bg-cover bg-center bg-no-repeat max-xl:hidden",
|
|
492
|
+
style: bgImage ? { backgroundImage: `url(${bgImage})` } : void 0,
|
|
493
|
+
children: customRightPanel ? /* @__PURE__ */ jsx("div", { className: "absolute inset-0", children: customRightPanel }) : heading ? /* @__PURE__ */ jsx("div", { className: "absolute inset-0 bg-gradient-to-b from-black/30 to-transparent flex items-center justify-center p-12", children: /* @__PURE__ */ jsx("h1", { className: "text-white text-[3.25rem] leading-[1.25] text-center max-w-full px-6 font-bold tracking-tight", children: typeof heading === "string" ? parseTextMarkup(heading) : heading }) }) : null
|
|
494
|
+
}
|
|
495
|
+
)
|
|
496
|
+
]
|
|
497
|
+
}
|
|
498
|
+
);
|
|
487
499
|
}
|
|
488
500
|
|
|
489
501
|
export { AccountMenu, EntryLayout, Footer, Header, WorkspaceLayout };
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import { ProgressBar } from './chunk-
|
|
2
|
-
import { Card, CardContent } from './chunk-
|
|
3
|
-
import { Tooltip2 } from './chunk-
|
|
1
|
+
import { ProgressBar } from './chunk-O5BFYRPY.js';
|
|
2
|
+
import { Card, CardContent } from './chunk-KCMVLNM5.js';
|
|
3
|
+
import { Tooltip2 } from './chunk-UHRNPXO5.js';
|
|
4
4
|
import { jsx, jsxs } from 'react/jsx-runtime';
|
|
5
5
|
|
|
6
6
|
function CopyrightCard({
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { Avatar, Menu, List, Button, Link } from './chunk-
|
|
1
|
+
import { Avatar, Menu, List, Button, Link } from './chunk-UHRNPXO5.js';
|
|
2
2
|
import { cn } from './chunk-VU4CZ76T.js';
|
|
3
3
|
import { motion, AnimatePresence } from 'framer-motion';
|
|
4
4
|
import { jsx, jsxs } from 'react/jsx-runtime';
|
|
@@ -22,13 +22,16 @@ var insights_with_text_dm_default = 'data:image/svg+xml,<?xml version="1.0" enco
|
|
|
22
22
|
var insights_no_text_default = 'data:image/svg+xml,<?xml version="1.0" encoding="UTF-8"?>%0A<svg id="insights-no-text" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 125.22 125.22">%0A <defs>%0A <style>%0A .cls-1 {%0A fill: %23fff;%0A }%0A%0A .cls-2 {%0A fill: %23e7352c;%0A }%0A </style>%0A </defs>%0A <path class="cls-2" d="M62.67,99.88c-20.55,0-37.22-16.65-37.22-37.2,0-20.55,16.65-37.22,37.2-37.22,20.55,0,37.22,16.65,37.22,37.2,0,8.21-2.71,16.19-7.72,22.7l18,18c22.51-26.25,19.47-65.78-6.78-88.28C77.11-7.43,37.58-4.39,15.08,21.86-7.43,48.11-4.39,87.64,21.86,110.14c23.32,19.99,57.7,20.11,81.16.29l-18-18c-6.44,4.85-14.29,7.47-22.36,7.45Z"/>%0A <circle cx="62.67" cy="62.98" r="26.94"/>%0A <circle class="cls-1" cx="48.39" cy="60.72" r="6.78"/>%0A</svg>';
|
|
23
23
|
|
|
24
24
|
// src/assets/logos/launchpad/launchpad-with-text.svg
|
|
25
|
-
var launchpad_with_text_default = 'data:image/svg+xml,<?xml version="1.0" encoding="UTF-8"
|
|
25
|
+
var launchpad_with_text_default = 'data:image/svg+xml,<?xml version="1.0" encoding="UTF-8"?>%0A<svg id="launchpad-with-text" xmlns="http://www.w3.org/2000/svg" width="319.42" height="46.05" version="1.1" viewBox="0 0 319.42 46.05">%0A <!-- Generator: Adobe Illustrator 30.2.0, SVG Export Plug-In . SVG Version: 2.1.1 Build 105) -->%0A <defs>%0A <style>%0A .st0 {%0A fill: %232b2b2b;%0A }%0A%0A .st1 {%0A fill: %23e7352c;%0A }%0A </style>%0A </defs>%0A <g id="esp">%0A <path class="st1" d="M71.37,10.11v4.79h-13.68v5.55h12.55v4.43h-12.55v6.35h13.97v4.79h-19.66V10.11h19.37Z"/>%0A <path class="st1" d="M79.86,29.63c.31.6.73,1.09,1.25,1.47s1.13.65,1.83.83,1.43.27,2.18.27c.51,0,1.05-.04,1.63-.13.58-.08,1.12-.25,1.63-.49.51-.24.93-.57,1.27-1,.34-.42.51-.96.51-1.61,0-.7-.22-1.27-.67-1.71s-1.03-.8-1.76-1.09-1.55-.54-2.47-.76-1.85-.46-2.79-.73c-.97-.24-1.91-.54-2.83-.89-.92-.35-1.74-.8-2.47-1.36-.73-.56-1.31-1.25-1.76-2.09-.45-.83-.67-1.84-.67-3.03,0-1.33.28-2.49.85-3.46.57-.98,1.31-1.8,2.23-2.45s1.96-1.14,3.12-1.45c1.16-.31,2.32-.47,3.48-.47,1.35,0,2.65.15,3.9.45s2.35.79,3.32,1.47,1.74,1.54,2.3,2.59c.57,1.05.85,2.33.85,3.83h-5.51c-.05-.77-.21-1.41-.49-1.92s-.65-.91-1.11-1.2-.99-.5-1.58-.62-1.24-.18-1.94-.18c-.46,0-.92.05-1.38.14-.46.1-.88.27-1.25.51-.38.24-.68.54-.92.91-.24.36-.36.82-.36,1.38,0,.51.1.92.29,1.23s.57.6,1.14.87,1.35.53,2.36.8c1,.27,2.32.6,3.94,1.02.48.1,1.15.27,2.01.53.86.25,1.71.66,2.56,1.22s1.58,1.3,2.19,2.23c.62.93.93,2.12.93,3.57,0,1.19-.23,2.29-.69,3.3-.46,1.02-1.14,1.89-2.05,2.63s-2.03,1.31-3.37,1.72-2.9.62-4.66.62c-1.43,0-2.81-.18-4.15-.53s-2.53-.9-3.56-1.65-1.84-1.71-2.45-2.87c-.6-1.16-.89-2.54-.87-4.14h5.51c0,.87.16,1.61.47,2.21v.03s.01,0,0,0h.01Z"/>%0A <path class="st1" d="M110.73,10.11c1.62,0,3,.24,4.14.71,1.14.47,2.06,1.09,2.78,1.87.71.77,1.23,1.66,1.56,2.65.33.99.49,2.02.49,3.08s-.16,2.06-.49,3.07c-.33,1-.85,1.89-1.56,2.67-.71.77-1.64,1.4-2.78,1.87-1.14.47-2.52.71-4.14.71h-5.99v9.29h-5.7V10.11s11.69,0,11.69,0ZM109.17,22.3c.65,0,1.28-.05,1.89-.15.6-.1,1.14-.28,1.6-.56.46-.28.83-.67,1.11-1.18s.42-1.17.42-2-.14-1.49-.42-2-.65-.9-1.11-1.18-.99-.47-1.6-.56c-.61-.1-1.23-.14-1.89-.14h-4.43v7.76h4.43Z"/>%0A </g>%0A <g id="launchpad">%0A <path class="st0" d="M122.92,36.13V9.92h3.47v23.11h12.91v3.09h-16.37Z"/>%0A <path class="st0" d="M137.8,36.13l10.06-26.21h3.74l10.73,26.21h-3.95l-3.06-7.94h-10.96l-2.88,7.94h-3.68ZM145.37,25.37h8.88l-2.74-7.26c-.83-2.2-1.45-4.02-1.86-5.43-.33,1.68-.8,3.35-1.41,5.01l-2.88,7.69Z"/>%0A <path class="st0" d="M179.55,9.92h3.47v15.14c0,2.63-.3,4.73-.89,6.27s-1.67,2.81-3.23,3.78-3.6,1.46-6.12,1.46-4.46-.42-6.02-1.27-2.68-2.07-3.34-3.67-1-3.79-1-6.57v-15.14h3.47v15.12c0,2.28.21,3.95.63,5.03s1.15,1.91,2.18,2.49,2.29.88,3.78.88c2.55,0,4.37-.58,5.45-1.73s1.63-3.38,1.63-6.67v-15.12Z"/>%0A <path class="st0" d="M186.01,36.13V9.92h3.56l13.76,20.58V9.92h3.32v26.21h-3.56l-13.76-20.59v20.59h-3.32Z"/>%0A <path class="st0" d="M228.44,26.94l3.47.88c-.73,2.85-2.03,5.02-3.92,6.52s-4.2,2.24-6.93,2.24-5.12-.58-6.89-1.73-3.12-2.82-4.04-5-1.39-4.52-1.39-7.03c0-2.73.52-5.11,1.56-7.14s2.53-3.58,4.45-4.63,4.04-1.58,6.35-1.58c2.62,0,4.83.67,6.61,2s3.03,3.21,3.74,5.63l-3.41.8c-.61-1.91-1.49-3.3-2.65-4.17s-2.61-1.3-4.36-1.3c-2.01,0-3.7.48-5.05,1.45s-2.3,2.26-2.85,3.89-.82,3.3-.82,5.03c0,2.23.32,4.17.97,5.84s1.66,2.9,3.03,3.73,2.85,1.23,4.45,1.23c1.94,0,3.59-.56,4.93-1.68s2.26-2.78,2.74-4.99Z"/>%0A <path class="st0" d="M233.54,36.13V9.92h3.47v10.76h13.62v-10.76h3.47v26.21h-3.47v-12.35h-13.62v12.35h-3.47Z"/>%0A <path class="st0" d="M257.13,36.13V9.92h9.89c1.74,0,3.07.08,3.99.25,1.29.21,2.37.62,3.24,1.22s1.57,1.44,2.1,2.53.8,2.28.8,3.58c0,2.23-.71,4.11-2.13,5.66s-3.98,2.31-7.69,2.31h-6.72v10.65h-3.47ZM260.59,22.38h6.77c2.24,0,3.83-.42,4.77-1.25s1.41-2.01,1.41-3.52c0-1.1-.28-2.03-.83-2.82s-1.28-1.3-2.19-1.55c-.58-.15-1.66-.23-3.24-.23h-6.7v9.37Z"/>%0A <path class="st0" d="M273.2,36.13l10.06-26.21h3.74l10.73,26.21h-3.95l-3.06-7.94h-10.96l-2.88,7.94h-3.68ZM280.77,25.37h8.88l-2.74-7.26c-.83-2.2-1.45-4.02-1.86-5.43-.33,1.68-.8,3.35-1.41,5.01l-2.88,7.69Z"/>%0A <path class="st0" d="M297.75,36.13V9.92h9.03c2.04,0,3.59.13,4.67.38,1.5.35,2.78.97,3.84,1.88,1.38,1.17,2.42,2.66,3.1,4.48s1.03,3.89,1.03,6.23c0,1.99-.23,3.75-.7,5.29s-1.06,2.81-1.79,3.82-1.52,1.8-2.39,2.38-1.91,1.02-3.13,1.31-2.62.45-4.21.45h-9.46ZM301.22,33.04h5.6c1.73,0,3.08-.16,4.07-.48s1.77-.77,2.35-1.36c.82-.82,1.46-1.93,1.92-3.32s.69-3.07.69-5.05c0-2.74-.45-4.85-1.35-6.32s-1.99-2.46-3.28-2.96c-.93-.36-2.43-.54-4.49-.54h-5.51v20.02Z"/>%0A </g>%0A <g id="rocket-logo">%0A <g id="rocket">%0A <path class="st0" d="M40.75,4.38c-.11-.55-.49-.99-1.03-1.17-.16-.05-14.25-4.4-25.93,10.38-.11-.01-.23-.03-.36-.01l-4.88.44c-1.96.16-3.68,1.37-4.48,3.15l-3.2,6.97c-.22.48-.18,1.04.12,1.49.29.43.75.67,1.26.67h.07l4.38-.19c-.07.16-.14.33-.21.49-.23.56-.1,1.22.34,1.65l8.64,8.64c.29.29.69.45,1.08.45.16,0,.33-.03.48-.08.03-.01.26-.08.67-.25l.11,4.46c.01.53.3,1.01.77,1.29.23.14.51.21.77.21.25,0,.49-.05.73-.18l6.75-3.65c1.73-.93,2.83-2.73,2.87-4.69l.1-4.24c6.75-5.27,13.28-13.69,10.96-25.84ZM4.68,23.14l2.15-4.7c.36-.78,1.11-1.32,1.97-1.4l2.66-.23c-1.18,1.82-2.33,3.88-3.41,6.19l-3.37.15ZM16.94,34.06l-7.23-7.23c.6-1.44,1.22-2.78,1.87-4.05l9.31,9.49c-1.7.86-3.11,1.45-3.95,1.78ZM26.61,34.4c-.01.86-.51,1.66-1.26,2.07l-4.54,2.45-.07-3.2c1.66-.78,3.73-1.88,5.92-3.31l-.05,1.97ZM28.58,27.33c-1.65,1.34-3.35,2.47-4.94,3.41l-10.56-10.77C22.52,3.94,34.57,5.19,37.89,5.89c1.25,8.2-1.88,15.4-9.31,21.44Z"/>%0A <path class="st0" d="M11.34,36.93l-3.94,3.92c-.6.6-.6,1.56,0,2.17.3.3.69.45,1.08.45s.78-.15,1.08-.45l3.94-3.94c.6-.6.6-1.56,0-2.17s-1.58-.59-2.17.01Z"/>%0A <path class="st0" d="M9.98,33.97c-.6-.6-1.56-.6-2.17,0l-5.97,5.97c-.6.6-.6,1.56,0,2.17.3.3.69.45,1.08.45s.78-.15,1.08-.45l5.97-5.97c.59-.6.59-1.58,0-2.17Z"/>%0A <path class="st0" d="M2.61,36.57l3.94-3.94c.6-.6.6-1.56,0-2.17-.6-.6-1.56-.6-2.17,0l-3.92,3.95c-.6.6-.6,1.56,0,2.17.3.3.69.45,1.08.45.38-.01.77-.16,1.07-.47Z"/>%0A </g>%0A <g id="espressif-logo">%0A <path class="st1" d="M23.22,21.47c0,.48-.42.9-.9.9s-.9-.42-.9-.9.42-.9.9-.9h0c.54.06.9.42.9.9"/>%0A <path class="st1" d="M30.95,20.57c-.6-4.02-3.78-7.2-7.8-7.8-.42.24-.9.54-1.26.96v.84c4.02,0,7.32,3.24,7.32,7.32h.84c.36-.42.66-.84.9-1.32"/>%0A <path class="st1" d="M31.67,17.87c0-3.18-2.58-5.76-5.76-5.76h-.06c-.18,0-.42,0-.6.06l-.12.36c2.82,1.02,5.1,3.24,6.06,6.06l.36-.12c.06-.18.06-.42.12-.6"/>%0A <path class="st1" d="M25.92,24.71c-3.78,0-6.84-3.06-6.84-6.84,0-1.8.72-3.54,1.98-4.86l.42.36c-2.46,2.46-2.52,6.48-.06,8.94l.06.06c2.46,2.46,6.48,2.52,8.94.06l.06-.06.36.36c-1.32,1.32-3.06,2.04-4.92,1.98"/>%0A <path class="st1" d="M25.86,22.25c.12-1.38-.48-2.7-1.56-3.54-.6-.48-1.26-.72-1.98-.84-.24,0-.36-.18-.36-.36s.18-.36.36-.3h0c2.58.24,4.44,2.58,4.2,5.16,0,.3-.06.54-.18.84l1.02.3c.3-.06.6-.18.9-.36.06-.42.12-.84.12-1.2,0-3.24-2.4-6-5.58-6.54-.36-.06-.72-.06-1.08,0-.36.06-.72.3-1.02.66-.84.96-.72,2.34.24,3.18.24.18.48.36.78.42.18.06.36.06.54.12h0c1.02.12,1.74,1.02,1.74,2.04,0,.42-.12.78-.36,1.14l.72.48c.36.12.72.18,1.08.18.24-.48.36-.9.42-1.38"/>%0A </g>%0A </g>%0A</svg>';
|
|
26
26
|
|
|
27
27
|
// src/assets/logos/launchpad/launchpad-with-text-dm.svg
|
|
28
|
-
var launchpad_with_text_dm_default = 'data:image/svg+xml,<?xml version="1.0" encoding="UTF-8"?><svg id="launchpad-with-text" xmlns="http://www.w3.org/2000/svg" width="
|
|
28
|
+
var launchpad_with_text_dm_default = 'data:image/svg+xml,<?xml version="1.0" encoding="UTF-8"?><svg id="launchpad-with-text" xmlns="http://www.w3.org/2000/svg" width="319.42" height="40.89" viewBox="0 0 319.42 40.89"><g id="esp"><path d="M71.37,7.53v4.79h-13.68v5.55h12.55v4.43h-12.55v6.35h13.97v4.79h-19.66V7.53h19.37Z" style="fill:%23e7352c;"/><path d="M79.86,27.05c.31.6.73,1.09,1.25,1.47s1.13.65,1.83.83,1.43.27,2.18.27c.51,0,1.05-.04,1.63-.13.58-.08,1.12-.25,1.63-.49.51-.24.93-.57,1.27-1,.34-.42.51-.96.51-1.61,0-.7-.22-1.27-.67-1.71s-1.03-.8-1.76-1.09-1.55-.54-2.47-.76-1.85-.46-2.79-.73c-.97-.24-1.91-.54-2.83-.89-.92-.35-1.74-.8-2.47-1.36-.73-.56-1.31-1.25-1.76-2.09-.45-.83-.67-1.84-.67-3.03,0-1.33.28-2.49.85-3.46.57-.98,1.31-1.8,2.23-2.45s1.96-1.14,3.12-1.45c1.16-.31,2.32-.47,3.48-.47,1.35,0,2.65.15,3.9.45s2.35.79,3.32,1.47,1.74,1.54,2.3,2.59c.57,1.05.85,2.33.85,3.83h-5.51c-.05-.77-.21-1.41-.49-1.92s-.65-.91-1.11-1.2-.99-.5-1.58-.62-1.24-.18-1.94-.18c-.46,0-.92.05-1.38.14-.46.1-.88.27-1.25.51-.38.24-.68.54-.92.91-.24.36-.36.82-.36,1.38,0,.51.1.92.29,1.23s.57.6,1.14.87,1.35.53,2.36.8c1,.27,2.32.6,3.94,1.02.48.1,1.15.27,2.01.53.86.25,1.71.66,2.56,1.22s1.58,1.3,2.19,2.23c.62.93.93,2.12.93,3.57,0,1.19-.23,2.29-.69,3.3-.46,1.02-1.14,1.89-2.05,2.63s-2.03,1.31-3.37,1.72-2.9.62-4.66.62c-1.43,0-2.81-.18-4.15-.53s-2.53-.9-3.56-1.65-1.84-1.71-2.45-2.87c-.6-1.16-.89-2.54-.87-4.14h5.51c0,.87.16,1.61.47,2.21v.03s.01,0,0,0h.01Z" style="fill:%23e7352c;"/><path d="M110.73,7.53c1.62,0,3,.24,4.14.71,1.14.47,2.06,1.09,2.78,1.87.71.77,1.23,1.66,1.56,2.65.33.99.49,2.02.49,3.08s-.16,2.06-.49,3.07c-.33,1-.85,1.89-1.56,2.67-.71.77-1.64,1.4-2.78,1.87-1.14.47-2.52.71-4.14.71h-5.99v9.29h-5.7V7.53s11.69,0,11.69,0ZM109.17,19.72c.65,0,1.28-.05,1.89-.15.6-.1,1.14-.28,1.6-.56.46-.28.83-.67,1.11-1.18s.42-1.17.42-2-.14-1.49-.42-2-.65-.9-1.11-1.18-.99-.47-1.6-.56c-.61-.1-1.23-.14-1.89-.14h-4.43v7.76h4.43Z" style="fill:%23e7352c;"/></g><g id="launchpad"><path d="M122.92,33.55V7.34h3.47v23.11h12.91v3.09h-16.37Z" style="fill:%23fff;"/><path d="M137.8,33.55l10.06-26.21h3.74l10.73,26.21h-3.95l-3.06-7.94h-10.96l-2.88,7.94h-3.68ZM145.37,22.79h8.88l-2.74-7.26c-.83-2.2-1.45-4.02-1.86-5.43-.33,1.68-.8,3.35-1.41,5.01l-2.88,7.69Z" style="fill:%23fff;"/><path d="M179.55,7.34h3.47v15.14c0,2.63-.3,4.73-.89,6.27s-1.67,2.81-3.23,3.78-3.6,1.46-6.12,1.46-4.46-.42-6.02-1.27-2.68-2.07-3.34-3.67-1-3.79-1-6.57V7.34h3.47v15.12c0,2.28.21,3.95.63,5.03s1.15,1.91,2.18,2.49,2.29.88,3.78.88c2.55,0,4.37-.58,5.45-1.73s1.63-3.38,1.63-6.67V7.34Z" style="fill:%23fff;"/><path d="M186.01,33.55V7.34h3.56l13.76,20.58V7.34h3.32v26.21h-3.56l-13.76-20.59v20.59h-3.32Z" style="fill:%23fff;"/><path d="M228.44,24.36l3.47.88c-.73,2.85-2.03,5.02-3.92,6.52s-4.2,2.24-6.93,2.24-5.12-.58-6.89-1.73-3.12-2.82-4.04-5-1.39-4.52-1.39-7.03c0-2.73.52-5.11,1.56-7.14s2.53-3.58,4.45-4.63,4.04-1.58,6.35-1.58c2.62,0,4.83.67,6.61,2s3.03,3.21,3.74,5.63l-3.41.8c-.61-1.91-1.49-3.3-2.65-4.17s-2.61-1.3-4.36-1.3c-2.01,0-3.7.48-5.05,1.45s-2.3,2.26-2.85,3.89-.82,3.3-.82,5.03c0,2.23.32,4.17.97,5.84s1.66,2.9,3.03,3.73,2.85,1.23,4.45,1.23c1.94,0,3.59-.56,4.93-1.68s2.26-2.78,2.74-4.99Z" style="fill:%23fff;"/><path d="M233.54,33.55V7.34h3.47v10.76h13.62V7.34h3.47v26.21h-3.47v-12.35h-13.62v12.35h-3.47Z" style="fill:%23fff;"/><path d="M257.13,33.55V7.34h9.89c1.74,0,3.07.08,3.99.25,1.29.21,2.37.62,3.24,1.22s1.57,1.44,2.1,2.53.8,2.28.8,3.58c0,2.23-.71,4.11-2.13,5.66s-3.98,2.31-7.69,2.31h-6.72v10.65h-3.47ZM260.59,19.8h6.77c2.24,0,3.83-.42,4.77-1.25s1.41-2.01,1.41-3.52c0-1.1-.28-2.03-.83-2.82s-1.28-1.3-2.19-1.55c-.58-.15-1.66-.23-3.24-.23h-6.7v9.37Z" style="fill:%23fff;"/><path d="M273.2,33.55l10.06-26.21h3.74l10.73,26.21h-3.95l-3.06-7.94h-10.96l-2.88,7.94h-3.68ZM280.77,22.79h8.88l-2.74-7.26c-.83-2.2-1.45-4.02-1.86-5.43-.33,1.68-.8,3.35-1.41,5.01l-2.88,7.69Z" style="fill:%23fff;"/><path d="M297.75,33.55V7.34h9.03c2.04,0,3.59.13,4.67.38,1.5.35,2.78.97,3.84,1.88,1.38,1.17,2.42,2.66,3.1,4.48s1.03,3.89,1.03,6.23c0,1.99-.23,3.75-.7,5.29s-1.06,2.81-1.79,3.82-1.52,1.8-2.39,2.38-1.91,1.02-3.13,1.31-2.62.45-4.21.45h-9.46ZM301.22,30.46h5.6c1.73,0,3.08-.16,4.07-.48s1.77-.77,2.35-1.36c.82-.82,1.46-1.93,1.92-3.32s.69-3.07.69-5.05c0-2.74-.45-4.85-1.35-6.32s-1.99-2.46-3.28-2.96c-.93-.36-2.43-.54-4.49-.54h-5.51v20.02Z" style="fill:%23fff;"/></g><g id="rocket-logo"><g id="rocket"><path d="M40.75,1.8c-.11-.55-.49-.99-1.03-1.17-.16-.05-14.25-4.4-25.93,10.38-.11-.01-.23-.03-.36-.01l-4.88.44c-1.96.16-3.68,1.37-4.48,3.15l-3.2,6.97c-.22.48-.18,1.04.12,1.49.29.43.75.67,1.26.67h.07l4.38-.19c-.07.16-.14.33-.21.49-.23.56-.1,1.22.34,1.65l8.64,8.64c.29.29.69.45,1.08.45.16,0,.33-.03.48-.08.03-.01.26-.08.67-.25l.11,4.46c.01.53.3,1.01.77,1.29.23.14.51.21.77.21.25,0,.49-.05.73-.18l6.75-3.65c1.73-.93,2.83-2.73,2.87-4.69l.1-4.24c6.75-5.27,13.28-13.69,10.96-25.84ZM4.68,20.57l2.15-4.7c.36-.78,1.11-1.32,1.97-1.4l2.66-.23c-1.18,1.82-2.33,3.88-3.41,6.19l-3.37.15ZM16.94,31.48l-7.23-7.23c.6-1.44,1.22-2.78,1.87-4.05l9.31,9.49c-1.7.86-3.11,1.45-3.95,1.78ZM26.61,31.82c-.01.86-.51,1.66-1.26,2.07l-4.54,2.45-.07-3.2c1.66-.78,3.73-1.88,5.92-3.31l-.05,1.97ZM28.58,24.75c-1.65,1.34-3.35,2.47-4.94,3.41l-10.56-10.77C22.52,1.36,34.57,2.61,37.89,3.31c1.25,8.2-1.88,15.4-9.31,21.44Z" style="fill:%23fff;"/><path d="M11.34,34.35l-3.94,3.92c-.6.6-.6,1.56,0,2.17.3.3.69.45,1.08.45s.78-.15,1.08-.45l3.94-3.94c.6-.6.6-1.56,0-2.17s-1.58-.59-2.17.01Z" style="fill:%23fff;"/><path d="M9.98,31.39c-.6-.6-1.56-.6-2.17,0l-5.97,5.97c-.6.6-.6,1.56,0,2.17.3.3.69.45,1.08.45s.78-.15,1.08-.45l5.97-5.97c.59-.6.59-1.58,0-2.17Z" style="fill:%23fff;"/><path d="M2.61,33.99l3.94-3.94c.6-.6.6-1.56,0-2.17-.6-.6-1.56-.6-2.17,0l-3.92,3.95c-.6.6-.6,1.56,0,2.17.3.3.69.45,1.08.45.38-.01.77-.16,1.07-.47Z" style="fill:%23fff;"/></g><g id="espressif-logo"><path d="M23.22,18.89c0,.48-.42.9-.9.9s-.9-.42-.9-.9.42-.9.9-.9h0c.54.06.9.42.9.9" style="fill:%23e7352c;"/><path d="M30.95,17.99c-.6-4.02-3.78-7.2-7.8-7.8-.42.24-.9.54-1.26.96v.84c4.02,0,7.32,3.24,7.32,7.32h.84c.36-.42.66-.84.9-1.32" style="fill:%23e7352c;"/><path d="M31.67,15.29c0-3.18-2.58-5.76-5.76-5.76h-.06c-.18,0-.42,0-.6.06l-.12.36c2.82,1.02,5.1,3.24,6.06,6.06l.36-.12c.06-.18.06-.42.12-.6" style="fill:%23e7352c;"/><path d="M25.92,22.13c-3.78,0-6.84-3.06-6.84-6.84,0-1.8.72-3.54,1.98-4.86l.42.36c-2.46,2.46-2.52,6.48-.06,8.94l.06.06c2.46,2.46,6.48,2.52,8.94.06l.06-.06.36.36c-1.32,1.32-3.06,2.04-4.92,1.98" style="fill:%23e7352c;"/><path d="M25.86,19.67c.12-1.38-.48-2.7-1.56-3.54-.6-.48-1.26-.72-1.98-.84-.24,0-.36-.18-.36-.36s.18-.36.36-.3h0c2.58.24,4.44,2.58,4.2,5.16,0,.3-.06.54-.18.84l1.02.3c.3-.06.6-.18.9-.36.06-.42.12-.84.12-1.2,0-3.24-2.4-6-5.58-6.54-.36-.06-.72-.06-1.08,0-.36.06-.72.3-1.02.66-.84.96-.72,2.34.24,3.18.24.18.48.36.78.42.18.06.36.06.54.12h0c1.02.12,1.74,1.02,1.74,2.04,0,.42-.12.78-.36,1.14l.72.48c.36.12.72.18,1.08.18.24-.48.36-.9.42-1.38" style="fill:%23e7352c;"/></g></g></svg>';
|
|
29
29
|
|
|
30
30
|
// src/assets/logos/launchpad/launchpad-no-text.svg
|
|
31
|
-
var launchpad_no_text_default = 'data:image/svg+xml,<?xml version="1.0" encoding="UTF-8"?><svg id="
|
|
31
|
+
var launchpad_no_text_default = 'data:image/svg+xml,<?xml version="1.0" encoding="UTF-8"?><svg id="launchpad-with-text" xmlns="http://www.w3.org/2000/svg" width="41.22" height="40.89" viewBox="0 0 41.22 40.89"><g id="rocket-logo"><g id="rocket"><path d="M40.75,1.8c-.11-.55-.49-.99-1.03-1.17-.16-.05-14.25-4.4-25.93,10.38-.11-.01-.23-.03-.36-.01l-4.88.44c-1.96.16-3.68,1.37-4.48,3.15l-3.2,6.97c-.22.48-.18,1.04.12,1.49.29.43.75.67,1.26.67h.07l4.38-.19c-.07.16-.14.33-.21.49-.23.56-.1,1.22.34,1.65l8.64,8.64c.29.29.69.45,1.08.45.16,0,.33-.03.48-.08.03-.01.26-.08.67-.25l.11,4.46c.01.53.3,1.01.77,1.29.23.14.51.21.77.21.25,0,.49-.05.73-.18l6.75-3.65c1.73-.93,2.83-2.73,2.87-4.69l.1-4.24c6.75-5.27,13.28-13.69,10.96-25.84ZM4.68,20.57l2.15-4.7c.36-.78,1.11-1.32,1.97-1.4l2.66-.23c-1.18,1.82-2.33,3.88-3.41,6.19l-3.37.15ZM16.94,31.48l-7.23-7.23c.6-1.44,1.22-2.78,1.87-4.05l9.31,9.49c-1.7.86-3.11,1.45-3.95,1.78ZM26.61,31.82c-.01.86-.51,1.66-1.26,2.07l-4.54,2.45-.07-3.2c1.66-.78,3.73-1.88,5.92-3.31l-.05,1.97ZM28.58,24.75c-1.65,1.34-3.35,2.47-4.94,3.41l-10.56-10.77C22.52,1.36,34.57,2.61,37.89,3.31c1.25,8.2-1.88,15.4-9.31,21.44Z" style="fill:%232b2b2b;"/><path d="M11.34,34.35l-3.94,3.92c-.6.6-.6,1.56,0,2.17.3.3.69.45,1.08.45s.78-.15,1.08-.45l3.94-3.94c.6-.6.6-1.56,0-2.17s-1.58-.59-2.17.01Z" style="fill:%232b2b2b;"/><path d="M9.98,31.39c-.6-.6-1.56-.6-2.17,0l-5.97,5.97c-.6.6-.6,1.56,0,2.17.3.3.69.45,1.08.45s.78-.15,1.08-.45l5.97-5.97c.59-.6.59-1.58,0-2.17Z" style="fill:%232b2b2b;"/><path d="M2.61,33.99l3.94-3.94c.6-.6.6-1.56,0-2.17-.6-.6-1.56-.6-2.17,0l-3.92,3.95c-.6.6-.6,1.56,0,2.17.3.3.69.45,1.08.45.38-.01.77-.16,1.07-.47Z" style="fill:%232b2b2b;"/></g><g id="espressif-logo"><path d="M23.22,18.89c0,.48-.42.9-.9.9s-.9-.42-.9-.9.42-.9.9-.9h0c.54.06.9.42.9.9" style="fill:%23e7352c;"/><path d="M30.95,17.99c-.6-4.02-3.78-7.2-7.8-7.8-.42.24-.9.54-1.26.96v.84c4.02,0,7.32,3.24,7.32,7.32h.84c.36-.42.66-.84.9-1.32" style="fill:%23e7352c;"/><path d="M31.67,15.29c0-3.18-2.58-5.76-5.76-5.76h-.06c-.18,0-.42,0-.6.06l-.12.36c2.82,1.02,5.1,3.24,6.06,6.06l.36-.12c.06-.18.06-.42.12-.6" style="fill:%23e7352c;"/><path d="M25.92,22.13c-3.78,0-6.84-3.06-6.84-6.84,0-1.8.72-3.54,1.98-4.86l.42.36c-2.46,2.46-2.52,6.48-.06,8.94l.06.06c2.46,2.46,6.48,2.52,8.94.06l.06-.06.36.36c-1.32,1.32-3.06,2.04-4.92,1.98" style="fill:%23e7352c;"/><path d="M25.86,19.67c.12-1.38-.48-2.7-1.56-3.54-.6-.48-1.26-.72-1.98-.84-.24,0-.36-.18-.36-.36s.18-.36.36-.3h0c2.58.24,4.44,2.58,4.2,5.16,0,.3-.06.54-.18.84l1.02.3c.3-.06.6-.18.9-.36.06-.42.12-.84.12-1.2,0-3.24-2.4-6-5.58-6.54-.36-.06-.72-.06-1.08,0-.36.06-.72.3-1.02.66-.84.96-.72,2.34.24,3.18.24.18.48.36.78.42.18.06.36.06.54.12h0c1.02.12,1.74,1.02,1.74,2.04,0,.42-.12.78-.36,1.14l.72.48c.36.12.72.18,1.08.18.24-.48.36-.9.42-1.38" style="fill:%23e7352c;"/></g></g></svg>';
|
|
32
|
+
|
|
33
|
+
// src/assets/logos/launchpad/launchpad-no-text-dm.svg
|
|
34
|
+
var launchpad_no_text_dm_default = 'data:image/svg+xml,<?xml version="1.0" encoding="UTF-8"?><svg id="launchpad-with-text" xmlns="http://www.w3.org/2000/svg" width="41.22" height="40.89" viewBox="0 0 41.22 40.89"><g id="rocket-logo"><g id="rocket"><path d="M40.75,1.8c-.11-.55-.49-.99-1.03-1.17-.16-.05-14.25-4.4-25.93,10.38-.11-.01-.23-.03-.36-.01l-4.88.44c-1.96.16-3.68,1.37-4.48,3.15l-3.2,6.97c-.22.48-.18,1.04.12,1.49.29.43.75.67,1.26.67h.07l4.38-.19c-.07.16-.14.33-.21.49-.23.56-.1,1.22.34,1.65l8.64,8.64c.29.29.69.45,1.08.45.16,0,.33-.03.48-.08.03-.01.26-.08.67-.25l.11,4.46c.01.53.3,1.01.77,1.29.23.14.51.21.77.21.25,0,.49-.05.73-.18l6.75-3.65c1.73-.93,2.83-2.73,2.87-4.69l.1-4.24c6.75-5.27,13.28-13.69,10.96-25.84ZM4.68,20.57l2.15-4.7c.36-.78,1.11-1.32,1.97-1.4l2.66-.23c-1.18,1.82-2.33,3.88-3.41,6.19l-3.37.15ZM16.94,31.48l-7.23-7.23c.6-1.44,1.22-2.78,1.87-4.05l9.31,9.49c-1.7.86-3.11,1.45-3.95,1.78ZM26.61,31.82c-.01.86-.51,1.66-1.26,2.07l-4.54,2.45-.07-3.2c1.66-.78,3.73-1.88,5.92-3.31l-.05,1.97ZM28.58,24.75c-1.65,1.34-3.35,2.47-4.94,3.41l-10.56-10.77C22.52,1.36,34.57,2.61,37.89,3.31c1.25,8.2-1.88,15.4-9.31,21.44Z" style="fill:%23fff;"/><path d="M11.34,34.35l-3.94,3.92c-.6.6-.6,1.56,0,2.17.3.3.69.45,1.08.45s.78-.15,1.08-.45l3.94-3.94c.6-.6.6-1.56,0-2.17s-1.58-.59-2.17.01Z" style="fill:%23fff;"/><path d="M9.98,31.39c-.6-.6-1.56-.6-2.17,0l-5.97,5.97c-.6.6-.6,1.56,0,2.17.3.3.69.45,1.08.45s.78-.15,1.08-.45l5.97-5.97c.59-.6.59-1.58,0-2.17Z" style="fill:%23fff;"/><path d="M2.61,33.99l3.94-3.94c.6-.6.6-1.56,0-2.17-.6-.6-1.56-.6-2.17,0l-3.92,3.95c-.6.6-.6,1.56,0,2.17.3.3.69.45,1.08.45.38-.01.77-.16,1.07-.47Z" style="fill:%23fff;"/></g><g id="espressif-logo"><path d="M23.22,18.89c0,.48-.42.9-.9.9s-.9-.42-.9-.9.42-.9.9-.9h0c.54.06.9.42.9.9" style="fill:%23e7352c;"/><path d="M30.95,17.99c-.6-4.02-3.78-7.2-7.8-7.8-.42.24-.9.54-1.26.96v.84c4.02,0,7.32,3.24,7.32,7.32h.84c.36-.42.66-.84.9-1.32" style="fill:%23e7352c;"/><path d="M31.67,15.29c0-3.18-2.58-5.76-5.76-5.76h-.06c-.18,0-.42,0-.6.06l-.12.36c2.82,1.02,5.1,3.24,6.06,6.06l.36-.12c.06-.18.06-.42.12-.6" style="fill:%23e7352c;"/><path d="M25.92,22.13c-3.78,0-6.84-3.06-6.84-6.84,0-1.8.72-3.54,1.98-4.86l.42.36c-2.46,2.46-2.52,6.48-.06,8.94l.06.06c2.46,2.46,6.48,2.52,8.94.06l.06-.06.36.36c-1.32,1.32-3.06,2.04-4.92,1.98" style="fill:%23e7352c;"/><path d="M25.86,19.67c.12-1.38-.48-2.7-1.56-3.54-.6-.48-1.26-.72-1.98-.84-.24,0-.36-.18-.36-.36s.18-.36.36-.3h0c2.58.24,4.44,2.58,4.2,5.16,0,.3-.06.54-.18.84l1.02.3c.3-.06.6-.18.9-.36.06-.42.12-.84.12-1.2,0-3.24-2.4-6-5.58-6.54-.36-.06-.72-.06-1.08,0-.36.06-.72.3-1.02.66-.84.96-.72,2.34.24,3.18.24.18.48.36.78.42.18.06.36.06.54.12h0c1.02.12,1.74,1.02,1.74,2.04,0,.42-.12.78-.36,1.14l.72.48c.36.12.72.18,1.08.18.24-.48.36-.9.42-1.38" style="fill:%23e7352c;"/></g></g></svg>';
|
|
32
35
|
|
|
33
36
|
// src/assets/logos/private-agents/private-agents-with-text.svg
|
|
34
37
|
var private_agents_with_text_default = 'data:image/svg+xml,<?xml version="1.0" encoding="UTF-8"?>%0A<svg id="private-agents-with-text" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 2244.36 342.3">%0A <defs>%0A <style>%0A .cls-1 {%0A fill: %23a0a19f;%0A }%0A%0A .cls-2 {%0A fill: %23e8362d;%0A }%0A%0A .cls-3 {%0A fill: %23fff;%0A }%0A%0A .cls-4 {%0A fill: %23c21818;%0A }%0A </style>%0A </defs>%0A <g>%0A <path d="M408.26,213.1v-32.6h64.4v-22.7h-64.4v-28.5h70.1v-24.6h-99.3v132.8h100.8v-24.5h-71.6v.1h0Z"/>%0A <path d="M598.96,179.9c-3.2-4.8-6.9-8.6-11.2-11.4-4.4-2.9-8.7-4.9-13.1-6.2-4.4-1.3-7.8-2.2-10.3-2.7-8.3-2.1-15-3.8-20.2-5.2-5.1-1.4-9.2-2.7-12.1-4.1-2.9-1.4-4.9-2.9-5.9-4.5s-1.5-3.7-1.5-6.3.6-5.2,1.9-7.1c1.2-1.9,2.8-3.4,4.8-4.7,1.9-1.2,4-2.1,6.4-2.6s4.7-.8,7.1-.8c3.6,0,6.9.3,9.9.9s5.7,1.7,8.1,3.2c2.4,1.5,4.2,3.5,5.7,6.1,1.4,2.6,2.3,5.9,2.5,9.9h28.3c0-7.7-1.5-14.2-4.4-19.6s-6.9-9.8-11.8-13.3c-5-3.5-10.6-6-17-7.5s-13-2.3-20-2.3-11.9.8-17.8,2.4c-6,1.6-11.3,4.1-16,7.4s-8.5,7.5-11.4,12.6c-2.9,5-4.4,10.9-4.4,17.8s1.2,11.2,3.4,15.5c2.3,4.3,5.3,7.8,9,10.7,3.7,2.9,7.9,5.2,12.7,7,4.7,1.8,9.5,3.3,14.5,4.5,4.8,1.4,9.6,2.6,14.3,3.7,4.7,1.1,8.9,2.4,12.6,3.9,3.7,1.5,6.7,3.3,9,5.6,2.3,2.2,3.4,5.1,3.4,8.7s-.9,6.1-2.6,8.3c-1.7,2.2-3.9,3.9-6.5,5.1-2.6,1.2-5.4,2.1-8.4,2.5s-5.8.7-8.4.7c-3.8,0-7.6-.5-11.2-1.4-3.6-.9-6.7-2.3-9.4-4.3-2.7-1.9-4.8-4.4-6.4-7.5-1.6-3.1-2.4-6.9-2.4-11.3h-28.3c0,8.2,1.4,15.2,4.5,21.2,3.1,5.9,7.3,10.9,12.6,14.7,5.3,3.9,11.4,6.7,18.2,8.5,6.9,1.8,14,2.7,21.3,2.7s17-1.1,23.9-3.2,12.7-5,17.3-8.8,8.1-8.3,10.5-13.5,3.5-10.9,3.5-16.9-1.6-13.5-4.7-18.3h0v-.1h0Z"/>%0A <path d="M725.06,131.6c-1.7-5.1-4.3-9.6-8-13.6s-8.4-7.2-14.2-9.6-12.9-3.6-21.2-3.6h-59.9v132.8h29.2v-47.6h30.7c8.3,0,15.4-1.2,21.2-3.6,5.8-2.4,10.6-5.6,14.2-9.6,3.6-4,6.3-8.5,8-13.7,1.7-5.1,2.5-10.4,2.5-15.7s-.8-10.7-2.5-15.8h0ZM697.16,157.7c-1.4,2.6-3.3,4.6-5.7,6s-5.1,2.4-8.2,2.9c-3.1.5-6.3.7-9.7.7h-22.7v-39.8h22.7c3.3,0,6.6.2,9.7.8,3.1.5,5.8,1.5,8.2,2.9s4.2,3.4,5.7,6c1.4,2.6,2.1,6,2.1,10.2s-.7,7.6-2.1,10.2h0v.1h0Z"/>%0A </g>%0A <g>%0A <path class="cls-1" d="M885.96,116.9c-6.7-6.7-16.5-10-29.4-10h-56.3v128.5h17.1v-52.6h39.2c13,.1,22.8-3.2,29.4-9.9,6.7-6.7,10-16.1,10-28.1s-3.3-21.3-10-28h0v.1h0ZM872.16,162.5c-4.5,4.1-11.6,6.1-21.3,5.9h-33.5v-47.2h33.5c9.7,0,16.8,2,21.3,6s6.8,9.9,6.8,17.5-2.2,13.6-6.8,17.6v.2h0Z"/>%0A <path class="cls-1" d="M1016.86,227.9c-.9-2.8-1.6-5.8-2.1-8.9s-.8-6.3-.9-9.5-.3-6.4-.5-9.5c-.4-3.1-.9-6.1-1.5-9-.7-2.9-1.7-5.5-3.1-7.8s-3.2-4.4-5.6-6c-2.3-1.7-5.4-2.9-9.1-3.6v-.4c7.8-2.2,13.5-6.2,17-12.1,3.5-5.9,5.3-12.7,5.3-20.5s-3.4-18.7-10.3-24.7-16.5-9-28.7-9h-60.5v128.5h17.1v-54.9h41.8c4.2,0,7.6.6,10.1,1.9,2.5,1.3,4.6,2.9,6.1,5,1.6,2.1,2.7,4.6,3.4,7.4.7,2.8,1.3,5.8,1.8,8.9.6,3.1,1,6.3,1.1,9.5s.2,6.3.4,9.1c0,2.8.4,5.4.8,7.6.4,2.3,1.2,4.1,2.4,5.4h19.1c-1.8-2.2-3.1-4.6-4-7.5h-.1v.1ZM990.36,161.7c-2.7,1.7-5.8,2.9-9.4,3.5s-7.4.9-11.3.9h-35.6v-44.8h42.5c8,0,13.9,2,17.5,6.1s5.4,9.4,5.4,15.8-.8,8.5-2.4,11.4-3.8,5.3-6.5,7h-.2v.1h0Z"/>%0A <path class="cls-1" d="M1040.86,106.9v128.5h17.1V106.9h-17.1Z"/>%0A <path class="cls-1" d="M1165.26,106.9l-37.1,111.4h-.4l-36.7-111.4h-18.4l45.2,128.5h19.4l45.7-128.5h-17.8.1Z"/>%0A <path class="cls-1" d="M1242.26,106.9h-18.9l-50,128.5h17.5l14.4-38.7h54.4l14,38.7h18.9l-50.2-128.5h-.1ZM1210.66,182.3l21.8-59.9h.4l21.4,59.9h-43.6Z"/>%0A <path class="cls-1" d="M1274.86,106.9v14.4h42.8v114.1h17.1v-114.1h42.8v-14.4h-102.8s.1,0,.1,0Z"/>%0A <path class="cls-1" d="M1408.96,221v-44.5h66.8v-14.4h-66.8v-40.9h71.6v-14.4h-88.7v128.5h89.3v-14.4h-72.2v.1h0Z"/>%0A </g>%0A <g>%0A <path class="cls-2" d="M1608.56,107h-18.9l-50,128.5h17.5l14.4-38.7h54.4l14,38.7h18.9l-50.2-128.5h-.1ZM1576.86,182.4l21.8-59.9h.4l21.4,59.9h-43.6Z"/>%0A <path d="M1723.76,167.8v14.4h41c.2,5.9-.5,11.4-2.3,16.5s-4.5,9.5-8,13.3-7.9,6.8-13.1,8.9c-5.2,2.2-11.1,3.2-17.8,3.2s-13.5-1.4-19-4.2-10-6.6-13.8-11.3c-3.7-4.7-6.5-10.2-8.5-16.4-1.9-6.2-2.9-12.6-2.9-19.4s.8-13.5,2.5-20.1c1.7-6.5,4.3-12.4,7.8-17.5s8.1-9.2,13.7-12.3,12.3-4.7,20.1-4.7,9.3.6,13.6,1.7c4.3,1.1,8.1,2.8,11.4,5.1,3.4,2.3,6.2,5.2,8.5,8.7s3.8,7.8,4.7,12.7h17.1c-1.2-7.6-3.4-14-6.8-19.4-3.3-5.3-7.4-9.8-12.2-13.2-4.9-3.5-10.4-6-16.6-7.6s-12.8-2.4-19.7-2.4c-10.2,0-19.1,1.9-26.7,5.7-7.6,3.8-14,8.8-19.1,15.2-5.1,6.4-8.9,13.8-11.5,22.2-2.6,8.5-3.9,17.4-3.9,26.7s1.4,16.5,4.1,24.3c2.8,7.8,6.8,14.7,12.1,20.7,5.3,6,11.7,10.8,19.3,14.3,7.6,3.5,16.1,5.3,25.7,5.3s15.1-1.5,22.5-4.4,13.7-7.8,18.7-14.5l4.5,16h10.8v-67.7h-56.3v.2h.1Z"/>%0A <path d="M1829.46,221.1v14.4h65.2v-14.4h-65.2ZM1894.06,107h-64.6v14.4h64.6v-14.4ZM1889.26,162.2h-59.8v14.4h59.8v-14.4ZM1805.36,235.5h17.1V107h-17.1v128.5Z"/>%0A <path d="M2001.36,107v104.2h-.4l-67.7-104.2h-18.2v128.5h16.2v-103.1h.4l67.1,103.1h18.7V107h-16.2.1Z"/>%0A <path d="M2031.56,107v14.4h42.8v114.1h17.1v-114.1h42.8v-14.4h-102.8.1,0Z"/>%0A <path d="M2241.06,184.4c-2.3-4.2-5.5-7.7-9.4-10.4-3.9-2.8-8.3-4.9-13.2-6.6s-9.9-3-15-4.2-10.1-2.3-15-3.3-9.3-2.3-13.2-3.9c-3.9-1.6-7-3.6-9.4-6-2.3-2.5-3.5-5.7-3.5-9.6s.8-7.7,2.4-10.5c1.6-2.8,3.8-5.1,6.5-6.8s5.8-2.9,9.3-3.6,7-1.1,10.6-1.1c8.9,0,16.2,2.1,21.9,6.2,5.7,4.1,9,10.8,10,20.1h16.2c-.2-7.1-1.6-13.2-4-18.3-2.5-5.1-5.8-9.3-10.1-12.7s-9.2-5.8-14.9-7.4c-5.6-1.6-11.8-2.3-18.4-2.3s-11.6.8-17.2,2.2c-5.6,1.5-10.6,3.8-14.9,6.8-4.4,3.1-7.9,7-10.5,11.7-2.6,4.7-4,10.4-4,16.8s1.2,10.8,3.5,14.7,5.5,7.1,9.4,9.5c3.9,2.5,8.3,4.4,13.2,5.9s9.9,2.8,15,4c5.1,1.1,10.1,2.2,15,3.3s9.3,2.5,13.2,4.2,7,4,9.4,6.8c2.3,2.8,3.5,6.4,3.5,10.8s-1,8.5-2.9,11.5-4.4,5.4-7.6,7.1c-3.1,1.7-6.6,3-10.5,3.7s-7.8,1.1-11.6,1.1-9.5-.6-14-1.8c-4.6-1.2-8.6-3.1-12-5.6s-6.2-5.7-8.3-9.6c-2.1-3.9-3.2-8.5-3.2-13.9h-16.2c0,7.8,1.4,14.5,4.2,20.2s6.7,10.4,11.5,14c4.9,3.7,10.5,6.4,16.9,8.2s13.2,2.7,20.4,2.7,11.8-.7,17.7-2.1,11.3-3.6,16.1-6.7c4.8-3.1,8.7-7,11.8-11.9s4.6-10.7,4.6-17.5-1.2-11.6-3.5-15.8h.2v.1h0Z"/>%0A <rect class="cls-2" x="1805.36" y="107" width="17.1" height="128.5"/>%0A </g>%0A <g>%0A <path class="cls-2" d="M278.46,139.2V41.8C205.16,35.6,139.26,0,139.26,0,139.26,0,73.36,35.6.06,41.8v97.4s-7.5,130.1,139.2,203.1c146.7-73,139.2-203.1,139.2-203.1h0Z"/>%0A <path class="cls-4" d="M139.36,342.3c-.6-.3-1.8-341.4-1.8-341.4,1.2-.6,1.8-.9,1.8-.9,0,0,65.9,35.6,139.2,41.8v97.4s7.5,130.1-139.2,203.1h0Z"/>%0A <path class="cls-3" d="M129.16,81.6h16.8c3.9,0,7,3.2,7,7h-30.9c0-3.9,3.2-7,7-7h.1Z"/>%0A <rect class="cls-3" x="134.46" y="63.6" width="6.1" height="19.7"/>%0A <circle class="cls-3" cx="114.57" cy="131.31" r="8.3"/>%0A <circle class="cls-3" cx="137.56" cy="57.1" r="8.3"/>%0A <circle class="cls-3" cx="160.36" cy="131.3" r="8.3"/>%0A <path class="cls-3" d="M137.66,274.3c44.9,0,52-60.5,49-78.5-2-15-17.8-14.4-17.8-14.4h-62.8s-15.8-.6-17.8,14.4c-2.9,18.3,4.4,78.5,49.3,78.5h.1Z"/>%0A <path class="cls-3" d="M81.66,201.8c-.3,9.4-2.2,22.5,5.7,38.2,1.5,2.9,2.9,8.8,1.2,12.7-2.4,5.3-7.6,6.8-12.3,5.7-5.1-1.2-18.1-10.2,3.6-57.1.5-1,1.9-.6,1.9.4l-.1.1h0Z"/>%0A <g>%0A <path class="cls-2" d="M128.46,240c0,4.9-7.4,4.9-7.5,0,0-4.9,7.4-4.9,7.5,0h0Z"/>%0A <path class="cls-2" d="M161.16,236.1c-2.4-17.1-15.9-30.6-33-33-2,1-3.8,2.4-5.5,3.9v3.6c17,0,30.8,13.9,30.8,30.8h3.6c1.6-1.6,2.9-3.4,4-5.4h0l.1.1h0Z"/>%0A <path class="cls-2" d="M163.96,224.7c0-14.3-12.6-25.9-26.9-24.3l-.6,1.6c12,4.2,21.5,13.7,25.7,25.7l1.6-.6c0-.8.1-1.6.1-2.5h0l.1.1h0Z"/>%0A <path class="cls-2" d="M139.86,253.7c-25.7,0-38.7-31.4-20.5-49.6l1.5,1.6c-10.4,10-10.4,27.9,0,37.9,10,10.4,27.9,10.4,37.9,0l1.6,1.5c-5.5,5.5-12.8,8.5-20.5,8.5h0v.1h0Z"/>%0A <path class="cls-2" d="M139.56,243.2c.9-9.3-6-17.6-15.1-18.4-.8,0-1.5-.8-1.3-1.6.1-.9.9-1.5,1.6-1.3,12,1,20.7,13.5,17.1,25.2l4.4,1.2c1.3-.4,2.6-.9,3.8-1.4,5.8-27-32.8-44.9-34.9-23.5,0,5.1,4.1,9.3,9,9.5,6.1.8,9.5,8.5,6,13.6l3.1,1.9c1.5.4,3,.6,4.6.7.9-1.8,1.5-3.8,1.7-5.9h0Z"/>%0A </g>%0A <path class="cls-3" d="M136.76,172.4v4.6c0,1.3,1.2,2.2,2.4,2l33.3-6.6h-35.7Z"/>%0A <path class="cls-3" d="M169.06,88.6h-59.5c-11.8,0-22.5,4.8-30.2,12.5-26.7,26.1-7.6,73.2,30.2,72.9h59.5c11.8,0,22.5-4.8,30.2-12.5,26.7-26.1,7.6-73.2-30.2-72.9ZM179.56,149.1c-4.6,4.5-10.8,7.4-17.8,7.4h-44.9c-22.2.2-33.5-27.5-17.8-42.9,4.5-4.5,10.8-7.3,17.8-7.3h44.9c22.2-.2,33.5,27.5,17.8,42.9v-.1h0Z"/>%0A <path class="cls-3" d="M193.36,201.8c.3,9.4,2.2,22.5-5.7,38.2-1.5,2.9-2.9,8.8-1.2,12.7,2.4,5.3,7.6,6.8,12.3,5.7,5.1-1.2,18.1-10.2-3.6-57.1-.5-1-1.9-.6-1.9.4l.1.1h0Z"/>%0A </g>%0A</svg>';
|
|
@@ -87,6 +90,15 @@ var zerocode_with_text_dm_default = 'data:image/svg+xml,<?xml version="1.0" enco
|
|
|
87
90
|
// src/assets/logos/zerocode/zerocode-no-text.svg
|
|
88
91
|
var zerocode_no_text_default = 'data:image/svg+xml,<?xml version="1.0" encoding="UTF-8"?>%0A<svg id="zerocode-no-text" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" viewBox="0 0 63.4 54.4">%0A %0A <defs>%0A <style>%0A .st0 {%0A fill: url(%23linear-gradient);%0A }%0A%0A .st1 {%0A fill: url(%23linear-gradient1);%0A }%0A%0A .st1, .st2 {%0A isolation: isolate;%0A opacity: .48;%0A }%0A%0A .st2 {%0A fill: url(%23linear-gradient2);%0A }%0A </style>%0A <linearGradient id="linear-gradient" x1="10.2" y1="2084.73" x2="52.93" y2="2084.73" gradientTransform="translate(0 -2057.53)" gradientUnits="userSpaceOnUse">%0A <stop offset="0" stop-color="%23d63129"/>%0A <stop offset="1" stop-color="%23fb4939"/>%0A </linearGradient>%0A <linearGradient id="linear-gradient1" x1="0" y1="2086.38" x2="21.3" y2="2086.38" gradientTransform="translate(0 -2057.53)" gradientUnits="userSpaceOnUse">%0A <stop offset="0" stop-color="%23d63129"/>%0A <stop offset="1" stop-color="%23fb4939"/>%0A </linearGradient>%0A <linearGradient id="linear-gradient2" x1="42.1" y1="2082.98" x2="63.4" y2="2082.98" gradientTransform="translate(0 -2057.53)" gradientUnits="userSpaceOnUse">%0A <stop offset="0" stop-color="%23d63129"/>%0A <stop offset="1" stop-color="%23fb4939"/>%0A </linearGradient>%0A </defs>%0A <polygon class="st0" points="51.1 6.2 47.5 0 15.8 0 10.2 9.5 35.9 9.5 12.7 48.9 15.8 54.4 47.5 54.4 53 45 28.3 45 51.1 6.2"/>%0A <polygon class="st1" points="12.5 27.2 21.3 12.1 8.8 12.1 0 27.2 10.7 45.6 17 35 12.5 27.2"/>%0A <polygon class="st2" points="52.6 8.7 46.3 19.3 50.9 27.2 42.1 42.2 54.6 42.2 63.4 27.2 52.6 8.7"/>%0A</svg>';
|
|
89
92
|
|
|
93
|
+
// src/assets/logos/zerocode-ai/zerocode-ai-with-text.svg
|
|
94
|
+
var zerocode_ai_with_text_default = 'data:image/svg+xml,<?xml version="1.0" encoding="UTF-8"?>%0A<svg id="_\u56FE\u5C42_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" viewBox="0 0 592.8 78.4">%0A <!-- Generator: Adobe Illustrator 29.0.0, SVG Export Plug-In . SVG Version: 2.1.0 Build 186) -->%0A <defs>%0A <style>%0A .st0 {%0A fill: url(%23_\u672A\u547D\u540D\u7684\u6E10\u53D8_2);%0A }%0A%0A .st1 {%0A fill: url(%23_\u672A\u547D\u540D\u7684\u6E10\u53D8_5);%0A }%0A%0A .st2 {%0A fill: url(%23_\u672A\u547D\u540D\u7684\u6E10\u53D8_4);%0A }%0A%0A .st3 {%0A fill: url(%23_\u672A\u547D\u540D\u7684\u6E10\u53D8_3);%0A }%0A%0A .st4 {%0A fill: url(%23_\u672A\u547D\u540D\u7684\u6E10\u53D8_6);%0A }%0A%0A .st5 {%0A fill: url(%23_\u672A\u547D\u540D\u7684\u6E10\u53D8_8);%0A }%0A%0A .st6 {%0A fill: url(%23_\u672A\u547D\u540D\u7684\u6E10\u53D8_7);%0A }%0A%0A .st7 {%0A fill: url(%23_\u672A\u547D\u540D\u7684\u6E10\u53D8);%0A }%0A%0A .st8 {%0A fill: url(%23_\u672A\u547D\u540D\u7684\u6E10\u53D8_271);%0A }%0A%0A .st9 {%0A opacity: .5;%0A }%0A%0A .st10 {%0A fill: url(%23_\u672A\u547D\u540D\u7684\u6E10\u53D8_18);%0A }%0A%0A .st11 {%0A fill: url(%23_\u672A\u547D\u540D\u7684\u6E10\u53D8_15);%0A }%0A%0A .st12 {%0A fill: url(%23_\u672A\u547D\u540D\u7684\u6E10\u53D8_16);%0A }%0A%0A .st13 {%0A fill: url(%23_\u672A\u547D\u540D\u7684\u6E10\u53D8_11);%0A }%0A%0A .st14 {%0A fill: url(%23_\u672A\u547D\u540D\u7684\u6E10\u53D8_13);%0A }%0A%0A .st15 {%0A fill: url(%23_\u672A\u547D\u540D\u7684\u6E10\u53D8_14);%0A }%0A%0A .st16 {%0A fill: url(%23_\u672A\u547D\u540D\u7684\u6E10\u53D8_17);%0A }%0A%0A .st17 {%0A fill: url(%23_\u672A\u547D\u540D\u7684\u6E10\u53D8_19);%0A }%0A%0A .st18 {%0A fill: url(%23_\u672A\u547D\u540D\u7684\u6E10\u53D8_12);%0A }%0A%0A .st19 {%0A fill: url(%23_\u672A\u547D\u540D\u7684\u6E10\u53D8_27);%0A }%0A%0A .st20 {%0A fill: url(%23_\u672A\u547D\u540D\u7684\u6E10\u53D8_21);%0A }%0A%0A .st21 {%0A fill: url(%23_\u672A\u547D\u540D\u7684\u6E10\u53D8_22);%0A }%0A%0A .st22 {%0A fill: url(%23_\u672A\u547D\u540D\u7684\u6E10\u53D8_20);%0A }%0A%0A .st23 {%0A fill-opacity: 0;%0A }%0A </style>%0A <linearGradient id="_\u672A\u547D\u540D\u7684\u6E10\u53D8" data-name="\u672A\u547D\u540D\u7684\u6E10\u53D8" x1="431.7" y1="69.2" x2="485" y2="30.4" gradientTransform="translate(0 80) scale(1 -1)" gradientUnits="userSpaceOnUse">%0A <stop offset="0" stop-color="%23e54c3c"/>%0A <stop offset=".4" stop-color="%238d75d3"/>%0A <stop offset=".9" stop-color="%233283f2"/>%0A </linearGradient>%0A <linearGradient id="_\u672A\u547D\u540D\u7684\u6E10\u53D8_2" data-name="\u672A\u547D\u540D\u7684\u6E10\u53D8 2" x1="421" y1="54.5" x2="474.2" y2="15.7" gradientTransform="translate(0 80) scale(1 -1)" gradientUnits="userSpaceOnUse">%0A <stop offset="0" stop-color="%23e54c3c"/>%0A <stop offset=".4" stop-color="%238d75d3"/>%0A <stop offset=".9" stop-color="%233283f2"/>%0A </linearGradient>%0A <linearGradient id="_\u672A\u547D\u540D\u7684\u6E10\u53D8_3" data-name="\u672A\u547D\u540D\u7684\u6E10\u53D8 3" x1="433.3" y1="71.5" x2="486.6" y2="32.7" gradientTransform="translate(0 80) scale(1 -1)" gradientUnits="userSpaceOnUse">%0A <stop offset="0" stop-color="%23e54c3c"/>%0A <stop offset=".4" stop-color="%238d75d3"/>%0A <stop offset=".9" stop-color="%233283f2"/>%0A </linearGradient>%0A <linearGradient id="_\u672A\u547D\u540D\u7684\u6E10\u53D8_4" data-name="\u672A\u547D\u540D\u7684\u6E10\u53D8 4" x1="419.3" y1="52.2" x2="472.6" y2="13.5" gradientTransform="translate(0 80) scale(1 -1)" gradientUnits="userSpaceOnUse">%0A <stop offset="0" stop-color="%23e54c3c"/>%0A <stop offset=".4" stop-color="%238d75d3"/>%0A <stop offset=".9" stop-color="%233283f2"/>%0A </linearGradient>%0A <linearGradient id="_\u672A\u547D\u540D\u7684\u6E10\u53D8_5" data-name="\u672A\u547D\u540D\u7684\u6E10\u53D8 5" x1="422.6" y1="56.7" x2="475.9" y2="17.9" gradientTransform="translate(0 80) scale(1 -1)" gradientUnits="userSpaceOnUse">%0A <stop offset="0" stop-color="%23e54c3c"/>%0A <stop offset=".4" stop-color="%238d75d3"/>%0A <stop offset=".9" stop-color="%233283f2"/>%0A </linearGradient>%0A <linearGradient id="_\u672A\u547D\u540D\u7684\u6E10\u53D8_6" data-name="\u672A\u547D\u540D\u7684\u6E10\u53D8 6" x1="430.1" y1="67" x2="483.4" y2="28.3" gradientTransform="translate(0 80) scale(1 -1)" gradientUnits="userSpaceOnUse">%0A <stop offset="0" stop-color="%23e54c3c"/>%0A <stop offset=".4" stop-color="%238d75d3"/>%0A <stop offset=".9" stop-color="%233283f2"/>%0A </linearGradient>%0A <linearGradient id="_\u672A\u547D\u540D\u7684\u6E10\u53D8_7" data-name="\u672A\u547D\u540D\u7684\u6E10\u53D8 7" x1="424.4" y1="59.2" x2="477.7" y2="20.4" gradientTransform="translate(0 80) scale(1 -1)" gradientUnits="userSpaceOnUse">%0A <stop offset="0" stop-color="%23e54c3c"/>%0A <stop offset=".4" stop-color="%238d75d3"/>%0A <stop offset=".9" stop-color="%233283f2"/>%0A </linearGradient>%0A <linearGradient id="_\u672A\u547D\u540D\u7684\u6E10\u53D8_8" data-name="\u672A\u547D\u540D\u7684\u6E10\u53D8 8" x1="428.3" y1="64.5" x2="481.5" y2="25.7" gradientTransform="translate(0 80) scale(1 -1)" gradientUnits="userSpaceOnUse">%0A <stop offset="0" stop-color="%23e54c3c"/>%0A <stop offset=".4" stop-color="%238d75d3"/>%0A <stop offset=".9" stop-color="%233283f2"/>%0A </linearGradient>%0A <linearGradient id="_\u672A\u547D\u540D\u7684\u6E10\u53D8_11" data-name="\u672A\u547D\u540D\u7684\u6E10\u53D8 11" x1="165.4" y1="42.2" x2="175.2" y2="42.2" gradientTransform="translate(0 80) scale(1 -1)" gradientUnits="userSpaceOnUse">%0A <stop offset="0" stop-color="%23d63129"/>%0A <stop offset="1" stop-color="%23fb4939"/>%0A </linearGradient>%0A <linearGradient id="_\u672A\u547D\u540D\u7684\u6E10\u53D8_12" data-name="\u672A\u547D\u540D\u7684\u6E10\u53D8 12" x1="163.3" y1="41.2" x2="172.9" y2="41.2" gradientTransform="translate(0 80) scale(1 -1)" gradientUnits="userSpaceOnUse">%0A <stop offset="0" stop-color="%23d63129"/>%0A <stop offset="1" stop-color="%23fb4939"/>%0A </linearGradient>%0A <linearGradient id="_\u672A\u547D\u540D\u7684\u6E10\u53D8_13" data-name="\u672A\u547D\u540D\u7684\u6E10\u53D8 13" x1="161.1" y1="40.3" x2="171.7" y2="40.3" gradientTransform="translate(0 80) scale(1 -1)" gradientUnits="userSpaceOnUse">%0A <stop offset="0" stop-color="%23d63129"/>%0A <stop offset="1" stop-color="%23fb4939"/>%0A </linearGradient>%0A <linearGradient id="_\u672A\u547D\u540D\u7684\u6E10\u53D8_14" data-name="\u672A\u547D\u540D\u7684\u6E10\u53D8 14" x1="167.6" y1="43.2" x2="177.7" y2="43.2" gradientTransform="translate(0 80) scale(1 -1)" gradientUnits="userSpaceOnUse">%0A <stop offset="0" stop-color="%23d63129"/>%0A <stop offset="1" stop-color="%23fb4939"/>%0A </linearGradient>%0A <linearGradient id="_\u672A\u547D\u540D\u7684\u6E10\u53D8_15" data-name="\u672A\u547D\u540D\u7684\u6E10\u53D8 15" x1="169.8" y1="44.1" x2="180.2" y2="44.1" gradientTransform="translate(0 80) scale(1 -1)" gradientUnits="userSpaceOnUse">%0A <stop offset="0" stop-color="%23d63129"/>%0A <stop offset="1" stop-color="%23fb4939"/>%0A </linearGradient>%0A <linearGradient id="_\u672A\u547D\u540D\u7684\u6E10\u53D8_16" data-name="\u672A\u547D\u540D\u7684\u6E10\u53D8 16" x1="205.3" y1="41.4" x2="215.5" y2="41.4" gradientTransform="translate(0 80) scale(1 -1)" gradientUnits="userSpaceOnUse">%0A <stop offset="0" stop-color="%23d63129"/>%0A <stop offset="1" stop-color="%23fb4939"/>%0A </linearGradient>%0A <linearGradient id="_\u672A\u547D\u540D\u7684\u6E10\u53D8_17" data-name="\u672A\u547D\u540D\u7684\u6E10\u53D8 17" x1="202.8" y1="40.4" x2="213.2" y2="40.4" gradientTransform="translate(0 80) scale(1 -1)" gradientUnits="userSpaceOnUse">%0A <stop offset="0" stop-color="%23d63129"/>%0A <stop offset="1" stop-color="%23fb4939"/>%0A </linearGradient>%0A <linearGradient id="_\u672A\u547D\u540D\u7684\u6E10\u53D8_18" data-name="\u672A\u547D\u540D\u7684\u6E10\u53D8 18" x1="207.7" y1="42.3" x2="217.8" y2="42.3" gradientTransform="translate(0 80) scale(1 -1)" gradientUnits="userSpaceOnUse">%0A <stop offset="0" stop-color="%23d63129"/>%0A <stop offset="1" stop-color="%23fb4939"/>%0A </linearGradient>%0A <linearGradient id="_\u672A\u547D\u540D\u7684\u6E10\u53D8_19" data-name="\u672A\u547D\u540D\u7684\u6E10\u53D8 19" x1="209.4" y1="43.3" x2="220.1" y2="43.3" gradientTransform="translate(0 80) scale(1 -1)" gradientUnits="userSpaceOnUse">%0A <stop offset="0" stop-color="%23d63129"/>%0A <stop offset="1" stop-color="%23fb4939"/>%0A </linearGradient>%0A <linearGradient id="_\u672A\u547D\u540D\u7684\u6E10\u53D8_20" data-name="\u672A\u547D\u540D\u7684\u6E10\u53D8 20" x1="200.3" y1="39.4" x2="210.9" y2="39.4" gradientTransform="translate(0 80) scale(1 -1)" gradientUnits="userSpaceOnUse">%0A <stop offset="0" stop-color="%23d63129"/>%0A <stop offset="1" stop-color="%23fb4939"/>%0A </linearGradient>%0A <linearGradient id="_\u672A\u547D\u540D\u7684\u6E10\u53D8_21" data-name="\u672A\u547D\u540D\u7684\u6E10\u53D8 21" x1="169.8" y1="27.5" x2="208.9" y2="27.5" gradientTransform="translate(0 80) scale(1 -1)" gradientUnits="userSpaceOnUse">%0A <stop offset="0" stop-color="%23d63129"/>%0A <stop offset="1" stop-color="%23fb4939"/>%0A </linearGradient>%0A <linearGradient id="_\u672A\u547D\u540D\u7684\u6E10\u53D8_22" data-name="\u672A\u547D\u540D\u7684\u6E10\u53D8 22" x1="213.1" y1="9.2" x2="178.1" y2="59.5" gradientTransform="translate(0 80) scale(1 -1)" gradientUnits="userSpaceOnUse">%0A <stop offset="0" stop-color="%233283f2"/>%0A <stop offset=".6" stop-color="%238d75d3"/>%0A <stop offset=".9" stop-color="%23ec3f33"/>%0A </linearGradient>%0A <linearGradient id="_\u672A\u547D\u540D\u7684\u6E10\u53D8_27" data-name="\u672A\u547D\u540D\u7684\u6E10\u53D8 27" x1="441.6" y1="33.6" x2="462" y2="51.4" gradientUnits="userSpaceOnUse">%0A <stop offset="0" stop-color="%23ec3f33"/>%0A <stop offset=".4" stop-color="%238d75d3"/>%0A <stop offset="1" stop-color="%233283f2"/>%0A </linearGradient>%0A <linearGradient id="_\u672A\u547D\u540D\u7684\u6E10\u53D8_271" data-name="\u672A\u547D\u540D\u7684\u6E10\u53D8 27" x1="449.7" y1="24.3" x2="470.1" y2="42.2" xlink:href="%23_\u672A\u547D\u540D\u7684\u6E10\u53D8_27"/>%0A </defs>%0A <path class="st23" d="M-573.3-2757.9c-1.3-3.1-3.2-5.9-5.5-8.2-2.3-2.3-5.2-4.1-8.4-5.4-3.2-1.3-6.7-1.9-10.5-1.9h-18.8v51.9h18.9c3.7,0,7.2-.7,10.4-2,3.2-1.3,6-3.1,8.3-5.5,2.4-2.3,4.2-5.1,5.5-8.3,1.3-3.2,2-6.6,2-10.3s-.7-7.2-2-10.4h0ZM-579.7-2736.8c-1.8,3.1-4.2,5.6-7.3,7.4s-6.7,2.7-10.8,2.7h-13.1v-41.7h13.1c4.1,0,7.7.9,10.8,2.7,3.1,1.8,5.6,4.2,7.3,7.4,1.7,3.2,2.6,6.7,2.7,10.8,0,4.1-.9,7.7-2.6,10.8h-.1Z"/>%0A <polygon points="50.5 64.2 50.5 54.2 24.6 54.2 24.6 42.4 47.9 42.4 47.9 32.7 24.6 32.7 24.6 22 50.1 22 50.1 12 21.8 12 21.8 12 13 12 13 64.3 24.6 64.3 24.6 64.3 50.5 64.2"/>%0A <path d="M72.9,65.1c-4.3,0-8-.7-11.1-2.1s-5.9-3.5-8.5-6.4l7.5-7.5c1.7,1.9,3.5,3.4,5.6,4.5s4.4,1.6,7.1,1.6,4.4-.5,5.7-1.3c1.4-.9,2-2.1,2-3.7s-.4-2.6-1.3-3.5-2.1-1.7-3.5-2.3-3.1-1.3-4.8-1.8-3.5-1.3-5.2-2-3.3-1.7-4.8-2.9-2.6-2.6-3.5-4.4-1.3-4-1.3-6.6.8-6,2.3-8.3,3.7-4.1,6.5-5.3c2.8-1.2,5.9-1.8,9.5-1.8s7,.6,10,1.9c3,1.3,5.5,3,7.5,5.2l-7.5,7.5c-1.6-1.6-3.2-2.8-4.8-3.6-1.6-.8-3.4-1.2-5.4-1.2s-3.6.4-4.8,1.1c-1.2.8-1.8,1.9-1.8,3.3s.4,2.4,1.3,3.2c.9.8,2.1,1.5,3.5,2.1,1.5.6,3.1,1.2,4.8,1.8,1.8.6,3.5,1.3,5.2,2.1s3.3,1.8,4.8,3,2.6,2.7,3.5,4.6,1.3,4.1,1.3,6.8c0,5-1.8,8.9-5.3,11.7s-8.5,4.3-14.7,4.3h.2Z"/>%0A <path d="M137.4,19.7c-1.6-2.5-3.7-4.4-6.3-5.7s-5.7-2-9-2h-21.8v52.3h11.6v-19h10.2c3.3,0,6.3-.7,9-2s4.8-3.3,6.3-5.8c1.6-2.5,2.3-5.4,2.3-8.8s-.8-6.4-2.3-8.8h0v-.2ZM127.2,32.7c-.7,1.1-1.6,2-2.8,2.6s-2.5.9-3.9.9h-8.5v-15.2h8.5c1.4,0,2.7.3,3.9.9,1.2.6,2.1,1.5,2.8,2.6.7,1.1,1,2.5,1,4.1s-.3,3-1,4.1Z"/>%0A <polygon points="262.2 64.2 262.2 59.1 233.3 59.2 233.3 40 259.7 40 259.7 35 233.3 35 233.3 17.1 261.7 17.1 261.7 12 231.4 12.1 231.4 12.1 227.8 12.1 227.8 64.2 233.3 64.2 233.3 64.2 262.2 64.2"/>%0A <path d="M304,64.2h7.1l-19.3-23.4c3.1,0,5.8-.7,8-1.8,2.4-1.2,4.3-2.9,5.6-5,1.3-2.2,1.9-4.7,1.9-7.6s-.6-5.3-1.9-7.4-3.1-3.9-5.6-5.1-5.3-1.9-8.7-1.9h-18.7v52.2h5.6v-23.4h7l19,23.3h0ZM278,16.9h13.2c3.4,0,6.1.9,7.9,2.7,1.8,1.8,2.7,4.1,2.7,6.9s-.9,5.3-2.7,7c-1.8,1.8-4.5,2.6-7.9,2.6h-13.2v-19.3h0Z"/>%0A <path d="M341.3,64.9c-3.7,0-7.1-.7-10.2-2.1s-5.9-3.3-8.3-5.7-4.2-5.3-5.5-8.5-2-6.7-2-10.4.6-7.3,2-10.5c1.3-3.2,3.1-6,5.5-8.5,2.4-2.4,5.1-4.3,8.2-5.7s6.5-2,10.2-2,7.1.7,10.2,2,5.9,3.2,8.3,5.6,4.2,5.2,5.5,8.5,2,6.8,2,10.5-.6,7.2-2,10.5c-1.3,3.2-3.1,6.1-5.5,8.5s-5.1,4.3-8.2,5.7c-3.1,1.4-6.5,2.1-10.2,2.1h0ZM341.2,59.6c3.9,0,7.4-.9,10.4-2.8s5.4-4.4,7.2-7.6c1.7-3.2,2.6-6.9,2.6-11s-.5-5.9-1.5-8.5c-1-2.6-2.4-4.9-4.2-6.8s-3.9-3.4-6.4-4.5-5.1-1.6-8.1-1.6-7.3.9-10.4,2.8-5.4,4.4-7.2,7.6-2.6,6.9-2.6,11,.5,5.9,1.5,8.5,2.4,4.9,4.2,6.8,4,3.4,6.4,4.5,5.1,1.6,8,1.6h.1Z"/>%0A <path d="M401.6,64.9c-3.7,0-7.2-.7-10.4-2s-6-3.3-8.3-5.7c-2.4-2.5-4.2-5.3-5.5-8.6-1.3-3.2-1.9-6.7-1.9-10.4s.6-7.2,1.9-10.5c1.3-3.2,3.1-6.1,5.4-8.5s5.1-4.3,8.2-5.7,6.6-2,10.3-2,7.5.7,10.7,2.1c3.1,1.4,5.9,3.3,8.3,5.8l-3.8,3.8c-1.8-2-4-3.6-6.6-4.7s-5.4-1.7-8.6-1.7-5.6.5-8,1.6-4.6,2.6-6.4,4.5-3.2,4.2-4.2,6.8-1.5,5.4-1.5,8.5.5,5.9,1.5,8.5,2.4,4.9,4.2,6.8,4,3.4,6.4,4.5,5.1,1.6,8.1,1.6,6.3-.6,8.9-1.7,4.8-2.7,6.6-4.8l3.8,3.8c-2.3,2.5-5.1,4.4-8.3,5.8-3.2,1.4-6.8,2.1-10.8,2.2h0Z"/>%0A <path d="M531.3,27.7c-1.3-3.1-3.2-5.9-5.5-8.2s-5.2-4.1-8.4-5.4c-3.2-1.3-6.7-1.9-10.5-1.9h-18.8v51.9h18.9c3.7,0,7.2-.7,10.4-2s6-3.1,8.3-5.5c2.4-2.3,4.2-5.1,5.5-8.3s2-6.6,2-10.3-.7-7.2-2-10.4h.1ZM524.9,48.8c-1.8,3.1-4.2,5.6-7.3,7.4s-6.7,2.7-10.8,2.7h-13.1V17.2h13.1c4.1,0,7.7.9,10.8,2.7s5.6,4.2,7.3,7.4,2.6,6.7,2.7,10.8c0,4.1-.9,7.7-2.6,10.8h-.1Z"/>%0A <polygon points="578 64 578 58.9 549.4 59 549.4 39.9 575.6 39.9 575.6 35 549.4 35 549.3 17.2 577.6 17.2 577.5 12.1 549.3 12.1 549.3 12.1 543.8 12.1 543.9 64 547.5 64 547.5 64 578 64"/>%0A <g class="st9">%0A <g>%0A <g>%0A <path class="st7" d="M469.5,55.7c9.7-8.5,10.7-23.8,2.2-33.5,4.6,5.1,6.8,11.9,6.1,18.7-.4,3.4-1.4,6.7-3.2,9.6-.8,1.4-1.7,2.7-2.8,3.8-.4.5-1.2,1.6-1.8,1.8-.4,0-.8,0-.5-.6v.2Z"/>%0A <path class="st0" d="M438.2,20.6c-9.7,8.5-10.7,23.8-2.2,33.5-4.6-5.1-6.8-11.9-6.1-18.7.4-3.4,1.4-6.7,3.2-9.6.8-1.4,1.7-2.7,2.8-3.8.4-.5,1.2-1.6,1.8-1.8.4-.1.8.1.5.6v-.2Z"/>%0A <path class="st3" d="M473.3,53.5c8.6-10.6,6.7-26.6-3.8-35.1,5.6,4.3,9.1,10.9,9.7,17.9.3,3.6-.2,7.3-1.4,10.7-.6,1.6-1.4,3.2-2.3,4.7-.4.6-.9,1.6-1.4,2.1-.3.3-1.1.4-.7-.3h-.1Z"/>%0A <path class="st2" d="M434.4,22.8c-8.6,10.6-6.7,26.6,3.8,35.1-5.6-4.3-9.1-10.9-9.7-17.9-.3-3.6.2-7.3,1.4-10.7.6-1.6,1.4-3.2,2.3-4.7.4-.6.9-1.6,1.4-2.1.3-.3,1.1-.4.7.3h.1Z"/>%0A </g>%0A <path class="st1" d="M449.3,63.9c14.1,2.6,28-7,30.6-21.1-1.2,7.3-5.5,13.9-11.7,17.9s-6.5,3.4-10.1,4c-1.9.3-3.7.4-5.6.4s-2,0-2.9-.3c-.3,0-.9,0-.8-.6,0-.3.3-.4.5-.3Z"/>%0A <path class="st4" d="M458.4,12.4c-14.1-2.6-28,7-30.6,21.1,1.2-7.3,5.5-13.9,11.7-17.9s6.5-3.4,10.1-4c1.9-.3,3.7-.4,5.6-.4s2,0,2.9.3c.3,0,.9,0,.8.6,0,.3-.3.4-.5.3Z"/>%0A <path class="st6" d="M453.8,65.6c15.1,0,27.8-12.4,27.9-27.5,0,8-3.3,15.7-9.2,21.1-2.9,2.6-6.3,4.6-10,5.8-1.9.6-3.9,1.1-5.9,1.3-.5,0-2.5.5-3,0-.3-.3-.3-.8.2-.8Z"/>%0A <path class="st5" d="M453.8,10.7c-15.1-.1-27.8,12.4-27.9,27.5,0-8,3.3-15.7,9.2-21.1,2.9-2.6,6.3-4.6,10-5.8,1.9-.6,3.9-1.1,5.9-1.3.5,0,2.5-.5,3-.1.3.3.3.8-.2.8Z"/>%0A </g>%0A </g>%0A <g class="st9">%0A <polygon class="st13" points="167.1 38 174.2 50.4 173.3 51.9 165.4 38 173.4 23.7 175.2 23.7 167.1 38"/>%0A <polygon class="st18" points="172.9 52.5 172.2 53.8 163.3 38 171.2 23.7 172.7 23.7 164.7 38 172.9 52.5"/>%0A <polygon class="st14" points="171.7 54.6 171 55.7 161.1 38 168.9 23.7 170.2 23.7 162.3 38 171.7 54.6"/>%0A <polygon class="st15" points="169.5 38 175.4 48.3 174.5 49.9 167.6 38 175.7 23.7 177.7 23.7 169.5 38 169.5 38"/>%0A <polygon class="st11" points="171.8 38.1 176.7 46.1 175.6 48 169.8 38 178 23.7 180.2 23.7 171.9 38 171.8 38.1"/>%0A </g>%0A <g class="st9">%0A <polygon class="st12" points="215.5 38 207.8 24.8 206.9 26.3 213.7 38 205.3 52.5 207 52.5 215.5 38"/>%0A <polygon class="st16" points="202.8 52.5 204.7 52.5 213.2 38 206.7 26.8 205.7 28.5 211.3 38 211.2 38.1 202.8 52.5"/>%0A <polygon class="st10" points="217.8 38 209 22.9 208.2 24.2 216.2 38 207.7 52.5 209.3 52.5 217.8 38"/>%0A <polygon class="st17" points="211.6 52.5 220.1 38 210.1 20.9 209.4 22.1 218.7 38 210.2 52.5 211.6 52.5 211.6 52.5"/>%0A <polygon class="st22" points="210.9 38 205.5 28.7 204.4 30.6 208.8 38 208.7 38.1 201.2 50.9 200.3 52.5 202.4 52.5 210.9 38"/>%0A </g>%0A <polygon class="st20" points="175.9 52.5 188.5 52.5 188.6 52.5 175.9 52.5 175.9 52.5"/>%0A <polygon class="st21" points="210.7 55 205.5 64.1 175.1 64.1 172.1 58.9 174.4 55 194.3 21.2 169.8 21.2 175.1 12 205.5 12 208.9 17.9 207 21.1 187 55 187 55.1 210.7 55"/>%0A <g>%0A <path d="M452.1,26.4l8,21.4h-4.9l-1.6-4.8h-8l-1.7,4.8h-4.7l8.1-21.4h4.8ZM452.4,39.5l-2.7-7.9h0l-2.8,7.9h5.6-.1Z"/>%0A <path d="M466.7,26.4v21.4h-4.7v-21.4h4.7Z"/>%0A </g>%0A <g>%0A <path class="st19" d="M452.1,26.4l8,21.4h-4.9l-1.6-4.8h-8l-1.7,4.8h-4.7l8.1-21.4h4.8ZM452.4,39.5l-2.7-7.9h0l-2.8,7.9h5.6-.1Z"/>%0A <path class="st8" d="M466.7,26.4v21.4h-4.7v-21.4h4.7Z"/>%0A </g>%0A</svg>';
|
|
95
|
+
|
|
96
|
+
// src/assets/logos/zerocode-ai/zerocode-ai-with-text-dm.svg
|
|
97
|
+
var zerocode_ai_with_text_dm_default = 'data:image/svg+xml,<?xml version="1.0" encoding="UTF-8"?>%0A<svg id="_\u56FE\u5C42_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" viewBox="0 0 592.8 78.4">%0A <!-- Generator: Adobe Illustrator 29.0.0, SVG Export Plug-In . SVG Version: 2.1.0 Build 186) -->%0A <defs>%0A <style>%0A .st0 {%0A fill: url(%23_\u672A\u547D\u540D\u7684\u6E10\u53D8_8);%0A }%0A%0A .st1 {%0A fill: url(%23_\u672A\u547D\u540D\u7684\u6E10\u53D8_217);%0A }%0A%0A .st2 {%0A fill: url(%23_\u672A\u547D\u540D\u7684\u6E10\u53D8_214);%0A }%0A%0A .st3 {%0A fill: url(%23_\u672A\u547D\u540D\u7684\u6E10\u53D8_219);%0A }%0A%0A .st4 {%0A fill: url(%23_\u672A\u547D\u540D\u7684\u6E10\u53D8_213);%0A }%0A%0A .st5 {%0A fill: url(%23_\u672A\u547D\u540D\u7684\u6E10\u53D8_215);%0A }%0A%0A .st6 {%0A fill: url(%23_\u672A\u547D\u540D\u7684\u6E10\u53D8_216);%0A }%0A%0A .st7 {%0A fill: url(%23_\u672A\u547D\u540D\u7684\u6E10\u53D8_218);%0A }%0A%0A .st8 {%0A fill: url(%23_\u672A\u547D\u540D\u7684\u6E10\u53D8_212);%0A }%0A%0A .st9 {%0A fill: url(%23_\u672A\u547D\u540D\u7684\u6E10\u53D8_211);%0A }%0A%0A .st10 {%0A fill: url(%23_\u672A\u547D\u540D\u7684\u6E10\u53D8_271);%0A }%0A%0A .st11 {%0A fill: %23fff;%0A }%0A%0A .st12 {%0A opacity: .5;%0A }%0A%0A .st13 {%0A fill: url(%23_\u672A\u547D\u540D\u7684\u6E10\u53D8_86);%0A }%0A%0A .st14 {%0A fill: url(%23_\u672A\u547D\u540D\u7684\u6E10\u53D8_87);%0A }%0A%0A .st15 {%0A fill: url(%23_\u672A\u547D\u540D\u7684\u6E10\u53D8_84);%0A }%0A%0A .st16 {%0A fill: url(%23_\u672A\u547D\u540D\u7684\u6E10\u53D8_85);%0A }%0A%0A .st17 {%0A fill: url(%23_\u672A\u547D\u540D\u7684\u6E10\u53D8_82);%0A }%0A%0A .st18 {%0A fill: url(%23_\u672A\u547D\u540D\u7684\u6E10\u53D8_83);%0A }%0A%0A .st19 {%0A fill: url(%23_\u672A\u547D\u540D\u7684\u6E10\u53D8_81);%0A }%0A%0A .st20 {%0A fill: url(%23_\u672A\u547D\u540D\u7684\u6E10\u53D8_27);%0A }%0A%0A .st21 {%0A fill: url(%23_\u672A\u547D\u540D\u7684\u6E10\u53D8_21);%0A }%0A%0A .st22 {%0A fill: url(%23_\u672A\u547D\u540D\u7684\u6E10\u53D8_22);%0A }%0A%0A .st23 {%0A opacity: 0;%0A }%0A </style>%0A <linearGradient id="_\u672A\u547D\u540D\u7684\u6E10\u53D8_8" data-name="\u672A\u547D\u540D\u7684\u6E10\u53D8 8" x1="431.7" y1="-7642.9" x2="485" y2="-7681.7" gradientTransform="translate(0 -7632.1) scale(1 -1)" gradientUnits="userSpaceOnUse">%0A <stop offset="0" stop-color="%23e54c3c"/>%0A <stop offset=".4" stop-color="%238d75d3"/>%0A <stop offset=".9" stop-color="%233283f2"/>%0A </linearGradient>%0A <linearGradient id="_\u672A\u547D\u540D\u7684\u6E10\u53D8_81" data-name="\u672A\u547D\u540D\u7684\u6E10\u53D8 8" x1="421" y1="-7657.6" x2="474.2" y2="-7696.4" xlink:href="%23_\u672A\u547D\u540D\u7684\u6E10\u53D8_8"/>%0A <linearGradient id="_\u672A\u547D\u540D\u7684\u6E10\u53D8_82" data-name="\u672A\u547D\u540D\u7684\u6E10\u53D8 8" x1="433.3" y1="-7640.6" x2="486.6" y2="-7679.4" xlink:href="%23_\u672A\u547D\u540D\u7684\u6E10\u53D8_8"/>%0A <linearGradient id="_\u672A\u547D\u540D\u7684\u6E10\u53D8_83" data-name="\u672A\u547D\u540D\u7684\u6E10\u53D8 8" x1="419.3" y1="-7659.9" x2="472.6" y2="-7698.6" xlink:href="%23_\u672A\u547D\u540D\u7684\u6E10\u53D8_8"/>%0A <linearGradient id="_\u672A\u547D\u540D\u7684\u6E10\u53D8_84" data-name="\u672A\u547D\u540D\u7684\u6E10\u53D8 8" x1="422.6" y1="-7655.4" x2="475.9" y2="-7694.2" xlink:href="%23_\u672A\u547D\u540D\u7684\u6E10\u53D8_8"/>%0A <linearGradient id="_\u672A\u547D\u540D\u7684\u6E10\u53D8_85" data-name="\u672A\u547D\u540D\u7684\u6E10\u53D8 8" x1="430.1" y1="-7645.1" x2="483.4" y2="-7683.8" xlink:href="%23_\u672A\u547D\u540D\u7684\u6E10\u53D8_8"/>%0A <linearGradient id="_\u672A\u547D\u540D\u7684\u6E10\u53D8_86" data-name="\u672A\u547D\u540D\u7684\u6E10\u53D8 8" x1="424.4" y1="-7652.9" x2="477.7" y2="-7691.7" xlink:href="%23_\u672A\u547D\u540D\u7684\u6E10\u53D8_8"/>%0A <linearGradient id="_\u672A\u547D\u540D\u7684\u6E10\u53D8_87" data-name="\u672A\u547D\u540D\u7684\u6E10\u53D8 8" x1="428.3" y1="-7647.7" x2="481.5" y2="-7686.5" xlink:href="%23_\u672A\u547D\u540D\u7684\u6E10\u53D8_8"/>%0A <linearGradient id="_\u672A\u547D\u540D\u7684\u6E10\u53D8_21" data-name="\u672A\u547D\u540D\u7684\u6E10\u53D8 21" x1="165.4" y1="-7669.9" x2="175.2" y2="-7669.9" gradientTransform="translate(0 -7632.1) scale(1 -1)" gradientUnits="userSpaceOnUse">%0A <stop offset="0" stop-color="%23d63129"/>%0A <stop offset="1" stop-color="%23fb4939"/>%0A </linearGradient>%0A <linearGradient id="_\u672A\u547D\u540D\u7684\u6E10\u53D8_211" data-name="\u672A\u547D\u540D\u7684\u6E10\u53D8 21" x1="163.3" y1="-7670.9" x2="172.9" y2="-7670.9" xlink:href="%23_\u672A\u547D\u540D\u7684\u6E10\u53D8_21"/>%0A <linearGradient id="_\u672A\u547D\u540D\u7684\u6E10\u53D8_212" data-name="\u672A\u547D\u540D\u7684\u6E10\u53D8 21" x1="161.1" y1="-7671.8" x2="171.7" y2="-7671.8" xlink:href="%23_\u672A\u547D\u540D\u7684\u6E10\u53D8_21"/>%0A <linearGradient id="_\u672A\u547D\u540D\u7684\u6E10\u53D8_213" data-name="\u672A\u547D\u540D\u7684\u6E10\u53D8 21" x1="167.6" y1="-7668.9" x2="177.7" y2="-7668.9" xlink:href="%23_\u672A\u547D\u540D\u7684\u6E10\u53D8_21"/>%0A <linearGradient id="_\u672A\u547D\u540D\u7684\u6E10\u53D8_214" data-name="\u672A\u547D\u540D\u7684\u6E10\u53D8 21" x1="169.8" y1="-7668" x2="180.2" y2="-7668" xlink:href="%23_\u672A\u547D\u540D\u7684\u6E10\u53D8_21"/>%0A <linearGradient id="_\u672A\u547D\u540D\u7684\u6E10\u53D8_215" data-name="\u672A\u547D\u540D\u7684\u6E10\u53D8 21" x1="205.3" y1="-7670.8" x2="215.5" y2="-7670.8" xlink:href="%23_\u672A\u547D\u540D\u7684\u6E10\u53D8_21"/>%0A <linearGradient id="_\u672A\u547D\u540D\u7684\u6E10\u53D8_216" data-name="\u672A\u547D\u540D\u7684\u6E10\u53D8 21" x1="202.8" y1="-7671.8" x2="213.2" y2="-7671.8" xlink:href="%23_\u672A\u547D\u540D\u7684\u6E10\u53D8_21"/>%0A <linearGradient id="_\u672A\u547D\u540D\u7684\u6E10\u53D8_217" data-name="\u672A\u547D\u540D\u7684\u6E10\u53D8 21" x1="207.7" y1="-7669.8" x2="217.8" y2="-7669.8" xlink:href="%23_\u672A\u547D\u540D\u7684\u6E10\u53D8_21"/>%0A <linearGradient id="_\u672A\u547D\u540D\u7684\u6E10\u53D8_218" data-name="\u672A\u547D\u540D\u7684\u6E10\u53D8 21" x1="209.4" y1="-7668.8" x2="220.1" y2="-7668.8" xlink:href="%23_\u672A\u547D\u540D\u7684\u6E10\u53D8_21"/>%0A <linearGradient id="_\u672A\u547D\u540D\u7684\u6E10\u53D8_219" data-name="\u672A\u547D\u540D\u7684\u6E10\u53D8 21" x1="200.3" y1="-7672.7" x2="210.9" y2="-7672.7" xlink:href="%23_\u672A\u547D\u540D\u7684\u6E10\u53D8_21"/>%0A <linearGradient id="_\u672A\u547D\u540D\u7684\u6E10\u53D8_22" data-name="\u672A\u547D\u540D\u7684\u6E10\u53D8 22" x1="213.1" y1="-7702.9" x2="178.1" y2="-7652.6" gradientTransform="translate(0 -7632.1) scale(1 -1)" gradientUnits="userSpaceOnUse">%0A <stop offset="0" stop-color="%233283f2"/>%0A <stop offset=".6" stop-color="%238d75d3"/>%0A <stop offset=".9" stop-color="%23ec3f33"/>%0A </linearGradient>%0A <linearGradient id="_\u672A\u547D\u540D\u7684\u6E10\u53D8_27" data-name="\u672A\u547D\u540D\u7684\u6E10\u53D8 27" x1="441.6" y1="33.6" x2="462" y2="51.4" gradientUnits="userSpaceOnUse">%0A <stop offset="0" stop-color="%23ec3f33"/>%0A <stop offset=".4" stop-color="%238d75d3"/>%0A <stop offset="1" stop-color="%233283f2"/>%0A </linearGradient>%0A <linearGradient id="_\u672A\u547D\u540D\u7684\u6E10\u53D8_271" data-name="\u672A\u547D\u540D\u7684\u6E10\u53D8 27" x1="449.7" y1="24.3" x2="470.1" y2="42.2" xlink:href="%23_\u672A\u547D\u540D\u7684\u6E10\u53D8_27"/>%0A </defs>%0A <path class="st23" d="M-573.3-2757.9c-1.3-3.1-3.2-5.9-5.5-8.2s-5.2-4.1-8.4-5.4c-3.2-1.3-6.7-1.9-10.5-1.9h-18.8s0,51.9,0,51.9h18.9c3.7,0,7.2-.7,10.4-2s6-3.1,8.3-5.5c2.4-2.3,4.2-5.1,5.5-8.3,1.3-3.2,2-6.6,2-10.3,0-3.8-.7-7.2-2-10.4h0ZM-579.7-2736.8c-1.8,3.1-4.2,5.6-7.3,7.4s-6.7,2.7-10.8,2.7h-13.1v-41.7s13.1,0,13.1,0c4.1,0,7.7.9,10.8,2.7,3.1,1.8,5.6,4.2,7.3,7.4,1.8,3.1,2.6,6.7,2.7,10.8,0,4.1-.9,7.7-2.6,10.8h0Z"/>%0A <polygon class="st11" points="50.5 64.2 50.5 54.2 24.6 54.2 24.6 42.4 47.9 42.4 47.9 32.7 24.6 32.7 24.6 22 50.1 22 50.1 12 21.8 12 21.8 12 13 12 13 64.3 24.6 64.3 24.6 64.3 50.5 64.2"/>%0A <path class="st11" d="M72.9,65.1c-4.3,0-8-.7-11.1-2.1s-5.9-3.5-8.5-6.4l7.5-7.5c1.7,1.9,3.5,3.4,5.6,4.5,2.1,1.1,4.4,1.6,7.1,1.6s4.4-.5,5.7-1.3c1.4-.9,2-2.1,2-3.7s-.4-2.6-1.3-3.5c-.9-.9-2.1-1.7-3.5-2.3s-3.1-1.3-4.8-1.8c-1.8-.6-3.5-1.3-5.2-2-1.7-.8-3.3-1.7-4.8-2.9-1.5-1.2-2.6-2.6-3.5-4.4s-1.3-4-1.3-6.6c0-3.2.8-6,2.3-8.3,1.6-2.3,3.7-4.1,6.5-5.3,2.8-1.2,5.9-1.8,9.5-1.8s7,.6,10,1.9c3,1.3,5.5,3,7.5,5.2l-7.5,7.5c-1.6-1.6-3.2-2.8-4.8-3.6-1.6-.8-3.4-1.2-5.4-1.2s-3.6.4-4.8,1.1c-1.2.8-1.8,1.9-1.8,3.3s.4,2.4,1.3,3.2c.9.8,2.1,1.5,3.5,2.1,1.5.6,3.1,1.2,4.8,1.8,1.8.6,3.5,1.3,5.2,2.1,1.7.8,3.3,1.8,4.8,3,1.5,1.2,2.6,2.7,3.5,4.6s1.3,4.1,1.3,6.8c0,5-1.8,8.9-5.3,11.7-3.6,2.8-8.5,4.3-14.7,4.3h0Z"/>%0A <path class="st11" d="M137.4,19.7c-1.6-2.5-3.7-4.4-6.3-5.7-2.7-1.3-5.7-2-9-2h-21.8s0,52.3,0,52.3h11.6v-19s10.2,0,10.2,0c3.3,0,6.3-.7,9-2s4.8-3.3,6.3-5.8c1.6-2.5,2.3-5.4,2.3-8.8s-.8-6.4-2.3-8.8h0ZM127.2,32.7c-.7,1.1-1.6,2-2.8,2.6s-2.5.9-3.9.9h-8.5v-15.2s8.5,0,8.5,0c1.4,0,2.7.3,3.9.9,1.2.6,2.1,1.5,2.8,2.6.7,1.1,1,2.5,1,4.1s-.3,3-1,4.1Z"/>%0A <polygon class="st11" points="262.2 64.2 262.2 59.1 233.3 59.2 233.3 40 259.7 40 259.7 35 233.3 35 233.3 17.1 261.7 17.1 261.7 12 231.4 12.1 231.4 12.1 227.8 12.1 227.8 64.2 233.3 64.2 233.3 64.2 262.2 64.2"/>%0A <path class="st11" d="M304,64.2h7.1l-19.3-23.4c3.1,0,5.8-.7,8-1.8,2.4-1.2,4.3-2.9,5.6-5,1.3-2.2,1.9-4.7,1.9-7.6s-.6-5.3-1.9-7.4-3.1-3.9-5.6-5.1c-2.4-1.2-5.3-1.9-8.7-1.9h-18.7v52.2h5.6v-23.4s7,0,7,0l19,23.3h0ZM278,16.9h13.2c3.4,0,6.1.9,7.9,2.7,1.8,1.8,2.7,4.1,2.7,6.9,0,2.9-.9,5.3-2.7,7-1.8,1.8-4.5,2.6-7.9,2.6h-13.2v-19.3s0,0,0,0Z"/>%0A <path class="st11" d="M341.3,64.9c-3.7,0-7.1-.7-10.2-2.1-3.1-1.4-5.9-3.3-8.3-5.7-2.4-2.4-4.2-5.3-5.5-8.5s-2-6.7-2-10.4c0-3.8.6-7.3,2-10.5,1.3-3.2,3.1-6,5.5-8.5,2.4-2.4,5.1-4.3,8.2-5.7,3.1-1.4,6.5-2,10.2-2s7.1.7,10.2,2,5.9,3.2,8.3,5.6c2.4,2.4,4.2,5.2,5.5,8.5,1.3,3.2,2,6.8,2,10.5s-.6,7.2-2,10.5c-1.3,3.2-3.1,6.1-5.5,8.5-2.3,2.4-5.1,4.3-8.2,5.7-3.1,1.4-6.5,2.1-10.2,2.1h0ZM341.2,59.6c3.9,0,7.4-.9,10.4-2.8s5.4-4.4,7.2-7.6c1.7-3.2,2.6-6.9,2.6-11,0-3.1-.5-5.9-1.5-8.5-1-2.6-2.4-4.9-4.2-6.8-1.8-1.9-3.9-3.4-6.4-4.5s-5.1-1.6-8.1-1.6-7.3.9-10.4,2.8c-3,1.8-5.4,4.4-7.2,7.6-1.7,3.2-2.6,6.9-2.6,11,0,3.1.5,5.9,1.5,8.5,1,2.6,2.4,4.9,4.2,6.8s4,3.4,6.4,4.5,5.1,1.6,8,1.6h0Z"/>%0A <path class="st11" d="M401.6,64.9c-3.7,0-7.2-.7-10.4-2-3.2-1.4-6-3.3-8.3-5.7-2.4-2.5-4.2-5.3-5.5-8.6-1.3-3.2-1.9-6.7-1.9-10.4s.6-7.2,1.9-10.5c1.3-3.2,3.1-6.1,5.4-8.5,2.3-2.4,5.1-4.3,8.2-5.7,3.2-1.4,6.6-2,10.3-2s7.5.7,10.7,2.1c3.1,1.4,5.9,3.3,8.3,5.8l-3.8,3.8c-1.8-2-4-3.6-6.6-4.7-2.6-1.1-5.4-1.7-8.6-1.7s-5.6.5-8,1.6-4.6,2.6-6.4,4.5c-1.8,1.9-3.2,4.2-4.2,6.8-1,2.6-1.5,5.4-1.5,8.5,0,3.1.5,5.9,1.5,8.5,1,2.6,2.4,4.9,4.2,6.8,1.8,1.9,4,3.4,6.4,4.5,2.5,1,5.1,1.6,8.1,1.6s6.3-.6,8.9-1.7,4.8-2.7,6.6-4.8l3.8,3.8c-2.3,2.5-5.1,4.4-8.3,5.8-3.2,1.4-6.8,2.1-10.8,2.2h0Z"/>%0A <path class="st11" d="M531.3,27.7c-1.3-3.1-3.2-5.9-5.5-8.2s-5.2-4.1-8.4-5.4c-3.2-1.3-6.7-1.9-10.5-1.9h-18.8s0,51.9,0,51.9h18.9c3.7,0,7.2-.7,10.4-2,3.2-1.3,6-3.1,8.3-5.5,2.4-2.3,4.2-5.1,5.5-8.3,1.3-3.2,2-6.6,2-10.3,0-3.8-.7-7.2-2-10.4h0ZM524.9,48.8c-1.8,3.1-4.2,5.6-7.3,7.4s-6.7,2.7-10.8,2.7h-13.1V17.2s13.1,0,13.1,0c4.1,0,7.7.9,10.8,2.7s5.6,4.2,7.3,7.4c1.8,3.1,2.6,6.7,2.7,10.8,0,4.1-.9,7.7-2.6,10.8h0Z"/>%0A <polygon class="st11" points="578 64 578 58.9 549.4 59 549.4 39.9 575.6 39.9 575.6 35 549.4 35 549.3 17.2 577.6 17.2 577.5 12.1 549.3 12.1 549.3 12.1 543.8 12.1 543.9 64 547.5 64 547.5 64 578 64"/>%0A <g class="st12">%0A <g>%0A <g>%0A <path class="st0" d="M469.5,55.7c9.7-8.5,10.7-23.8,2.2-33.5,4.6,5.1,6.8,11.9,6.1,18.7-.4,3.4-1.4,6.7-3.2,9.6-.8,1.4-1.7,2.7-2.8,3.8-.4.5-1.2,1.6-1.8,1.8-.4,0-.8,0-.5-.6v.2Z"/>%0A <path class="st19" d="M438.2,20.6c-9.7,8.5-10.7,23.8-2.2,33.5-4.6-5.1-6.8-11.9-6.1-18.7.4-3.4,1.4-6.7,3.2-9.6.8-1.4,1.7-2.7,2.8-3.8.4-.5,1.2-1.6,1.8-1.8.4-.1.8.1.5.6v-.2Z"/>%0A <path class="st17" d="M473.3,53.5c8.6-10.6,6.7-26.6-3.8-35.1,5.6,4.3,9.1,10.9,9.7,17.9.3,3.6-.2,7.3-1.4,10.7-.6,1.6-1.4,3.2-2.3,4.7-.4.6-.9,1.6-1.4,2.1-.3.3-1.1.4-.7-.3h-.1Z"/>%0A <path class="st18" d="M434.4,22.8c-8.6,10.6-6.7,26.6,3.8,35.1-5.6-4.3-9.1-10.9-9.7-17.9-.3-3.6.2-7.3,1.4-10.7.6-1.6,1.4-3.2,2.3-4.7.4-.6.9-1.6,1.4-2.1.3-.3,1.1-.4.7.3h.1Z"/>%0A </g>%0A <path class="st15" d="M449.3,63.9c14.1,2.6,28-7,30.6-21.1-1.2,7.3-5.5,13.9-11.7,17.9s-6.5,3.4-10.1,4c-1.9.3-3.7.4-5.6.4s-2,0-2.9-.3c-.3,0-.9,0-.8-.6,0-.3.3-.4.5-.3Z"/>%0A <path class="st16" d="M458.4,12.4c-14.1-2.6-28,7-30.6,21.1,1.2-7.3,5.5-13.9,11.7-17.9s6.5-3.4,10.1-4c1.9-.3,3.7-.4,5.6-.4s2,0,2.9.3c.3,0,.9,0,.8.6,0,.3-.3.4-.5.3Z"/>%0A <path class="st13" d="M453.8,65.6c15.1,0,27.8-12.4,27.9-27.5,0,8-3.3,15.7-9.2,21.1-2.9,2.6-6.3,4.6-10,5.8-1.9.6-3.9,1.1-5.9,1.3-.5,0-2.5.5-3,0-.3-.3-.3-.8.2-.8Z"/>%0A <path class="st14" d="M453.8,10.7c-15.1-.1-27.8,12.4-27.9,27.5,0-8,3.3-15.7,9.2-21.1,2.9-2.6,6.3-4.6,10-5.8,1.9-.6,3.9-1.1,5.9-1.3.5,0,2.5-.5,3-.1.3.3.3.8-.2.8Z"/>%0A </g>%0A </g>%0A <g class="st12">%0A <polygon class="st21" points="167.1 38 174.2 50.4 173.3 51.9 165.4 38 173.4 23.7 175.2 23.7 167.1 38"/>%0A <polygon class="st9" points="172.9 52.5 172.2 53.8 163.3 38 171.2 23.7 172.7 23.7 164.7 38 172.9 52.5"/>%0A <polygon class="st8" points="171.7 54.6 171 55.7 161.1 38 168.9 23.7 170.2 23.7 162.3 38 171.7 54.6"/>%0A <polygon class="st4" points="169.5 38 175.4 48.3 174.5 49.9 167.6 38 175.7 23.7 177.7 23.7 169.5 38 169.5 38"/>%0A <polygon class="st2" points="171.8 38.1 176.7 46.1 175.6 48 169.8 38 178 23.7 180.2 23.7 171.9 38 171.8 38.1"/>%0A </g>%0A <g class="st12">%0A <polygon class="st5" points="215.5 38 207.8 24.8 206.9 26.3 213.7 38 205.3 52.5 207 52.5 215.5 38"/>%0A <polygon class="st6" points="202.8 52.5 204.7 52.5 213.2 38 206.7 26.8 205.7 28.5 211.3 38 211.2 38.1 202.8 52.5"/>%0A <polygon class="st1" points="217.8 38 209 22.9 208.2 24.2 216.2 38 207.7 52.5 209.3 52.5 217.8 38"/>%0A <polygon class="st7" points="211.6 52.5 220.1 38 210.1 20.9 209.4 22.1 218.7 38 210.2 52.5 211.6 52.5 211.6 52.5"/>%0A <polygon class="st3" points="210.9 38 205.5 28.7 204.4 30.6 208.8 38 208.7 38.1 201.2 50.9 200.3 52.5 202.4 52.5 210.9 38"/>%0A </g>%0A <polygon class="st22" points="210.7 55 205.5 64.1 175.1 64.1 172.1 58.9 174.4 55 194.3 21.2 169.8 21.2 175.1 12 205.5 12 208.9 17.9 207 21.1 187 55 187 55.1 210.7 55"/>%0A <g>%0A <path d="M452.1,26.4l8,21.4h-4.9l-1.6-4.8h-8l-1.7,4.8h-4.7l8.1-21.4h4.8ZM452.4,39.5l-2.7-7.9h0l-2.8,7.9h5.6-.1Z"/>%0A <path d="M466.7,26.4v21.4h-4.7v-21.4h4.7Z"/>%0A </g>%0A <g>%0A <path class="st20" d="M452.1,26.4l8,21.4h-4.9l-1.6-4.8h-8l-1.7,4.8h-4.7l8.1-21.4h4.8ZM452.4,39.5l-2.7-7.9h0l-2.8,7.9h5.6-.1Z"/>%0A <path class="st10" d="M466.7,26.4v21.4h-4.7v-21.4h4.7Z"/>%0A </g>%0A</svg>';
|
|
98
|
+
|
|
99
|
+
// src/assets/logos/zerocode-ai/zerocode-ai-no-text.svg
|
|
100
|
+
var zerocode_ai_no_text_default = 'data:image/svg+xml,<?xml version="1.0" encoding="UTF-8"?><svg id="Layer_1" xmlns="http://www.w3.org/2000/svg" width="59" height="52.1" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 59 52.1"><defs><linearGradient id="linear-gradient" x1="4.3" y1="9007.9" x2="14.1" y2="9007.9" gradientTransform="translate(0 -8982.1)" gradientUnits="userSpaceOnUse"><stop offset="0" stop-color="%23d63129"/><stop offset="1" stop-color="%23fb4939"/></linearGradient><linearGradient id="linear-gradient-2" x1="2.2" y1="9008.85" x2="11.8" y2="9008.85" xlink:href="%23linear-gradient"/><linearGradient id="linear-gradient-3" x1="0" y1="9009.8" x2="10.6" y2="9009.8" xlink:href="%23linear-gradient"/><linearGradient id="linear-gradient-4" x1="6.5" y1="9006.9" x2="16.6" y2="9006.9" xlink:href="%23linear-gradient"/><linearGradient id="linear-gradient-5" x1="8.7" y1="9005.95" x2="19.1" y2="9005.95" xlink:href="%23linear-gradient"/><linearGradient id="linear-gradient-6" x1="44.2" y1="9008.75" x2="54.4" y2="9008.75" xlink:href="%23linear-gradient"/><linearGradient id="linear-gradient-7" x1="41.7" y1="9009.75" x2="52.1" y2="9009.75" xlink:href="%23linear-gradient"/><linearGradient id="linear-gradient-8" x1="46.6" y1="9007.8" x2="56.7" y2="9007.8" xlink:href="%23linear-gradient"/><linearGradient id="linear-gradient-9" x1="48.3" y1="9006.8" x2="59" y2="9006.8" xlink:href="%23linear-gradient"/><linearGradient id="linear-gradient-10" x1="39.2" y1="9010.7" x2="49.8" y2="9010.7" xlink:href="%23linear-gradient"/><linearGradient id="linear-gradient-11" x1="51.99" y1="9040.91" x2="16.99" y2="8990.61" gradientTransform="translate(0 -8982.1)" gradientUnits="userSpaceOnUse"><stop offset="0" stop-color="%233283f2"/><stop offset=".6" stop-color="%238d75d3"/><stop offset=".9" stop-color="%23ec3f33"/></linearGradient></defs><g style="opacity:.5;"><polygon points="6 26 13.1 38.4 12.2 39.9 4.3 26 12.3 11.7 14.1 11.7 6 26" style="fill:url(%23linear-gradient);"/><polygon points="11.8 40.5 11.1 41.8 2.2 26 10.1 11.7 11.6 11.7 3.6 26 11.8 40.5" style="fill:url(%23linear-gradient-2);"/><polygon points="10.6 42.6 9.9 43.7 0 26 7.8 11.7 9.1 11.7 1.2 26 10.6 42.6" style="fill:url(%23linear-gradient-3);"/><polygon points="8.4 26 14.3 36.3 13.4 37.9 6.5 26 14.6 11.7 16.6 11.7 8.4 26 8.4 26" style="fill:url(%23linear-gradient-4);"/><polygon points="10.7 26.1 15.6 34.1 14.5 36 8.7 26 16.9 11.7 19.1 11.7 10.8 26 10.7 26.1" style="fill:url(%23linear-gradient-5);"/></g><g style="opacity:.5;"><polygon points="54.4 26 46.7 12.8 45.8 14.3 52.6 26 44.2 40.5 45.9 40.5 54.4 26" style="fill:url(%23linear-gradient-6);"/><polygon points="41.7 40.5 43.6 40.5 52.1 26 45.6 14.8 44.6 16.5 50.2 26 50.1 26.1 41.7 40.5" style="fill:url(%23linear-gradient-7);"/><polygon points="56.7 26 47.9 10.9 47.1 12.2 55.1 26 46.6 40.5 48.2 40.5 56.7 26" style="fill:url(%23linear-gradient-8);"/><polygon points="50.5 40.5 59 26 49 8.9 48.3 10.1 57.6 26 49.1 40.5 50.5 40.5 50.5 40.5" style="fill:url(%23linear-gradient-9);"/><polygon points="49.8 26 44.4 16.7 43.3 18.6 47.7 26 47.6 26.1 40.1 38.9 39.2 40.5 41.3 40.5 49.8 26" style="fill:url(%23linear-gradient-10);"/></g><polygon points="49.6 43 44.4 52.1 14 52.1 11 46.9 13.3 43 33.2 9.2 8.7 9.2 14 0 44.4 0 47.8 5.9 45.9 9.1 25.9 43 25.9 43.1 49.6 43" style="fill:url(%23linear-gradient-11);"/></svg>';
|
|
101
|
+
|
|
90
102
|
// src/common/app-logo/logo-config.ts
|
|
91
103
|
var logoConfig = {
|
|
92
104
|
espressif: {
|
|
@@ -111,12 +123,12 @@ var logoConfig = {
|
|
|
111
123
|
},
|
|
112
124
|
launchpad: {
|
|
113
125
|
light: {
|
|
114
|
-
full: { src: launchpad_with_text_default, width:
|
|
115
|
-
minimal: { src: launchpad_no_text_default, width:
|
|
126
|
+
full: { src: launchpad_with_text_default, width: 319.42, height: 46.05 },
|
|
127
|
+
minimal: { src: launchpad_no_text_default, width: 41.22, height: 40.89 }
|
|
116
128
|
},
|
|
117
129
|
dark: {
|
|
118
|
-
full: { src: launchpad_with_text_dm_default, width:
|
|
119
|
-
minimal: { src:
|
|
130
|
+
full: { src: launchpad_with_text_dm_default, width: 319.42, height: 40.89 },
|
|
131
|
+
minimal: { src: launchpad_no_text_dm_default, width: 41.22, height: 40.89 }
|
|
120
132
|
}
|
|
121
133
|
},
|
|
122
134
|
"private-agents": {
|
|
@@ -178,6 +190,16 @@ var logoConfig = {
|
|
|
178
190
|
full: { src: zerocode_with_text_dm_default, width: 565, height: 54.4 },
|
|
179
191
|
minimal: { src: zerocode_no_text_default, width: 63.4, height: 54.4 }
|
|
180
192
|
}
|
|
193
|
+
},
|
|
194
|
+
"zerocode-ai": {
|
|
195
|
+
light: {
|
|
196
|
+
full: { src: zerocode_ai_with_text_default, width: 592.8, height: 78.4 },
|
|
197
|
+
minimal: { src: zerocode_ai_no_text_default, width: 59, height: 52.1 }
|
|
198
|
+
},
|
|
199
|
+
dark: {
|
|
200
|
+
full: { src: zerocode_ai_with_text_dm_default, width: 592.8, height: 78.4 },
|
|
201
|
+
minimal: { src: zerocode_ai_no_text_default, width: 59, height: 52.1 }
|
|
202
|
+
}
|
|
181
203
|
}
|
|
182
204
|
};
|
|
183
205
|
var logoTransition = {
|