From 19388efcceb2a0188e02f164c611cadddc97e1f6 Mon Sep 17 00:00:00 2001 From: David Vail Date: Wed, 11 Mar 2026 10:39:11 -0400 Subject: [PATCH 1/3] Re-add dark theme support --- ui/apps/platform/index.html | 2 +- ui/apps/platform/package-lock.json | 7 ++ ui/apps/platform/package.json | 1 + .../platform/src/Components/CodeViewer.cy.jsx | 44 +-------- .../platform/src/Components/CodeViewer.tsx | 67 ++----------- .../src/Components/PatternFly/BrandLogo.tsx | 12 ++- .../URLSearchInputWithAutocomplete.jsx | 17 +--- ui/apps/platform/src/Containers/AppPage.tsx | 3 + .../src/Containers/Login/LoginPage.jsx | 5 +- .../MainPage/Header/MastheadToolbar.tsx | 5 +- .../MainPage/Header/ThemeToggleButton.tsx | 27 +++++ .../NetworkGraph/NetworkGraphPage.tsx | 5 +- .../NetworkGraph/components/NetworkSearch.css | 5 - .../Dashboard/VulnMgmtDashboardPage.jsx | 7 +- ui/apps/platform/src/app.tw.css | 1 + .../platform/src/constants/productBranding.ts | 10 ++ ui/apps/platform/src/css.imports.ts | 1 + ui/apps/platform/src/css/dark.theme.css | 98 +++++++++++++++++++ ui/apps/platform/src/css/trumps.css | 2 +- ui/apps/platform/src/hooks/useTheme.ts | 49 ++++++++++ ui/apps/platform/src/images/StackRox-Logo.svg | 6 +- 21 files changed, 230 insertions(+), 144 deletions(-) create mode 100644 ui/apps/platform/src/Containers/MainPage/Header/ThemeToggleButton.tsx create mode 100644 ui/apps/platform/src/css/dark.theme.css create mode 100644 ui/apps/platform/src/hooks/useTheme.ts diff --git a/ui/apps/platform/index.html b/ui/apps/platform/index.html index e6d3e9d566266..ac173136b8a9b 100644 --- a/ui/apps/platform/index.html +++ b/ui/apps/platform/index.html @@ -17,7 +17,7 @@ - +
diff --git a/ui/apps/platform/package-lock.json b/ui/apps/platform/package-lock.json index 9321009e14cdb..3c4d0d6db5463 100644 --- a/ui/apps/platform/package-lock.json +++ b/ui/apps/platform/package-lock.json @@ -13,6 +13,7 @@ "@apollo/client": "^3.6.3", "@lifeomic/axios-fetch": "^3.1.0", "@openshift-console/dynamic-plugin-sdk": "4.19.0", + "@patternfly/patternfly": "^6.4.0", "@patternfly/react-charts": "^8.4.1", "@patternfly/react-component-groups": "^6.4.0", "@patternfly/react-core": "^6.4.1", @@ -2343,6 +2344,12 @@ "node": ">=10" } }, + "node_modules/@patternfly/patternfly": { + "version": "6.4.0", + "resolved": "https://registry.npmjs.org/@patternfly/patternfly/-/patternfly-6.4.0.tgz", + "integrity": "sha512-4drFhg74sEc/fftark5wZevODIog17qR4pwLCdB3j5iK3Uu5oMA2SdLhsEeEQggalfnFzve/Km87MdVR0ghhvQ==", + "license": "MIT" + }, "node_modules/@patternfly/react-charts": { "version": "8.4.1", "resolved": "https://registry.npmjs.org/@patternfly/react-charts/-/react-charts-8.4.1.tgz", diff --git a/ui/apps/platform/package.json b/ui/apps/platform/package.json index 9d4f8e7de6e50..79220537fa32f 100644 --- a/ui/apps/platform/package.json +++ b/ui/apps/platform/package.json @@ -16,6 +16,7 @@ "@apollo/client": "^3.6.3", "@lifeomic/axios-fetch": "^3.1.0", "@openshift-console/dynamic-plugin-sdk": "4.19.0", + "@patternfly/patternfly": "^6.4.0", "@patternfly/react-charts": "^8.4.1", "@patternfly/react-component-groups": "^6.4.0", "@patternfly/react-core": "^6.4.1", diff --git a/ui/apps/platform/src/Components/CodeViewer.cy.jsx b/ui/apps/platform/src/Components/CodeViewer.cy.jsx index 8e65d9c97e409..fe3075f8f31c4 100644 --- a/ui/apps/platform/src/Components/CodeViewer.cy.jsx +++ b/ui/apps/platform/src/Components/CodeViewer.cy.jsx @@ -1,4 +1,4 @@ -import CodeViewer, { CodeViewerThemeProvider } from './CodeViewer'; +import CodeViewer from './CodeViewer'; const sampleYaml = `apiVersion: networking.k8s.io/v1 kind: NetworkPolicy @@ -37,46 +37,4 @@ describe(Cypress.spec.relative, () => { }); }); }); - - it('should toggle light and dark editor themes', () => { - cy.mount(); - - // Default to light mode - cy.get('[data-component-theme="light"]').should('exist'); - cy.get('[data-component-theme="dark"]').should('not.exist'); - - cy.get('button[aria-label="Set dark theme"]').click(); - cy.get('[data-component-theme="light"]').should('not.exist'); - cy.get('[data-component-theme="dark"]').should('exist'); - - cy.get('button[aria-label="Set light theme"]').click(); - cy.get('[data-component-theme="light"]').should('exist'); - cy.get('[data-component-theme="dark"]').should('not.exist'); - }); - - it('should share theme state across multiple instances', () => { - cy.mount( - - - - - ); - - cy.get('[data-component-theme="light"]').should('have.length', 2); - cy.get('[data-component-theme="dark"]').should('have.length', 0); - - cy.get('button[aria-label="Set dark theme"]').eq(0); - cy.get('button[aria-label="Set dark theme"]').eq(1); - cy.get('button[aria-label="Set dark theme"]').eq(0).click(); - - cy.get('[data-component-theme="light"]').should('have.length', 0); - cy.get('[data-component-theme="dark"]').should('have.length', 2); - - cy.get('button[aria-label="Set light theme"]').eq(0); - cy.get('button[aria-label="Set light theme"]').eq(1); - cy.get('button[aria-label="Set light theme"]').eq(1).click(); - - cy.get('[data-component-theme="light"]').should('have.length', 2); - cy.get('[data-component-theme="dark"]').should('have.length', 0); - }); }); diff --git a/ui/apps/platform/src/Components/CodeViewer.tsx b/ui/apps/platform/src/Components/CodeViewer.tsx index 1904cf5b76cc5..233d6a1cbd78c 100644 --- a/ui/apps/platform/src/Components/CodeViewer.tsx +++ b/ui/apps/platform/src/Components/CodeViewer.tsx @@ -1,7 +1,5 @@ -import { createContext, useContext, useState } from 'react'; -import type { CSSProperties, Dispatch, ReactElement, ReactNode, SetStateAction } from 'react'; -import { Button, ClipboardCopyButton, CodeBlock, CodeBlockAction } from '@patternfly/react-core'; -import { MoonIcon, SunIcon } from '@patternfly/react-icons'; +import type { CSSProperties, ReactElement, ReactNode } from 'react'; +import { ClipboardCopyButton, CodeBlock, CodeBlockAction } from '@patternfly/react-core'; import { PrismLight as SyntaxHighlighter } from 'react-syntax-highlighter'; import lightTheme from 'react-syntax-highlighter/dist/esm/styles/prism/one-light'; @@ -9,51 +7,13 @@ import darkTheme from 'react-syntax-highlighter/dist/esm/styles/prism/one-dark'; import yaml from 'react-syntax-highlighter/dist/esm/languages/prism/yaml'; import useClipboardCopy from 'hooks/useClipboardCopy'; +import { useTheme } from 'hooks/useTheme'; SyntaxHighlighter.registerLanguage('yaml', yaml); -const CodeViewerThemeContext = createContext< - ['light' | 'dark', Dispatch>] | undefined ->(undefined); - -export const CodeViewerThemeProvider = ({ children }: { children: ReactNode }) => { - const [state, setState] = useState<'light' | 'dark'>('light'); - - return ( - - {children} - - ); -}; - -export const useCodeViewerThemeContext = () => { - const context = useContext(CodeViewerThemeContext); - // Fallback state provides the ability to toggle theme for a single instance if no provider is detected uptree - const fallbackState = useState<'light' | 'dark'>('light'); - return context ?? fallbackState; -}; - // When adding to the supported languages, the correct language definition must be imported and registered as well type SupportedLanguages = 'yaml'; -const defaultStyle = { - '--pf-v6-u-max-height--MaxHeight': '300px', - '--pf-v6-c-code-block__content--PaddingBlockStart': '0', - '--pf-v6-c-code-block__content--PaddingBlockEnd': '0', - '--pf-v6-c-code-block__content--PaddingInlineStart': '0', - '--pf-v6-c-code-block__content--PaddingInlineEnd': '0', - overflowY: 'auto', -} as const; - -const lightThemeStyles = {} as const; - -// TODO This should be deleted when we move to proper PatternFly theming -const darkThemeStyles = { - '--pf-t--global--background--color--secondary--default': 'var(--pf-t--color--gray--95)', - '--pf-t--global--text--color--regular': 'var(--pf-t--color--white)', - '--pf-t--global--icon--color--regular': 'var(--pf-t--color--white)', -} as const; - export type CodeViewerProps = { code: string; language?: SupportedLanguages; @@ -70,11 +30,7 @@ export default function CodeViewer({ additionalControls, }: CodeViewerProps): ReactElement { const { wasCopied, setWasCopied, copyToClipboard } = useClipboardCopy(); - const [theme, setTheme] = useCodeViewerThemeContext(); - - function toggleTheme() { - setTheme((prevValue) => (prevValue === 'light' ? 'dark' : 'light')); - } + const theme = useTheme(); const actions = ( <> @@ -90,33 +46,22 @@ export default function CodeViewer({ {wasCopied ? 'Successfully copied to clipboard!' : 'Copy to clipboard'} - - + + ); +} + +export default ThemeToggleButton; diff --git a/ui/apps/platform/src/Containers/NetworkGraph/NetworkGraphPage.tsx b/ui/apps/platform/src/Containers/NetworkGraph/NetworkGraphPage.tsx index 27c0135fa350f..f161074f228e3 100644 --- a/ui/apps/platform/src/Containers/NetworkGraph/NetworkGraphPage.tsx +++ b/ui/apps/platform/src/Containers/NetworkGraph/NetworkGraphPage.tsx @@ -24,7 +24,6 @@ import { fetchNetworkFlowGraph } from 'services/NetworkService'; import queryService from 'utils/queryService'; import { isCompleteSearchFilter } from 'utils/searchUtils'; -import { CodeViewerThemeProvider } from 'Components/CodeViewer'; import PageTitle from 'Components/PageTitle'; import useURLParameter from 'hooks/useURLParameter'; import type { SearchFilter } from 'types/search'; @@ -285,7 +284,7 @@ function NetworkGraphPageContent() { } return ( - + <> {!isBannerDismissed && ( - + ); } diff --git a/ui/apps/platform/src/Containers/NetworkGraph/components/NetworkSearch.css b/ui/apps/platform/src/Containers/NetworkGraph/components/NetworkSearch.css index b389a8993b7bf..2ec97a052c280 100644 --- a/ui/apps/platform/src/Containers/NetworkGraph/components/NetworkSearch.css +++ b/ui/apps/platform/src/Containers/NetworkGraph/components/NetworkSearch.css @@ -23,7 +23,6 @@ .pf-search-shim > div > span, .pf-search-shim > div .react-select__value-container * { - color: var(--pf-t--global--text--color--regular) !important; font-weight: var(--pf-t--global--font--weight--body--default) !important; } @@ -31,9 +30,6 @@ font-size: var(--pf-t--global--font--size--md) !important; } -.pf-search-shim svg { - fill: var(--pf-t--global--text--color--regular); -} .pf-search-shim > .react-select__control { border-radius: 0 !important; @@ -47,6 +43,5 @@ } .pf-search-shim .react-select__multi-value__label { - color: var(--pf-t--global--text--color--regular) !important; font-size: var(--pf-t--global--font--size--xs) !important; } diff --git a/ui/apps/platform/src/Containers/VulnMgmt/Dashboard/VulnMgmtDashboardPage.jsx b/ui/apps/platform/src/Containers/VulnMgmt/Dashboard/VulnMgmtDashboardPage.jsx index 1cffef4d616ae..173485b8a42d9 100644 --- a/ui/apps/platform/src/Containers/VulnMgmt/Dashboard/VulnMgmtDashboardPage.jsx +++ b/ui/apps/platform/src/Containers/VulnMgmt/Dashboard/VulnMgmtDashboardPage.jsx @@ -72,12 +72,7 @@ const VulnMgmtDashboardPage = () => {
-
+
diff --git a/ui/apps/platform/src/app.tw.css b/ui/apps/platform/src/app.tw.css index ed95231008539..0507e0446db6a 100644 --- a/ui/apps/platform/src/app.tw.css +++ b/ui/apps/platform/src/app.tw.css @@ -7,6 +7,7 @@ @import 'css/style.css'; @import 'css/light.theme.css'; +@import 'css/dark.theme.css'; /* React Table overrides. Delete this file once all react Table properties are ported over properly to avoid the use of !important*/ @import 'react-table-6/react-table.css'; diff --git a/ui/apps/platform/src/constants/productBranding.ts b/ui/apps/platform/src/constants/productBranding.ts index 100e8e7a4387c..3d7c901120706 100644 --- a/ui/apps/platform/src/constants/productBranding.ts +++ b/ui/apps/platform/src/constants/productBranding.ts @@ -1,7 +1,12 @@ +/* eslint-disable import/no-duplicates */ +import type { ComponentType, SVGProps } from 'react'; import rhacsFavicon from 'images/rh-favicon.ico'; import stackroxFavicon from 'images/sr-favicon.ico'; import rhacsLogoSvg from 'images/RHACS-Logo.svg'; +import RHACSLogoSvg from 'images/RHACS-Logo.svg?react'; import stackroxLogoSvg from 'images/StackRox-Logo.svg'; +import StackRoxLogoSvg from 'images/StackRox-Logo.svg?react'; +/* eslint-enable import/no-duplicates */ export type ProductBranding = 'RHACS_BRANDING' | 'STACKROX_BRANDING'; @@ -9,7 +14,10 @@ export interface BrandingAssets { /** The branding value used to generate assets */ type: ProductBranding; /** The source path to the main branding logo in SVG format */ + /** Retained only for PDF generation */ logoSvg: string; + /** React component for the logo SVG */ + LogoComponent: ComponentType>; /** Alt text for the main branding logo */ logoAltText: string; /** Value to use as the base in the element */ @@ -25,6 +33,7 @@ export interface BrandingAssets { const rhacsBranding: BrandingAssets = { type: 'RHACS_BRANDING', logoSvg: rhacsLogoSvg, + LogoComponent: RHACSLogoSvg, logoAltText: 'Red Hat Advanced Cluster Security Logo', basePageTitle: 'Red Hat Advanced Cluster Security', reportName: 'Red Hat Advanced Cluster Security (RHACS)', @@ -35,6 +44,7 @@ const rhacsBranding: BrandingAssets = { const stackroxBranding: BrandingAssets = { type: 'STACKROX_BRANDING', logoSvg: stackroxLogoSvg, + LogoComponent: StackRoxLogoSvg, logoAltText: 'StackRox Logo', basePageTitle: 'StackRox', reportName: 'StackRox', diff --git a/ui/apps/platform/src/css.imports.ts b/ui/apps/platform/src/css.imports.ts index b1d61485aa7a9..afbb2822f872f 100644 --- a/ui/apps/platform/src/css.imports.ts +++ b/ui/apps/platform/src/css.imports.ts @@ -10,6 +10,7 @@ import '@patternfly/react-styles/css/utilities/Flex/flex.css'; import '@patternfly/react-styles/css/utilities/Sizing/sizing.css'; import '@patternfly/react-styles/css/utilities/Spacing/spacing.css'; import '@patternfly/react-styles/css/utilities/Text/text.css'; +import '@patternfly/patternfly/patternfly-charts.css'; // Advanced Cluster Security extensions to PatternFly styles import 'css/acs.css'; diff --git a/ui/apps/platform/src/css/dark.theme.css b/ui/apps/platform/src/css/dark.theme.css new file mode 100644 index 0000000000000..92d6a0042c96d --- /dev/null +++ b/ui/apps/platform/src/css/dark.theme.css @@ -0,0 +1,98 @@ +.theme-dark { + --base-0: hsla(0, 0%, 19%, 1); + --base-100: hsla(0, 0%, 23%, 1); + --base-200: hsla(0, 0%, 26%, 1); + --base-300: hsla(0, 0%, 32%, 1); + --base-400: hsla(0, 0%, 37%, 1); + --base-500: hsla(0, 0%, 63%, 1); + --base-600: hsla(0, 0%, 87%, 1); + --base-700: hsla(0, 0%, 94%, 1); + --base-800: hsla(0, 0%, 98%, 1); + --base-900: hsla(0, 0%, 100%, 1); + + --primary-100: hsla(207, 28%, 21%, 1); + --primary-200: hsla(207, 34%, 26%, 1); + --primary-300: hsla(207, 36%, 40%, 1); + --primary-400: hsla(207, 45%, 55%, 1); + --primary-500: hsla(207, 65%, 60%, 1); + --primary-600: hsla(207, 68%, 70%, 1); + --primary-700: hsla(207, 80%, 80%, 1); + --primary-800: hsla(207, 100%, 93%, 1); + --primary-900: hsla(207, 100%, 99%, 1); + + --secondary-100: hsla(250, 21%, 27%, 1); + --secondary-200: hsla(250, 18%, 36%, 1); + --secondary-300: hsla(250, 20%, 45%, 1); + --secondary-400: hsla(250, 25%, 67%, 1); + --secondary-500: hsla(250, 39%, 68%, 1); + --secondary-600: hsla(250, 48%, 78%, 1); + --secondary-700: hsla(250, 66%, 90%, 1); + --secondary-800: hsla(250, 100%, 96%, 1); + --secondary-900: hsla(250, 45%, 98%, 1); + + --tertiary-100: hsla(210, 25%, 21%, 1); + --tertiary-200: hsla(210, 33%, 26%, 1); + --tertiary-300: hsla(210, 35%, 48%, 1); + --tertiary-400: hsla(210, 40%, 58%, 1); + --tertiary-500: hsla(210, 55%, 68%, 1); + --tertiary-600: hsla(210, 68%, 78%, 1); + --tertiary-700: hsla(210, 81%, 90%, 1); + --tertiary-800: hsla(210, 100%, 96%, 1); + --tertiary-900: hsla(210, 45%, 98%, 1); + + --accent-100: hsla(293, 28%, 21%, 1); + --accent-200: hsla(293, 34%, 37%, 1); + --accent-300: hsla(293, 34%, 50%, 1); + --accent-400: hsla(293, 68%, 62%, 1); + --accent-500: hsla(293, 62%, 71%, 1); + --accent-600: hsla(293, 64%, 80%, 1); + --accent-700: hsla(293, 67%, 90%, 1); + --accent-800: hsla(293, 70%, 96%, 1); + --accent-900: hsla(293, 45%, 98%, 1); + + --success-100: hsla(113, 28%, 21%, 1); + --success-200: hsla(113, 33%, 30%, 1); + --success-300: hsla(113, 62%, 37%, 1); + --success-400: hsla(113, 52%, 46%, 1); + --success-500: hsla(113, 66%, 68%, 1); + --success-600: hsla(113, 68%, 78%, 1); + --success-700: hsla(113, 81%, 80%, 1); + --success-800: hsla(113, 100%, 72%, 1); + --success-900: hsla(113, 100%, 90%, 1); + + --warning-100: hsla(43, 28%, 21%, 1); + --warning-200: hsla(43, 22%, 51%, 1); + --warning-300: hsla(43, 38%, 52%, 1); + --warning-400: hsla(43, 50%, 66%, 1); + --warning-500: hsla(43, 62%, 71%, 1); + --warning-600: hsla(43, 64%, 80%, 1); + --warning-700: hsla(43, 80%, 90%, 1); + --warning-800: hsla(43, 100%, 96%, 1); + --warning-900: hsla(43, 45%, 98%, 1); + + --caution-100: hsla(30, 28%, 21%, 1); + --caution-200: hsla(30, 37%, 36%, 1); + --caution-300: hsla(30, 47%, 48%, 1); + --caution-400: hsla(30, 50%, 65%, 1); + --caution-500: hsla(30, 66%, 68%, 1); + --caution-600: hsla(30, 68%, 78%, 1); + --caution-700: hsla(30, 81%, 90%, 1); + --caution-800: hsla(30, 100%, 96%, 1); + --caution-900: hsla(30, 45%, 98%, 1); + + --alert-100: hsla(4, 28%, 21%, 1); + --alert-200: hsla(4, 37%, 36%, 1); + --alert-300: hsla(4, 50%, 52%, 1); + --alert-400: hsla(4, 55%, 67%, 1); + --alert-500: hsla(4, 66%, 68%, 1); + --alert-600: hsla(4, 68%, 78%, 1); + --alert-700: hsla(4, 81%, 90%, 1); + --alert-800: hsla(4, 100%, 96%, 1); + --alert-900: hsla(4, 45%, 98%, 1); +} + +/* SVG logo color overrides for dark theme */ +/* Default: Convert text elements to white while preserving brand colors and structural elements */ +.theme-dark svg .text { + fill: #FFFFFF !important; +} diff --git a/ui/apps/platform/src/css/trumps.css b/ui/apps/platform/src/css/trumps.css index ade0c801c6edb..ca25d9703ea13 100644 --- a/ui/apps/platform/src/css/trumps.css +++ b/ui/apps/platform/src/css/trumps.css @@ -10,7 +10,7 @@ body { } .ReactModal__Content, -#main-page-container > div > :not(.pf-v6-c-page__main-section):not(.pf-c-tab-content) { +#main-page-container > div > :not(.pf-v6-c-page__main-section):not(.pf-c-tab-content):not(.pf-v6-c-banner) { font-size: 0.875rem; color: var(--base-600); } diff --git a/ui/apps/platform/src/hooks/useTheme.ts b/ui/apps/platform/src/hooks/useTheme.ts new file mode 100644 index 0000000000000..eda42571443be --- /dev/null +++ b/ui/apps/platform/src/hooks/useTheme.ts @@ -0,0 +1,49 @@ +import { useEffect } from 'react'; +import { useBooleanLocalStorage } from './useLocalStorage'; + +const DARK_MODE_KEY = 'isDarkMode'; + +type Theme = 'light' | 'dark'; + +export type UseThemeReturn = { + theme: Theme; + isDarkMode: boolean; + toggle: () => void; +}; + +/** + * Hook to manage theme state and apply theme classes to the document. + * Persists theme preference to localStorage and defaults to system preference. + */ +export function useTheme(): UseThemeReturn { + const userPrefersDarkMode = + window.matchMedia && window.matchMedia('(prefers-color-scheme: dark)').matches; + const [isDarkMode, setIsDarkMode] = useBooleanLocalStorage(DARK_MODE_KEY, userPrefersDarkMode); + + const theme: Theme = isDarkMode ? 'dark' : 'light'; + + useEffect(() => { + const htmlElement = document.documentElement; + + // Apply PatternFly theme class (only dark mode has a class) + if (isDarkMode) { + htmlElement.classList.add('pf-v6-theme-dark'); + } else { + htmlElement.classList.remove('pf-v6-theme-dark'); + } + + // Apply Tailwind theme class + htmlElement.classList.remove('theme-light', 'theme-dark'); + htmlElement.classList.add(`theme-${theme}`); + }, [isDarkMode, theme]); + + const toggle = () => { + setIsDarkMode((prev) => !prev); + }; + + return { + theme, + isDarkMode, + toggle, + }; +} diff --git a/ui/apps/platform/src/images/StackRox-Logo.svg b/ui/apps/platform/src/images/StackRox-Logo.svg index 35266a43bbc23..70336c6e6f96f 100644 --- a/ui/apps/platform/src/images/StackRox-Logo.svg +++ b/ui/apps/platform/src/images/StackRox-Logo.svg @@ -1,5 +1,5 @@ <svg width="196px" height="32px" viewBox="0 0 64 12" fill="#000000" xmlns="http://www.w3.org/2000/svg"> -<path d="M28.447 4.655a1.504 1.504 0 0 0-1.343-.702c-.182 0-.363.025-.539.076a1.46 1.46 0 0 0-.475.233 1.153 1.153 0 0 0-.35.407 1.27 1.27 0 0 0-.126.586c-.017.28.08.555.266.76.19.189.413.34.657.443.28.122.566.225.857.31.298.085.586.207.857.363.259.15.483.358.657.607.192.305.285.666.266 1.03a1.89 1.89 0 0 1-.2.88 2.01 2.01 0 0 1-.527.657c-.221.178-.47.316-.735.408-.263.093-.54.141-.818.142a2.996 2.996 0 0 1-1.21-.251 2.32 2.32 0 0 1-.976-.819l.647-.48c.151.266.367.486.626.637.29.166.617.249.948.24.18-.001.357-.03.528-.087.17-.056.33-.142.472-.255.142-.112.26-.251.35-.41.093-.171.14-.365.136-.56a1.19 1.19 0 0 0-.15-.626 1.339 1.339 0 0 0-.402-.419 2.511 2.511 0 0 0-.567-.28l-.657-.225a5.881 5.881 0 0 1-.658-.255 2.254 2.254 0 0 1-.566-.363 1.613 1.613 0 0 1-.403-.55 1.987 1.987 0 0 1-.15-.828c-.006-.314.06-.624.192-.906.122-.25.297-.469.511-.64.216-.166.46-.29.72-.363a2.946 2.946 0 0 1 1.889.072c.346.15.653.384.892.684l-.62.484zM32.745 6.516h-1.322v2.811a1.58 1.58 0 0 0 .052.433.618.618 0 0 0 .137.258c.058.06.13.105.21.127a.96.96 0 0 0 .269.037c.118 0 .236-.017.35-.051.111-.031.22-.075.321-.131l.028.622a2.005 2.005 0 0 1-.87.174 1.57 1.57 0 0 1-.389-.05.898.898 0 0 1-.37-.2 1.064 1.064 0 0 1-.273-.386 1.604 1.604 0 0 1-.112-.64V6.516h-.969v-.61h.969V4.56h.647v1.345h1.322v.611zM36.564 7.75v-.114c0-.821-.392-1.232-1.175-1.232a1.982 1.982 0 0 0-1.4.56l-.39-.48c.43-.461 1.076-.691 1.937-.691.217-.001.433.033.64.102.2.054.385.152.545.287.15.147.27.325.35.523.096.238.143.495.136.753v2.127a8.61 8.61 0 0 0 .077 1.07h-.626a5.497 5.497 0 0 1-.045-.364 2.25 2.25 0 0 1 0-.396h-.021c-.16.288-.391.526-.672.687a1.97 1.97 0 0 1-.944.207 2.05 2.05 0 0 1-.587-.087 1.48 1.48 0 0 1-.504-.266 1.335 1.335 0 0 1-.35-.436 1.318 1.318 0 0 1-.133-.607 1.34 1.34 0 0 1 .29-.913c.197-.219.442-.383.714-.48.3-.11.613-.18.93-.204.33-.026.631-.04.906-.04l.322-.007zm-.35.548a9.13 9.13 0 0 0-.612.026 3.42 3.42 0 0 0-.7.123c-.21.058-.406.16-.576.302a.696.696 0 0 0-.242.56.792.792 0 0 0 .343.68c.107.073.225.124.35.153.127.03.257.047.388.047.21.005.419-.037.612-.124.338-.151.594-.45.7-.818.056-.193.084-.394.083-.596v-.364l-.346.011zM42.048 7.025a1.422 1.422 0 0 0-.465-.447 1.276 1.276 0 0 0-.682-.182 1.639 1.639 0 0 0-.72.131 1.576 1.576 0 0 0-.89.99 2.51 2.51 0 0 0 0 1.516c.076.225.195.432.35.607a1.636 1.636 0 0 0 1.277.542c.239.005.475-.058.682-.182a1.4 1.4 0 0 0 .465-.447l.528.418c-.21.263-.474.473-.773.614a2.248 2.248 0 0 1-.902.208 2.472 2.472 0 0 1-1.007-.178 2.225 2.225 0 0 1-.77-.524 2.25 2.25 0 0 1-.486-.8 3.109 3.109 0 0 1 0-2.007c.106-.3.271-.573.486-.8.22-.228.481-.407.77-.524.32-.13.663-.19 1.007-.178.311.005.618.076.902.207.3.142.563.352.773.615l-.545.421zM44.066 8.055l2.164-2.15h.983l-2.28 2.182 2.525 2.586h-1l-2.392-2.506v2.506h-.647V2.975h.647zM49.091 10.673h-.7V3.462h2.134a2.64 2.64 0 0 1 1.668.48c.424.35.653.894.612 1.454a1.86 1.86 0 0 1-.454 1.27 1.92 1.92 0 0 1-1.319.596l1.997 3.422h-.86l-1.9-3.35h-1.174l-.004 3.339zm0-4.022h1.252c.27.006.538-.029.798-.102a1.46 1.46 0 0 0 .524-.269.984.984 0 0 0 .283-.396c.06-.158.09-.326.088-.495a1.336 1.336 0 0 0-.088-.484 1.02 1.02 0 0 0-.283-.403 1.378 1.378 0 0 0-.524-.27 2.855 2.855 0 0 0-.798-.097h-1.252V6.65zM58.586 8.287a2.69 2.69 0 0 1-.182.997 2.32 2.32 0 0 1-1.273 1.32 2.504 2.504 0 0 1-.982.189 2.477 2.477 0 0 1-.976-.19 2.32 2.32 0 0 1-1.273-1.32 2.84 2.84 0 0 1 0-1.996 2.32 2.32 0 0 1 1.273-1.32c.31-.128.642-.192.976-.189.336-.004.67.06.982.19a2.32 2.32 0 0 1 1.273 1.323c.123.316.185.655.182.996zm-.7 0c0-.248-.04-.494-.122-.727a1.833 1.833 0 0 0-.35-.6 1.645 1.645 0 0 0-.545-.415 1.829 1.829 0 0 0-1.44 0c-.2.095-.377.231-.522.4a1.833 1.833 0 0 0-.35.6 2.32 2.32 0 0 0 0 1.488c.078.221.197.425.35.6.15.172.334.31.539.403a1.82 1.82 0 0 0 1.44 0 1.64 1.64 0 0 0 .543-.403c.153-.174.272-.378.35-.6.076-.24.112-.493.104-.746h.004zM60.947 8.127L59.282 5.91h.871l1.273 1.782L62.64 5.91h.804l-1.595 2.218 1.92 2.546h-.881l-1.539-2.088-1.48 2.088h-.821zM19.487 11.593a.15.15 0 0 0 .084-.19L17.27 4.517a.14.14 0 0 0-.073-.08.132.132 0 0 0-.106-.003l-5.963 3.232a.15.15 0 0 0-.084.19l1.445 4.101h6.239l.759-.363z"/> -<path d="M10.013 7.49a.15.15 0 0 1 .084-.188l5.69-3.084-.584-1.749a.18.18 0 0 0-.094-.104.169.169 0 0 0-.137-.001L7.344 6.49a.191.191 0 0 0-.108.24l1.857 5.225h2.504L10.013 7.49z"/> -<path d="M6.194 6.367a.191.191 0 0 1 .108-.24l7.02-3.803-.61-1.819a.213.213 0 0 0-.102-.128.2.2 0 0 0-.16-.013L3.606 5.167a.215.215 0 0 0-.112.12.226.226 0 0 0 .003.168l2.294 6.509h2.39L6.193 6.367zM2.707 5.72l2.19 6.233H1.272a.07.07 0 0 1-.066-.051L.35 9.316a.075.075 0 0 1 0-.061l2.22-3.546a.07.07 0 0 1 .073-.052c.033.003.06.029.064.063z"/> +<path class="text" d="M28.447 4.655a1.504 1.504 0 0 0-1.343-.702c-.182 0-.363.025-.539.076a1.46 1.46 0 0 0-.475.233 1.153 1.153 0 0 0-.35.407 1.27 1.27 0 0 0-.126.586c-.017.28.08.555.266.76.19.189.413.34.657.443.28.122.566.225.857.31.298.085.586.207.857.363.259.15.483.358.657.607.192.305.285.666.266 1.03a1.89 1.89 0 0 1-.2.88 2.01 2.01 0 0 1-.527.657c-.221.178-.47.316-.735.408-.263.093-.54.141-.818.142a2.996 2.996 0 0 1-1.21-.251 2.32 2.32 0 0 1-.976-.819l.647-.48c.151.266.367.486.626.637.29.166.617.249.948.24.18-.001.357-.03.528-.087.17-.056.33-.142.472-.255.142-.112.26-.251.35-.41.093-.171.14-.365.136-.56a1.19 1.19 0 0 0-.15-.626 1.339 1.339 0 0 0-.402-.419 2.511 2.511 0 0 0-.567-.28l-.657-.225a5.881 5.881 0 0 1-.658-.255 2.254 2.254 0 0 1-.566-.363 1.613 1.613 0 0 1-.403-.55 1.987 1.987 0 0 1-.15-.828c-.006-.314.06-.624.192-.906.122-.25.297-.469.511-.64.216-.166.46-.29.72-.363a2.946 2.946 0 0 1 1.889.072c.346.15.653.384.892.684l-.62.484zM32.745 6.516h-1.322v2.811a1.58 1.58 0 0 0 .052.433.618.618 0 0 0 .137.258c.058.06.13.105.21.127a.96.96 0 0 0 .269.037c.118 0 .236-.017.35-.051.111-.031.22-.075.321-.131l.028.622a2.005 2.005 0 0 1-.87.174 1.57 1.57 0 0 1-.389-.05.898.898 0 0 1-.37-.2 1.064 1.064 0 0 1-.273-.386 1.604 1.604 0 0 1-.112-.64V6.516h-.969v-.61h.969V4.56h.647v1.345h1.322v.611zM36.564 7.75v-.114c0-.821-.392-1.232-1.175-1.232a1.982 1.982 0 0 0-1.4.56l-.39-.48c.43-.461 1.076-.691 1.937-.691.217-.001.433.033.64.102.2.054.385.152.545.287.15.147.27.325.35.523.096.238.143.495.136.753v2.127a8.61 8.61 0 0 0 .077 1.07h-.626a5.497 5.497 0 0 1-.045-.364 2.25 2.25 0 0 1 0-.396h-.021c-.16.288-.391.526-.672.687a1.97 1.97 0 0 1-.944.207 2.05 2.05 0 0 1-.587-.087 1.48 1.48 0 0 1-.504-.266 1.335 1.335 0 0 1-.35-.436 1.318 1.318 0 0 1-.133-.607 1.34 1.34 0 0 1 .29-.913c.197-.219.442-.383.714-.48.3-.11.613-.18.93-.204.33-.026.631-.04.906-.04l.322-.007zm-.35.548a9.13 9.13 0 0 0-.612.026 3.42 3.42 0 0 0-.7.123c-.21.058-.406.16-.576.302a.696.696 0 0 0-.242.56.792.792 0 0 0 .343.68c.107.073.225.124.35.153.127.03.257.047.388.047.21.005.419-.037.612-.124.338-.151.594-.45.7-.818.056-.193.084-.394.083-.596v-.364l-.346.011zM42.048 7.025a1.422 1.422 0 0 0-.465-.447 1.276 1.276 0 0 0-.682-.182 1.639 1.639 0 0 0-.72.131 1.576 1.576 0 0 0-.89.99 2.51 2.51 0 0 0 0 1.516c.076.225.195.432.35.607a1.636 1.636 0 0 0 1.277.542c.239.005.475-.058.682-.182a1.4 1.4 0 0 0 .465-.447l.528.418c-.21.263-.474.473-.773.614a2.248 2.248 0 0 1-.902.208 2.472 2.472 0 0 1-1.007-.178 2.225 2.225 0 0 1-.77-.524 2.25 2.25 0 0 1-.486-.8 3.109 3.109 0 0 1 0-2.007c.106-.3.271-.573.486-.8.22-.228.481-.407.77-.524.32-.13.663-.19 1.007-.178.311.005.618.076.902.207.3.142.563.352.773.615l-.545.421zM44.066 8.055l2.164-2.15h.983l-2.28 2.182 2.525 2.586h-1l-2.392-2.506v2.506h-.647V2.975h.647zM49.091 10.673h-.7V3.462h2.134a2.64 2.64 0 0 1 1.668.48c.424.35.653.894.612 1.454a1.86 1.86 0 0 1-.454 1.27 1.92 1.92 0 0 1-1.319.596l1.997 3.422h-.86l-1.9-3.35h-1.174l-.004 3.339zm0-4.022h1.252c.27.006.538-.029.798-.102a1.46 1.46 0 0 0 .524-.269.984.984 0 0 0 .283-.396c.06-.158.09-.326.088-.495a1.336 1.336 0 0 0-.088-.484 1.02 1.02 0 0 0-.283-.403 1.378 1.378 0 0 0-.524-.27 2.855 2.855 0 0 0-.798-.097h-1.252V6.65zM58.586 8.287a2.69 2.69 0 0 1-.182.997 2.32 2.32 0 0 1-1.273 1.32 2.504 2.504 0 0 1-.982.189 2.477 2.477 0 0 1-.976-.19 2.32 2.32 0 0 1-1.273-1.32 2.84 2.84 0 0 1 0-1.996 2.32 2.32 0 0 1 1.273-1.32c.31-.128.642-.192.976-.189.336-.004.67.06.982.19a2.32 2.32 0 0 1 1.273 1.323c.123.316.185.655.182.996zm-.7 0c0-.248-.04-.494-.122-.727a1.833 1.833 0 0 0-.35-.6 1.645 1.645 0 0 0-.545-.415 1.829 1.829 0 0 0-1.44 0c-.2.095-.377.231-.522.4a1.833 1.833 0 0 0-.35.6 2.32 2.32 0 0 0 0 1.488c.078.221.197.425.35.6.15.172.334.31.539.403a1.82 1.82 0 0 0 1.44 0 1.64 1.64 0 0 0 .543-.403c.153-.174.272-.378.35-.6.076-.24.112-.493.104-.746h.004zM60.947 8.127L59.282 5.91h.871l1.273 1.782L62.64 5.91h.804l-1.595 2.218 1.92 2.546h-.881l-1.539-2.088-1.48 2.088h-.821zM19.487 11.593a.15.15 0 0 0 .084-.19L17.27 4.517a.14.14 0 0 0-.073-.08.132.132 0 0 0-.106-.003l-5.963 3.232a.15.15 0 0 0-.084.19l1.445 4.101h6.239l.759-.363z"/> +<path class="text" d="M10.013 7.49a.15.15 0 0 1 .084-.188l5.69-3.084-.584-1.749a.18.18 0 0 0-.094-.104.169.169 0 0 0-.137-.001L7.344 6.49a.191.191 0 0 0-.108.24l1.857 5.225h2.504L10.013 7.49z"/> +<path class="text" d="M6.194 6.367a.191.191 0 0 1 .108-.24l7.02-3.803-.61-1.819a.213.213 0 0 0-.102-.128.2.2 0 0 0-.16-.013L3.606 5.167a.215.215 0 0 0-.112.12.226.226 0 0 0 .003.168l2.294 6.509h2.39L6.193 6.367zM2.707 5.72l2.19 6.233H1.272a.07.07 0 0 1-.066-.051L.35 9.316a.075.075 0 0 1 0-.061l2.22-3.546a.07.07 0 0 1 .073-.052c.033.003.06.029.064.063z"/> </svg> From 2e7d0e4dedd1c22d402c03edf414f5d52615e823 Mon Sep 17 00:00:00 2001 From: David Vail <dcvail17@gmail.com> Date: Wed, 11 Mar 2026 11:22:38 -0400 Subject: [PATCH 2/3] Update svgs to support theming at a basic level --- .../Clusters/Components/HelmIndicator.tsx | 4 +- .../IntegrationTiles/APITokensTile.tsx | 4 +- .../BackupIntegrationsTab.tsx | 4 +- .../IntegrationTiles/ImageIntegrationsTab.tsx | 4 +- .../IntegrationTiles/IntegrationTile.tsx | 12 +- .../IntegrationTiles/MachineAccessTile.tsx | 4 +- .../NotifierIntegrationsTab.tsx | 4 +- .../Integrations/IntegrationTiles/OcmTile.tsx | 4 +- .../IntegrationTiles/PaladinCloudTile.tsx | 4 +- .../SignatureIntegrationsTab.tsx | 4 +- .../Integrations/utils/integrationsList.ts | 133 +++++++++--------- .../MainPage/Header/ThemeToggleButton.tsx | 11 +- .../src/images/StackRox-integration-logo.svg | 2 +- .../platform/src/images/acsEmailNotifier.svg | 12 +- ui/apps/platform/src/images/artifactory.svg | 2 +- .../platform/src/images/aws-security-hub.svg | 2 +- ui/apps/platform/src/images/aws.svg | 2 +- ui/apps/platform/src/images/clair.svg | 2 +- ui/apps/platform/src/images/docker.svg | 2 +- ui/apps/platform/src/images/email.svg | 2 +- ui/apps/platform/src/images/ghcr.svg | 5 +- .../platform/src/images/google-artifact.svg | 2 +- ui/apps/platform/src/images/google-cloud.svg | 2 +- .../platform/src/images/google-container.svg | 2 +- ui/apps/platform/src/images/helm.svg | 35 ++++- ui/apps/platform/src/images/ibm-ccr.svg | 2 +- ui/apps/platform/src/images/jira.svg | 2 +- .../src/images/microsoft_sentinel.svg | 18 +-- ui/apps/platform/src/images/nexus.svg | 2 +- ui/apps/platform/src/images/paladinCloud.svg | 4 +- ui/apps/platform/src/images/quay.svg | 2 +- ui/apps/platform/src/images/redhat.svg | 2 +- ui/apps/platform/src/images/s3-compatible.svg | 4 +- ui/apps/platform/src/images/s3.svg | 2 +- ui/apps/platform/src/images/slack.svg | 2 +- ui/apps/platform/src/images/splunk.svg | 2 +- ui/apps/platform/src/images/sumologic.svg | 2 +- ui/apps/platform/src/images/syslog.svg | 2 +- 38 files changed, 171 insertions(+), 139 deletions(-) diff --git a/ui/apps/platform/src/Containers/Clusters/Components/HelmIndicator.tsx b/ui/apps/platform/src/Containers/Clusters/Components/HelmIndicator.tsx index 17dccfdb1ca77..a893e8ad2d588 100644 --- a/ui/apps/platform/src/Containers/Clusters/Components/HelmIndicator.tsx +++ b/ui/apps/platform/src/Containers/Clusters/Components/HelmIndicator.tsx @@ -1,13 +1,13 @@ import type { ReactElement } from 'react'; import { Tooltip } from '@patternfly/react-core'; -import helm from 'images/helm.svg'; +import HelmLogo from 'images/helm.svg?react'; function HelmIndicator(): ReactElement { return ( <Tooltip content="This cluster is managed by Helm."> <span className="w-5 h-5 inline-block pf-v6-u-flex-shrink-0"> - <img className="w-5 h-5" src={helm} alt="Managed by Helm" /> + <HelmLogo className="w-5 h-5" /> </span> </Tooltip> ); diff --git a/ui/apps/platform/src/Containers/Integrations/IntegrationTiles/APITokensTile.tsx b/ui/apps/platform/src/Containers/Integrations/IntegrationTiles/APITokensTile.tsx index 7cd3b65d84102..fc11f73763e35 100644 --- a/ui/apps/platform/src/Containers/Integrations/IntegrationTiles/APITokensTile.tsx +++ b/ui/apps/platform/src/Containers/Integrations/IntegrationTiles/APITokensTile.tsx @@ -10,7 +10,7 @@ import { } from '../utils/integrationsList'; import IntegrationTile from './IntegrationTile'; -const { image, label, type } = descriptor; +const { ImageComponent, label, type } = descriptor; function APITokensTile(): ReactElement { const { data } = useRestQuery(fetchAPITokens); @@ -18,7 +18,7 @@ function APITokensTile(): ReactElement { return ( <IntegrationTile - image={image} + ImageComponent={ImageComponent} label={label} linkTo={getIntegrationsListPath(source, type)} numIntegrations={integrations.length} diff --git a/ui/apps/platform/src/Containers/Integrations/IntegrationTiles/BackupIntegrationsTab.tsx b/ui/apps/platform/src/Containers/Integrations/IntegrationTiles/BackupIntegrationsTab.tsx index 39a5ef6f5a20e..9ad2e56e332aa 100644 --- a/ui/apps/platform/src/Containers/Integrations/IntegrationTiles/BackupIntegrationsTab.tsx +++ b/ui/apps/platform/src/Containers/Integrations/IntegrationTiles/BackupIntegrationsTab.tsx @@ -33,12 +33,12 @@ function BackupIntegrationsTab({ sourcesEnabled }: IntegrationsTabProps): ReactE )} <Gallery hasGutter> {descriptors.filter(featureFlagDependencyFilter).map((descriptor) => { - const { image, label, type } = descriptor; + const { ImageComponent, label, type } = descriptor; return ( <IntegrationTile key={type} - image={image} + ImageComponent={ImageComponent} label={label} linkTo={getIntegrationsListPath(source, type)} numIntegrations={countIntegrations(type)} diff --git a/ui/apps/platform/src/Containers/Integrations/IntegrationTiles/ImageIntegrationsTab.tsx b/ui/apps/platform/src/Containers/Integrations/IntegrationTiles/ImageIntegrationsTab.tsx index f1a6fb4eedf78..2645c9cd7b7bd 100644 --- a/ui/apps/platform/src/Containers/Integrations/IntegrationTiles/ImageIntegrationsTab.tsx +++ b/ui/apps/platform/src/Containers/Integrations/IntegrationTiles/ImageIntegrationsTab.tsx @@ -33,13 +33,13 @@ function ImageIntegrationsTab({ sourcesEnabled }: IntegrationsTabProps): ReactEl )} <Gallery hasGutter> {descriptors.filter(featureFlagDependencyFilter).map((descriptor) => { - const { categories, image, label, type } = descriptor; + const { categories, ImageComponent, label, type } = descriptor; return ( <IntegrationTile key={type} categories={categories} - image={image} + ImageComponent={ImageComponent} label={label} linkTo={getIntegrationsListPath(source, type)} numIntegrations={countIntegrations(type)} diff --git a/ui/apps/platform/src/Containers/Integrations/IntegrationTiles/IntegrationTile.tsx b/ui/apps/platform/src/Containers/Integrations/IntegrationTiles/IntegrationTile.tsx index 26a6340ab63ea..89732d8c90687 100644 --- a/ui/apps/platform/src/Containers/Integrations/IntegrationTiles/IntegrationTile.tsx +++ b/ui/apps/platform/src/Containers/Integrations/IntegrationTiles/IntegrationTile.tsx @@ -1,4 +1,4 @@ -import type { ReactElement } from 'react'; +import type { ComponentType, ReactElement, SVGProps } from 'react'; import { Badge, Card, @@ -15,7 +15,7 @@ import TechPreviewLabel from 'Components/PatternFly/PreviewLabel/TechPreviewLabe type IntegrationTileProps = { categories?: string; - image: string; + ImageComponent: ComponentType<SVGProps<SVGSVGElement>>; label: string; linkTo: string; numIntegrations: number; @@ -24,7 +24,7 @@ type IntegrationTileProps = { function IntegrationTile({ categories, - image, + ImageComponent, label, linkTo, numIntegrations, @@ -48,7 +48,11 @@ function IntegrationTile({ {numIntegrations} </Badge> )} - <img src={image} alt="" style={{ height: '100px' }} /> + <ImageComponent + aria-label="Integration logo" + role="img" + style={{ height: '100px', width: 'auto', maxWidth: '100%' }} + /> </> </CardHeader> <CardTitle className="pf-v6-u-color-100" style={{ whiteSpace: 'nowrap' }}> diff --git a/ui/apps/platform/src/Containers/Integrations/IntegrationTiles/MachineAccessTile.tsx b/ui/apps/platform/src/Containers/Integrations/IntegrationTiles/MachineAccessTile.tsx index 1e60da98e68d0..26623ec9e5694 100644 --- a/ui/apps/platform/src/Containers/Integrations/IntegrationTiles/MachineAccessTile.tsx +++ b/ui/apps/platform/src/Containers/Integrations/IntegrationTiles/MachineAccessTile.tsx @@ -10,7 +10,7 @@ import { } from '../utils/integrationsList'; import IntegrationTile from './IntegrationTile'; -const { image, label, type } = descriptor; +const { ImageComponent, label, type } = descriptor; function MachineAccessTile(): ReactElement { const { data } = useRestQuery(fetchMachineAccessConfigs); @@ -18,7 +18,7 @@ function MachineAccessTile(): ReactElement { return ( <IntegrationTile - image={image} + ImageComponent={ImageComponent} label={label} linkTo={getIntegrationsListPath(source, type)} numIntegrations={integrations.length} diff --git a/ui/apps/platform/src/Containers/Integrations/IntegrationTiles/NotifierIntegrationsTab.tsx b/ui/apps/platform/src/Containers/Integrations/IntegrationTiles/NotifierIntegrationsTab.tsx index 219f8615d8578..ad193fc00de9b 100644 --- a/ui/apps/platform/src/Containers/Integrations/IntegrationTiles/NotifierIntegrationsTab.tsx +++ b/ui/apps/platform/src/Containers/Integrations/IntegrationTiles/NotifierIntegrationsTab.tsx @@ -39,7 +39,7 @@ function NotifierIntegrationsTab({ sourcesEnabled }: IntegrationsTabProps): Reac )} <Gallery hasGutter> {descriptors.filter(featureFlagDependencyFilter).map((descriptor) => { - const { image, label, type } = descriptor; + const { ImageComponent, label, type } = descriptor; if (!canUseAcscsEmailIntegration && type === 'acscsEmail') { return null; // TODO add centralCapabilityRequirement to descriptor } @@ -47,7 +47,7 @@ function NotifierIntegrationsTab({ sourcesEnabled }: IntegrationsTabProps): Reac return ( <IntegrationTile key={type} - image={image} + ImageComponent={ImageComponent} label={label} linkTo={getIntegrationsListPath(source, type)} numIntegrations={countIntegrations(type)} diff --git a/ui/apps/platform/src/Containers/Integrations/IntegrationTiles/OcmTile.tsx b/ui/apps/platform/src/Containers/Integrations/IntegrationTiles/OcmTile.tsx index 47f00e6776825..e22ac68646bee 100644 --- a/ui/apps/platform/src/Containers/Integrations/IntegrationTiles/OcmTile.tsx +++ b/ui/apps/platform/src/Containers/Integrations/IntegrationTiles/OcmTile.tsx @@ -10,7 +10,7 @@ import { import IntegrationTile from './IntegrationTile'; import { integrationTypeCounter } from './integrationTiles.utils'; -const { image, label, type } = descriptor; +const { ImageComponent, label, type } = descriptor; export type OcmTileProps = { integrations: CloudSourceIntegration[]; @@ -21,7 +21,7 @@ function OcmTile({ integrations }: OcmTileProps): ReactElement { return ( <IntegrationTile - image={image} + ImageComponent={ImageComponent} label={label} linkTo={getIntegrationsListPath(source, type)} numIntegrations={countIntegrations('TYPE_OCM')} diff --git a/ui/apps/platform/src/Containers/Integrations/IntegrationTiles/PaladinCloudTile.tsx b/ui/apps/platform/src/Containers/Integrations/IntegrationTiles/PaladinCloudTile.tsx index 9e2fa44136ec9..a304adc68aa2d 100644 --- a/ui/apps/platform/src/Containers/Integrations/IntegrationTiles/PaladinCloudTile.tsx +++ b/ui/apps/platform/src/Containers/Integrations/IntegrationTiles/PaladinCloudTile.tsx @@ -10,7 +10,7 @@ import { import IntegrationTile from './IntegrationTile'; import { integrationTypeCounter } from './integrationTiles.utils'; -const { image, label, type } = descriptor; +const { ImageComponent, label, type } = descriptor; export type PaladinCloudTileProps = { integrations: CloudSourceIntegration[]; @@ -21,7 +21,7 @@ function PaladinCloudTile({ integrations }: PaladinCloudTileProps): ReactElement return ( <IntegrationTile - image={image} + ImageComponent={ImageComponent} label={label} linkTo={getIntegrationsListPath(source, type)} numIntegrations={countIntegrations('TYPE_PALADIN_CLOUD')} diff --git a/ui/apps/platform/src/Containers/Integrations/IntegrationTiles/SignatureIntegrationsTab.tsx b/ui/apps/platform/src/Containers/Integrations/IntegrationTiles/SignatureIntegrationsTab.tsx index 23d409756fd54..79a649745b965 100644 --- a/ui/apps/platform/src/Containers/Integrations/IntegrationTiles/SignatureIntegrationsTab.tsx +++ b/ui/apps/platform/src/Containers/Integrations/IntegrationTiles/SignatureIntegrationsTab.tsx @@ -14,7 +14,7 @@ import { signatureIntegrationsSource as source, } from '../utils/integrationsList'; -const { image, label, type } = descriptor; +const { ImageComponent, label, type } = descriptor; function SignatureIntegrationsTab({ sourcesEnabled }: IntegrationsTabProps): ReactElement { const { data, error } = useRestQuery(fetchSignatureIntegrations); @@ -29,7 +29,7 @@ function SignatureIntegrationsTab({ sourcesEnabled }: IntegrationsTabProps): Rea )} <Gallery hasGutter> <IntegrationTile - image={image} + ImageComponent={ImageComponent} label={label} linkTo={getIntegrationsListPath(source, type)} numIntegrations={integrations.length} diff --git a/ui/apps/platform/src/Containers/Integrations/utils/integrationsList.ts b/ui/apps/platform/src/Containers/Integrations/utils/integrationsList.ts index 7ced856ca2ddc..0e1ed419d2030 100644 --- a/ui/apps/platform/src/Containers/Integrations/utils/integrationsList.ts +++ b/ui/apps/platform/src/Containers/Integrations/utils/integrationsList.ts @@ -1,32 +1,33 @@ -import acscsEmail from 'images/acsEmailNotifier.svg'; -import artifactory from 'images/artifactory.svg'; -import aws from 'images/aws.svg'; -import awsSecurityHub from 'images/aws-security-hub.svg'; -import azure from 'images/azure.svg'; -import clair from 'images/clair.svg'; -import docker from 'images/docker.svg'; -import email from 'images/email.svg'; -import ghcr from 'images/ghcr.svg'; -import google from 'images/google-cloud.svg'; -import googleartifact from 'images/google-artifact.svg'; -import googleregistry from 'images/google-container.svg'; -import ibm from 'images/ibm-ccr.svg'; -import jira from 'images/jira.svg'; -import logo from 'images/StackRox-integration-logo.svg'; -import microsoftSentinel from 'images/microsoft_sentinel.svg'; -import nexus from 'images/nexus.svg'; -import pagerduty from 'images/pagerduty.svg'; -import quay from 'images/quay.svg'; -import redhat from 'images/redhat.svg'; -import signature from 'images/signature.svg'; -import slack from 'images/slack.svg'; -import splunk from 'images/splunk.svg'; -import sumologic from 'images/sumologic.svg'; -import s3 from 'images/s3.svg'; -import s3compatible from 'images/s3-compatible.svg'; -import syslog from 'images/syslog.svg'; -import teams from 'images/teams.svg'; -import paladinCloud from 'images/paladinCloud.svg'; +import type { ComponentType, SVGProps } from 'react'; +import AcscsEmailSvg from 'images/acsEmailNotifier.svg?react'; +import ArtifactorySvg from 'images/artifactory.svg?react'; +import AwsSvg from 'images/aws.svg?react'; +import AwsSecurityHubSvg from 'images/aws-security-hub.svg?react'; +import AzureSvg from 'images/azure.svg?react'; +import ClairSvg from 'images/clair.svg?react'; +import DockerSvg from 'images/docker.svg?react'; +import EmailSvg from 'images/email.svg?react'; +import GhcrSvg from 'images/ghcr.svg?react'; +import GoogleSvg from 'images/google-cloud.svg?react'; +import GoogleArtifactSvg from 'images/google-artifact.svg?react'; +import GoogleRegistrySvg from 'images/google-container.svg?react'; +import IbmSvg from 'images/ibm-ccr.svg?react'; +import JiraSvg from 'images/jira.svg?react'; +import LogoSvg from 'images/StackRox-integration-logo.svg?react'; +import MicrosoftSentinelSvg from 'images/microsoft_sentinel.svg?react'; +import NexusSvg from 'images/nexus.svg?react'; +import PagerDutySvg from 'images/pagerduty.svg?react'; +import QuaySvg from 'images/quay.svg?react'; +import RedhatSvg from 'images/redhat.svg?react'; +import SignatureSvg from 'images/signature.svg?react'; +import SlackSvg from 'images/slack.svg?react'; +import SplunkSvg from 'images/splunk.svg?react'; +import SumologicSvg from 'images/sumologic.svg?react'; +import S3Svg from 'images/s3.svg?react'; +import S3CompatibleSvg from 'images/s3-compatible.svg?react'; +import SyslogSvg from 'images/syslog.svg?react'; +import TeamsSvg from 'images/teams.svg?react'; +import PaladinCloudSvg from 'images/paladinCloud.svg?react'; import { integrationsPath } from 'routePaths'; /* @@ -88,7 +89,7 @@ export type CloudSourceDescriptor = { export type BaseIntegrationDescriptor = { type: string; label: string; - image: string; + ImageComponent: ComponentType<SVGProps<SVGSVGElement>>; centralCapabilityRequirement?: CentralCapabilitiesFlags; featureFlagDependency?: FeatureFlagEnvVar[]; }; @@ -98,92 +99,92 @@ export const imageIntegrationsSource: IntegrationSource = 'imageIntegrations'; export const imageIntegrationsDescriptors: ImageIntegrationDescriptor[] = [ { categories: 'Image Scanner + Node Scanner', - image: logo, + ImageComponent: LogoSvg, label: 'Scanner V4', type: 'scannerv4', featureFlagDependency: ['ROX_SCANNER_V4'], }, { categories: 'Registry', - image: docker, + ImageComponent: DockerSvg, label: 'Generic Docker Registry', type: 'docker', }, { categories: 'Registry', - image: aws, + ImageComponent: AwsSvg, label: 'Amazon ECR', type: 'ecr', }, { categories: 'Registry', - image: googleartifact, + ImageComponent: GoogleArtifactSvg, label: 'Google Artifact Registry', type: 'artifactregistry', }, { categories: 'Registry', - image: azure, + ImageComponent: AzureSvg, label: 'Microsoft ACR', type: 'azure', }, { categories: 'Registry', - image: artifactory, + ImageComponent: ArtifactorySvg, label: 'JFrog Artifactory', type: 'artifactory', }, { categories: 'Registry + Scanner', - image: quay, + ImageComponent: QuaySvg, label: 'Quay.io', type: 'quay', }, { categories: 'Scanner', - image: clair, + ImageComponent: ClairSvg, label: 'Clair v4', type: 'clairV4', }, { categories: 'Registry', - image: nexus, + ImageComponent: NexusSvg, label: 'Sonatype Nexus', type: 'nexus', }, { categories: 'Registry', - image: ibm, + ImageComponent: IbmSvg, label: 'IBM Cloud', type: 'ibm', }, { categories: 'Registry', - image: redhat, + ImageComponent: RedhatSvg, label: 'Red Hat', type: 'rhel', }, { categories: 'Registry', - image: ghcr, + ImageComponent: GhcrSvg, label: 'GitHub Container Registry', type: 'ghcr', }, { categories: 'Image Scanner + Node Scanner', - image: logo, + ImageComponent: LogoSvg, label: '[DEPRECATED] StackRox Scanner', type: 'clairify', }, { categories: 'Scanner', - image: clair, + ImageComponent: ClairSvg, label: '[DEPRECATED] CoreOS Clair', type: 'clair', }, { categories: 'Registry + Scanner', - image: googleregistry, + ImageComponent: GoogleRegistrySvg, label: '[DEPRECATED] Google Container Registry', type: 'google', }, @@ -192,7 +193,7 @@ export const imageIntegrationsDescriptors: ImageIntegrationDescriptor[] = [ export const signatureIntegrationsSource = 'signatureIntegrations'; export const signatureIntegrationDescriptor: SignatureIntegrationDescriptor = { - image: signature, + ImageComponent: SignatureSvg, label: 'Signature', type: 'signature', }; @@ -203,67 +204,67 @@ export const notifierIntegrationsSource = 'notifiers'; export const notifierIntegrationsDescriptors: NotifierIntegrationDescriptor[] = [ { - image: slack, + ImageComponent: SlackSvg, label: 'Slack', type: 'slack', }, { - image: logo, + ImageComponent: LogoSvg, label: 'Generic Webhook', type: 'generic', }, { - image: jira, + ImageComponent: JiraSvg, label: 'Jira', type: 'jira', }, { - image: email, + ImageComponent: EmailSvg, label: 'Email', type: 'email', }, { - image: acscsEmail, + ImageComponent: AcscsEmailSvg, label: 'RHACS Cloud Service', type: 'acscsEmail', }, { - image: google, + ImageComponent: GoogleSvg, label: 'Google Cloud SCC', type: 'cscc', }, { - image: splunk, + ImageComponent: SplunkSvg, label: 'Splunk', type: 'splunk', }, { - image: pagerduty, + ImageComponent: PagerDutySvg, label: 'PagerDuty', type: 'pagerduty', }, { - image: sumologic, + ImageComponent: SumologicSvg, label: 'Sumo Logic', type: 'sumologic', }, { - image: teams, + ImageComponent: TeamsSvg, label: 'Microsoft Teams', type: 'teams', }, { - image: awsSecurityHub, + ImageComponent: AwsSecurityHubSvg, label: 'AWS Security Hub', type: 'awsSecurityHub', }, { - image: syslog, + ImageComponent: SyslogSvg, label: 'Syslog', type: 'syslog', }, { - image: microsoftSentinel, + ImageComponent: MicrosoftSentinelSvg, label: 'Microsoft Sentinel', type: 'microsoftSentinel', }, @@ -273,17 +274,17 @@ export const backupIntegrationsSource = 'backups'; export const backupIntegrationsDescriptors: BackupIntegrationDescriptor[] = [ { - image: s3, + ImageComponent: S3Svg, label: 'Amazon S3', type: 's3', }, { - image: s3compatible, + ImageComponent: S3CompatibleSvg, label: 'S3 API Compatible', type: 's3compatible', }, { - image: google, + ImageComponent: GoogleSvg, label: 'Google Cloud Storage', type: 'gcs', }, @@ -292,13 +293,13 @@ export const backupIntegrationsDescriptors: BackupIntegrationDescriptor[] = [ export const authenticationTokensSource = 'authProviders'; export const apiTokenDescriptor: AuthProviderDescriptor = { - image: logo, + ImageComponent: LogoSvg, label: 'API Token', type: 'apitoken', }; export const machineAccessDescriptor: AuthProviderDescriptor = { - image: logo, + ImageComponent: LogoSvg, label: 'Machine access configuration', type: 'machineAccess', }; @@ -308,13 +309,13 @@ const authenticationTokensDescriptors = [apiTokenDescriptor, machineAccessDescri export const cloudSourcesSource = 'cloudSources'; export const paladinCloudDescriptor: CloudSourceDescriptor = { - image: paladinCloud, + ImageComponent: PaladinCloudSvg, label: 'Paladin Cloud', type: 'paladinCloud', }; export const ocmDescriptor: CloudSourceDescriptor = { - image: redhat, + ImageComponent: RedhatSvg, label: 'OpenShift Cluster Manager', type: 'ocm', }; diff --git a/ui/apps/platform/src/Containers/MainPage/Header/ThemeToggleButton.tsx b/ui/apps/platform/src/Containers/MainPage/Header/ThemeToggleButton.tsx index a8873394ef982..3df88094028e6 100644 --- a/ui/apps/platform/src/Containers/MainPage/Header/ThemeToggleButton.tsx +++ b/ui/apps/platform/src/Containers/MainPage/Header/ThemeToggleButton.tsx @@ -1,22 +1,15 @@ -import type { CSSProperties, ReactElement } from 'react'; +import type { ReactElement } from 'react'; import { Button, Tooltip } from '@patternfly/react-core'; import { MoonIcon, SunIcon } from '@patternfly/react-icons'; import { useTheme } from 'hooks/useTheme'; -// On masthead, black text on white background like a dropdown menu. -const styleTooltip = { - '--pf-v6-c-tooltip__content--Color': 'var(--pf-t--global--text--color--regular)', - '--pf-v6-c-tooltip__content--BackgroundColor': - 'var(--pf-t--global--background--color--primary--default)', -} as CSSProperties; - function ThemeToggleButton(): ReactElement { const { isDarkMode, toggle } = useTheme(); const tooltipText = isDarkMode ? 'Switch to Light Mode' : 'Switch to Dark Mode'; return ( - <Tooltip content={<div>{tooltipText}</div>} position="bottom" style={styleTooltip}> + <Tooltip content={<div>{tooltipText}</div>} position="bottom"> <Button aria-label="Toggle theme" onClick={toggle} variant="plain"> {isDarkMode ? <SunIcon /> : <MoonIcon />} </Button> diff --git a/ui/apps/platform/src/images/StackRox-integration-logo.svg b/ui/apps/platform/src/images/StackRox-integration-logo.svg index 841f2898a000b..e519cea6f2def 100644 --- a/ui/apps/platform/src/images/StackRox-integration-logo.svg +++ b/ui/apps/platform/src/images/StackRox-integration-logo.svg @@ -1 +1 @@ -<svg viewBox="0 0 297 52" xmlns="http://www.w3.org/2000/svg" fill-rule="evenodd" clip-rule="evenodd"><g fill="#304362" fill-rule="nonzero" stroke="#304362" stroke-width=".5"><path d="M130.97 19.19a7.072 7.072 0 00-6.246-3.138 9.522 9.522 0 00-2.513.335 7.226 7.226 0 00-2.215 1.049 5.332 5.332 0 00-1.574 1.857 5.558 5.558 0 00-.595 2.619 4.521 4.521 0 001.238 3.398 9.836 9.836 0 003.053 1.978 35.15 35.15 0 003.993 1.384c1.402.375 2.755.914 4.03 1.606a9.43 9.43 0 013.063 2.71 7.66 7.66 0 011.229 4.644 8.231 8.231 0 01-.931 3.937 9.093 9.093 0 01-2.504 2.925 12.119 12.119 0 01-7.233 2.46 14.493 14.493 0 01-5.64-1.113 10.75 10.75 0 01-4.543-3.714l3.016-2.136a7.849 7.849 0 002.914 2.84 8.674 8.674 0 004.412 1.069 8.064 8.064 0 002.494-.334 7.118 7.118 0 002.206-1.142 6.265 6.265 0 001.61-1.857 4.9 4.9 0 00.643-2.508 5.222 5.222 0 00-.708-2.785 6.15 6.15 0 00-1.861-1.857 12.455 12.455 0 00-2.653-1.254l-3.053-.994a32.363 32.363 0 01-3.063-1.142 10.657 10.657 0 01-2.643-1.615 7.23 7.23 0 01-1.862-2.461 8.512 8.512 0 01-.707-3.714 8.725 8.725 0 01.93-4.058 8.356 8.356 0 012.365-2.87 10.191 10.191 0 013.36-1.68 14.27 14.27 0 018.806.315 10.717 10.717 0 014.077 3.018l-2.895 2.229zM151.01 27.52h-6.162v12.573a6.947 6.947 0 00.224 1.93c.117.434.337.832.642 1.162.27.27.608.466.977.567.41.11.833.165 1.257.157a6.1 6.1 0 001.6-.222 7.303 7.303 0 001.509-.595l.13 2.786a9.585 9.585 0 01-4.058.78 7.672 7.672 0 01-1.797-.232 4.105 4.105 0 01-1.712-.864 4.78 4.78 0 01-1.285-1.727 6.954 6.954 0 01-.502-2.87V27.52h-4.515v-2.73h4.515v-6.008h3.015v6.008h6.162v2.73zM168.808 33.036v-.548c0-3.677-1.825-5.516-5.474-5.516a9.47 9.47 0 00-6.515 2.507l-1.815-2.135c2.004-2.074 5.014-3.108 9.029-3.102 1.013 0 2.02.153 2.987.455a6.614 6.614 0 014.18 3.715 8.138 8.138 0 01.642 3.37v9.537c0 .817 0 1.68.112 2.572.11.89.158 1.634.25 2.21h-2.968a16.868 16.868 0 01-.205-1.69 22.869 22.869 0 01-.065-1.774h-.093a8.16 8.16 0 01-3.128 3.074 9.484 9.484 0 01-4.403.928 9.636 9.636 0 01-2.736-.39 6.94 6.94 0 01-2.355-1.188 6.038 6.038 0 01-1.638-1.95 5.746 5.746 0 01-.615-2.712 5.846 5.846 0 011.34-4.076 8.235 8.235 0 013.38-2.21c1.398-.5 2.856-.812 4.337-.93a54.37 54.37 0 014.217-.175l1.536.028zm-1.555 2.45c-.754 0-1.713 0-2.848.122a16.393 16.393 0 00-3.286.539 7.246 7.246 0 00-2.69 1.346A3.052 3.052 0 00157.303 40a3.525 3.525 0 00.437 1.792c.287.496.686.919 1.164 1.235a4.894 4.894 0 001.619.678 7.84 7.84 0 001.806.204 6.886 6.886 0 002.848-.538 6.024 6.024 0 002.039-1.486 5.871 5.871 0 001.2-2.182 8.948 8.948 0 00.392-2.665v-1.551h-1.555zM194.368 29.795a6.44 6.44 0 00-2.17-2.015 6.123 6.123 0 00-3.173-.826 7.897 7.897 0 00-3.351.594 7.443 7.443 0 00-2.532 1.774 7.55 7.55 0 00-1.601 2.71 10.766 10.766 0 000 6.789 7.514 7.514 0 001.6 2.702 7.36 7.36 0 002.533 1.783c1.06.44 2.204.64 3.35.585a6.12 6.12 0 003.175-.817 6.523 6.523 0 002.169-1.987l2.467 1.857a10.23 10.23 0 01-3.612 2.785 10.91 10.91 0 01-4.198.929c-1.59.04-3.17-.23-4.654-.8a10.486 10.486 0 01-3.584-2.348 10.108 10.108 0 01-2.262-3.575 13.406 13.406 0 010-8.97 10.064 10.064 0 012.262-3.566 10.353 10.353 0 013.584-2.35 12.123 12.123 0 014.654-.797c1.447.028 2.874.344 4.198.928a10.1 10.1 0 013.612 2.786l-2.467 1.829zM203.816 34.4l10.08-9.61h4.524l-10.64 9.74 11.776 11.57h-4.654l-11.086-11.198V46.1H200.8V11.679h3.016V34.4zM227.179 46.1h-3.286V13.853h9.95c3.287 0 5.874.715 7.782 2.145 1.909 1.43 2.849 3.584 2.849 6.5a8.033 8.033 0 01-2.122 5.664 9.07 9.07 0 01-6.097 2.637l9.308 15.303h-4.012l-8.9-14.978h-5.472V46.1zm0-17.986h5.846c1.256.029 2.51-.125 3.723-.455a6.974 6.974 0 002.448-1.207 4.516 4.516 0 001.322-1.773 5.97 5.97 0 00.409-2.21 5.85 5.85 0 00-.41-2.164 4.744 4.744 0 00-1.33-1.811 6.712 6.712 0 00-2.448-1.207 13.87 13.87 0 00-3.724-.427h-5.845l.009 11.254zM271.449 35.44a11.49 11.49 0 01-.847 4.467 10.638 10.638 0 01-2.346 3.547 10.865 10.865 0 01-3.583 2.35 12.755 12.755 0 01-9.132 0 10.58 10.58 0 01-5.93-5.897 12.167 12.167 0 010-8.923 10.674 10.674 0 012.347-3.557 10.89 10.89 0 013.583-2.34 12.755 12.755 0 019.132 0 10.995 10.995 0 013.583 2.34 10.69 10.69 0 012.346 3.557c.576 1.415.864 2.93.847 4.457m-3.286 0a9.753 9.753 0 00-.568-3.324 8.047 8.047 0 00-1.62-2.684 7.606 7.606 0 00-2.531-1.792 8.759 8.759 0 00-6.711 0 7.244 7.244 0 00-2.514 1.792 8.188 8.188 0 00-1.601 2.684 10.014 10.014 0 000 6.648 8.14 8.14 0 001.6 2.693 7.36 7.36 0 002.515 1.792 8.87 8.87 0 006.71 0 7.724 7.724 0 002.533-1.792 8.001 8.001 0 001.619-2.693 9.705 9.705 0 00.568-3.324M282.45 34.717l-7.762-9.927h4.105l5.939 7.967 5.659-7.967h3.742l-7.437 9.927L295.64 46.1h-4.114l-7.158-9.332-6.898 9.332h-3.835l8.815-11.384z"/></g><path d="M89.185 50.214a.668.668 0 00.39-.845L78.882 18.578a.641.641 0 00-.837-.371L50.249 32.655a.65.65 0 00-.391.836l6.749 18.348h29.069l3.509-1.625z" fill="#304362" fill-rule="nonzero"/><path d="M45.055 31.866a.66.66 0 01.39-.836l26.52-13.78-2.727-7.837a.817.817 0 00-1.07-.474l-35.52 18.46a.846.846 0 00-.503 1.078l8.582 23.362H52.39l-7.335-19.973z" fill="#304362" fill-rule="nonzero"/><path d="M27.258 26.852a.845.845 0 01.494-1.078L60.479 8.763 57.687.629a.931.931 0 00-1.238-.557L15.195 21.494a.93.93 0 00-.577 1.244l10.685 29.1h11.17l-9.215-24.986zM10.997 23.954l10.239 27.858H4.323a.347.347 0 01-.317-.223L.032 40.028a.325.325 0 010-.28l10.378-15.86a.337.337 0 01.596.065" fill="#304362" fill-rule="nonzero"/></svg> \ No newline at end of file +<svg viewBox="0 0 297 52" xmlns="http://www.w3.org/2000/svg" fill-rule="evenodd" clip-rule="evenodd"><g class="text" fill="#304362" fill-rule="nonzero" stroke="#304362" stroke-width=".5"><path d="M130.97 19.19a7.072 7.072 0 00-6.246-3.138 9.522 9.522 0 00-2.513.335 7.226 7.226 0 00-2.215 1.049 5.332 5.332 0 00-1.574 1.857 5.558 5.558 0 00-.595 2.619 4.521 4.521 0 001.238 3.398 9.836 9.836 0 003.053 1.978 35.15 35.15 0 003.993 1.384c1.402.375 2.755.914 4.03 1.606a9.43 9.43 0 013.063 2.71 7.66 7.66 0 011.229 4.644 8.231 8.231 0 01-.931 3.937 9.093 9.093 0 01-2.504 2.925 12.119 12.119 0 01-7.233 2.46 14.493 14.493 0 01-5.64-1.113 10.75 10.75 0 01-4.543-3.714l3.016-2.136a7.849 7.849 0 002.914 2.84 8.674 8.674 0 004.412 1.069 8.064 8.064 0 002.494-.334 7.118 7.118 0 002.206-1.142 6.265 6.265 0 001.61-1.857 4.9 4.9 0 00.643-2.508 5.222 5.222 0 00-.708-2.785 6.15 6.15 0 00-1.861-1.857 12.455 12.455 0 00-2.653-1.254l-3.053-.994a32.363 32.363 0 01-3.063-1.142 10.657 10.657 0 01-2.643-1.615 7.23 7.23 0 01-1.862-2.461 8.512 8.512 0 01-.707-3.714 8.725 8.725 0 01.93-4.058 8.356 8.356 0 012.365-2.87 10.191 10.191 0 013.36-1.68 14.27 14.27 0 018.806.315 10.717 10.717 0 014.077 3.018l-2.895 2.229zM151.01 27.52h-6.162v12.573a6.947 6.947 0 00.224 1.93c.117.434.337.832.642 1.162.27.27.608.466.977.567.41.11.833.165 1.257.157a6.1 6.1 0 001.6-.222 7.303 7.303 0 001.509-.595l.13 2.786a9.585 9.585 0 01-4.058.78 7.672 7.672 0 01-1.797-.232 4.105 4.105 0 01-1.712-.864 4.78 4.78 0 01-1.285-1.727 6.954 6.954 0 01-.502-2.87V27.52h-4.515v-2.73h4.515v-6.008h3.015v6.008h6.162v2.73zM168.808 33.036v-.548c0-3.677-1.825-5.516-5.474-5.516a9.47 9.47 0 00-6.515 2.507l-1.815-2.135c2.004-2.074 5.014-3.108 9.029-3.102 1.013 0 2.02.153 2.987.455a6.614 6.614 0 014.18 3.715 8.138 8.138 0 01.642 3.37v9.537c0 .817 0 1.68.112 2.572.11.89.158 1.634.25 2.21h-2.968a16.868 16.868 0 01-.205-1.69 22.869 22.869 0 01-.065-1.774h-.093a8.16 8.16 0 01-3.128 3.074 9.484 9.484 0 01-4.403.928 9.636 9.636 0 01-2.736-.39 6.94 6.94 0 01-2.355-1.188 6.038 6.038 0 01-1.638-1.95 5.746 5.746 0 01-.615-2.712 5.846 5.846 0 011.34-4.076 8.235 8.235 0 013.38-2.21c1.398-.5 2.856-.812 4.337-.93a54.37 54.37 0 014.217-.175l1.536.028zm-1.555 2.45c-.754 0-1.713 0-2.848.122a16.393 16.393 0 00-3.286.539 7.246 7.246 0 00-2.69 1.346A3.052 3.052 0 00157.303 40a3.525 3.525 0 00.437 1.792c.287.496.686.919 1.164 1.235a4.894 4.894 0 001.619.678 7.84 7.84 0 001.806.204 6.886 6.886 0 002.848-.538 6.024 6.024 0 002.039-1.486 5.871 5.871 0 001.2-2.182 8.948 8.948 0 00.392-2.665v-1.551h-1.555zM194.368 29.795a6.44 6.44 0 00-2.17-2.015 6.123 6.123 0 00-3.173-.826 7.897 7.897 0 00-3.351.594 7.443 7.443 0 00-2.532 1.774 7.55 7.55 0 00-1.601 2.71 10.766 10.766 0 000 6.789 7.514 7.514 0 001.6 2.702 7.36 7.36 0 002.533 1.783c1.06.44 2.204.64 3.35.585a6.12 6.12 0 003.175-.817 6.523 6.523 0 002.169-1.987l2.467 1.857a10.23 10.23 0 01-3.612 2.785 10.91 10.91 0 01-4.198.929c-1.59.04-3.17-.23-4.654-.8a10.486 10.486 0 01-3.584-2.348 10.108 10.108 0 01-2.262-3.575 13.406 13.406 0 010-8.97 10.064 10.064 0 012.262-3.566 10.353 10.353 0 013.584-2.35 12.123 12.123 0 014.654-.797c1.447.028 2.874.344 4.198.928a10.1 10.1 0 013.612 2.786l-2.467 1.829zM203.816 34.4l10.08-9.61h4.524l-10.64 9.74 11.776 11.57h-4.654l-11.086-11.198V46.1H200.8V11.679h3.016V34.4zM227.179 46.1h-3.286V13.853h9.95c3.287 0 5.874.715 7.782 2.145 1.909 1.43 2.849 3.584 2.849 6.5a8.033 8.033 0 01-2.122 5.664 9.07 9.07 0 01-6.097 2.637l9.308 15.303h-4.012l-8.9-14.978h-5.472V46.1zm0-17.986h5.846c1.256.029 2.51-.125 3.723-.455a6.974 6.974 0 002.448-1.207 4.516 4.516 0 001.322-1.773 5.97 5.97 0 00.409-2.21 5.85 5.85 0 00-.41-2.164 4.744 4.744 0 00-1.33-1.811 6.712 6.712 0 00-2.448-1.207 13.87 13.87 0 00-3.724-.427h-5.845l.009 11.254zM271.449 35.44a11.49 11.49 0 01-.847 4.467 10.638 10.638 0 01-2.346 3.547 10.865 10.865 0 01-3.583 2.35 12.755 12.755 0 01-9.132 0 10.58 10.58 0 01-5.93-5.897 12.167 12.167 0 010-8.923 10.674 10.674 0 012.347-3.557 10.89 10.89 0 013.583-2.34 12.755 12.755 0 019.132 0 10.995 10.995 0 013.583 2.34 10.69 10.69 0 012.346 3.557c.576 1.415.864 2.93.847 4.457m-3.286 0a9.753 9.753 0 00-.568-3.324 8.047 8.047 0 00-1.62-2.684 7.606 7.606 0 00-2.531-1.792 8.759 8.759 0 00-6.711 0 7.244 7.244 0 00-2.514 1.792 8.188 8.188 0 00-1.601 2.684 10.014 10.014 0 000 6.648 8.14 8.14 0 001.6 2.693 7.36 7.36 0 002.515 1.792 8.87 8.87 0 006.71 0 7.724 7.724 0 002.533-1.792 8.001 8.001 0 001.619-2.693 9.705 9.705 0 00.568-3.324M282.45 34.717l-7.762-9.927h4.105l5.939 7.967 5.659-7.967h3.742l-7.437 9.927L295.64 46.1h-4.114l-7.158-9.332-6.898 9.332h-3.835l8.815-11.384z"/></g><path d="M89.185 50.214a.668.668 0 00.39-.845L78.882 18.578a.641.641 0 00-.837-.371L50.249 32.655a.65.65 0 00-.391.836l6.749 18.348h29.069l3.509-1.625z" class="text" fill="#304362" fill-rule="nonzero"/><path d="M45.055 31.866a.66.66 0 01.39-.836l26.52-13.78-2.727-7.837a.817.817 0 00-1.07-.474l-35.52 18.46a.846.846 0 00-.503 1.078l8.582 23.362H52.39l-7.335-19.973z" class="text" fill="#304362" fill-rule="nonzero"/><path d="M27.258 26.852a.845.845 0 01.494-1.078L60.479 8.763 57.687.629a.931.931 0 00-1.238-.557L15.195 21.494a.93.93 0 00-.577 1.244l10.685 29.1h11.17l-9.215-24.986zM10.997 23.954l10.239 27.858H4.323a.347.347 0 01-.317-.223L.032 40.028a.325.325 0 010-.28l10.378-15.86a.337.337 0 01.596.065" class="text" fill="#304362" fill-rule="nonzero"/></svg> \ No newline at end of file diff --git a/ui/apps/platform/src/images/acsEmailNotifier.svg b/ui/apps/platform/src/images/acsEmailNotifier.svg index 5344c44621064..65ed0989fb2d2 100644 --- a/ui/apps/platform/src/images/acsEmailNotifier.svg +++ b/ui/apps/platform/src/images/acsEmailNotifier.svg @@ -1,15 +1,15 @@ <svg width="1460" height="512" viewBox="0 0 1460 512" fill="none" xmlns="http://www.w3.org/2000/svg"> <g clip-path="url(#clip0_10_19)"> <path d="M48 64C21.5 64 0 85.5 0 112C0 127.1 7.1 141.3 19.2 150.4L236.8 313.6C248.2 322.1 263.8 322.1 275.2 313.6L332.6 270.6C356.5 210.8 412.3 167.3 478.9 160.8L492.8 150.4C504.9 141.3 512 127.1 512 112C512 85.5 490.5 64 464 64H48ZM294.4 339.2C271.6 356.3 240.4 356.3 217.6 339.2L0 176V384C0 419.3 28.7 448 64 448H360.2C335.1 417.6 320 378.5 320 336C320 330.4 320.3 324.9 320.8 319.4L294.4 339.2ZM640 336C640 297.809 624.829 261.182 597.823 234.177C570.818 207.171 534.191 192 496 192C457.809 192 421.182 207.171 394.177 234.177C367.171 261.182 352 297.809 352 336C352 374.191 367.171 410.818 394.177 437.823C421.182 464.829 457.809 480 496 480C534.191 480 570.818 464.829 597.823 437.823C624.829 410.818 640 374.191 640 336Z" fill="url(#paint0_linear_10_19)"/> -<path d="M597.823 234.177C624.829 261.182 640 297.809 640 336C640 374.191 624.829 410.818 597.823 437.823C570.818 464.829 534.191 480 496 480C457.809 480 421.182 464.829 394.177 437.823C367.171 410.818 352 374.191 352 336C352 297.809 367.171 261.182 394.177 234.177C421.182 207.171 457.809 192 496 192C534.191 192 570.818 207.171 597.823 234.177Z" fill="black"/> +<path d="M597.823 234.177C624.829 261.182 640 297.809 640 336C640 374.191 624.829 410.818 597.823 437.823C570.818 464.829 534.191 480 496 480C457.809 480 421.182 464.829 394.177 437.823C367.171 410.818 352 374.191 352 336C352 297.809 367.171 261.182 394.177 234.177C421.182 207.171 457.809 192 496 192C534.191 192 570.818 207.171 597.823 234.177Z" class="text" fill="black"/> <path d="M559.316 270.333L497.094 257.11C496.426 256.965 495.746 256.962 495.073 257.11L432.851 270.333C430.606 270.812 429 272.794 429 275.088L429.004 347.857C429.968 378.387 446.789 401.902 474 410.759C481.17 413.095 488.575 414.218 495.909 414.218C512.44 414.218 528.509 408.421 540.654 398.017V403.577C540.654 406.262 542.834 408.438 545.515 408.438C548.196 408.438 550.376 406.262 550.376 403.577V386.069C550.376 383.384 548.196 381.208 545.515 381.208H528.584C525.903 381.208 523.723 383.384 523.723 386.069C523.723 388.754 525.903 390.93 528.584 390.93H533.967C518.976 403.572 496.989 408.01 477.008 401.514C453.519 393.866 439.561 374.197 438.722 347.704V279.025L496.083 266.834L553.444 279.025V347.548C553.255 353.526 552.396 359.223 550.9 364.475C550.164 367.057 551.66 369.746 554.235 370.483C556.817 371.201 559.506 369.723 560.243 367.141C561.96 361.126 562.947 354.639 563.167 347.704V275.088C563.167 272.794 561.564 270.812 559.316 270.333Z" fill="white"/> <path d="M496.084 376.093C495.244 376.093 494.405 375.876 493.653 375.439L478.098 366.457C476.593 365.592 475.667 363.985 475.667 362.25V344.29C475.667 342.555 476.593 340.948 478.098 340.082L493.653 331.1C495.16 330.223 497.01 330.231 498.514 331.1L514.07 340.082C515.574 340.948 516.5 342.555 516.5 344.29V362.25C516.5 363.985 515.574 365.592 514.07 366.457L498.514 375.439C497.762 375.876 496.927 376.093 496.084 376.093ZM485.389 359.443L496.084 365.618L506.778 359.443V347.097L496.084 340.922L485.389 347.097V359.443Z" fill="#EE0000"/> <path d="M527.194 351.081C525.28 351.081 523.465 349.941 522.698 348.058C521.68 345.574 522.873 342.733 525.357 341.72C528.243 340.538 530.111 337.762 530.111 334.64C530.111 330.759 527.172 327.52 523.275 327.109C520.685 326.835 518.779 324.576 518.931 321.982L518.999 320.751C518.999 310.414 510.59 302.002 500.253 302.002C492.786 302.002 486.034 306.434 483.053 313.289C482.149 315.375 479.89 316.551 477.694 316.13C476.9 315.978 476.088 315.89 475.248 315.89C467.972 315.89 462.055 321.811 462.055 329.088C462.055 333.41 464.181 337.469 467.74 339.942C469.947 341.472 470.494 344.499 468.959 346.705C467.436 348.916 464.402 349.462 462.196 347.924C456.021 343.636 452.333 336.596 452.333 329.087C452.333 316.266 462.894 305.75 475.795 306.175C480.888 297.63 490.139 292.279 500.252 292.279C515.177 292.279 527.459 303.829 528.629 318.465C535.244 320.952 539.832 327.291 539.832 334.639C539.832 341.726 535.594 348.038 529.031 350.719C528.431 350.966 527.81 351.081 527.194 351.081Z" fill="#EE0000"/> -<path d="M1419.77 359V156L1459.5 149.33V359H1419.77Z" fill="#151515"/> -<path d="M1348.97 359V207.91H1388.7V359H1348.97ZM1368.69 189.93C1362.5 189.93 1357.19 187.707 1352.74 183.26C1348.29 178.813 1346.07 173.497 1346.07 167.31C1346.07 160.93 1348.29 155.613 1352.74 151.36C1357.19 146.913 1362.5 144.69 1368.69 144.69C1375.07 144.69 1380.39 146.913 1384.64 151.36C1389.09 155.613 1391.31 160.93 1391.31 167.31C1391.31 173.497 1389.09 178.813 1384.64 183.26C1380.39 187.707 1375.07 189.93 1368.69 189.93Z" fill="#151515"/> -<path d="M1236.25 361.61C1225.42 361.61 1215.85 359.677 1207.54 355.81C1199.23 351.75 1192.75 346.24 1188.11 339.28C1183.47 332.32 1181.15 324.297 1181.15 315.21C1181.15 300.71 1186.56 289.497 1197.39 281.57C1208.41 273.45 1223.49 269.39 1242.63 269.39C1255.78 269.39 1268.15 271.42 1279.75 275.48V264.46C1279.75 246.867 1269.12 238.07 1247.85 238.07C1241.47 238.07 1234.61 239.133 1227.26 241.26C1219.91 243.193 1211.41 246.287 1201.74 250.54L1187.24 221.25C1199.23 215.837 1210.63 211.777 1221.46 209.07C1232.48 206.363 1243.5 205.01 1254.52 205.01C1274.82 205.01 1290.58 209.94 1301.79 219.8C1313.2 229.467 1318.9 243.193 1318.9 260.98V359H1279.75V348.27C1273.56 352.91 1266.89 356.293 1259.74 358.42C1252.59 360.547 1244.76 361.61 1236.25 361.61ZM1218.85 314.34C1218.85 320.14 1221.36 324.78 1226.39 328.26C1231.42 331.547 1238.09 333.19 1246.4 333.19C1259.74 333.19 1270.86 329.903 1279.75 323.33V301.29C1270.08 297.423 1259.45 295.49 1247.85 295.49C1238.76 295.49 1231.61 297.23 1226.39 300.71C1221.36 303.997 1218.85 308.54 1218.85 314.34Z" fill="#151515"/> -<path d="M925.582 359V207.91H965.312V219.51C976.139 209.843 989.285 205.01 1004.75 205.01C1014.61 205.01 1023.41 207.04 1031.14 211.1C1038.88 214.967 1045.26 220.477 1050.28 227.63C1062.85 212.55 1079.48 205.01 1100.16 205.01C1111.57 205.01 1121.53 207.62 1130.03 212.84C1138.73 217.867 1145.5 224.923 1150.33 234.01C1155.36 242.903 1157.87 253.343 1157.87 265.33V359H1118.43V271.13C1118.43 261.27 1115.82 253.537 1110.6 247.93C1105.38 242.13 1098.42 239.23 1089.72 239.23C1077.54 239.23 1067.88 244.257 1060.72 254.31C1060.92 256.05 1061.11 257.79 1061.3 259.53C1061.5 261.27 1061.59 263.203 1061.59 265.33V359H1021.86V271.13C1021.86 261.27 1019.25 253.537 1014.03 247.93C1009.01 242.13 1002.14 239.23 993.442 239.23C981.262 239.23 971.885 243.87 965.312 253.15V359H925.582Z" fill="#151515"/> -<path d="M829.61 361.9C814.53 361.9 800.804 358.42 788.43 351.46C776.25 344.5 766.584 335.123 759.43 323.33C752.277 311.537 748.7 298.293 748.7 283.6C748.7 268.907 752.084 255.663 758.85 243.87C765.81 232.077 775.187 222.7 786.98 215.74C798.774 208.78 811.92 205.3 826.42 205.3C840.92 205.3 853.777 208.877 864.99 216.03C876.204 223.183 885 232.85 891.38 245.03C897.954 257.21 901.24 271.033 901.24 286.5V296.94H789.3C791.04 302.933 793.844 308.347 797.71 313.18C801.77 318.013 806.7 321.783 812.5 324.49C818.494 327.197 824.874 328.55 831.64 328.55C838.407 328.55 844.594 327.487 850.2 325.36C856 323.233 860.93 320.237 864.99 316.37L891.09 340.15C881.81 347.69 872.24 353.2 862.38 356.68C852.714 360.16 841.79 361.9 829.61 361.9ZM788.72 268.52H862.09C860.737 262.527 858.224 257.307 854.55 252.86C851.07 248.22 846.817 244.643 841.79 242.13C836.957 239.423 831.544 238.07 825.55 238.07C816.464 238.07 808.634 240.873 802.06 246.48C795.487 251.893 791.04 259.24 788.72 268.52Z" fill="#151515"/> +<path d="M1419.77 359V156L1459.5 149.33V359H1419.77Z" class="text" fill="#151515"/> +<path d="M1348.97 359V207.91H1388.7V359H1348.97ZM1368.69 189.93C1362.5 189.93 1357.19 187.707 1352.74 183.26C1348.29 178.813 1346.07 173.497 1346.07 167.31C1346.07 160.93 1348.29 155.613 1352.74 151.36C1357.19 146.913 1362.5 144.69 1368.69 144.69C1375.07 144.69 1380.39 146.913 1384.64 151.36C1389.09 155.613 1391.31 160.93 1391.31 167.31C1391.31 173.497 1389.09 178.813 1384.64 183.26C1380.39 187.707 1375.07 189.93 1368.69 189.93Z" class="text" fill="#151515"/> +<path d="M1236.25 361.61C1225.42 361.61 1215.85 359.677 1207.54 355.81C1199.23 351.75 1192.75 346.24 1188.11 339.28C1183.47 332.32 1181.15 324.297 1181.15 315.21C1181.15 300.71 1186.56 289.497 1197.39 281.57C1208.41 273.45 1223.49 269.39 1242.63 269.39C1255.78 269.39 1268.15 271.42 1279.75 275.48V264.46C1279.75 246.867 1269.12 238.07 1247.85 238.07C1241.47 238.07 1234.61 239.133 1227.26 241.26C1219.91 243.193 1211.41 246.287 1201.74 250.54L1187.24 221.25C1199.23 215.837 1210.63 211.777 1221.46 209.07C1232.48 206.363 1243.5 205.01 1254.52 205.01C1274.82 205.01 1290.58 209.94 1301.79 219.8C1313.2 229.467 1318.9 243.193 1318.9 260.98V359H1279.75V348.27C1273.56 352.91 1266.89 356.293 1259.74 358.42C1252.59 360.547 1244.76 361.61 1236.25 361.61ZM1218.85 314.34C1218.85 320.14 1221.36 324.78 1226.39 328.26C1231.42 331.547 1238.09 333.19 1246.4 333.19C1259.74 333.19 1270.86 329.903 1279.75 323.33V301.29C1270.08 297.423 1259.45 295.49 1247.85 295.49C1238.76 295.49 1231.61 297.23 1226.39 300.71C1221.36 303.997 1218.85 308.54 1218.85 314.34Z" class="text" fill="#151515"/> +<path d="M925.582 359V207.91H965.312V219.51C976.139 209.843 989.285 205.01 1004.75 205.01C1014.61 205.01 1023.41 207.04 1031.14 211.1C1038.88 214.967 1045.26 220.477 1050.28 227.63C1062.85 212.55 1079.48 205.01 1100.16 205.01C1111.57 205.01 1121.53 207.62 1130.03 212.84C1138.73 217.867 1145.5 224.923 1150.33 234.01C1155.36 242.903 1157.87 253.343 1157.87 265.33V359H1118.43V271.13C1118.43 261.27 1115.82 253.537 1110.6 247.93C1105.38 242.13 1098.42 239.23 1089.72 239.23C1077.54 239.23 1067.88 244.257 1060.72 254.31C1060.92 256.05 1061.11 257.79 1061.3 259.53C1061.5 261.27 1061.59 263.203 1061.59 265.33V359H1021.86V271.13C1021.86 261.27 1019.25 253.537 1014.03 247.93C1009.01 242.13 1002.14 239.23 993.442 239.23C981.262 239.23 971.885 243.87 965.312 253.15V359H925.582Z" class="text" fill="#151515"/> +<path d="M829.61 361.9C814.53 361.9 800.804 358.42 788.43 351.46C776.25 344.5 766.584 335.123 759.43 323.33C752.277 311.537 748.7 298.293 748.7 283.6C748.7 268.907 752.084 255.663 758.85 243.87C765.81 232.077 775.187 222.7 786.98 215.74C798.774 208.78 811.92 205.3 826.42 205.3C840.92 205.3 853.777 208.877 864.99 216.03C876.204 223.183 885 232.85 891.38 245.03C897.954 257.21 901.24 271.033 901.24 286.5V296.94H789.3C791.04 302.933 793.844 308.347 797.71 313.18C801.77 318.013 806.7 321.783 812.5 324.49C818.494 327.197 824.874 328.55 831.64 328.55C838.407 328.55 844.594 327.487 850.2 325.36C856 323.233 860.93 320.237 864.99 316.37L891.09 340.15C881.81 347.69 872.24 353.2 862.38 356.68C852.714 360.16 841.79 361.9 829.61 361.9ZM788.72 268.52H862.09C860.737 262.527 858.224 257.307 854.55 252.86C851.07 248.22 846.817 244.643 841.79 242.13C836.957 239.423 831.544 238.07 825.55 238.07C816.464 238.07 808.634 240.873 802.06 246.48C795.487 251.893 791.04 259.24 788.72 268.52Z" class="text" fill="#151515"/> </g> <defs> <linearGradient id="paint0_linear_10_19" x1="320" y1="64" x2="320" y2="480" gradientUnits="userSpaceOnUse"> diff --git a/ui/apps/platform/src/images/artifactory.svg b/ui/apps/platform/src/images/artifactory.svg index 4773773d53a5f..bcbddb7a928b3 100644 --- a/ui/apps/platform/src/images/artifactory.svg +++ b/ui/apps/platform/src/images/artifactory.svg @@ -1 +1 @@ -<svg viewBox="0 0 237 61" xmlns="http://www.w3.org/2000/svg" fill-rule="evenodd" clip-rule="evenodd" stroke-linejoin="round" stroke-miterlimit="2"><path d="M26.49 4.428c-10.02-.033-18.297 8.176-18.33 18.18-.03 9.936 8.11 18.267 17.735 18.457 9.902.196 18.599-7.61 18.752-17.973.154-10.35-7.993-18.63-18.156-18.664m.01 40.996c-12.634 0-22.722-10.12-22.715-22.784C3.792 10.193 14.022-.022 26.46 0c12.582.023 22.595 10.244 22.587 23.058-.008 12.238-10.218 22.366-22.546 22.366" fill="#43bf49"/><g fill="#393a40"><path d="M95.066 39.455c0 1.266-.009 2.533.007 3.799.003.271-.132.594.317.741 2.038.669 3.971-.605 4.081-2.742.046-.88.034-1.764.033-2.647-.005-3.148-.556-3.664-3.68-3.594-.581.014-.797.137-.772.759.048 1.226.014 2.456.014 3.684m6.223 6.315c2.445 1.31 2.85 3.544 2.902 5.93.046 2.114.029 4.23.09 6.343.019.682.2 1.359.321 2.133-1.381 0-2.754-.009-4.128.003-.747.006-.702-.584-.77-1.04-.309-2.064-.173-4.145-.198-6.219-.006-.501.008-1.001-.002-1.501-.053-2.521-1.536-3.687-4.024-3.236-.665.121-.4.566-.402.873-.02 3.347-.041 6.695.008 10.043.012.842-.17 1.175-1.064 1.096-.951-.084-1.916-.052-2.872-.007-.608.029-.805-.183-.785-.784.037-1.115.011-2.232.011-3.348 0-8.042.016-16.084-.022-24.126-.004-.948.23-1.252 1.194-1.208 2.409.111 4.825-.088 7.234.122 3.202.28 5.133 2.208 5.286 5.428.092 1.916.215 3.847-.123 5.755-.282 1.594-1.096 2.851-2.656 3.743M210.611 39.529c0 1.038.108 2.091-.027 3.111-.171 1.283.409 1.436 1.464 1.37 2.18-.136 2.852-.707 3.055-2.887.074-.801.065-1.611.062-2.417-.013-3.223-.662-3.82-3.865-3.694-.548.021-.718.157-.701.711.039 1.268.012 2.537.012 3.806m6.298 6.244c2.198 1.169 2.775 3.12 2.879 5.278.072 1.497.028 3.001.025 4.502-.002 1.531-.074 3.067.499 4.623-1.447 0-2.786-.021-4.124.01-.551.014-.699-.245-.807-.73-.312-1.41-.159-2.835-.215-4.253-.064-1.649.186-3.312-.179-4.947-.357-1.595-2.673-2.73-4.141-2.046-.44.205-.222.608-.224.91-.017 3.349-.035 6.698.007 10.046.011.784-.157 1.099-.993 1.028a17.622 17.622 0 00-2.757-.002c-.722.053-.901-.187-.892-.895.039-2.963.017-5.928.017-8.891 0-6.198.016-12.395-.02-18.592-.005-.837.155-1.13 1.052-1.094 2.295.092 4.602-.032 6.893.118 3.755.245 5.412 1.842 5.787 5.545.17 1.677.161 3.38-.056 5.067-.233 1.811-.975 3.302-2.751 4.323M194.245 45.426c0 2.77-.043 5.542.014 8.312.041 1.997 1.506 2.991 3.264 2.308 1.056-.41 1.344-1.313 1.357-2.322.03-2.5.027-5.002.026-7.503-.002-3.04.029-6.08-.041-9.119-.043-1.866-1.252-2.746-2.985-2.331-1.056.252-1.612 1.024-1.628 2.458-.031 2.732-.009 5.464-.007 8.197m9.273.026c0 2.695.02 5.39-.006 8.085-.026 2.663-.818 5.026-3.398 6.18-2.732 1.221-5.548 1.196-8.081-.6-1.965-1.393-2.453-3.575-2.465-5.823-.028-5.503-.067-11.009.095-16.508.122-4.152 2.896-6.497 7.135-6.384 4.153.111 6.66 2.604 6.713 6.736.035 2.771.007 5.543.007 8.314M148.941 37.003l-.211-.05c-.665 4.433-1.324 8.866-2.005 13.296-.069.448.101.527.473.524 1.071-.008 2.143-.012 3.215.002.425.006.597-.067.517-.582-.683-4.394-1.331-8.792-1.989-13.19m.194-6.181c1.066 0 2.366-.375 3.131.107.746.47.491 1.906.655 2.921 1.361 8.412 2.702 16.828 4.07 25.239.13.801.057 1.224-.92 1.103-1.2-.149-2.78.503-3.522-.262-.674-.693-.476-2.249-.646-3.426-.237-1.641-.231-1.642-1.924-1.642h-1.954c-1.979 0-1.979 0-2.265 1.923-.011.076-.017.153-.026.229-.435 3.41-.666 3.563-4.169 3.178-.899-.098-.464-.67-.415-.999.532-3.533 1.105-7.059 1.668-10.587.891-5.577 1.811-11.149 2.645-16.734.142-.949.475-1.233 1.374-1.144.759.074 1.532.015 2.298.015v.079M80.248 37.093l-.234.006c-.135.921-.266 1.843-.405 2.763-.501 3.305-.986 6.613-1.518 9.913-.13.803.07 1.093.902 1.011a10.46 10.46 0 012.181.001c.947.107 1.151-.235 1-1.134-.42-2.501-.764-5.014-1.145-7.522-.255-1.68-.52-3.359-.781-5.038m5.789 23.083c-2.345 0-2.335-.001-2.659-2.287-.138-.983.083-2.279-.582-2.854-.666-.575-1.911-.157-2.901-.166-2.517-.022-2.519-.007-2.913 2.501-.141.902.063 2.077-.543 2.626-.618.56-1.759.152-2.67.172-1.44.031-1.461.005-1.235-1.421 1.433-9.03 2.885-18.057 4.293-27.091.113-.725.339-.952 1.059-.929 1.648.051 3.299.046 4.946.002.699-.019.957.162 1.075.916a5114.797 5114.797 0 004.436 27.793c.088.542.033.792-.581.747-.573-.042-1.15-.009-1.725-.009M158.574 45.406c0-3.039-.157-6.089.039-9.116.25-3.857 2.933-6 6.964-5.888 3.926.109 6.346 2.399 6.594 6.24.012.191.025.385.011.576-.077 1.135.504 2.733-.237 3.283-.776.576-2.277.144-3.458.202-.588.029-.707-.22-.689-.743.032-.923.037-1.849 0-2.771-.065-1.612-.866-2.477-2.258-2.503-1.482-.027-2.297.684-2.348 2.356a284.27 284.27 0 00-.002 16.85c.045 1.592.845 2.275 2.304 2.267 1.412-.008 2.22-.776 2.294-2.317.062-1.306.056-2.618.004-3.925-.027-.672.197-.848.834-.813 1.142.063 2.642-.382 3.334.188.722.596.173 2.16.217 3.299.038.96.014 1.916-.194 2.871-.617 2.838-2.453 4.601-5.334 4.935-1.253.146-2.526.129-3.765-.223-2.761-.783-4.357-3.179-4.394-6.684-.028-2.694-.006-5.389-.006-8.084h.09"/></g><path d="M26.408 60.576c-8.393 0-16.786-.017-25.179.024-.982.005-1.271-.284-1.175-1.224.093-.91-.278-2.123.183-2.675.545-.653 1.793-.213 2.732-.214 16.25-.016 32.499 0 48.749-.037 1.067-.003 1.326.29 1.3 1.328-.07 2.797-.022 2.798-2.811 2.798H26.408z" fill="#43bf49"/><path d="M229.221 43.56c1.003-3.816 2.055-7.62 2.977-11.455.267-1.115.727-1.533 1.83-1.372.965.141 2.295-.436 2.803.273.345.48-.388 1.751-.656 2.662-1.471 5.002-2.925 10.008-4.434 14.998-.372 1.231-.568 2.45-.544 3.735.043 2.308-.005 4.617.023 6.925.008.624-.136.904-.824.865a26.092 26.092 0 00-2.986 0c-.683.038-.85-.231-.828-.861.039-1.114-.056-2.236.023-3.346.263-3.695-.368-7.23-1.512-10.743-1.448-4.444-2.672-8.961-4.04-13.432-.263-.858-.182-1.198.785-1.078.529.066 1.072.012 1.608.012 2.223 0 2.215.002 2.785 2.204.912 3.522 1.835 7.041 2.753 10.561l.237.052M129.188 45.394c0-4.54.017-9.079-.016-13.618-.006-.769.146-1.065.989-1.053 3.448.048 6.896.039 10.343.004.691-.007.956.145.903.883-.081 1.108.336 2.54-.212 3.234-.425.537-2.003.168-3.068.181-1.188.013-2.376.034-3.562-.011-.573-.021-.704.178-.698.72.026 2.462.03 4.924-.002 7.386-.008.582.19.705.724.693 1.493-.032 2.988.01 4.481-.022.527-.011.755.106.722.687-.064 1.143.332 2.573-.215 3.346-.452.639-2 .167-3.062.176-2.637.022-2.637.007-2.637 2.607 0 2.847-.025 5.694.017 8.54.011.773-.146 1.133-.995 1.041-1.204-.131-2.824.514-3.511-.265-.598-.678-.194-2.265-.197-3.451-.011-3.692-.004-7.385-.004-11.078M115.24 47.622c0 3.847-.021 7.695.018 11.542.008.797-.192 1.096-1.014 1.029a15.632 15.632 0 00-2.641 0c-.851.075-.998-.275-.995-1.047.026-7.656-.005-15.313.042-22.969.006-.98-.248-1.257-1.193-1.169-.95.089-1.915-.007-2.872.03-.561.022-.846-.081-.807-.744.056-.958.032-1.923.007-2.884-.013-.494.159-.676.662-.674 4.329.013 8.659.014 12.988-.001.523-.002.685.22.638.693-.004.038 0 .076-.001.115-.022 1.111.366 2.544-.179 3.245-.577.74-2.07.193-3.161.228-1.491.047-1.492.012-1.492 1.525v11.081zM183.193 47.623c0 3.849-.023 7.697.019 11.545.008.805-.199 1.091-1.017 1.024a14.838 14.838 0 00-2.641.003c-.895.088-1.074-.251-1.07-1.092.034-6.618.019-13.237.019-19.856 0-1.155-.03-2.31.012-3.463.021-.597-.154-.799-.765-.77-1.071.05-2.146-.01-3.218.024-.55.017-.843-.064-.796-.732.08-1.144-.344-2.611.218-3.35.533-.703 2.075-.193 3.171-.203 3.295-.029 6.591.014 9.886-.028.77-.01 1.01.22.953.977-.081 1.067.326 2.476-.212 3.118-.56.669-2.01.176-3.069.199-1.489.033-1.49.009-1.49 1.522v11.082zM126.589 45.552c0 4.538-.02 9.076.018 13.614.007.8-.191 1.092-1.012 1.027a17.97 17.97 0 00-2.755 0c-.748.055-.876-.243-.875-.919.02-9.192.022-18.383-.002-27.574-.002-.74.163-1.031.943-.973a19.65 19.65 0 002.756.002c.771-.053.95.234.944.979-.034 4.614-.017 9.229-.017 13.844" fill="#393a40"/><path d="M119.754 12.739c.004-1.358-.54-2.008-1.66-1.983-1.055.024-1.594.683-1.594 1.95 0 1.318.578 2.001 1.68 1.984 1.059-.017 1.57-.65 1.574-1.951m-1.895 10.535c.97.022 1.921-.078 2.734-.662.728-.522.766-1.518.025-1.771-1.471-.503-2.998-.559-4.484.004-.498.188-.79.615-.766 1.173.021.518.368.802.806 1.022.542.271 1.115.222 1.685.234m-3.024-3.819c-1.285-1.439-1.232-1.955.333-3.513-.933-.691-1.576-1.559-1.659-2.767-.199-2.869 1.654-4.608 4.838-4.367 1.645.124 3.284.212 4.932.208.356 0 .855-.125.802.499-.04.47.315 1.145-.56 1.263-.792.106-1.049.357-.85 1.325.563 2.74-1.368 4.572-4.597 4.575-.594 0-1.531-.366-1.477.659.04.776.929.592 1.516.62 1.031.049 2.064-.059 3.096.13 1.166.213 2.182.656 2.527 1.873.37 1.305.298 2.596-.689 3.68-.53.582-1.189.958-1.92 1.221-1.743.627-3.548.62-5.339.393-1.803-.229-2.918-1.228-3.14-2.588-.22-1.342.347-2.193 2.187-3.211M108.481 14.696c-.013-.614-.043-1.218-.224-1.819-.328-1.09-1.096-1.54-2.153-1.523-1.038.017-1.723.581-1.994 1.587-.326 1.21-.323 2.432.054 3.633.297.944.958 1.461 1.956 1.476 1.02.015 1.764-.402 2.107-1.423.212-.63.251-1.276.254-1.931m3.224-.052c-.031 4.29-2.82 6.618-6.855 5.827-1.614-.316-2.818-1.217-3.499-2.711-.925-2.029-.919-4.12-.039-6.153.945-2.182 3.276-3.163 6.133-2.697 2.296.374 3.945 2.211 4.203 4.693.04.382.043.768.057 1.041M80.868 12.917c0-2.154.028-4.309-.016-6.463-.015-.742.18-1.005.955-.988 2.221.049 4.445.041 6.666.003.683-.011 1.009.162.919.894a4.858 4.858 0 00-.001 1.037c.054.593-.168.817-.779.799-1.263-.038-2.529.017-3.792-.023-.608-.02-.76.19-.779.786-.096 2.956-.115 2.956 2.853 2.956.306 0 .62.044.918-.008 1.094-.192 1.278.314 1.314 1.32.04 1.136-.386 1.338-1.373 1.289-1.177-.059-2.753-.418-3.439.181-.788.689-.223 2.309-.246 3.523-.042 2.252-.012 2.208-2.228 2.233-.861.01-1.002-.321-.987-1.075.042-2.154.015-4.309.015-6.464M74.027 13.082c0-2.229.022-4.458-.013-6.686-.011-.684.17-.925.895-.932 2.377-.023 2.397-.054 2.373 2.312-.045 4.225.188 8.456-.115 12.674-.234 3.259-2.688 4.933-5.89 4.221-.48-.107-.65-.295-.626-.757a7.624 7.624 0 00-.003-1.151c-.067-.686.064-.929.869-.777 1.664.315 2.447-.358 2.49-2.103.056-2.266.013-4.534.013-6.801h.007zM94.983 10.767c.903-1.304 2.058-2.007 3.606-1.99.633.007.919.253.776.904-.016.074-.044.151-.04.226.056 1.182-.049 1.962-1.678 1.944-1.676-.018-2.473 1.121-2.503 2.837-.028 1.652-.025 3.304.003 4.956.011.587-.169.782-.777.806-2.397.093-2.396.116-2.396-2.291 0-2.689-.007-5.378.008-8.068.003-.446-.22-1.152.609-1.057.719.082 1.778-.575 2.02.788.052.297.047.619.372.945" fill="#43bf49"/></svg> \ No newline at end of file +<svg viewBox="0 0 237 61" xmlns="http://www.w3.org/2000/svg" fill-rule="evenodd" clip-rule="evenodd" stroke-linejoin="round" stroke-miterlimit="2"><path d="M26.49 4.428c-10.02-.033-18.297 8.176-18.33 18.18-.03 9.936 8.11 18.267 17.735 18.457 9.902.196 18.599-7.61 18.752-17.973.154-10.35-7.993-18.63-18.156-18.664m.01 40.996c-12.634 0-22.722-10.12-22.715-22.784C3.792 10.193 14.022-.022 26.46 0c12.582.023 22.595 10.244 22.587 23.058-.008 12.238-10.218 22.366-22.546 22.366" fill="#43bf49"/><g class="text" fill="#393a40"><path d="M95.066 39.455c0 1.266-.009 2.533.007 3.799.003.271-.132.594.317.741 2.038.669 3.971-.605 4.081-2.742.046-.88.034-1.764.033-2.647-.005-3.148-.556-3.664-3.68-3.594-.581.014-.797.137-.772.759.048 1.226.014 2.456.014 3.684m6.223 6.315c2.445 1.31 2.85 3.544 2.902 5.93.046 2.114.029 4.23.09 6.343.019.682.2 1.359.321 2.133-1.381 0-2.754-.009-4.128.003-.747.006-.702-.584-.77-1.04-.309-2.064-.173-4.145-.198-6.219-.006-.501.008-1.001-.002-1.501-.053-2.521-1.536-3.687-4.024-3.236-.665.121-.4.566-.402.873-.02 3.347-.041 6.695.008 10.043.012.842-.17 1.175-1.064 1.096-.951-.084-1.916-.052-2.872-.007-.608.029-.805-.183-.785-.784.037-1.115.011-2.232.011-3.348 0-8.042.016-16.084-.022-24.126-.004-.948.23-1.252 1.194-1.208 2.409.111 4.825-.088 7.234.122 3.202.28 5.133 2.208 5.286 5.428.092 1.916.215 3.847-.123 5.755-.282 1.594-1.096 2.851-2.656 3.743M210.611 39.529c0 1.038.108 2.091-.027 3.111-.171 1.283.409 1.436 1.464 1.37 2.18-.136 2.852-.707 3.055-2.887.074-.801.065-1.611.062-2.417-.013-3.223-.662-3.82-3.865-3.694-.548.021-.718.157-.701.711.039 1.268.012 2.537.012 3.806m6.298 6.244c2.198 1.169 2.775 3.12 2.879 5.278.072 1.497.028 3.001.025 4.502-.002 1.531-.074 3.067.499 4.623-1.447 0-2.786-.021-4.124.01-.551.014-.699-.245-.807-.73-.312-1.41-.159-2.835-.215-4.253-.064-1.649.186-3.312-.179-4.947-.357-1.595-2.673-2.73-4.141-2.046-.44.205-.222.608-.224.91-.017 3.349-.035 6.698.007 10.046.011.784-.157 1.099-.993 1.028a17.622 17.622 0 00-2.757-.002c-.722.053-.901-.187-.892-.895.039-2.963.017-5.928.017-8.891 0-6.198.016-12.395-.02-18.592-.005-.837.155-1.13 1.052-1.094 2.295.092 4.602-.032 6.893.118 3.755.245 5.412 1.842 5.787 5.545.17 1.677.161 3.38-.056 5.067-.233 1.811-.975 3.302-2.751 4.323M194.245 45.426c0 2.77-.043 5.542.014 8.312.041 1.997 1.506 2.991 3.264 2.308 1.056-.41 1.344-1.313 1.357-2.322.03-2.5.027-5.002.026-7.503-.002-3.04.029-6.08-.041-9.119-.043-1.866-1.252-2.746-2.985-2.331-1.056.252-1.612 1.024-1.628 2.458-.031 2.732-.009 5.464-.007 8.197m9.273.026c0 2.695.02 5.39-.006 8.085-.026 2.663-.818 5.026-3.398 6.18-2.732 1.221-5.548 1.196-8.081-.6-1.965-1.393-2.453-3.575-2.465-5.823-.028-5.503-.067-11.009.095-16.508.122-4.152 2.896-6.497 7.135-6.384 4.153.111 6.66 2.604 6.713 6.736.035 2.771.007 5.543.007 8.314M148.941 37.003l-.211-.05c-.665 4.433-1.324 8.866-2.005 13.296-.069.448.101.527.473.524 1.071-.008 2.143-.012 3.215.002.425.006.597-.067.517-.582-.683-4.394-1.331-8.792-1.989-13.19m.194-6.181c1.066 0 2.366-.375 3.131.107.746.47.491 1.906.655 2.921 1.361 8.412 2.702 16.828 4.07 25.239.13.801.057 1.224-.92 1.103-1.2-.149-2.78.503-3.522-.262-.674-.693-.476-2.249-.646-3.426-.237-1.641-.231-1.642-1.924-1.642h-1.954c-1.979 0-1.979 0-2.265 1.923-.011.076-.017.153-.026.229-.435 3.41-.666 3.563-4.169 3.178-.899-.098-.464-.67-.415-.999.532-3.533 1.105-7.059 1.668-10.587.891-5.577 1.811-11.149 2.645-16.734.142-.949.475-1.233 1.374-1.144.759.074 1.532.015 2.298.015v.079M80.248 37.093l-.234.006c-.135.921-.266 1.843-.405 2.763-.501 3.305-.986 6.613-1.518 9.913-.13.803.07 1.093.902 1.011a10.46 10.46 0 012.181.001c.947.107 1.151-.235 1-1.134-.42-2.501-.764-5.014-1.145-7.522-.255-1.68-.52-3.359-.781-5.038m5.789 23.083c-2.345 0-2.335-.001-2.659-2.287-.138-.983.083-2.279-.582-2.854-.666-.575-1.911-.157-2.901-.166-2.517-.022-2.519-.007-2.913 2.501-.141.902.063 2.077-.543 2.626-.618.56-1.759.152-2.67.172-1.44.031-1.461.005-1.235-1.421 1.433-9.03 2.885-18.057 4.293-27.091.113-.725.339-.952 1.059-.929 1.648.051 3.299.046 4.946.002.699-.019.957.162 1.075.916a5114.797 5114.797 0 004.436 27.793c.088.542.033.792-.581.747-.573-.042-1.15-.009-1.725-.009M158.574 45.406c0-3.039-.157-6.089.039-9.116.25-3.857 2.933-6 6.964-5.888 3.926.109 6.346 2.399 6.594 6.24.012.191.025.385.011.576-.077 1.135.504 2.733-.237 3.283-.776.576-2.277.144-3.458.202-.588.029-.707-.22-.689-.743.032-.923.037-1.849 0-2.771-.065-1.612-.866-2.477-2.258-2.503-1.482-.027-2.297.684-2.348 2.356a284.27 284.27 0 00-.002 16.85c.045 1.592.845 2.275 2.304 2.267 1.412-.008 2.22-.776 2.294-2.317.062-1.306.056-2.618.004-3.925-.027-.672.197-.848.834-.813 1.142.063 2.642-.382 3.334.188.722.596.173 2.16.217 3.299.038.96.014 1.916-.194 2.871-.617 2.838-2.453 4.601-5.334 4.935-1.253.146-2.526.129-3.765-.223-2.761-.783-4.357-3.179-4.394-6.684-.028-2.694-.006-5.389-.006-8.084h.09"/></g><path d="M26.408 60.576c-8.393 0-16.786-.017-25.179.024-.982.005-1.271-.284-1.175-1.224.093-.91-.278-2.123.183-2.675.545-.653 1.793-.213 2.732-.214 16.25-.016 32.499 0 48.749-.037 1.067-.003 1.326.29 1.3 1.328-.07 2.797-.022 2.798-2.811 2.798H26.408z" fill="#43bf49"/><path class="text" d="M229.221 43.56c1.003-3.816 2.055-7.62 2.977-11.455.267-1.115.727-1.533 1.83-1.372.965.141 2.295-.436 2.803.273.345.48-.388 1.751-.656 2.662-1.471 5.002-2.925 10.008-4.434 14.998-.372 1.231-.568 2.45-.544 3.735.043 2.308-.005 4.617.023 6.925.008.624-.136.904-.824.865a26.092 26.092 0 00-2.986 0c-.683.038-.85-.231-.828-.861.039-1.114-.056-2.236.023-3.346.263-3.695-.368-7.23-1.512-10.743-1.448-4.444-2.672-8.961-4.04-13.432-.263-.858-.182-1.198.785-1.078.529.066 1.072.012 1.608.012 2.223 0 2.215.002 2.785 2.204.912 3.522 1.835 7.041 2.753 10.561l.237.052M129.188 45.394c0-4.54.017-9.079-.016-13.618-.006-.769.146-1.065.989-1.053 3.448.048 6.896.039 10.343.004.691-.007.956.145.903.883-.081 1.108.336 2.54-.212 3.234-.425.537-2.003.168-3.068.181-1.188.013-2.376.034-3.562-.011-.573-.021-.704.178-.698.72.026 2.462.03 4.924-.002 7.386-.008.582.19.705.724.693 1.493-.032 2.988.01 4.481-.022.527-.011.755.106.722.687-.064 1.143.332 2.573-.215 3.346-.452.639-2 .167-3.062.176-2.637.022-2.637.007-2.637 2.607 0 2.847-.025 5.694.017 8.54.011.773-.146 1.133-.995 1.041-1.204-.131-2.824.514-3.511-.265-.598-.678-.194-2.265-.197-3.451-.011-3.692-.004-7.385-.004-11.078M115.24 47.622c0 3.847-.021 7.695.018 11.542.008.797-.192 1.096-1.014 1.029a15.632 15.632 0 00-2.641 0c-.851.075-.998-.275-.995-1.047.026-7.656-.005-15.313.042-22.969.006-.98-.248-1.257-1.193-1.169-.95.089-1.915-.007-2.872.03-.561.022-.846-.081-.807-.744.056-.958.032-1.923.007-2.884-.013-.494.159-.676.662-.674 4.329.013 8.659.014 12.988-.001.523-.002.685.22.638.693-.004.038 0 .076-.001.115-.022 1.111.366 2.544-.179 3.245-.577.74-2.07.193-3.161.228-1.491.047-1.492.012-1.492 1.525v11.081zM183.193 47.623c0 3.849-.023 7.697.019 11.545.008.805-.199 1.091-1.017 1.024a14.838 14.838 0 00-2.641.003c-.895.088-1.074-.251-1.07-1.092.034-6.618.019-13.237.019-19.856 0-1.155-.03-2.31.012-3.463.021-.597-.154-.799-.765-.77-1.071.05-2.146-.01-3.218.024-.55.017-.843-.064-.796-.732.08-1.144-.344-2.611.218-3.35.533-.703 2.075-.193 3.171-.203 3.295-.029 6.591.014 9.886-.028.77-.01 1.01.22.953.977-.081 1.067.326 2.476-.212 3.118-.56.669-2.01.176-3.069.199-1.489.033-1.49.009-1.49 1.522v11.082zM126.589 45.552c0 4.538-.02 9.076.018 13.614.007.8-.191 1.092-1.012 1.027a17.97 17.97 0 00-2.755 0c-.748.055-.876-.243-.875-.919.02-9.192.022-18.383-.002-27.574-.002-.74.163-1.031.943-.973a19.65 19.65 0 002.756.002c.771-.053.95.234.944.979-.034 4.614-.017 9.229-.017 13.844" fill="#393a40"/><path d="M119.754 12.739c.004-1.358-.54-2.008-1.66-1.983-1.055.024-1.594.683-1.594 1.95 0 1.318.578 2.001 1.68 1.984 1.059-.017 1.57-.65 1.574-1.951m-1.895 10.535c.97.022 1.921-.078 2.734-.662.728-.522.766-1.518.025-1.771-1.471-.503-2.998-.559-4.484.004-.498.188-.79.615-.766 1.173.021.518.368.802.806 1.022.542.271 1.115.222 1.685.234m-3.024-3.819c-1.285-1.439-1.232-1.955.333-3.513-.933-.691-1.576-1.559-1.659-2.767-.199-2.869 1.654-4.608 4.838-4.367 1.645.124 3.284.212 4.932.208.356 0 .855-.125.802.499-.04.47.315 1.145-.56 1.263-.792.106-1.049.357-.85 1.325.563 2.74-1.368 4.572-4.597 4.575-.594 0-1.531-.366-1.477.659.04.776.929.592 1.516.62 1.031.049 2.064-.059 3.096.13 1.166.213 2.182.656 2.527 1.873.37 1.305.298 2.596-.689 3.68-.53.582-1.189.958-1.92 1.221-1.743.627-3.548.62-5.339.393-1.803-.229-2.918-1.228-3.14-2.588-.22-1.342.347-2.193 2.187-3.211M108.481 14.696c-.013-.614-.043-1.218-.224-1.819-.328-1.09-1.096-1.54-2.153-1.523-1.038.017-1.723.581-1.994 1.587-.326 1.21-.323 2.432.054 3.633.297.944.958 1.461 1.956 1.476 1.02.015 1.764-.402 2.107-1.423.212-.63.251-1.276.254-1.931m3.224-.052c-.031 4.29-2.82 6.618-6.855 5.827-1.614-.316-2.818-1.217-3.499-2.711-.925-2.029-.919-4.12-.039-6.153.945-2.182 3.276-3.163 6.133-2.697 2.296.374 3.945 2.211 4.203 4.693.04.382.043.768.057 1.041M80.868 12.917c0-2.154.028-4.309-.016-6.463-.015-.742.18-1.005.955-.988 2.221.049 4.445.041 6.666.003.683-.011 1.009.162.919.894a4.858 4.858 0 00-.001 1.037c.054.593-.168.817-.779.799-1.263-.038-2.529.017-3.792-.023-.608-.02-.76.19-.779.786-.096 2.956-.115 2.956 2.853 2.956.306 0 .62.044.918-.008 1.094-.192 1.278.314 1.314 1.32.04 1.136-.386 1.338-1.373 1.289-1.177-.059-2.753-.418-3.439.181-.788.689-.223 2.309-.246 3.523-.042 2.252-.012 2.208-2.228 2.233-.861.01-1.002-.321-.987-1.075.042-2.154.015-4.309.015-6.464M74.027 13.082c0-2.229.022-4.458-.013-6.686-.011-.684.17-.925.895-.932 2.377-.023 2.397-.054 2.373 2.312-.045 4.225.188 8.456-.115 12.674-.234 3.259-2.688 4.933-5.89 4.221-.48-.107-.65-.295-.626-.757a7.624 7.624 0 00-.003-1.151c-.067-.686.064-.929.869-.777 1.664.315 2.447-.358 2.49-2.103.056-2.266.013-4.534.013-6.801h.007zM94.983 10.767c.903-1.304 2.058-2.007 3.606-1.99.633.007.919.253.776.904-.016.074-.044.151-.04.226.056 1.182-.049 1.962-1.678 1.944-1.676-.018-2.473 1.121-2.503 2.837-.028 1.652-.025 3.304.003 4.956.011.587-.169.782-.777.806-2.397.093-2.396.116-2.396-2.291 0-2.689-.007-5.378.008-8.068.003-.446-.22-1.152.609-1.057.719.082 1.778-.575 2.02.788.052.297.047.619.372.945" fill="#43bf49"/></svg> \ No newline at end of file diff --git a/ui/apps/platform/src/images/aws-security-hub.svg b/ui/apps/platform/src/images/aws-security-hub.svg index 162722ed5ee88..52f4fe8eb91be 100644 --- a/ui/apps/platform/src/images/aws-security-hub.svg +++ b/ui/apps/platform/src/images/aws-security-hub.svg @@ -1 +1 @@ -<svg viewBox="0 0 340 99" xmlns="http://www.w3.org/2000/svg" fill-rule="evenodd" clip-rule="evenodd" stroke-linejoin="round" stroke-miterlimit="2"><path d="M33.284 32.16a28.89 28.89 0 017.55-2.49c.66-1.95.23-3.95.31-5.9.08-1.95 0-3.78 0-5.55-6.31-3.28-8.29-6.65-7-11.72a8.81 8.81 0 018.35-6.5 8.553 8.553 0 018.31 6.49c1.16 5.32-.74 8.67-6.71 11.6v11.58c5.5.81 10.48 2.84 14 7.73l8-4.62c-.35-7.31 1.23-10.21 7.11-11.69 3.59-.9 7.57 1.26 9.2 4.63a9.088 9.088 0 01-1.92 10.2c-3.29 3-7.45 2.85-12.57-.52-3 1-4.63 2-7.78 5 3.16 5.77 3.49 11.87 1.1 18.3l6.48 4.57c7.43-3 10.76-2.8 13.61.81a9.57 9.57 0 01.19 11.19 8.687 8.687 0 01-9.61 3.07c-4.55-1.56-6-4.72-5.57-12.74l-6.42-4.13c-4.24 5.23-9.25 8.92-15.85 10.27v9c6.9 3.38 7.74 7 6.49 11.73-1 3.81-4.65 6-8.79 5.74a8.57 8.57 0 01-7.75-6.79c-.84-4.69 1.26-7.86 7-10.47v-9.54a14.63 14.63 0 01-7.69-2.75v-2.51c4.85 2.36 9.62 3.26 15 1.08 6.86-2.78 12.24-10 11.78-17.08-.57-8.72-6.48-15.74-14.22-17.43-4.25-.93-8 .51-12 1.42l-.6-1.98zm35.45 37.7a5.165 5.165 0 00-.003.176c0 3.247 2.673 5.92 5.92 5.92 3.248 0 5.92-2.673 5.92-5.92 0-.099-.002-.197-.007-.296.002-.059.003-.117.003-.176 0-3.247-2.673-5.92-5.92-5.92-3.248 0-5.92 2.673-5.92 5.92 0 .099.002.197.007.296zm-20.43-61c0-3.6-2.56-6.21-5.94-6.13-3.38.08-5.77 2.84-5.72 6.4a6.263 6.263 0 00-.007.274c0 3.078 2.533 5.61 5.61 5.61.073 0 .145-.001.217-.004 3.51.03 5.87-2.45 5.84-6.12v-.03zm0 80.8c.028-3.222-2.598-5.897-5.82-5.93a6.566 6.566 0 00-.243-.005c-3.242 0-5.91 2.668-5.91 5.91s2.668 5.91 5.91 5.91c.081 0 .162-.002.243-.005l.112.001c3.132 0 5.71-2.577 5.71-5.71 0-.047 0-.094-.002-.141v-.03zm32.26-60.3c-.176-3.117-2.789-5.586-5.91-5.586-3.217 0-5.875 2.62-5.92 5.836v.084c0 3.247 2.672 5.92 5.92 5.92 3.247 0 5.92-2.673 5.92-5.92 0-.112-.004-.223-.01-.334z" fill="#f69339" fill-rule="nonzero"/><path d="M33.284 32.16c.22.66.44 1.32.67 2-.167.242-.366.46-.59.65-10.32 6.09-12.15 23.47 0 31.36v2.51c-3.9-1.66-6.45-4.74-8.67-8.57l-7.46 4.81c.61 7.91-1.83 11-6.88 12.27a8.285 8.285 0 01-9.42-4.69 9.242 9.242 0 012.14-10.93c3.48-2.94 7.22-2.71 12.51.93l7.82-4.47c-1.54-5.76-1.6-11.43 1-16.94-2.64-1.55-4.35-4-7.19-5-6.35 3.15-10.31 3-13.32-.58a8.612 8.612 0 01-2.048-5.574c0-4.724 3.886-8.61 8.61-8.61 1.066 0 2.124.198 3.118.584 4.25 1.64 5.92 5.18 5.2 11.14a7.056 7.056 0 003.38 2.69 33.933 33.933 0 013.8 2.4 20.053 20.053 0 017.33-5.98zM8.674 62.27c-3.228-.001-5.909 2.603-6 5.83-.1 3.73 2.4 6.53 5.85 6.54 3.45.01 5.84-2.52 6-6.11.047-3.299-2.555-6.084-5.85-6.26zm1.91-26.46h.04c3.22 0 5.87-2.65 5.87-5.87v-.02c-.148-3.221-2.778-5.819-6-5.93-3-.07-6 3-5.92 6 .065 3.236 2.773 5.85 6.01 5.8v.02z" fill="#f37c42" fill-rule="nonzero"/><path d="M30.944 40.72a50.503 50.503 0 0111.46-5.59 43.55 43.55 0 0111.56 5.45c0 4.8.43 9.81-.11 14.7-.73 6.64-5.3 10.36-11.49 10.25-6.38-.11-10.75-4.19-11.31-11.17-.41-4.54-.11-9.09-.11-13.64zm2.46 1.69c.23 4.38-.41 8.73.41 13.07.86 4.56 3.67 7.15 8 7.33 4.9.21 7.78-1.73 9-6.47 1.22-4.74.34-9.45.48-14.14l-9.19-4.17c-2.31 2.1-5.61 2.49-8.7 4.38z" fill="#f69339" fill-rule="nonzero"/><path d="M34.574 43.91c5.2-3.89 10.22-4.1 15.54-.14 0 3.35.33 7-.08 10.64-.296 4.026-3.692 7.181-7.729 7.181a7.59 7.59 0 01-.69-.031c-3.62-.33-7-4.49-7-8.7-.06-3.07-.04-6.13-.04-8.95zm9.38.19v14.72c5.34-3.88 3.3-8.94 3.66-13.29a5.998 5.998 0 00-3.66-1.43zm-2.95 14.62V43.94c-1.47.38-2.69.64-3.72 1.78.35 4.38-1.38 9.31 3.72 13z" fill="#f69339" fill-rule="nonzero"/><path d="M116.264 60.84l-1.5-4.51h-7.46l-1.41 4.51h-5.06l8.08-22.95h4.49l8 22.95h-5.14zm-5.17-16.83l-2.45 7.88h4.84l-2.39-7.88zM143.134 60.84h-4.6l-3.81-15.57h-.09l-3.81 15.53h-4.62l-5.48-22.95h5l3 15.27h.08l3.43-15.27h4.85l3.46 15.27h.08l3.1-15.27h4.85l-5.44 22.99zM160.794 43.85a4.478 4.478 0 00-1.56-1.44 3.85 3.85 0 00-1.83-.54 5.12 5.12 0 00-.94.1 2.281 2.281 0 00-1.49 1.09c-.19.342-.28.73-.26 1.12-.014.345.054.688.2 1a2 2 0 00.6.68c.294.209.61.387.94.53.36.17.77.33 1.23.51.65.26 1.33.54 2 .86a7.39 7.39 0 011.93 1.24 6.005 6.005 0 012 4.8 8.68 8.68 0 01-.61 3.42 6.774 6.774 0 01-1.6 2.35 6.609 6.609 0 01-2.37 1.4 8.572 8.572 0 01-2.75.45 9.596 9.596 0 01-4-.86 8.59 8.59 0 01-3.22-2.44l3.05-3.7a5.87 5.87 0 001.87 1.73 4.391 4.391 0 002.3.7 3.71 3.71 0 001-.13c.314-.076.607-.219.86-.42.258-.207.461-.475.59-.78.153-.371.228-.769.22-1.17a2.141 2.141 0 00-.28-1.1 3.008 3.008 0 00-.77-.82 5.7 5.7 0 00-1.26-.68c-.49-.21-1.06-.43-1.7-.67a16.457 16.457 0 01-1.84-.81 6.29 6.29 0 01-1.58-1.25 5.847 5.847 0 01-1.12-1.88 7.324 7.324 0 01-.42-2.64 7.423 7.423 0 01.65-3.27 6.482 6.482 0 011.77-2.24 6.821 6.821 0 012.39-1.28 9.259 9.259 0 012.7-.41 8.851 8.851 0 016.31 2.82l-3.01 3.73zM183.694 43.85a4.444 4.444 0 00-1.57-1.44 3.794 3.794 0 00-1.86-.54 5.12 5.12 0 00-.94.1 2.163 2.163 0 00-.86.38c-.26.189-.479.431-.64.71-.185.343-.275.73-.26 1.12-.018.346.055.69.21 1 .14.271.342.504.59.68.295.207.61.384.94.53.37.17.78.33 1.23.51.65.26 1.33.54 2 .86a7.39 7.39 0 011.93 1.24 6.005 6.005 0 012 4.8 8.682 8.682 0 01-.62 3.42 6.525 6.525 0 01-1.64 2.38 6.609 6.609 0 01-2.37 1.4 8.572 8.572 0 01-2.75.45 9.631 9.631 0 01-4-.86 8.467 8.467 0 01-3.21-2.44l3.05-3.7a5.848 5.848 0 001.86 1.73 4.391 4.391 0 002.3.7c.338.001.674-.043 1-.13a2.37 2.37 0 00.86-.42c.255-.208.454-.476.58-.78.158-.369.233-.769.22-1.17a2.147 2.147 0 00-.27-1.1 2.862 2.862 0 00-.78-.82 5.609 5.609 0 00-1.25-.68c-.5-.21-1.07-.43-1.7-.67a15.56 15.56 0 01-1.74-.84 6.151 6.151 0 01-1.6-1.28 5.851 5.851 0 01-1.12-1.85 7.324 7.324 0 01-.42-2.64 7.57 7.57 0 01.65-3.27 6.484 6.484 0 011.72-2.24 6.921 6.921 0 012.39-1.28 9.259 9.259 0 012.7-.41 8.474 8.474 0 013.33.72 8.369 8.369 0 013 2.1l-2.96 3.73zM202.804 52.96v.65c.01.207.01.413 0 .62h-9.83c.032.428.148.846.34 1.23.184.376.434.715.74 1 .296.267.634.483 1 .64.37.147.763.222 1.16.22a3.223 3.223 0 001.8-.47 3.861 3.861 0 001.2-1.21l3.1 2.33a6.851 6.851 0 01-2.52 2.55 7.223 7.223 0 01-3.63.89 7.422 7.422 0 01-2.89-.57 6.891 6.891 0 01-2.38-1.65 7.855 7.855 0 01-1.61-2.68 10.472 10.472 0 01-.58-3.63 10.63 10.63 0 01.57-3.58 8.28 8.28 0 011.55-2.72 6.775 6.775 0 015.2-2.35c.95-.01 1.89.195 2.75.6.84.404 1.576.996 2.15 1.73a8.335 8.335 0 011.4 2.76 12.27 12.27 0 01.48 3.64zm-4.11-2a3.594 3.594 0 00-.67-2.17 2.322 2.322 0 00-2-.91 2.915 2.915 0 00-1.2.24c-.357.159-.68.387-.95.67a3.383 3.383 0 00-.93 2.18l5.75-.01zM214.944 49.91a2.868 2.868 0 00-1-.94 2.814 2.814 0 00-1.33-.35 2.43 2.43 0 00-1.28.34 3.144 3.144 0 00-1 .91c-.286.397-.502.84-.64 1.31a5.129 5.129 0 00-.29 1.59 5.736 5.736 0 00.21 1.58c.136.474.352.92.64 1.32a3.29 3.29 0 001 .89c.404.22.86.331 1.32.32a3.277 3.277 0 001.35-.3 2.782 2.782 0 001.08-.9l2.47 3.6a5.719 5.719 0 01-2.18 1.53 7.482 7.482 0 01-2.83.55 7.59 7.59 0 01-3-.59 6.73 6.73 0 01-2.42-1.7 8.003 8.003 0 01-1.62-2.71 11.165 11.165 0 010-7.16 8.003 8.003 0 011.62-2.71 7.006 7.006 0 012.42-1.71 7.365 7.365 0 013-.6c.488-.002.974.052 1.45.16.476.104.941.251 1.39.44a5.88 5.88 0 011.23.68c.371.252.707.551 1 .89l-2.59 3.56zM228.194 60.84V58.6c-.17.359-.385.695-.64 1a4.397 4.397 0 01-.93.84c-.362.245-.756.44-1.17.58a3.735 3.735 0 01-1.34.23 4.318 4.318 0 01-2.31-.58 4.775 4.775 0 01-1.52-1.51 6.392 6.392 0 01-.84-2.11 10.674 10.674 0 01-.26-2.41v-10h4.49v8.75c.001.431.027.862.08 1.29.051.383.155.756.31 1.11.14.301.353.562.62.76.297.192.647.287 1 .27a2.003 2.003 0 001.79-1c.414-.742.624-1.58.61-2.43V44.7h4.46v16.14h-4.35zM244.774 49.07a3.2 3.2 0 00-.58-.13h-.56a2.729 2.729 0 00-1.51.39 3.22 3.22 0 00-1 .93 3.579 3.579 0 00-.53 1.2c-.102.368-.16.748-.17 1.13v8.28h-4.46V44.71h4.3v2.34h.05a5.276 5.276 0 011.47-2 3.392 3.392 0 012.21-.78c.177-.01.353-.01.53 0 .143.022.283.055.42.1l-.17 4.7zM251.604 39.54c.002.392-.066.782-.2 1.15a3.07 3.07 0 01-.55.93 2.474 2.474 0 01-.81.61 2.336 2.336 0 01-2.82-.63 3.06 3.06 0 01-.74-2.06c.001-.382.068-.761.2-1.12.114-.341.298-.654.54-.92.235-.256.512-.469.82-.63a2.01 2.01 0 011-.25c.346.001.688.08 1 .23.312.145.588.357.81.62.237.271.423.583.55.92.133.369.201.758.2 1.15zm-4.79 21.3V44.7h4.47v16.14h-4.47zM259.664 48.65v6.18a3.151 3.151 0 00.37 1.71c.306.411.81.629 1.32.57.231-.001.462-.021.69-.06a2.09 2.09 0 00.61-.2l.06 3.89c-.379.149-.77.262-1.17.34-.467.099-.943.15-1.42.15a5.668 5.668 0 01-2.28-.41 3.547 3.547 0 01-1.44-1.17 4.875 4.875 0 01-.8-1.82 10.556 10.556 0 01-.25-2.35v-6.83h-2.17v-4h2.15v-4.2h4.38v4.25h3.19v4l-3.24-.05zM272.594 63.27c-.246.772-.55 1.524-.91 2.25a6.921 6.921 0 01-1.2 1.69 4.659 4.659 0 01-1.63 1 6.214 6.214 0 01-2.22.36 8.197 8.197 0 01-1.29-.1 6.317 6.317 0 01-1.16-.26l.49-4.47c.236.085.476.155.72.21.237.049.478.076.72.08a1.832 1.832 0 001.5-.57c.36-.48.628-1.022.79-1.6l.43-1.33-5.66-15.88h5l3 10.37h.08l2.69-10.37h4.74l-6.09 18.62zM299.594 60.84v-9.57h-7.51v9.6h-4.68V37.89h4.65v8.69h7.51v-8.69h4.66v22.95h-4.63zM316.914 60.84V58.6h-.06c-.17.359-.385.695-.64 1a4.346 4.346 0 01-.92.84 5.338 5.338 0 01-1.17.58c-.433.157-.89.235-1.35.23a4.246 4.246 0 01-2.3-.58 4.687 4.687 0 01-1.53-1.51 6.392 6.392 0 01-.84-2.11c-.173-.792-.26-1.6-.26-2.41v-10h4.49v8.75c.001.431.027.862.08 1.29.05.384.157.759.32 1.11.135.301.345.563.61.76a1.7 1.7 0 001 .27 2.003 2.003 0 001.78-1c.418-.74.63-1.58.61-2.43V44.7h4.47v16.14h-4.29zM339.804 52.7a11.909 11.909 0 01-.44 3.24 9.003 9.003 0 01-1.26 2.74 6.664 6.664 0 01-2 1.9 5.475 5.475 0 01-5.3 0 4.596 4.596 0 01-1.86-1.9h-.05v2.11h-4.12V36.33h4.47v10.08h.05a6 6 0 011.61-1.49 4.524 4.524 0 012.5-.65 5.291 5.291 0 012.66.68 6.442 6.442 0 012 1.85 9.069 9.069 0 011.34 2.68c.286 1.049.421 2.133.4 3.22zm-4.3 0c0-.514-.07-1.025-.21-1.52a3.857 3.857 0 00-.61-1.31 3.314 3.314 0 00-1-.93 2.637 2.637 0 00-1.39-.36 2.61 2.61 0 00-1.36.36 3.397 3.397 0 00-1 .94 4.457 4.457 0 00-.65 1.33 5.179 5.179 0 000 3c.141.477.361.926.65 1.33.266.378.606.698 1 .94.413.239.883.36 1.36.35.487.014.968-.107 1.39-.35a3.23 3.23 0 001-.94c.282-.41.49-.867.61-1.35a5.77 5.77 0 00.21-1.49z" fill="#201c1d" fill-rule="nonzero"/></svg> \ No newline at end of file +<svg viewBox="0 0 340 99" xmlns="http://www.w3.org/2000/svg" fill-rule="evenodd" clip-rule="evenodd" stroke-linejoin="round" stroke-miterlimit="2"><path d="M33.284 32.16a28.89 28.89 0 017.55-2.49c.66-1.95.23-3.95.31-5.9.08-1.95 0-3.78 0-5.55-6.31-3.28-8.29-6.65-7-11.72a8.81 8.81 0 018.35-6.5 8.553 8.553 0 018.31 6.49c1.16 5.32-.74 8.67-6.71 11.6v11.58c5.5.81 10.48 2.84 14 7.73l8-4.62c-.35-7.31 1.23-10.21 7.11-11.69 3.59-.9 7.57 1.26 9.2 4.63a9.088 9.088 0 01-1.92 10.2c-3.29 3-7.45 2.85-12.57-.52-3 1-4.63 2-7.78 5 3.16 5.77 3.49 11.87 1.1 18.3l6.48 4.57c7.43-3 10.76-2.8 13.61.81a9.57 9.57 0 01.19 11.19 8.687 8.687 0 01-9.61 3.07c-4.55-1.56-6-4.72-5.57-12.74l-6.42-4.13c-4.24 5.23-9.25 8.92-15.85 10.27v9c6.9 3.38 7.74 7 6.49 11.73-1 3.81-4.65 6-8.79 5.74a8.57 8.57 0 01-7.75-6.79c-.84-4.69 1.26-7.86 7-10.47v-9.54a14.63 14.63 0 01-7.69-2.75v-2.51c4.85 2.36 9.62 3.26 15 1.08 6.86-2.78 12.24-10 11.78-17.08-.57-8.72-6.48-15.74-14.22-17.43-4.25-.93-8 .51-12 1.42l-.6-1.98zm35.45 37.7a5.165 5.165 0 00-.003.176c0 3.247 2.673 5.92 5.92 5.92 3.248 0 5.92-2.673 5.92-5.92 0-.099-.002-.197-.007-.296.002-.059.003-.117.003-.176 0-3.247-2.673-5.92-5.92-5.92-3.248 0-5.92 2.673-5.92 5.92 0 .099.002.197.007.296zm-20.43-61c0-3.6-2.56-6.21-5.94-6.13-3.38.08-5.77 2.84-5.72 6.4a6.263 6.263 0 00-.007.274c0 3.078 2.533 5.61 5.61 5.61.073 0 .145-.001.217-.004 3.51.03 5.87-2.45 5.84-6.12v-.03zm0 80.8c.028-3.222-2.598-5.897-5.82-5.93a6.566 6.566 0 00-.243-.005c-3.242 0-5.91 2.668-5.91 5.91s2.668 5.91 5.91 5.91c.081 0 .162-.002.243-.005l.112.001c3.132 0 5.71-2.577 5.71-5.71 0-.047 0-.094-.002-.141v-.03zm32.26-60.3c-.176-3.117-2.789-5.586-5.91-5.586-3.217 0-5.875 2.62-5.92 5.836v.084c0 3.247 2.672 5.92 5.92 5.92 3.247 0 5.92-2.673 5.92-5.92 0-.112-.004-.223-.01-.334z" fill="#f69339" fill-rule="nonzero"/><path d="M33.284 32.16c.22.66.44 1.32.67 2-.167.242-.366.46-.59.65-10.32 6.09-12.15 23.47 0 31.36v2.51c-3.9-1.66-6.45-4.74-8.67-8.57l-7.46 4.81c.61 7.91-1.83 11-6.88 12.27a8.285 8.285 0 01-9.42-4.69 9.242 9.242 0 012.14-10.93c3.48-2.94 7.22-2.71 12.51.93l7.82-4.47c-1.54-5.76-1.6-11.43 1-16.94-2.64-1.55-4.35-4-7.19-5-6.35 3.15-10.31 3-13.32-.58a8.612 8.612 0 01-2.048-5.574c0-4.724 3.886-8.61 8.61-8.61 1.066 0 2.124.198 3.118.584 4.25 1.64 5.92 5.18 5.2 11.14a7.056 7.056 0 003.38 2.69 33.933 33.933 0 013.8 2.4 20.053 20.053 0 017.33-5.98zM8.674 62.27c-3.228-.001-5.909 2.603-6 5.83-.1 3.73 2.4 6.53 5.85 6.54 3.45.01 5.84-2.52 6-6.11.047-3.299-2.555-6.084-5.85-6.26zm1.91-26.46h.04c3.22 0 5.87-2.65 5.87-5.87v-.02c-.148-3.221-2.778-5.819-6-5.93-3-.07-6 3-5.92 6 .065 3.236 2.773 5.85 6.01 5.8v.02z" fill="#f37c42" fill-rule="nonzero"/><path d="M30.944 40.72a50.503 50.503 0 0111.46-5.59 43.55 43.55 0 0111.56 5.45c0 4.8.43 9.81-.11 14.7-.73 6.64-5.3 10.36-11.49 10.25-6.38-.11-10.75-4.19-11.31-11.17-.41-4.54-.11-9.09-.11-13.64zm2.46 1.69c.23 4.38-.41 8.73.41 13.07.86 4.56 3.67 7.15 8 7.33 4.9.21 7.78-1.73 9-6.47 1.22-4.74.34-9.45.48-14.14l-9.19-4.17c-2.31 2.1-5.61 2.49-8.7 4.38z" fill="#f69339" fill-rule="nonzero"/><path d="M34.574 43.91c5.2-3.89 10.22-4.1 15.54-.14 0 3.35.33 7-.08 10.64-.296 4.026-3.692 7.181-7.729 7.181a7.59 7.59 0 01-.69-.031c-3.62-.33-7-4.49-7-8.7-.06-3.07-.04-6.13-.04-8.95zm9.38.19v14.72c5.34-3.88 3.3-8.94 3.66-13.29a5.998 5.998 0 00-3.66-1.43zm-2.95 14.62V43.94c-1.47.38-2.69.64-3.72 1.78.35 4.38-1.38 9.31 3.72 13z" fill="#f69339" fill-rule="nonzero"/><path class="text" d="M116.264 60.84l-1.5-4.51h-7.46l-1.41 4.51h-5.06l8.08-22.95h4.49l8 22.95h-5.14zm-5.17-16.83l-2.45 7.88h4.84l-2.39-7.88zM143.134 60.84h-4.6l-3.81-15.57h-.09l-3.81 15.53h-4.62l-5.48-22.95h5l3 15.27h.08l3.43-15.27h4.85l3.46 15.27h.08l3.1-15.27h4.85l-5.44 22.99zM160.794 43.85a4.478 4.478 0 00-1.56-1.44 3.85 3.85 0 00-1.83-.54 5.12 5.12 0 00-.94.1 2.281 2.281 0 00-1.49 1.09c-.19.342-.28.73-.26 1.12-.014.345.054.688.2 1a2 2 0 00.6.68c.294.209.61.387.94.53.36.17.77.33 1.23.51.65.26 1.33.54 2 .86a7.39 7.39 0 011.93 1.24 6.005 6.005 0 012 4.8 8.68 8.68 0 01-.61 3.42 6.774 6.774 0 01-1.6 2.35 6.609 6.609 0 01-2.37 1.4 8.572 8.572 0 01-2.75.45 9.596 9.596 0 01-4-.86 8.59 8.59 0 01-3.22-2.44l3.05-3.7a5.87 5.87 0 001.87 1.73 4.391 4.391 0 002.3.7 3.71 3.71 0 001-.13c.314-.076.607-.219.86-.42.258-.207.461-.475.59-.78.153-.371.228-.769.22-1.17a2.141 2.141 0 00-.28-1.1 3.008 3.008 0 00-.77-.82 5.7 5.7 0 00-1.26-.68c-.49-.21-1.06-.43-1.7-.67a16.457 16.457 0 01-1.84-.81 6.29 6.29 0 01-1.58-1.25 5.847 5.847 0 01-1.12-1.88 7.324 7.324 0 01-.42-2.64 7.423 7.423 0 01.65-3.27 6.482 6.482 0 011.77-2.24 6.821 6.821 0 012.39-1.28 9.259 9.259 0 012.7-.41 8.851 8.851 0 016.31 2.82l-3.01 3.73zM183.694 43.85a4.444 4.444 0 00-1.57-1.44 3.794 3.794 0 00-1.86-.54 5.12 5.12 0 00-.94.1 2.163 2.163 0 00-.86.38c-.26.189-.479.431-.64.71-.185.343-.275.73-.26 1.12-.018.346.055.69.21 1 .14.271.342.504.59.68.295.207.61.384.94.53.37.17.78.33 1.23.51.65.26 1.33.54 2 .86a7.39 7.39 0 011.93 1.24 6.005 6.005 0 012 4.8 8.682 8.682 0 01-.62 3.42 6.525 6.525 0 01-1.64 2.38 6.609 6.609 0 01-2.37 1.4 8.572 8.572 0 01-2.75.45 9.631 9.631 0 01-4-.86 8.467 8.467 0 01-3.21-2.44l3.05-3.7a5.848 5.848 0 001.86 1.73 4.391 4.391 0 002.3.7c.338.001.674-.043 1-.13a2.37 2.37 0 00.86-.42c.255-.208.454-.476.58-.78.158-.369.233-.769.22-1.17a2.147 2.147 0 00-.27-1.1 2.862 2.862 0 00-.78-.82 5.609 5.609 0 00-1.25-.68c-.5-.21-1.07-.43-1.7-.67a15.56 15.56 0 01-1.74-.84 6.151 6.151 0 01-1.6-1.28 5.851 5.851 0 01-1.12-1.85 7.324 7.324 0 01-.42-2.64 7.57 7.57 0 01.65-3.27 6.484 6.484 0 011.72-2.24 6.921 6.921 0 012.39-1.28 9.259 9.259 0 012.7-.41 8.474 8.474 0 013.33.72 8.369 8.369 0 013 2.1l-2.96 3.73zM202.804 52.96v.65c.01.207.01.413 0 .62h-9.83c.032.428.148.846.34 1.23.184.376.434.715.74 1 .296.267.634.483 1 .64.37.147.763.222 1.16.22a3.223 3.223 0 001.8-.47 3.861 3.861 0 001.2-1.21l3.1 2.33a6.851 6.851 0 01-2.52 2.55 7.223 7.223 0 01-3.63.89 7.422 7.422 0 01-2.89-.57 6.891 6.891 0 01-2.38-1.65 7.855 7.855 0 01-1.61-2.68 10.472 10.472 0 01-.58-3.63 10.63 10.63 0 01.57-3.58 8.28 8.28 0 011.55-2.72 6.775 6.775 0 015.2-2.35c.95-.01 1.89.195 2.75.6.84.404 1.576.996 2.15 1.73a8.335 8.335 0 011.4 2.76 12.27 12.27 0 01.48 3.64zm-4.11-2a3.594 3.594 0 00-.67-2.17 2.322 2.322 0 00-2-.91 2.915 2.915 0 00-1.2.24c-.357.159-.68.387-.95.67a3.383 3.383 0 00-.93 2.18l5.75-.01zM214.944 49.91a2.868 2.868 0 00-1-.94 2.814 2.814 0 00-1.33-.35 2.43 2.43 0 00-1.28.34 3.144 3.144 0 00-1 .91c-.286.397-.502.84-.64 1.31a5.129 5.129 0 00-.29 1.59 5.736 5.736 0 00.21 1.58c.136.474.352.92.64 1.32a3.29 3.29 0 001 .89c.404.22.86.331 1.32.32a3.277 3.277 0 001.35-.3 2.782 2.782 0 001.08-.9l2.47 3.6a5.719 5.719 0 01-2.18 1.53 7.482 7.482 0 01-2.83.55 7.59 7.59 0 01-3-.59 6.73 6.73 0 01-2.42-1.7 8.003 8.003 0 01-1.62-2.71 11.165 11.165 0 010-7.16 8.003 8.003 0 011.62-2.71 7.006 7.006 0 012.42-1.71 7.365 7.365 0 013-.6c.488-.002.974.052 1.45.16.476.104.941.251 1.39.44a5.88 5.88 0 011.23.68c.371.252.707.551 1 .89l-2.59 3.56zM228.194 60.84V58.6c-.17.359-.385.695-.64 1a4.397 4.397 0 01-.93.84c-.362.245-.756.44-1.17.58a3.735 3.735 0 01-1.34.23 4.318 4.318 0 01-2.31-.58 4.775 4.775 0 01-1.52-1.51 6.392 6.392 0 01-.84-2.11 10.674 10.674 0 01-.26-2.41v-10h4.49v8.75c.001.431.027.862.08 1.29.051.383.155.756.31 1.11.14.301.353.562.62.76.297.192.647.287 1 .27a2.003 2.003 0 001.79-1c.414-.742.624-1.58.61-2.43V44.7h4.46v16.14h-4.35zM244.774 49.07a3.2 3.2 0 00-.58-.13h-.56a2.729 2.729 0 00-1.51.39 3.22 3.22 0 00-1 .93 3.579 3.579 0 00-.53 1.2c-.102.368-.16.748-.17 1.13v8.28h-4.46V44.71h4.3v2.34h.05a5.276 5.276 0 011.47-2 3.392 3.392 0 012.21-.78c.177-.01.353-.01.53 0 .143.022.283.055.42.1l-.17 4.7zM251.604 39.54c.002.392-.066.782-.2 1.15a3.07 3.07 0 01-.55.93 2.474 2.474 0 01-.81.61 2.336 2.336 0 01-2.82-.63 3.06 3.06 0 01-.74-2.06c.001-.382.068-.761.2-1.12.114-.341.298-.654.54-.92.235-.256.512-.469.82-.63a2.01 2.01 0 011-.25c.346.001.688.08 1 .23.312.145.588.357.81.62.237.271.423.583.55.92.133.369.201.758.2 1.15zm-4.79 21.3V44.7h4.47v16.14h-4.47zM259.664 48.65v6.18a3.151 3.151 0 00.37 1.71c.306.411.81.629 1.32.57.231-.001.462-.021.69-.06a2.09 2.09 0 00.61-.2l.06 3.89c-.379.149-.77.262-1.17.34-.467.099-.943.15-1.42.15a5.668 5.668 0 01-2.28-.41 3.547 3.547 0 01-1.44-1.17 4.875 4.875 0 01-.8-1.82 10.556 10.556 0 01-.25-2.35v-6.83h-2.17v-4h2.15v-4.2h4.38v4.25h3.19v4l-3.24-.05zM272.594 63.27c-.246.772-.55 1.524-.91 2.25a6.921 6.921 0 01-1.2 1.69 4.659 4.659 0 01-1.63 1 6.214 6.214 0 01-2.22.36 8.197 8.197 0 01-1.29-.1 6.317 6.317 0 01-1.16-.26l.49-4.47c.236.085.476.155.72.21.237.049.478.076.72.08a1.832 1.832 0 001.5-.57c.36-.48.628-1.022.79-1.6l.43-1.33-5.66-15.88h5l3 10.37h.08l2.69-10.37h4.74l-6.09 18.62zM299.594 60.84v-9.57h-7.51v9.6h-4.68V37.89h4.65v8.69h7.51v-8.69h4.66v22.95h-4.63zM316.914 60.84V58.6h-.06c-.17.359-.385.695-.64 1a4.346 4.346 0 01-.92.84 5.338 5.338 0 01-1.17.58c-.433.157-.89.235-1.35.23a4.246 4.246 0 01-2.3-.58 4.687 4.687 0 01-1.53-1.51 6.392 6.392 0 01-.84-2.11c-.173-.792-.26-1.6-.26-2.41v-10h4.49v8.75c.001.431.027.862.08 1.29.05.384.157.759.32 1.11.135.301.345.563.61.76a1.7 1.7 0 001 .27 2.003 2.003 0 001.78-1c.418-.74.63-1.58.61-2.43V44.7h4.47v16.14h-4.29zM339.804 52.7a11.909 11.909 0 01-.44 3.24 9.003 9.003 0 01-1.26 2.74 6.664 6.664 0 01-2 1.9 5.475 5.475 0 01-5.3 0 4.596 4.596 0 01-1.86-1.9h-.05v2.11h-4.12V36.33h4.47v10.08h.05a6 6 0 011.61-1.49 4.524 4.524 0 012.5-.65 5.291 5.291 0 012.66.68 6.442 6.442 0 012 1.85 9.069 9.069 0 011.34 2.68c.286 1.049.421 2.133.4 3.22zm-4.3 0c0-.514-.07-1.025-.21-1.52a3.857 3.857 0 00-.61-1.31 3.314 3.314 0 00-1-.93 2.637 2.637 0 00-1.39-.36 2.61 2.61 0 00-1.36.36 3.397 3.397 0 00-1 .94 4.457 4.457 0 00-.65 1.33 5.179 5.179 0 000 3c.141.477.361.926.65 1.33.266.378.606.698 1 .94.413.239.883.36 1.36.35.487.014.968-.107 1.39-.35a3.23 3.23 0 001-.94c.282-.41.49-.867.61-1.35a5.77 5.77 0 00.21-1.49z" fill="#201c1d" fill-rule="nonzero"/></svg> \ No newline at end of file diff --git a/ui/apps/platform/src/images/aws.svg b/ui/apps/platform/src/images/aws.svg index 01fed46ea2d9b..e1455ac9ce1df 100644 --- a/ui/apps/platform/src/images/aws.svg +++ b/ui/apps/platform/src/images/aws.svg @@ -1 +1 @@ -<svg viewBox="0 0 108 65" xmlns="http://www.w3.org/2000/svg" fill-rule="evenodd" clip-rule="evenodd" stroke-linejoin="round" stroke-miterlimit="2"><path d="M30.301 23.539c0 1.334.143 2.415.394 3.208.286.793.643 1.659 1.144 2.596.18.288.25.577.25.829 0 .36-.214.721-.679 1.081l-2.253 1.514c-.322.217-.644.325-.93.325-.357 0-.715-.18-1.073-.505-.5-.541-.929-1.117-1.287-1.694a28.124 28.124 0 01-1.109-2.127c-2.789 3.316-6.294 4.975-10.514 4.975-3.004 0-5.4-.865-7.152-2.596-1.752-1.73-2.646-4.037-2.646-6.921 0-3.064 1.073-5.551 3.254-7.426 2.182-1.874 5.078-2.811 8.762-2.811 1.216 0 2.467.108 3.79.288 1.324.18 2.683.469 4.113.793v-2.632c0-2.739-.572-4.65-1.68-5.767-1.145-1.118-3.076-1.658-5.83-1.658-1.252 0-2.539.144-3.862.468a28.341 28.341 0 00-3.862 1.226 10.52 10.52 0 01-1.252.469c-.25.072-.429.108-.572.108-.5 0-.75-.361-.75-1.118V4.398c0-.577.07-1.009.25-1.262.178-.252.5-.504 1-.757C9.06 1.73 10.561 1.19 12.313.757c1.753-.469 3.612-.685 5.58-.685 4.255 0 7.366.973 9.37 2.92 1.966 1.947 2.967 4.902 2.967 8.868v11.679h.071zm-14.519 5.479c1.18 0 2.396-.216 3.684-.648 1.287-.433 2.431-1.226 3.397-2.307.572-.685 1.001-1.442 1.216-2.308.214-.865.357-1.91.357-3.136v-1.514a29.655 29.655 0 00-3.29-.612 26.58 26.58 0 00-3.36-.217c-2.397 0-4.15.469-5.33 1.442-1.18.973-1.752 2.343-1.752 4.146 0 1.694.43 2.956 1.323 3.821.86.901 2.11 1.333 3.755 1.333zM44.5 32.912c-.644 0-1.073-.109-1.359-.361-.286-.216-.537-.721-.75-1.406L33.984 3.28c-.215-.721-.322-1.189-.322-1.442 0-.576.286-.901.858-.901h3.505c.68 0 1.144.108 1.395.361.286.216.5.721.715 1.406l6.008 23.863 5.58-23.863c.177-.721.392-1.19.678-1.406.286-.217.787-.361 1.431-.361h2.86c.68 0 1.145.108 1.431.361.286.216.536.721.68 1.406l5.65 24.152L70.64 2.704c.215-.721.465-1.19.716-1.406.286-.217.751-.361 1.394-.361h3.326c.572 0 .894.289.894.901 0 .181-.035.361-.07.577a5.171 5.171 0 01-.252.901L68.03 31.181c-.215.721-.465 1.19-.75 1.406-.287.216-.752.361-1.36.361h-3.076c-.679 0-1.144-.109-1.43-.361-.286-.252-.536-.721-.679-1.442L55.191 7.894l-5.507 23.215c-.179.721-.393 1.19-.679 1.442-.286.252-.787.361-1.43.361h-3.076zm45.953.973c-1.859 0-3.719-.216-5.507-.649-1.788-.433-3.183-.901-4.112-1.442-.573-.324-.966-.685-1.109-1.009a2.566 2.566 0 01-.215-1.01v-1.838c0-.757.286-1.117.823-1.117.214 0 .43.036.644.108.214.072.536.216.894.36 1.216.541 2.54.973 3.933 1.262a21.35 21.35 0 004.256.432c2.253 0 4.005-.396 5.221-1.189 1.216-.793 1.86-1.947 1.86-3.425 0-1.009-.322-1.838-.966-2.523-.643-.685-1.859-1.298-3.612-1.875l-5.185-1.622c-2.61-.829-4.542-2.054-5.722-3.677-1.18-1.586-1.788-3.352-1.788-5.226 0-1.514.322-2.848.966-4.002a9.25 9.25 0 012.574-2.956c1.073-.829 2.29-1.442 3.72-1.874C88.557.18 90.06 0 91.633 0c.786 0 1.61.036 2.396.144.822.108 1.573.253 2.324.397.715.18 1.395.36 2.038.577.644.216 1.145.432 1.502.648.501.289.86.577 1.073.902.215.288.322.684.322 1.189v1.694c0 .757-.286 1.154-.822 1.154-.286 0-.75-.144-1.359-.433-2.039-.937-4.327-1.406-6.867-1.406-2.038 0-3.647.325-4.756 1.01-1.108.685-1.68 1.73-1.68 3.208 0 1.009.357 1.875 1.072 2.559.715.685 2.04 1.37 3.934 1.983l5.078 1.622c2.575.829 4.435 1.983 5.543 3.461 1.11 1.478 1.645 3.172 1.645 5.046 0 1.551-.322 2.956-.93 4.182-.643 1.226-1.502 2.307-2.61 3.172-1.109.901-2.432 1.55-3.97 2.019-1.609.505-3.29.757-5.114.757z" fill="#252f3e" fill-rule="nonzero"/><g fill="#f90"><path d="M97.211 51.404c-11.765 8.76-28.859 13.41-43.557 13.41-20.599 0-39.159-7.679-53.178-20.44-1.108-1.009-.107-2.379 1.216-1.586 15.163 8.868 33.866 14.24 53.213 14.24 13.053 0 27.394-2.74 40.59-8.364 1.967-.9 3.647 1.298 1.716 2.74z"/><path d="M102.111 45.78c-1.502-1.946-9.942-.937-13.769-.468-1.144.144-1.323-.866-.286-1.623 6.724-4.758 17.774-3.388 19.061-1.802 1.288 1.622-.357 12.761-6.65 18.096-.967.83-1.897.397-1.468-.685 1.431-3.569 4.614-11.607 3.112-13.518z"/></g></svg> \ No newline at end of file +<svg viewBox="0 0 108 65" xmlns="http://www.w3.org/2000/svg" fill-rule="evenodd" clip-rule="evenodd" stroke-linejoin="round" stroke-miterlimit="2"><path class="text" d="M30.301 23.539c0 1.334.143 2.415.394 3.208.286.793.643 1.659 1.144 2.596.18.288.25.577.25.829 0 .36-.214.721-.679 1.081l-2.253 1.514c-.322.217-.644.325-.93.325-.357 0-.715-.18-1.073-.505-.5-.541-.929-1.117-1.287-1.694a28.124 28.124 0 01-1.109-2.127c-2.789 3.316-6.294 4.975-10.514 4.975-3.004 0-5.4-.865-7.152-2.596-1.752-1.73-2.646-4.037-2.646-6.921 0-3.064 1.073-5.551 3.254-7.426 2.182-1.874 5.078-2.811 8.762-2.811 1.216 0 2.467.108 3.79.288 1.324.18 2.683.469 4.113.793v-2.632c0-2.739-.572-4.65-1.68-5.767-1.145-1.118-3.076-1.658-5.83-1.658-1.252 0-2.539.144-3.862.468a28.341 28.341 0 00-3.862 1.226 10.52 10.52 0 01-1.252.469c-.25.072-.429.108-.572.108-.5 0-.75-.361-.75-1.118V4.398c0-.577.07-1.009.25-1.262.178-.252.5-.504 1-.757C9.06 1.73 10.561 1.19 12.313.757c1.753-.469 3.612-.685 5.58-.685 4.255 0 7.366.973 9.37 2.92 1.966 1.947 2.967 4.902 2.967 8.868v11.679h.071zm-14.519 5.479c1.18 0 2.396-.216 3.684-.648 1.287-.433 2.431-1.226 3.397-2.307.572-.685 1.001-1.442 1.216-2.308.214-.865.357-1.91.357-3.136v-1.514a29.655 29.655 0 00-3.29-.612 26.58 26.58 0 00-3.36-.217c-2.397 0-4.15.469-5.33 1.442-1.18.973-1.752 2.343-1.752 4.146 0 1.694.43 2.956 1.323 3.821.86.901 2.11 1.333 3.755 1.333zM44.5 32.912c-.644 0-1.073-.109-1.359-.361-.286-.216-.537-.721-.75-1.406L33.984 3.28c-.215-.721-.322-1.189-.322-1.442 0-.576.286-.901.858-.901h3.505c.68 0 1.144.108 1.395.361.286.216.5.721.715 1.406l6.008 23.863 5.58-23.863c.177-.721.392-1.19.678-1.406.286-.217.787-.361 1.431-.361h2.86c.68 0 1.145.108 1.431.361.286.216.536.721.68 1.406l5.65 24.152L70.64 2.704c.215-.721.465-1.19.716-1.406.286-.217.751-.361 1.394-.361h3.326c.572 0 .894.289.894.901 0 .181-.035.361-.07.577a5.171 5.171 0 01-.252.901L68.03 31.181c-.215.721-.465 1.19-.75 1.406-.287.216-.752.361-1.36.361h-3.076c-.679 0-1.144-.109-1.43-.361-.286-.252-.536-.721-.679-1.442L55.191 7.894l-5.507 23.215c-.179.721-.393 1.19-.679 1.442-.286.252-.787.361-1.43.361h-3.076zm45.953.973c-1.859 0-3.719-.216-5.507-.649-1.788-.433-3.183-.901-4.112-1.442-.573-.324-.966-.685-1.109-1.009a2.566 2.566 0 01-.215-1.01v-1.838c0-.757.286-1.117.823-1.117.214 0 .43.036.644.108.214.072.536.216.894.36 1.216.541 2.54.973 3.933 1.262a21.35 21.35 0 004.256.432c2.253 0 4.005-.396 5.221-1.189 1.216-.793 1.86-1.947 1.86-3.425 0-1.009-.322-1.838-.966-2.523-.643-.685-1.859-1.298-3.612-1.875l-5.185-1.622c-2.61-.829-4.542-2.054-5.722-3.677-1.18-1.586-1.788-3.352-1.788-5.226 0-1.514.322-2.848.966-4.002a9.25 9.25 0 012.574-2.956c1.073-.829 2.29-1.442 3.72-1.874C88.557.18 90.06 0 91.633 0c.786 0 1.61.036 2.396.144.822.108 1.573.253 2.324.397.715.18 1.395.36 2.038.577.644.216 1.145.432 1.502.648.501.289.86.577 1.073.902.215.288.322.684.322 1.189v1.694c0 .757-.286 1.154-.822 1.154-.286 0-.75-.144-1.359-.433-2.039-.937-4.327-1.406-6.867-1.406-2.038 0-3.647.325-4.756 1.01-1.108.685-1.68 1.73-1.68 3.208 0 1.009.357 1.875 1.072 2.559.715.685 2.04 1.37 3.934 1.983l5.078 1.622c2.575.829 4.435 1.983 5.543 3.461 1.11 1.478 1.645 3.172 1.645 5.046 0 1.551-.322 2.956-.93 4.182-.643 1.226-1.502 2.307-2.61 3.172-1.109.901-2.432 1.55-3.97 2.019-1.609.505-3.29.757-5.114.757z" fill="#252f3e" fill-rule="nonzero"/><g fill="#f90"><path d="M97.211 51.404c-11.765 8.76-28.859 13.41-43.557 13.41-20.599 0-39.159-7.679-53.178-20.44-1.108-1.009-.107-2.379 1.216-1.586 15.163 8.868 33.866 14.24 53.213 14.24 13.053 0 27.394-2.74 40.59-8.364 1.967-.9 3.647 1.298 1.716 2.74z"/><path d="M102.111 45.78c-1.502-1.946-9.942-.937-13.769-.468-1.144.144-1.323-.866-.286-1.623 6.724-4.758 17.774-3.388 19.061-1.802 1.288 1.622-.357 12.761-6.65 18.096-.967.83-1.897.397-1.468-.685 1.431-3.569 4.614-11.607 3.112-13.518z"/></g></svg> \ No newline at end of file diff --git a/ui/apps/platform/src/images/clair.svg b/ui/apps/platform/src/images/clair.svg index 252b23104e4c7..6c67aadd23c4b 100644 --- a/ui/apps/platform/src/images/clair.svg +++ b/ui/apps/platform/src/images/clair.svg @@ -1 +1 @@ -<svg viewBox="0 0 180 57" xmlns="http://www.w3.org/2000/svg" fill-rule="evenodd" clip-rule="evenodd" stroke-linejoin="round" stroke-miterlimit="2"><path d="M82.682 15.018c4.565 0 7.725 1.884 10.083 4.065l-2.91 3.717c-2.057-1.735-4.214-3.023-6.973-3.023-6.271 0-10.785 5.353-10.785 13.184 0 7.782 4.314 13.036 10.635 13.036 3.26 0 6.02-1.636 8.076-3.42l2.609 3.766c-3.11 2.727-7.124 4.412-11.237 4.412-9.18 0-16.204-6.543-16.204-17.844.1-11.35 7.826-17.893 16.706-17.893zM98.032 0h5.819v43.518c0 1.834.803 2.528 1.656 2.528.35 0 .652 0 1.254-.149l.803 4.362c-.803.347-1.756.545-3.361.545-4.415 0-6.171-2.726-6.171-7.732V0zm34.614 28.351c0-4.361-1.505-8.574-7.123-8.574-4.064 0-7.575 1.833-10.284 3.667l-2.358-4.014c3.21-2.033 8.027-4.412 13.545-4.412 8.428 0 11.989 5.552 11.989 14.027v20.917H133.6l-.502-4.065h-.151c-3.361 2.677-7.173 4.907-11.437 4.907-5.82 0-10.134-3.568-10.134-9.665.05-7.484 6.572-11.202 21.27-12.788zm-9.431 17.794c3.36 0 6.12-1.635 9.43-4.56v-9.467c-11.587 1.388-15.5 4.213-15.5 8.575.05 3.866 2.659 5.452 6.07 5.452zm22.274-41.04c0-2.23 1.756-3.717 4.063-3.717 2.258 0 4.064 1.487 4.064 3.717 0 2.181-1.756 3.718-4.064 3.718-2.257 0-4.063-1.537-4.063-3.718zm1.103 10.756h5.82v34.101h-5.82V15.861zm13.846 0h4.866l.502 6.196h.2c2.358-4.263 5.87-7.039 9.783-7.039 1.505 0 2.558.199 3.712.694l-1.154 5.056c-1.154-.347-1.906-.545-3.361-.545-2.91 0-6.371 2.081-8.73 7.88v21.908h-5.818v-34.15z" fill="#393a40" fill-rule="nonzero"/><g fill-rule="nonzero"><path d="M26.289 5.502C11.992 5.303.203 16.604.003 30.73-.198 44.856 11.24 56.504 25.587 56.702h21.52c3.162 0 4.817-1.586 4.817-4.51V31.275C51.974 17.25 40.587 5.7 26.289 5.502zm-.702 45.253C14.65 50.606 5.922 41.735 6.073 30.93c.15-10.806 9.13-19.43 20.066-19.28 10.936.147 19.665 9.02 19.514 19.825-.15 10.805-9.13 19.43-20.066 19.281z" fill="#56a3d9"/><path d="M18.915 27.905c.652-1.388 1.756-2.577 3.21-3.37 1.405-.744 2.96-1.04 4.415-.893l2.107-7.633c-3.411-.594-7.073-.148-10.334 1.686-3.411 1.883-5.82 4.807-7.073 8.128l7.675 2.082zm3.612 10.21a7.585 7.585 0 01-3.461-3.172c-.753-1.388-1.054-2.924-.903-4.36L10.437 28.5c-.652 3.37-.15 6.99 1.706 10.26 1.906 3.321 4.916 5.7 8.277 6.94l2.107-7.585z" fill="#56a3d9"/><path d="M32.81 34.497a7.573 7.573 0 01-3.21 3.42c-1.404.744-2.91 1.041-4.364.892l-2.157 7.633c3.41.595 7.073.1 10.334-1.685 3.41-1.883 5.819-4.808 7.073-8.178l-7.675-2.082z" fill="#f1626e"/></g></svg> \ No newline at end of file +<svg viewBox="0 0 180 57" xmlns="http://www.w3.org/2000/svg" fill-rule="evenodd" clip-rule="evenodd" stroke-linejoin="round" stroke-miterlimit="2"><path class="text" d="M82.682 15.018c4.565 0 7.725 1.884 10.083 4.065l-2.91 3.717c-2.057-1.735-4.214-3.023-6.973-3.023-6.271 0-10.785 5.353-10.785 13.184 0 7.782 4.314 13.036 10.635 13.036 3.26 0 6.02-1.636 8.076-3.42l2.609 3.766c-3.11 2.727-7.124 4.412-11.237 4.412-9.18 0-16.204-6.543-16.204-17.844.1-11.35 7.826-17.893 16.706-17.893zM98.032 0h5.819v43.518c0 1.834.803 2.528 1.656 2.528.35 0 .652 0 1.254-.149l.803 4.362c-.803.347-1.756.545-3.361.545-4.415 0-6.171-2.726-6.171-7.732V0zm34.614 28.351c0-4.361-1.505-8.574-7.123-8.574-4.064 0-7.575 1.833-10.284 3.667l-2.358-4.014c3.21-2.033 8.027-4.412 13.545-4.412 8.428 0 11.989 5.552 11.989 14.027v20.917H133.6l-.502-4.065h-.151c-3.361 2.677-7.173 4.907-11.437 4.907-5.82 0-10.134-3.568-10.134-9.665.05-7.484 6.572-11.202 21.27-12.788zm-9.431 17.794c3.36 0 6.12-1.635 9.43-4.56v-9.467c-11.587 1.388-15.5 4.213-15.5 8.575.05 3.866 2.659 5.452 6.07 5.452zm22.274-41.04c0-2.23 1.756-3.717 4.063-3.717 2.258 0 4.064 1.487 4.064 3.717 0 2.181-1.756 3.718-4.064 3.718-2.257 0-4.063-1.537-4.063-3.718zm1.103 10.756h5.82v34.101h-5.82V15.861zm13.846 0h4.866l.502 6.196h.2c2.358-4.263 5.87-7.039 9.783-7.039 1.505 0 2.558.199 3.712.694l-1.154 5.056c-1.154-.347-1.906-.545-3.361-.545-2.91 0-6.371 2.081-8.73 7.88v21.908h-5.818v-34.15z" fill="#393a40" fill-rule="nonzero"/><g fill-rule="nonzero"><path d="M26.289 5.502C11.992 5.303.203 16.604.003 30.73-.198 44.856 11.24 56.504 25.587 56.702h21.52c3.162 0 4.817-1.586 4.817-4.51V31.275C51.974 17.25 40.587 5.7 26.289 5.502zm-.702 45.253C14.65 50.606 5.922 41.735 6.073 30.93c.15-10.806 9.13-19.43 20.066-19.28 10.936.147 19.665 9.02 19.514 19.825-.15 10.805-9.13 19.43-20.066 19.281z" fill="#56a3d9"/><path d="M18.915 27.905c.652-1.388 1.756-2.577 3.21-3.37 1.405-.744 2.96-1.04 4.415-.893l2.107-7.633c-3.411-.594-7.073-.148-10.334 1.686-3.411 1.883-5.82 4.807-7.073 8.128l7.675 2.082zm3.612 10.21a7.585 7.585 0 01-3.461-3.172c-.753-1.388-1.054-2.924-.903-4.36L10.437 28.5c-.652 3.37-.15 6.99 1.706 10.26 1.906 3.321 4.916 5.7 8.277 6.94l2.107-7.585z" fill="#56a3d9"/><path d="M32.81 34.497a7.573 7.573 0 01-3.21 3.42c-1.404.744-2.91 1.041-4.364.892l-2.157 7.633c3.41.595 7.073.1 10.334-1.685 3.41-1.883 5.819-4.808 7.073-8.178l-7.675-2.082z" fill="#f1626e"/></g></svg> \ No newline at end of file diff --git a/ui/apps/platform/src/images/docker.svg b/ui/apps/platform/src/images/docker.svg index 49d6871379aed..8efe0b7b93b61 100644 --- a/ui/apps/platform/src/images/docker.svg +++ b/ui/apps/platform/src/images/docker.svg @@ -1 +1 @@ -<svg viewBox="0 0 242 60" xmlns="http://www.w3.org/2000/svg" fill-rule="evenodd" clip-rule="evenodd" stroke-linejoin="round" stroke-miterlimit="2"><path fill="#099cec" d="M6.777 20.8h8.928v8H6.777zM17.33 20.8h8.927v8H17.33zM27.88 20.8h8.928v8H27.88zM38.431 20.8h8.928v8h-8.928zM48.983 20.8h8.928v8h-8.928zM17.33 11.2h8.927v8H17.33zM27.88 11.2h8.928v8H27.88zM38.431 11.2h8.928v8h-8.928zM38.431 1.6h8.928v8h-8.928z"/><path d="M84.504 23.27c-1.833-1.217-6.648-1.735-10.147-.806-.19-3.437-1.986-6.333-5.276-8.859l-1.217-.805-.812 1.208c-1.595 2.385-2.267 5.565-2.03 8.456.188 1.781.817 3.782 2.03 5.235-.93.712-3.817 2.086-7.711 2.014H1.309c-1.033 6.04.734 28.993 27.596 28.993 19.94 0 36.326-8.839 43.828-27.383 2.469.04 8.985.436 12.175-5.638.077-.102.812-1.61.812-1.61l-1.216-.806z" fill="#099cec"/><path d="M22.75 47.801c-6.621 2.264-13.752 2.591-15.242 2.525 4.967 4.083 13.818 11.787 28.408 7.388-2.665-.713-8.95-3.1-13.166-9.913M28.186 39.746c1.558 0 2.822 1.255 2.822 2.8 0 1.547-1.264 2.8-2.822 2.8s-2.822-1.253-2.822-2.8c0-1.545 1.264-2.8 2.822-2.8" fill="#fff"/><path d="M28.61 41.76a.79.79 0 01.318-.623 1.62 1.62 0 00-.734-.183c-.89 0-1.613.717-1.613 1.6 0 .885.722 1.6 1.613 1.6.89 0 1.612-.715 1.612-1.6l-.01-.09a.792.792 0 01-.374.101.809.809 0 01-.812-.805" fill="#4d5c64"/><path d="M84.263 23.123c-1.254-.7-3.537-1.134-5.895-1.134-1.375 0-2.776.147-4.012.475a15.795 15.795 0 00-.014-.217c1.114-.29 2.392-.42 3.67-.42 2.536 0 5.061.513 6.251 1.296" fill="#f3f3f3"/><path d="M32.941 58.465a32.642 32.642 0 002.974-.75c-1.247-.335-3.29-1.036-5.542-2.388 18.551-.445 32.137-9.83 42.996-31.982l.745-1.036.228-.062.014.217c1.236-.328 2.637-.475 4.012-.475 2.358 0 4.641.433 5.895 1.134a.016.016 0 00.007.004l1.225.82-.617 1.287c-2.814 5.623-8.926 6.047-11.788 6.047-.233 0-.445-.004-.63-.006-7.015 17.122-21.586 25.951-39.519 27.19" fill="#f3f3f3"/><path d="M32.941 58.465a32.642 32.642 0 002.974-.75c-1.247-.335-3.29-1.036-5.542-2.388 18.551-.445 32.137-9.83 42.996-31.982l.745-1.036.228-.062.014.217c1.236-.328 2.637-.475 4.012-.475 2.358 0 4.641.433 5.895 1.134a.016.016 0 00.007.004l1.225.82-.617 1.287c-2.814 5.623-8.926 6.047-11.788 6.047-.233 0-.445-.004-.63-.006-7.015 17.122-21.586 25.951-39.519 27.19" fill="#0994e0"/><path d="M18.924 57.517C1.017 52.967-.109 35.597.254 30.363h.962c-.666 5.754.983 21.72 16.751 26.782.314.13.633.254.957.372" fill="#f3f3f3"/><path d="M17.967 57.145C2.2 52.083.55 36.117 1.217 30.363H3.5c.822 8.27 2.851 15.272 8.291 19.736-1.727.177-3.096.234-3.87.234-.166 0-.305-.002-.414-.007 2.46 2.022 5.871 4.931 10.46 6.82" fill="#f3f3f3"/><path d="M17.967 57.145C2.2 52.083.55 36.117 1.217 30.363H3.5c.822 8.27 2.851 15.272 8.291 19.736-1.727.177-3.096.234-3.87.234-.166 0-.305-.002-.414-.007 2.46 2.022 5.871 4.931 10.46 6.82" fill="#0994e0"/><path d="M28.47 58.617c-3.619 0-6.782-.397-9.546-1.1a23.734 23.734 0 01-.957-.372c-4.588-1.888-8-4.797-10.459-6.819.11.005.248.007.414.007.774 0 2.143-.057 3.87-.234 4.013 3.294 9.882 5.207 18.493 5.23.03 0 .06 0 .088-.002 2.252 1.352 4.295 2.053 5.542 2.387-1.019.308-2.01.556-2.974.751a65.212 65.212 0 01-4.472.152" fill="#f3f3f3"/><g><path d="M28.47 58.617c-3.619 0-6.782-.397-9.546-1.1a23.734 23.734 0 01-.957-.372c-4.588-1.888-8-4.797-10.459-6.819.11.005.248.007.414.007.774 0 2.143-.057 3.87-.234 4.013 3.294 9.882 5.207 18.493 5.23.03 0 .06 0 .088-.002 2.252 1.352 4.295 2.053 5.542 2.387-1.019.308-2.01.556-2.974.751a65.212 65.212 0 01-4.472.152" fill="#f2f2f2"/></g><g fill="#066da5"><path d="M84.3 24.427c-.102.202-.187.372-.253.5-.035.07-.064.124-.143.262-1.205 2.295-2.974 3.732-5.218 4.508-1.777.616-3.387.754-5.8.705l-.423-.009-.559-.008-.208.514c-7.1 17.55-22.605 26.877-43.075 26.877-8.966 0-15.536-2.57-20.018-7.123a23.676 23.676 0 0014.198-2.852 19.347 19.347 0 01-.79-1.41c-3.187 1.792-6.88 2.798-10.796 2.798-1.457 0-2.88-.143-4.258-.41a23.122 23.122 0 01-1.887-2.823c-1.624-2.876-2.659-6.103-3.143-9.406-.336-2.29-.38-4.513-.196-6.157h3.423v.007h54.38v-.016c3.215-.036 6.221-1.016 7.73-2.17l.666-.51-.537-.643c-1.005-1.204-1.653-2.968-1.847-4.804-.23-2.804.46-5.775 1.898-7.928l.361-.536.518.342c3.15 2.426 4.768 5.122 4.94 8.25l.054.99.965-.257c3.161-.839 7.79-.429 9.486.697l.628.415-.097.197zM6.776 28.783h8.928V20.8H6.777v7.983zM17.33 19.2h8.928v-8H17.33v8zm10.551 0h8.928v-8H27.88v8zm10.551-9.6h8.928v-8h-8.928v8zm0 9.6h8.928v-8h-8.928v8zm10.552 9.583h8.928V20.8h-8.928v7.983zm-31.654 0h8.928V20.8H17.33v7.983zm10.551 0h8.928V20.8H27.88v7.983zm10.551 0h8.928V20.8h-8.928v7.983zm36.361-7.43c-.449-3.236-2.289-6.045-5.52-8.527l-1.917-1.267-1.262 1.878c-1.65 2.47-2.424 5.8-2.163 8.968.191 1.818.761 3.572 1.676 4.96-1.38.76-3.648 1.38-6.072 1.412V19.2h-10.55V0H36.807v9.6H15.705v9.6H5.155v9.583H.338l-.114.67c-.317 1.851-.312 4.55.096 7.33.512 3.49 1.605 6.902 3.334 9.962 4.502 7.964 12.681 12.642 24.966 12.642 20.903 0 36.915-9.512 44.37-27.372 2.52.045 4.26-.114 6.23-.797 2.611-.905 4.705-2.599 6.108-5.256.08-.129.194-.355.437-.848.09-.177.183-.369.276-.559l.125-.254.306-.63-1.802-1.195c-1.95-1.294-6.395-1.782-9.879-1.123z"/><path d="M8.401 22.4h.812v4.8h-.812zM10.835 22.4h.812v4.8h-.812zM13.27 22.4h.812v4.8h-.812zM18.952 22.4h.812v4.8h-.812zM21.387 22.4h.812v4.8h-.812zM23.822 22.4h.812v4.8h-.812zM29.503 22.4h.812v4.8h-.812zM31.938 22.4h.812v4.8h-.812zM34.373 22.4h.812v4.8h-.812zM40.055 22.4h.812v4.8h-.812zM42.49 22.4h.812v4.8h-.812zM44.924 22.4h.812v4.8h-.812zM50.606 22.4h.812v4.8h-.812zM53.041 22.4h.812v4.8h-.812zM55.476 22.4h.812v4.8h-.812zM21.387 12.8h.812v4.8h-.812zM23.822 12.8h.812v4.8h-.812zM29.503 12.8h.812v4.8h-.812zM31.938 12.8h.812v4.8h-.812zM34.373 12.8h.812v4.8h-.812zM40.055 12.8h.812v4.8h-.812zM42.49 12.8h.812v4.8h-.812zM44.924 12.8h.812v4.8h-.812zM42.49 3.2h.812V8h-.812zM40.055 3.2h.812V8h-.812zM44.924 3.2h.812V8h-.812zM18.952 12.8h.812v4.8h-.812zM200.968 37.71a7.027 7.027 0 011.068-2.18 7.564 7.564 0 011.701-1.693 7.992 7.992 0 012.158-1.095 7.615 7.615 0 012.42-.39c.828 0 1.631.13 2.408.39.778.26 1.49.626 2.137 1.095a7.905 7.905 0 011.7 1.692 7.29 7.29 0 011.101 2.18h-14.693zm15.98-6.335c-2.413-2.372-5.29-3.558-8.634-3.558-3.37 0-6.249 1.186-8.632 3.558-2.384 2.372-3.576 5.236-3.576 8.591 0 3.355 1.192 6.22 3.576 8.591 2.383 2.372 5.261 3.558 8.632 3.558 3.067 0 5.726-.983 7.98-2.95.435-.448.653-.99.653-1.627 0-.65-.214-1.19-.644-1.617-.427-.426-.969-.64-1.623-.64a2.394 2.394 0 00-1.504.564 7.205 7.205 0 01-2.225 1.302c-.798.29-1.677.434-2.637.434a7.59 7.59 0 01-2.43-.39 7.827 7.827 0 01-2.136-1.096 7.646 7.646 0 01-1.69-1.692 7.433 7.433 0 01-1.09-2.18h17.265c.64 0 1.181-.214 1.625-.64.443-.427.664-.966.664-1.617 0-1.677-.298-3.236-.893-4.675-.596-1.439-1.49-2.745-2.682-3.916zM240.862 29.336c-.407-.39-.92-.698-1.537-.923a9.045 9.045 0 00-2.028-.466 17.75 17.75 0 00-2.06-.13 11.97 11.97 0 00-4.097.694 12.5 12.5 0 00-3.554 1.997v-.435a2.17 2.17 0 00-.665-1.594 2.19 2.19 0 00-1.602-.662c-.639 0-1.18.221-1.624.662a2.17 2.17 0 00-.666 1.594V49.86c0 .622.223 1.153.666 1.594.443.442.985.662 1.624.662.625 0 1.158-.22 1.602-.662.443-.44.665-.972.665-1.594v-9.893c0-1.055.2-2.046.6-2.972a7.66 7.66 0 011.635-2.419 7.67 7.67 0 012.43-1.627 7.51 7.51 0 012.986-.596c1.077 0 2.072.18 2.987.542.363.16.684.24.96.24.32 0 .616-.059.893-.175.276-.116.516-.278.72-.488.203-.21.366-.452.49-.726.124-.276.185-.572.185-.89 0-.622-.203-1.129-.61-1.519M193.642 30.073c0-.303-.06-.592-.185-.867a2.518 2.518 0 00-.49-.727 2.157 2.157 0 00-.719-.488 2.292 2.292 0 00-.895-.174c-.45 0-.857.116-1.22.348l-13.036 8.44V19.68c0-.636-.222-1.174-.666-1.616a2.192 2.192 0 00-1.602-.66c-.639 0-1.18.22-1.623.66-.444.442-.666.98-.666 1.616v30.156c0 .622.222 1.157.666 1.606.443.448.984.672 1.623.672.625 0 1.16-.224 1.602-.672.444-.449.666-.984.666-1.606v-7.83l2.66-1.737 10.071 11.26c.406.39.915.585 1.525.585.32 0 .618-.058.895-.173.275-.116.514-.278.718-.489.204-.208.367-.45.491-.726.124-.275.185-.564.185-.868 0-.593-.21-1.12-.632-1.584l-9.374-10.499 9.135-5.902c.581-.39.871-.99.871-1.8M114.3 42.906a7.75 7.75 0 01-4.066 4.068 7.395 7.395 0 01-2.986.607 7.445 7.445 0 01-3.008-.607 7.725 7.725 0 01-2.42-1.638 7.763 7.763 0 01-1.624-2.419 7.36 7.36 0 01-.6-2.95c0-1.042.2-2.025.6-2.95a7.751 7.751 0 011.623-2.42 7.709 7.709 0 012.421-1.638 7.445 7.445 0 013.008-.607c1.061 0 2.056.202 2.986.607a7.734 7.734 0 014.066 4.068c.4.918.6 1.898.6 2.94 0 1.041-.2 2.02-.6 2.94zm2.867-25.502c-.654 0-1.196.213-1.624.64-.43.426-.643.965-.643 1.616v10.825c-2.209-1.778-4.76-2.668-7.652-2.668-3.372 0-6.249 1.186-8.633 3.558-2.383 2.372-3.574 5.236-3.574 8.591 0 3.355 1.191 6.22 3.574 8.591 2.384 2.372 5.261 3.558 8.633 3.558 3.342 0 6.22-1.186 8.633-3.558 2.383-2.343 3.575-5.207 3.575-8.59V19.66c0-.65-.22-1.19-.665-1.616-.443-.427-.985-.64-1.624-.64zM141.311 42.906a7.758 7.758 0 01-4.066 4.068 7.403 7.403 0 01-2.987.607 7.455 7.455 0 01-3.008-.607 7.705 7.705 0 01-2.419-1.638 7.731 7.731 0 01-1.624-2.419 7.36 7.36 0 01-.6-2.95c0-1.042.2-2.025.6-2.95a7.72 7.72 0 011.624-2.42 7.688 7.688 0 012.42-1.638 7.455 7.455 0 013.007-.607c1.061 0 2.056.202 2.987.607a7.741 7.741 0 014.066 4.068c.4.918.6 1.898.6 2.94 0 1.041-.2 2.02-.6 2.94zm1.58-11.53c-2.413-2.373-5.29-3.559-8.633-3.559-3.37 0-6.249 1.186-8.63 3.558-2.385 2.372-3.578 5.236-3.578 8.591 0 3.355 1.193 6.22 3.577 8.591 2.382 2.372 5.26 3.558 8.631 3.558 3.343 0 6.22-1.186 8.633-3.558 2.384-2.343 3.575-5.207 3.575-8.59-.014-1.678-.315-3.233-.905-4.665-.588-1.432-1.478-2.74-2.67-3.927zM155.797 34.575a7.827 7.827 0 012.442-1.627 7.507 7.507 0 012.986-.596c.96 0 1.846.16 2.66.477a8.364 8.364 0 012.333 1.41c.435.347.93.52 1.482.52.654 0 1.195-.217 1.624-.65.43-.434.643-.976.643-1.628 0-.679-.262-1.25-.784-1.713-2.239-1.967-4.89-2.95-7.958-2.95-3.37 0-6.249 1.185-8.632 3.557s-3.575 5.236-3.575 8.591c0 3.355 1.192 6.22 3.575 8.591 2.383 2.372 5.261 3.558 8.632 3.558 3.053 0 5.704-.983 7.958-2.95.478-.478.72-1.034.72-1.67 0-.652-.216-1.19-.645-1.617-.429-.427-.97-.64-1.624-.64-.55.015-1.03.174-1.438.477a7.865 7.865 0 01-2.31 1.4 7.39 7.39 0 01-2.66.466 7.524 7.524 0 01-2.987-.596 7.83 7.83 0 01-2.442-1.628 7.557 7.557 0 01-1.645-2.418c-.4-.926-.6-1.917-.6-2.973 0-1.055.2-2.046.6-2.972a7.573 7.573 0 011.645-2.419"/></g></svg> \ No newline at end of file +<svg viewBox="0 0 242 60" xmlns="http://www.w3.org/2000/svg" fill-rule="evenodd" clip-rule="evenodd" stroke-linejoin="round" stroke-miterlimit="2"><path fill="#099cec" d="M6.777 20.8h8.928v8H6.777zM17.33 20.8h8.927v8H17.33zM27.88 20.8h8.928v8H27.88zM38.431 20.8h8.928v8h-8.928zM48.983 20.8h8.928v8h-8.928zM17.33 11.2h8.927v8H17.33zM27.88 11.2h8.928v8H27.88zM38.431 11.2h8.928v8h-8.928zM38.431 1.6h8.928v8h-8.928z"/><path d="M84.504 23.27c-1.833-1.217-6.648-1.735-10.147-.806-.19-3.437-1.986-6.333-5.276-8.859l-1.217-.805-.812 1.208c-1.595 2.385-2.267 5.565-2.03 8.456.188 1.781.817 3.782 2.03 5.235-.93.712-3.817 2.086-7.711 2.014H1.309c-1.033 6.04.734 28.993 27.596 28.993 19.94 0 36.326-8.839 43.828-27.383 2.469.04 8.985.436 12.175-5.638.077-.102.812-1.61.812-1.61l-1.216-.806z" fill="#099cec"/><path d="M22.75 47.801c-6.621 2.264-13.752 2.591-15.242 2.525 4.967 4.083 13.818 11.787 28.408 7.388-2.665-.713-8.95-3.1-13.166-9.913M28.186 39.746c1.558 0 2.822 1.255 2.822 2.8 0 1.547-1.264 2.8-2.822 2.8s-2.822-1.253-2.822-2.8c0-1.545 1.264-2.8 2.822-2.8" fill="#fff"/><path d="M28.61 41.76a.79.79 0 01.318-.623 1.62 1.62 0 00-.734-.183c-.89 0-1.613.717-1.613 1.6 0 .885.722 1.6 1.613 1.6.89 0 1.612-.715 1.612-1.6l-.01-.09a.792.792 0 01-.374.101.809.809 0 01-.812-.805" fill="#4d5c64"/><path d="M84.263 23.123c-1.254-.7-3.537-1.134-5.895-1.134-1.375 0-2.776.147-4.012.475a15.795 15.795 0 00-.014-.217c1.114-.29 2.392-.42 3.67-.42 2.536 0 5.061.513 6.251 1.296" fill="#f3f3f3"/><path d="M32.941 58.465a32.642 32.642 0 002.974-.75c-1.247-.335-3.29-1.036-5.542-2.388 18.551-.445 32.137-9.83 42.996-31.982l.745-1.036.228-.062.014.217c1.236-.328 2.637-.475 4.012-.475 2.358 0 4.641.433 5.895 1.134a.016.016 0 00.007.004l1.225.82-.617 1.287c-2.814 5.623-8.926 6.047-11.788 6.047-.233 0-.445-.004-.63-.006-7.015 17.122-21.586 25.951-39.519 27.19" fill="#f3f3f3"/><path d="M32.941 58.465a32.642 32.642 0 002.974-.75c-1.247-.335-3.29-1.036-5.542-2.388 18.551-.445 32.137-9.83 42.996-31.982l.745-1.036.228-.062.014.217c1.236-.328 2.637-.475 4.012-.475 2.358 0 4.641.433 5.895 1.134a.016.016 0 00.007.004l1.225.82-.617 1.287c-2.814 5.623-8.926 6.047-11.788 6.047-.233 0-.445-.004-.63-.006-7.015 17.122-21.586 25.951-39.519 27.19" fill="#0994e0"/><path d="M18.924 57.517C1.017 52.967-.109 35.597.254 30.363h.962c-.666 5.754.983 21.72 16.751 26.782.314.13.633.254.957.372" fill="#f3f3f3"/><path d="M17.967 57.145C2.2 52.083.55 36.117 1.217 30.363H3.5c.822 8.27 2.851 15.272 8.291 19.736-1.727.177-3.096.234-3.87.234-.166 0-.305-.002-.414-.007 2.46 2.022 5.871 4.931 10.46 6.82" fill="#f3f3f3"/><path d="M17.967 57.145C2.2 52.083.55 36.117 1.217 30.363H3.5c.822 8.27 2.851 15.272 8.291 19.736-1.727.177-3.096.234-3.87.234-.166 0-.305-.002-.414-.007 2.46 2.022 5.871 4.931 10.46 6.82" fill="#0994e0"/><path d="M28.47 58.617c-3.619 0-6.782-.397-9.546-1.1a23.734 23.734 0 01-.957-.372c-4.588-1.888-8-4.797-10.459-6.819.11.005.248.007.414.007.774 0 2.143-.057 3.87-.234 4.013 3.294 9.882 5.207 18.493 5.23.03 0 .06 0 .088-.002 2.252 1.352 4.295 2.053 5.542 2.387-1.019.308-2.01.556-2.974.751a65.212 65.212 0 01-4.472.152" fill="#f3f3f3"/><g><path d="M28.47 58.617c-3.619 0-6.782-.397-9.546-1.1a23.734 23.734 0 01-.957-.372c-4.588-1.888-8-4.797-10.459-6.819.11.005.248.007.414.007.774 0 2.143-.057 3.87-.234 4.013 3.294 9.882 5.207 18.493 5.23.03 0 .06 0 .088-.002 2.252 1.352 4.295 2.053 5.542 2.387-1.019.308-2.01.556-2.974.751a65.212 65.212 0 01-4.472.152" fill="#f2f2f2"/></g><g fill="#066da5"><path d="M84.3 24.427c-.102.202-.187.372-.253.5-.035.07-.064.124-.143.262-1.205 2.295-2.974 3.732-5.218 4.508-1.777.616-3.387.754-5.8.705l-.423-.009-.559-.008-.208.514c-7.1 17.55-22.605 26.877-43.075 26.877-8.966 0-15.536-2.57-20.018-7.123a23.676 23.676 0 0014.198-2.852 19.347 19.347 0 01-.79-1.41c-3.187 1.792-6.88 2.798-10.796 2.798-1.457 0-2.88-.143-4.258-.41a23.122 23.122 0 01-1.887-2.823c-1.624-2.876-2.659-6.103-3.143-9.406-.336-2.29-.38-4.513-.196-6.157h3.423v.007h54.38v-.016c3.215-.036 6.221-1.016 7.73-2.17l.666-.51-.537-.643c-1.005-1.204-1.653-2.968-1.847-4.804-.23-2.804.46-5.775 1.898-7.928l.361-.536.518.342c3.15 2.426 4.768 5.122 4.94 8.25l.054.99.965-.257c3.161-.839 7.79-.429 9.486.697l.628.415-.097.197zM6.776 28.783h8.928V20.8H6.777v7.983zM17.33 19.2h8.928v-8H17.33v8zm10.551 0h8.928v-8H27.88v8zm10.551-9.6h8.928v-8h-8.928v8zm0 9.6h8.928v-8h-8.928v8zm10.552 9.583h8.928V20.8h-8.928v7.983zm-31.654 0h8.928V20.8H17.33v7.983zm10.551 0h8.928V20.8H27.88v7.983zm10.551 0h8.928V20.8h-8.928v7.983zm36.361-7.43c-.449-3.236-2.289-6.045-5.52-8.527l-1.917-1.267-1.262 1.878c-1.65 2.47-2.424 5.8-2.163 8.968.191 1.818.761 3.572 1.676 4.96-1.38.76-3.648 1.38-6.072 1.412V19.2h-10.55V0H36.807v9.6H15.705v9.6H5.155v9.583H.338l-.114.67c-.317 1.851-.312 4.55.096 7.33.512 3.49 1.605 6.902 3.334 9.962 4.502 7.964 12.681 12.642 24.966 12.642 20.903 0 36.915-9.512 44.37-27.372 2.52.045 4.26-.114 6.23-.797 2.611-.905 4.705-2.599 6.108-5.256.08-.129.194-.355.437-.848.09-.177.183-.369.276-.559l.125-.254.306-.63-1.802-1.195c-1.95-1.294-6.395-1.782-9.879-1.123z"/><path d="M8.401 22.4h.812v4.8h-.812zM10.835 22.4h.812v4.8h-.812zM13.27 22.4h.812v4.8h-.812zM18.952 22.4h.812v4.8h-.812zM21.387 22.4h.812v4.8h-.812zM23.822 22.4h.812v4.8h-.812zM29.503 22.4h.812v4.8h-.812zM31.938 22.4h.812v4.8h-.812zM34.373 22.4h.812v4.8h-.812zM40.055 22.4h.812v4.8h-.812zM42.49 22.4h.812v4.8h-.812zM44.924 22.4h.812v4.8h-.812zM50.606 22.4h.812v4.8h-.812zM53.041 22.4h.812v4.8h-.812zM55.476 22.4h.812v4.8h-.812zM21.387 12.8h.812v4.8h-.812zM23.822 12.8h.812v4.8h-.812zM29.503 12.8h.812v4.8h-.812zM31.938 12.8h.812v4.8h-.812zM34.373 12.8h.812v4.8h-.812zM40.055 12.8h.812v4.8h-.812zM42.49 12.8h.812v4.8h-.812zM44.924 12.8h.812v4.8h-.812zM42.49 3.2h.812V8h-.812zM40.055 3.2h.812V8h-.812zM44.924 3.2h.812V8h-.812zM18.952 12.8h.812v4.8h-.812z"/></g><g class="text" fill="#066da5"><path d="M200.968 37.71a7.027 7.027 0 011.068-2.18 7.564 7.564 0 011.701-1.693 7.992 7.992 0 012.158-1.095 7.615 7.615 0 012.42-.39c.828 0 1.631.13 2.408.39.778.26 1.49.626 2.137 1.095a7.905 7.905 0 011.7 1.692 7.29 7.29 0 011.101 2.18h-14.693zm15.98-6.335c-2.413-2.372-5.29-3.558-8.634-3.558-3.37 0-6.249 1.186-8.632 3.558-2.384 2.372-3.576 5.236-3.576 8.591 0 3.355 1.192 6.22 3.576 8.591 2.383 2.372 5.261 3.558 8.632 3.558 3.067 0 5.726-.983 7.98-2.95.435-.448.653-.99.653-1.627 0-.65-.214-1.19-.644-1.617-.427-.426-.969-.64-1.623-.64a2.394 2.394 0 00-1.504.564 7.205 7.205 0 01-2.225 1.302c-.798.29-1.677.434-2.637.434a7.59 7.59 0 01-2.43-.39 7.827 7.827 0 01-2.136-1.096 7.646 7.646 0 01-1.69-1.692 7.433 7.433 0 01-1.09-2.18h17.265c.64 0 1.181-.214 1.625-.64.443-.427.664-.966.664-1.617 0-1.677-.298-3.236-.893-4.675-.596-1.439-1.49-2.745-2.682-3.916zM240.862 29.336c-.407-.39-.92-.698-1.537-.923a9.045 9.045 0 00-2.028-.466 17.75 17.75 0 00-2.06-.13 11.97 11.97 0 00-4.097.694 12.5 12.5 0 00-3.554 1.997v-.435a2.17 2.17 0 00-.665-1.594 2.19 2.19 0 00-1.602-.662c-.639 0-1.18.221-1.624.662a2.17 2.17 0 00-.666 1.594V49.86c0 .622.223 1.153.666 1.594.443.442.985.662 1.624.662.625 0 1.158-.22 1.602-.662.443-.44.665-.972.665-1.594v-9.893c0-1.055.2-2.046.6-2.972a7.66 7.66 0 011.635-2.419 7.67 7.67 0 012.43-1.627 7.51 7.51 0 012.986-.596c1.077 0 2.072.18 2.987.542.363.16.684.24.96.24.32 0 .616-.059.893-.175.276-.116.516-.278.72-.488.203-.21.366-.452.49-.726.124-.276.185-.572.185-.89 0-.622-.203-1.129-.61-1.519M193.642 30.073c0-.303-.06-.592-.185-.867a2.518 2.518 0 00-.49-.727 2.157 2.157 0 00-.719-.488 2.292 2.292 0 00-.895-.174c-.45 0-.857.116-1.22.348l-13.036 8.44V19.68c0-.636-.222-1.174-.666-1.616a2.192 2.192 0 00-1.602-.66c-.639 0-1.18.22-1.623.66-.444.442-.666.98-.666 1.616v30.156c0 .622.222 1.157.666 1.606.443.448.984.672 1.623.672.625 0 1.16-.224 1.602-.672.444-.449.666-.984.666-1.606v-7.83l2.66-1.737 10.071 11.26c.406.39.915.585 1.525.585.32 0 .618-.058.895-.173.275-.116.514-.278.718-.489.204-.208.367-.45.491-.726.124-.275.185-.564.185-.868 0-.593-.21-1.12-.632-1.584l-9.374-10.499 9.135-5.902c.581-.39.871-.99.871-1.8M114.3 42.906a7.75 7.75 0 01-4.066 4.068 7.395 7.395 0 01-2.986.607 7.445 7.445 0 01-3.008-.607 7.725 7.725 0 01-2.42-1.638 7.763 7.763 0 01-1.624-2.419 7.36 7.36 0 01-.6-2.95c0-1.042.2-2.025.6-2.95a7.751 7.751 0 011.623-2.42 7.709 7.709 0 012.421-1.638 7.445 7.445 0 013.008-.607c1.061 0 2.056.202 2.986.607a7.734 7.734 0 014.066 4.068c.4.918.6 1.898.6 2.94 0 1.041-.2 2.02-.6 2.94zm2.867-25.502c-.654 0-1.196.213-1.624.64-.43.426-.643.965-.643 1.616v10.825c-2.209-1.778-4.76-2.668-7.652-2.668-3.372 0-6.249 1.186-8.633 3.558-2.383 2.372-3.574 5.236-3.574 8.591 0 3.355 1.191 6.22 3.574 8.591 2.384 2.372 5.261 3.558 8.633 3.558 3.342 0 6.22-1.186 8.633-3.558 2.383-2.343 3.575-5.207 3.575-8.59V19.66c0-.65-.22-1.19-.665-1.616-.443-.427-.985-.64-1.624-.64zM141.311 42.906a7.758 7.758 0 01-4.066 4.068 7.403 7.403 0 01-2.987.607 7.455 7.455 0 01-3.008-.607 7.705 7.705 0 01-2.419-1.638 7.731 7.731 0 01-1.624-2.419 7.36 7.36 0 01-.6-2.95c0-1.042.2-2.025.6-2.95a7.72 7.72 0 011.624-2.42 7.688 7.688 0 012.42-1.638 7.455 7.455 0 013.007-.607c1.061 0 2.056.202 2.987.607a7.741 7.741 0 014.066 4.068c.4.918.6 1.898.6 2.94 0 1.041-.2 2.02-.6 2.94zm1.58-11.53c-2.413-2.373-5.29-3.559-8.633-3.559-3.37 0-6.249 1.186-8.63 3.558-2.385 2.372-3.578 5.236-3.578 8.591 0 3.355 1.193 6.22 3.577 8.591 2.382 2.372 5.26 3.558 8.631 3.558 3.343 0 6.22-1.186 8.633-3.558 2.384-2.343 3.575-5.207 3.575-8.59-.014-1.678-.315-3.233-.905-4.665-.588-1.432-1.478-2.74-2.67-3.927zM155.797 34.575a7.827 7.827 0 012.442-1.627 7.507 7.507 0 012.986-.596c.96 0 1.846.16 2.66.477a8.364 8.364 0 012.333 1.41c.435.347.93.52 1.482.52.654 0 1.195-.217 1.624-.65.43-.434.643-.976.643-1.628 0-.679-.262-1.25-.784-1.713-2.239-1.967-4.89-2.95-7.958-2.95-3.37 0-6.249 1.185-8.632 3.557s-3.575 5.236-3.575 8.591c0 3.355 1.192 6.22 3.575 8.591 2.383 2.372 5.261 3.558 8.632 3.558 3.053 0 5.704-.983 7.958-2.95.478-.478.72-1.034.72-1.67 0-.652-.216-1.19-.645-1.617-.429-.427-.97-.64-1.624-.64-.55.015-1.03.174-1.438.477a7.865 7.865 0 01-2.31 1.4 7.39 7.39 0 01-2.66.466 7.524 7.524 0 01-2.987-.596 7.83 7.83 0 01-2.442-1.628 7.557 7.557 0 01-1.645-2.418c-.4-.926-.6-1.917-.6-2.973 0-1.055.2-2.046.6-2.972a7.573 7.573 0 011.645-2.419"/></g></svg> \ No newline at end of file diff --git a/ui/apps/platform/src/images/email.svg b/ui/apps/platform/src/images/email.svg index dba28c6c2dab2..e26e290ad41d5 100644 --- a/ui/apps/platform/src/images/email.svg +++ b/ui/apps/platform/src/images/email.svg @@ -1 +1 @@ -<svg viewBox="0 0 196 58" xmlns="http://www.w3.org/2000/svg" fill-rule="evenodd" clip-rule="evenodd" stroke-linejoin="round" stroke-miterlimit="2"><path d="M29.396.694L.043 20.79v3.745h61.914V20.79L32.604.694c-.936-.641-2.272-.641-3.208 0z" fill="url(#_Linear1)" fill-rule="nonzero" transform="translate(-.043 -.213)"/><path d="M56.855 53.73H5.145c-1.409 0-2.551-1.046-2.551-2.337V7.126c0-1.291 1.142-2.337 2.551-2.337h51.71c1.409 0 2.551 1.046 2.551 2.337v44.267c0 1.291-1.142 2.337-2.551 2.337z" fill="url(#_Linear2)" fill-rule="nonzero" transform="translate(-.043 -.213)"/><path d="M59.406 45.518v.989a2.974 2.974 0 01-2.98 2.966H5.574a2.974 2.974 0 01-2.98-2.966v-.989h56.812z" fill="url(#_Linear3)" fill-rule="nonzero" transform="translate(-.043 -.213)"/><g fill="#c2cece" fill-rule="nonzero"><path d="M14.543 4.106h32.83v1.863h-32.83zM14.543 11.556h32.83v1.863h-32.83zM14.543 19.177h32.83v1.863h-32.83zM14.543 26.797h32.83v1.863h-32.83z"/></g><path d="M51.497 21.422c-2.546 0-4.878-.905-6.691-2.41l-.709.124 15.309 15.241V17.819a10.452 10.452 0 01-7.909 3.603z" fill="url(#_Linear4)" fill-rule="nonzero" transform="translate(-.043 -.213)"/><path d="M61.957 20.723V55.46A2.547 2.547 0 0159.406 58H2.594a2.547 2.547 0 01-2.551-2.54V20.723L31.34 45.3l30.617-24.577z" fill="url(#_Linear5)" fill-rule="nonzero" transform="translate(-.043 -.213)"/><path d="M61.613 56.73L32.942 33.715a2.561 2.561 0 00-3.203 0L.63 57.081A2.552 2.552 0 002.594 58h56.812a2.55 2.55 0 002.207-1.27z" fill="url(#_Linear6)" fill-rule="nonzero" transform="translate(-.043 -.213)"/><g transform="translate(42.716 6.704)"><ellipse cx="8.7" cy="8.632" rx="8.369" ry="8.332" fill="url(#_Linear7)"/><path d="M6.813 5.295c0-.27.11-.483.329-.639l1.629-1.56a.578.578 0 01.423-.171c.188 0 .358.049.509.148a.454.454 0 01.228.398v10.323c0 .166-.084.299-.251.398-.167.098-.36.148-.58.148-.229 0-.425-.05-.587-.148-.162-.099-.243-.232-.243-.398v-8.67l-.548.686a.479.479 0 01-.345.156.491.491 0 01-.399-.211.728.728 0 01-.165-.46z" fill="#fff" fill-rule="nonzero"/></g><path d="M3.389 56.239V8.121a2.546 2.546 0 012.552-2.54H57.65c.501 0 .966.146 1.36.394a2.548 2.548 0 00-2.155-1.186H5.145a2.545 2.545 0 00-2.551 2.54v48.118c0 .904.476 1.696 1.191 2.146a2.518 2.518 0 01-.396-1.354z" fill="url(#_Linear8)" fill-rule="nonzero" transform="translate(-.043 -.213)"/><g><path d="M102.87 34.885H91.45c.013 1.326.28 2.495.801 3.507.52 1.013 1.212 1.775 2.074 2.289.863.513 1.815.77 2.855.77.7 0 1.337-.082 1.914-.246a6.228 6.228 0 001.68-.77 12.87 12.87 0 001.496-1.123 68.182 68.182 0 001.775-1.625c.3-.257.728-.385 1.284-.385.6 0 1.083.164 1.454.492.371.327.556.79.556 1.39 0 .527-.207 1.144-.62 1.85-.414.705-1.037 1.383-1.872 2.03-.834.65-1.882 1.188-3.143 1.616-1.262.428-2.713.642-4.353.642-3.749 0-6.665-1.07-8.747-3.208-2.08-2.14-3.122-5.04-3.122-8.705 0-1.725.256-3.325.77-4.801.513-1.476 1.262-2.741 2.245-3.796.984-1.055 2.196-1.864 3.636-2.428 1.44-.563 3.037-.844 4.791-.844 2.281 0 4.238.48 5.87 1.443 1.633.963 2.855 2.207 3.668 3.732.813 1.526 1.22 3.08 1.22 4.663 0 1.468-.42 2.42-1.263 2.855-.84.435-2.024.652-3.55.652zM91.45 31.57h10.585c-.142-1.996-.68-3.49-1.615-4.481-.933-.99-2.163-1.486-3.689-1.486-1.454 0-2.648.503-3.582 1.508-.934 1.005-1.5 2.49-1.7 4.459zm40.57 2.31v7.763c0 1.226-.279 2.146-.835 2.759-.556.613-1.29.92-2.203.92-.884 0-1.6-.307-2.149-.92-.549-.613-.823-1.533-.823-2.76V32.34c0-1.47-.05-2.61-.15-3.422-.1-.813-.37-1.48-.813-2-.442-.52-1.14-.78-2.096-.78-1.91 0-3.168.656-3.774 1.967-.606 1.312-.909 3.194-.909 5.646v7.892c0 1.212-.275 2.128-.824 2.748-.549.62-1.272.93-2.17.93-.884 0-1.608-.31-2.17-.93-.564-.62-.846-1.536-.846-2.748V24.94c0-1.098.253-1.932.76-2.502.505-.57 1.172-.856 2-.856.797 0 1.464.268 2 .802.533.535.801 1.273.801 2.214v.556c1.012-1.212 2.095-2.103 3.25-2.673 1.155-.571 2.438-.856 3.85-.856 1.468 0 2.73.292 3.785.877 1.055.585 1.925 1.469 2.61 2.652.983-1.198 2.038-2.085 3.165-2.663 1.126-.577 2.374-.866 3.742-.866 1.597 0 2.973.314 4.128.94a5.99 5.99 0 012.588 2.696c.5 1.055.748 2.716.748 4.983v11.399c0 1.226-.278 2.146-.834 2.759-.556.613-1.29.92-2.203.92-.883 0-1.607-.31-2.17-.931-.563-.62-.845-1.536-.845-2.748v-9.816c0-1.255-.053-2.26-.16-3.016-.107-.756-.396-1.39-.867-1.903-.47-.514-1.183-.77-2.138-.77-.77 0-1.5.228-2.192.684a4.642 4.642 0 00-1.615 1.839c-.428.984-.642 2.724-.642 5.219zm34.09 8.148c-1.412 1.098-2.777 1.92-4.096 2.47-1.319.549-2.798.824-4.438.824-1.497 0-2.812-.296-3.945-.888-1.134-.592-2.007-1.394-2.62-2.406a6.242 6.242 0 01-.92-3.293c0-1.597.506-2.96 1.52-4.085 1.011-1.127 2.401-1.882 4.17-2.267.37-.086 1.29-.278 2.758-.578 1.468-.3 2.727-.574 3.775-.823a73.28 73.28 0 003.411-.91c-.072-1.54-.382-2.67-.93-3.39-.549-.72-1.687-1.08-3.412-1.08-1.483 0-2.598.208-3.347.62-.748.415-1.39 1.035-1.925 1.862-.534.827-.912 1.372-1.133 1.636-.22.264-.695.396-1.422.396a2.493 2.493 0 01-1.7-.631c-.478-.421-.717-.96-.717-1.615 0-1.026.364-2.024 1.091-2.994.727-.97 1.86-1.768 3.4-2.395 1.54-.628 3.458-.941 5.753-.941 2.567 0 4.584.303 6.053.909 1.468.606 2.506 1.564 3.111 2.876.606 1.312.91 3.05.91 5.218a490.822 490.822 0 01-.043 6.673c0 1.098.181 2.242.545 3.433.364 1.19.545 1.957.545 2.299 0 .599-.28 1.144-.844 1.636s-1.202.738-1.915.738c-.598 0-1.19-.282-1.775-.845-.584-.563-1.204-1.38-1.86-2.45zm-.385-8.448c-.856.314-2.1.646-3.732.995-1.633.349-2.763.606-3.39.77-.627.164-1.226.485-1.796.962-.57.478-.856 1.144-.856 2 0 .884.335 1.636 1.005 2.256.67.62 1.547.93 2.631.93 1.155 0 2.22-.253 3.197-.76.977-.505 1.693-1.157 2.15-1.956.527-.884.791-2.338.791-4.363v-.834zm17.494-8.683V41.77c0 1.17-.278 2.054-.834 2.652-.556.599-1.262.899-2.117.899-.856 0-1.55-.307-2.085-.92-.535-.613-.802-1.49-.802-2.631V25.068c0-1.154.267-2.024.802-2.61.534-.583 1.23-.876 2.085-.876s1.561.293 2.117.877c.556.585.834 1.398.834 2.438zm-2.887-6.031c-.813 0-1.508-.25-2.085-.748-.578-.5-.866-1.205-.866-2.118 0-.826.295-1.507.887-2.042a2.983 2.983 0 012.064-.802c.756 0 1.426.242 2.01.727.585.485.877 1.19.877 2.117 0 .899-.285 1.6-.855 2.107a2.962 2.962 0 01-2.032.759zm8.918 22.905V16.45c0-1.17.26-2.054.781-2.652.52-.6 1.222-.9 2.106-.9.884 0 1.597.297 2.14.889.541.592.812 1.479.812 2.663v25.32c0 1.185-.275 2.072-.824 2.664-.549.592-1.258.888-2.128.888-.855 0-1.55-.307-2.085-.92-.535-.613-.802-1.49-.802-2.631z" fill="#393a40"/></g><defs><linearGradient id="_Linear1" x1="0" y1="0" x2="1" y2="0" gradientUnits="userSpaceOnUse" gradientTransform="scale(67.7627) rotate(21.255 -.008 .003)"><stop offset="0" stop-color="#8075e1"/><stop offset="1" stop-color="#c86dd7"/></linearGradient><linearGradient id="_Linear2" x1="0" y1="0" x2="1" y2="0" gradientUnits="userSpaceOnUse" gradientTransform="rotate(42.487 -6.761 14.965) scale(80.6819)"><stop offset="0" stop-color="#fff"/><stop offset="1" stop-color="#e8efee"/></linearGradient><linearGradient id="_Linear3" x1="0" y1="0" x2="1" y2="0" gradientUnits="userSpaceOnUse" gradientTransform="rotate(175.418 29.05 23.73) scale(60.21678)"><stop offset="0" stop-color="#c2cece" stop-opacity="0"/><stop offset=".18" stop-color="#afbcbc" stop-opacity=".18"/><stop offset="1" stop-color="#5b6a6a"/></linearGradient><linearGradient id="_Linear4" x1="0" y1="0" x2="1" y2="0" gradientUnits="userSpaceOnUse" gradientTransform="scale(-19.687) rotate(44.873 .118 -4.37)"><stop offset="0" stop-color="#c2cece" stop-opacity="0"/><stop offset=".18" stop-color="#afbcbc" stop-opacity=".18"/><stop offset="1" stop-color="#5b6a6a"/></linearGradient><linearGradient id="_Linear5" x1="0" y1="0" x2="1" y2="0" gradientUnits="userSpaceOnUse" gradientTransform="scale(73.5245) rotate(30.802 -.511 .142)"><stop offset="0" stop-color="#5c53b8"/><stop offset="1" stop-color="#bf75cb"/></linearGradient><linearGradient id="_Linear6" x1="0" y1="0" x2="1" y2="0" gradientUnits="userSpaceOnUse" gradientTransform="rotate(21.972 -85.074 18.198) scale(67.075)"><stop offset="0" stop-color="#463e8e"/><stop offset="1" stop-color="#9a50b6"/></linearGradient><linearGradient id="_Linear7" x1="0" y1="0" x2="1" y2="0" gradientUnits="userSpaceOnUse" gradientTransform="rotate(90 4.2 4.5) scale(16.6632)"><stop offset="0" stop-color="#f5515f"/><stop offset="1" stop-color="#9f041b"/></linearGradient><linearGradient id="_Linear8" x1="0" y1="0" x2="1" y2="0" gradientUnits="userSpaceOnUse" gradientTransform="rotate(-135.128 11.805 5.092) scale(61.4422)"><stop offset="0" stop-color="#c2cece" stop-opacity="0"/><stop offset=".18" stop-color="#afbcbc" stop-opacity=".18"/><stop offset="1" stop-color="#5b6a6a"/></linearGradient></defs></svg> \ No newline at end of file +<svg viewBox="0 0 196 58" xmlns="http://www.w3.org/2000/svg" fill-rule="evenodd" clip-rule="evenodd" stroke-linejoin="round" stroke-miterlimit="2"><path d="M29.396.694L.043 20.79v3.745h61.914V20.79L32.604.694c-.936-.641-2.272-.641-3.208 0z" fill="url(#_Linear1)" fill-rule="nonzero" transform="translate(-.043 -.213)"/><path d="M56.855 53.73H5.145c-1.409 0-2.551-1.046-2.551-2.337V7.126c0-1.291 1.142-2.337 2.551-2.337h51.71c1.409 0 2.551 1.046 2.551 2.337v44.267c0 1.291-1.142 2.337-2.551 2.337z" fill="url(#_Linear2)" fill-rule="nonzero" transform="translate(-.043 -.213)"/><path d="M59.406 45.518v.989a2.974 2.974 0 01-2.98 2.966H5.574a2.974 2.974 0 01-2.98-2.966v-.989h56.812z" fill="url(#_Linear3)" fill-rule="nonzero" transform="translate(-.043 -.213)"/><g fill="#c2cece" fill-rule="nonzero"><path d="M14.543 4.106h32.83v1.863h-32.83zM14.543 11.556h32.83v1.863h-32.83zM14.543 19.177h32.83v1.863h-32.83zM14.543 26.797h32.83v1.863h-32.83z"/></g><path d="M51.497 21.422c-2.546 0-4.878-.905-6.691-2.41l-.709.124 15.309 15.241V17.819a10.452 10.452 0 01-7.909 3.603z" fill="url(#_Linear4)" fill-rule="nonzero" transform="translate(-.043 -.213)"/><path d="M61.957 20.723V55.46A2.547 2.547 0 0159.406 58H2.594a2.547 2.547 0 01-2.551-2.54V20.723L31.34 45.3l30.617-24.577z" fill="url(#_Linear5)" fill-rule="nonzero" transform="translate(-.043 -.213)"/><path d="M61.613 56.73L32.942 33.715a2.561 2.561 0 00-3.203 0L.63 57.081A2.552 2.552 0 002.594 58h56.812a2.55 2.55 0 002.207-1.27z" fill="url(#_Linear6)" fill-rule="nonzero" transform="translate(-.043 -.213)"/><g transform="translate(42.716 6.704)"><ellipse cx="8.7" cy="8.632" rx="8.369" ry="8.332" fill="url(#_Linear7)"/><path d="M6.813 5.295c0-.27.11-.483.329-.639l1.629-1.56a.578.578 0 01.423-.171c.188 0 .358.049.509.148a.454.454 0 01.228.398v10.323c0 .166-.084.299-.251.398-.167.098-.36.148-.58.148-.229 0-.425-.05-.587-.148-.162-.099-.243-.232-.243-.398v-8.67l-.548.686a.479.479 0 01-.345.156.491.491 0 01-.399-.211.728.728 0 01-.165-.46z" fill="#fff" fill-rule="nonzero"/></g><path d="M3.389 56.239V8.121a2.546 2.546 0 012.552-2.54H57.65c.501 0 .966.146 1.36.394a2.548 2.548 0 00-2.155-1.186H5.145a2.545 2.545 0 00-2.551 2.54v48.118c0 .904.476 1.696 1.191 2.146a2.518 2.518 0 01-.396-1.354z" fill="url(#_Linear8)" fill-rule="nonzero" transform="translate(-.043 -.213)"/><g><path class="text" d="M102.87 34.885H91.45c.013 1.326.28 2.495.801 3.507.52 1.013 1.212 1.775 2.074 2.289.863.513 1.815.77 2.855.77.7 0 1.337-.082 1.914-.246a6.228 6.228 0 001.68-.77 12.87 12.87 0 001.496-1.123 68.182 68.182 0 001.775-1.625c.3-.257.728-.385 1.284-.385.6 0 1.083.164 1.454.492.371.327.556.79.556 1.39 0 .527-.207 1.144-.62 1.85-.414.705-1.037 1.383-1.872 2.03-.834.65-1.882 1.188-3.143 1.616-1.262.428-2.713.642-4.353.642-3.749 0-6.665-1.07-8.747-3.208-2.08-2.14-3.122-5.04-3.122-8.705 0-1.725.256-3.325.77-4.801.513-1.476 1.262-2.741 2.245-3.796.984-1.055 2.196-1.864 3.636-2.428 1.44-.563 3.037-.844 4.791-.844 2.281 0 4.238.48 5.87 1.443 1.633.963 2.855 2.207 3.668 3.732.813 1.526 1.22 3.08 1.22 4.663 0 1.468-.42 2.42-1.263 2.855-.84.435-2.024.652-3.55.652zM91.45 31.57h10.585c-.142-1.996-.68-3.49-1.615-4.481-.933-.99-2.163-1.486-3.689-1.486-1.454 0-2.648.503-3.582 1.508-.934 1.005-1.5 2.49-1.7 4.459zm40.57 2.31v7.763c0 1.226-.279 2.146-.835 2.759-.556.613-1.29.92-2.203.92-.884 0-1.6-.307-2.149-.92-.549-.613-.823-1.533-.823-2.76V32.34c0-1.47-.05-2.61-.15-3.422-.1-.813-.37-1.48-.813-2-.442-.52-1.14-.78-2.096-.78-1.91 0-3.168.656-3.774 1.967-.606 1.312-.909 3.194-.909 5.646v7.892c0 1.212-.275 2.128-.824 2.748-.549.62-1.272.93-2.17.93-.884 0-1.608-.31-2.17-.93-.564-.62-.846-1.536-.846-2.748V24.94c0-1.098.253-1.932.76-2.502.505-.57 1.172-.856 2-.856.797 0 1.464.268 2 .802.533.535.801 1.273.801 2.214v.556c1.012-1.212 2.095-2.103 3.25-2.673 1.155-.571 2.438-.856 3.85-.856 1.468 0 2.73.292 3.785.877 1.055.585 1.925 1.469 2.61 2.652.983-1.198 2.038-2.085 3.165-2.663 1.126-.577 2.374-.866 3.742-.866 1.597 0 2.973.314 4.128.94a5.99 5.99 0 012.588 2.696c.5 1.055.748 2.716.748 4.983v11.399c0 1.226-.278 2.146-.834 2.759-.556.613-1.29.92-2.203.92-.883 0-1.607-.31-2.17-.931-.563-.62-.845-1.536-.845-2.748v-9.816c0-1.255-.053-2.26-.16-3.016-.107-.756-.396-1.39-.867-1.903-.47-.514-1.183-.77-2.138-.77-.77 0-1.5.228-2.192.684a4.642 4.642 0 00-1.615 1.839c-.428.984-.642 2.724-.642 5.219zm34.09 8.148c-1.412 1.098-2.777 1.92-4.096 2.47-1.319.549-2.798.824-4.438.824-1.497 0-2.812-.296-3.945-.888-1.134-.592-2.007-1.394-2.62-2.406a6.242 6.242 0 01-.92-3.293c0-1.597.506-2.96 1.52-4.085 1.011-1.127 2.401-1.882 4.17-2.267.37-.086 1.29-.278 2.758-.578 1.468-.3 2.727-.574 3.775-.823a73.28 73.28 0 003.411-.91c-.072-1.54-.382-2.67-.93-3.39-.549-.72-1.687-1.08-3.412-1.08-1.483 0-2.598.208-3.347.62-.748.415-1.39 1.035-1.925 1.862-.534.827-.912 1.372-1.133 1.636-.22.264-.695.396-1.422.396a2.493 2.493 0 01-1.7-.631c-.478-.421-.717-.96-.717-1.615 0-1.026.364-2.024 1.091-2.994.727-.97 1.86-1.768 3.4-2.395 1.54-.628 3.458-.941 5.753-.941 2.567 0 4.584.303 6.053.909 1.468.606 2.506 1.564 3.111 2.876.606 1.312.91 3.05.91 5.218a490.822 490.822 0 01-.043 6.673c0 1.098.181 2.242.545 3.433.364 1.19.545 1.957.545 2.299 0 .599-.28 1.144-.844 1.636s-1.202.738-1.915.738c-.598 0-1.19-.282-1.775-.845-.584-.563-1.204-1.38-1.86-2.45zm-.385-8.448c-.856.314-2.1.646-3.732.995-1.633.349-2.763.606-3.39.77-.627.164-1.226.485-1.796.962-.57.478-.856 1.144-.856 2 0 .884.335 1.636 1.005 2.256.67.62 1.547.93 2.631.93 1.155 0 2.22-.253 3.197-.76.977-.505 1.693-1.157 2.15-1.956.527-.884.791-2.338.791-4.363v-.834zm17.494-8.683V41.77c0 1.17-.278 2.054-.834 2.652-.556.599-1.262.899-2.117.899-.856 0-1.55-.307-2.085-.92-.535-.613-.802-1.49-.802-2.631V25.068c0-1.154.267-2.024.802-2.61.534-.583 1.23-.876 2.085-.876s1.561.293 2.117.877c.556.585.834 1.398.834 2.438zm-2.887-6.031c-.813 0-1.508-.25-2.085-.748-.578-.5-.866-1.205-.866-2.118 0-.826.295-1.507.887-2.042a2.983 2.983 0 012.064-.802c.756 0 1.426.242 2.01.727.585.485.877 1.19.877 2.117 0 .899-.285 1.6-.855 2.107a2.962 2.962 0 01-2.032.759zm8.918 22.905V16.45c0-1.17.26-2.054.781-2.652.52-.6 1.222-.9 2.106-.9.884 0 1.597.297 2.14.889.541.592.812 1.479.812 2.663v25.32c0 1.185-.275 2.072-.824 2.664-.549.592-1.258.888-2.128.888-.855 0-1.55-.307-2.085-.92-.535-.613-.802-1.49-.802-2.631z"/></g><defs><linearGradient id="_Linear1" x1="0" y1="0" x2="1" y2="0" gradientUnits="userSpaceOnUse" gradientTransform="scale(67.7627) rotate(21.255 -.008 .003)"><stop offset="0" stop-color="#8075e1"/><stop offset="1" stop-color="#c86dd7"/></linearGradient><linearGradient id="_Linear2" x1="0" y1="0" x2="1" y2="0" gradientUnits="userSpaceOnUse" gradientTransform="rotate(42.487 -6.761 14.965) scale(80.6819)"><stop offset="0" stop-color="#fff"/><stop offset="1" stop-color="#e8efee"/></linearGradient><linearGradient id="_Linear3" x1="0" y1="0" x2="1" y2="0" gradientUnits="userSpaceOnUse" gradientTransform="rotate(175.418 29.05 23.73) scale(60.21678)"><stop offset="0" stop-color="#c2cece" stop-opacity="0"/><stop offset=".18" stop-color="#afbcbc" stop-opacity=".18"/><stop offset="1" stop-color="#5b6a6a"/></linearGradient><linearGradient id="_Linear4" x1="0" y1="0" x2="1" y2="0" gradientUnits="userSpaceOnUse" gradientTransform="scale(-19.687) rotate(44.873 .118 -4.37)"><stop offset="0" stop-color="#c2cece" stop-opacity="0"/><stop offset=".18" stop-color="#afbcbc" stop-opacity=".18"/><stop offset="1" stop-color="#5b6a6a"/></linearGradient><linearGradient id="_Linear5" x1="0" y1="0" x2="1" y2="0" gradientUnits="userSpaceOnUse" gradientTransform="scale(73.5245) rotate(30.802 -.511 .142)"><stop offset="0" stop-color="#5c53b8"/><stop offset="1" stop-color="#bf75cb"/></linearGradient><linearGradient id="_Linear6" x1="0" y1="0" x2="1" y2="0" gradientUnits="userSpaceOnUse" gradientTransform="rotate(21.972 -85.074 18.198) scale(67.075)"><stop offset="0" stop-color="#463e8e"/><stop offset="1" stop-color="#9a50b6"/></linearGradient><linearGradient id="_Linear7" x1="0" y1="0" x2="1" y2="0" gradientUnits="userSpaceOnUse" gradientTransform="rotate(90 4.2 4.5) scale(16.6632)"><stop offset="0" stop-color="#f5515f"/><stop offset="1" stop-color="#9f041b"/></linearGradient><linearGradient id="_Linear8" x1="0" y1="0" x2="1" y2="0" gradientUnits="userSpaceOnUse" gradientTransform="rotate(-135.128 11.805 5.092) scale(61.4422)"><stop offset="0" stop-color="#c2cece" stop-opacity="0"/><stop offset=".18" stop-color="#afbcbc" stop-opacity=".18"/><stop offset="1" stop-color="#5b6a6a"/></linearGradient></defs></svg> \ No newline at end of file diff --git a/ui/apps/platform/src/images/ghcr.svg b/ui/apps/platform/src/images/ghcr.svg index f75f0fe2b6550..4d770a3c1b5e4 100644 --- a/ui/apps/platform/src/images/ghcr.svg +++ b/ui/apps/platform/src/images/ghcr.svg @@ -4,15 +4,16 @@ viewBox="0 0 367.4 90" style="enable-background:new 0 0 367.4 90;" xml:space="preserve"> <style type="text/css"> .st0{fill:#1B1F24;} + .text{fill:#1B1F24;} </style> <g> - <path class="st0" d="M46.1,0C20.6,0,0,20.6,0,46.1c0,20.4,13.2,37.7,31.5,43.8c2.3,0.4,3.2-1,3.2-2.2c0-1.1-0.1-4.7-0.1-8.6 + <path class="st0 text" d="M46.1,0C20.6,0,0,20.6,0,46.1c0,20.4,13.2,37.7,31.5,43.8c2.3,0.4,3.2-1,3.2-2.2c0-1.1-0.1-4.7-0.1-8.6 c-11.6,2.1-14.6-2.8-15.5-5.4c-0.5-1.3-2.8-5.4-4.7-6.5c-1.6-0.9-3.9-3-0.1-3.1c3.6-0.1,6.2,3.3,7.1,4.7c4.2,7,10.8,5,13.4,3.8 c0.4-3,1.6-5,2.9-6.2c-10.3-1.2-21-5.1-21-22.8c0-5,1.8-9.2,4.7-12.4c-0.5-1.2-2.1-5.9,0.5-12.2c0,0,3.9-1.2,12.7,4.7 c3.7-1,7.6-1.6,11.5-1.6c3.9,0,7.8,0.5,11.5,1.6c8.8-6,12.7-4.7,12.7-4.7c2.5,6.3,0.9,11.1,0.5,12.2c2.9,3.2,4.7,7.3,4.7,12.4 c0,17.7-10.8,21.6-21.1,22.8c1.7,1.4,3.1,4.2,3.1,8.5c0,6.2-0.1,11.1-0.1,12.7c0,1.2,0.9,2.7,3.2,2.2c18.2-6.1,31.4-23.4,31.4-43.8 C92.3,20.6,71.6,0,46.1,0z"/> - <path class="st0" d="M221.6,67.1h-0.1C221.6,67.1,221.6,67.1,221.6,67.1L221.6,67.1L221.6,67.1z M221.6,67.1 + <path class="st0 text" d="M221.6,67.1h-0.1C221.6,67.1,221.6,67.1,221.6,67.1L221.6,67.1L221.6,67.1z M221.6,67.1 c-0.5,0-1.8,0.3-3.2,0.3c-4.4,0-5.9-2-5.9-4.6V45.3h8.9c0.5,0,0.9-0.4,0.9-1.1v-9.5c0-0.5-0.4-0.9-0.9-0.9h-8.9V22.1 c0-0.4-0.3-0.7-0.8-0.7h-12c-0.5,0-0.8,0.3-0.8,0.7v12.1c0,0-6.1,1.5-6.5,1.6c-0.4,0.1-0.7,0.5-0.7,0.9v7.6c0,0.6,0.4,1.1,0.9,1.1 h6.2v18.3c0,13.6,9.5,15,16,15c3,0,6.5-0.9,7.1-1.2c0.3-0.1,0.5-0.5,0.5-0.9v-8.4C222.5,67.6,222.1,67.2,221.6,67.1z M353.8,54.9 diff --git a/ui/apps/platform/src/images/google-artifact.svg b/ui/apps/platform/src/images/google-artifact.svg index 24692212e5f29..cf87c48de9f51 100644 --- a/ui/apps/platform/src/images/google-artifact.svg +++ b/ui/apps/platform/src/images/google-artifact.svg @@ -1 +1 @@ -<svg viewBox="0 0 271 107" xmlns="http://www.w3.org/2000/svg" fill-rule="evenodd" clip-rule="evenodd" stroke-linejoin="round" stroke-miterlimit="2"><path d="M169.573 39.486c-1.747 3.08-3.5 6.157-5.26 9.23-2.98 5.16-5.98 10.32-9 15.48a6.217 6.217 0 01-5.29 3.32c-4.21.12-8.43 0-12.65 0-.06-.41-.4-.6-.65-.85l-20-20c-.32-.32-.73-.59-.71-1.12.25.12.5.23.74.37 2 1.127 4 2.267 6 3.42.47.28.64.21.63-.35v-2.84a1.004 1.004 0 00-.63-1.09c-1.21-.66-2.39-1.39-3.62-2.05a1.133 1.133 0 01-.65-1.13v-16.14a1.193 1.193 0 01.74-1.21c1.21-.65 2.37-1.38 3.58-2 .417-.198.663-.642.61-1.1v-3c.521.16.985.466 1.34.88l4.39 4.39c.23.24.53.43.53.82-.69.46-.58.76.14 1.12 1.03.529 2.03 1.11 3 1.74a1.222 1.222 0 001.43 0c1.25-.74 2.53-1.44 3.8-2.16.34.17.63.37.59.81a41.034 41.034 0 00-4.4 2.43c-.29.17-.29.44-.29.72v4c0 .65.2.65.68.36 1.1-.66 2.2-1.31 3.34-1.92.453-.187.73-.653.68-1.14v-4.5c.32-.06.5.16.7.35l4.23 4 4.97 4.75c.17.22.432.349.71.35.18 1.89-.06 3.8.11 5.68a2.01 2.01 0 01-1.5 2.34c-.11 0-.23.07-.34.12a8.926 8.926 0 00-2.94 1.9c-.52.61-.1 1.71-.15 2.59v.83c-.06.68.17.71.71.4 2.37-1.39 4.76-2.77 7.16-4.12.497-.227.8-.746.75-1.29v-20.56c.52-.07.76.34 1 .63a7610.23 7610.23 0 0112.38 12.39c1.11 1.04 2.12 2.1 3.14 3.15zm-34.59-4.52l4.28 2.49a.6.6 0 00.68 0c1.23-.73 2.47-1.45 3.71-2.16.47-.26.4-.43 0-.66-1.22-.69-2.43-1.4-3.64-2.1a.621.621 0 00-.68-.09c-1.43.82-2.85 1.63-4.35 2.52zm-2.42 0l-4.31-2.5a.472.472 0 00-.52 0l-4.4 2.54 4.32 2.49a.6.6 0 00.61 0l4.3-2.53zm-4.08 5.68v2.42c0 .51.11.67.62.37 1.15-.69 2.32-1.34 3.48-2a.832.832 0 00.51-.79v-4.11c0-.54-.18-.67-.65-.39a13.13 13.13 0 01-1.82 1c-1.84.72-2.7 1.86-2.14 3.5zm4.56-9.57v-2a.81.81 0 00-.44-.82c-1.2-.68-2.38-1.38-3.56-2.08-.54-.32-.61-.06-.6.41v4c-.025.404.22.78.6.92 1.07.58 2.14 1.18 3.18 1.82.6.37.87.37.83-.43-.03-.59-.01-1.21-.01-1.82zm-5.56 10c-.03-.58-.03-1.16 0-1.74a1.254 1.254 0 00-.77-1.38c-1-.51-2-1.12-2.93-1.69-.82-.47-.89-.44-.9.47.04.456.04.914 0 1.37-.4 2.21.31 3.76 2.54 4.46.08 0 .15.1.23.14.57.28 1.23 1 1.65.79.42-.21.12-1.16.17-1.78.01-.18.01-.4.01-.64zm12.55-.45v2.42c0 .7.15.66.63.37 1.15-.69 2.32-1.36 3.49-2a.772.772 0 00.48-.79v-4c0-.57-.14-.75-.68-.42-.555.375-1.136.71-1.74 1-1.73.69-2.73 1.76-2.17 3.45l-.01-.03zm-.95.34v-2a.811.811 0 00-.46-.82c-1.17-.66-2.33-1.34-3.49-2-.45-.26-.66-.19-.66.38v4.13a.692.692 0 00.36.68c1.22.69 2.43 1.4 3.65 2.1.38.21.58.13.58-.33l.02-2.14z" fill="#4e7cd7" fill-rule="nonzero"/><path d="M103.043 19.816c1.68-2.94 3.34-5.9 5-8.84 1.4-2.44 2.82-4.87 4.22-7.3a6.849 6.849 0 016.32-3.67h30.63a6.778 6.778 0 016.26 3.6l8.76 15.16c.082.16.152.328.21.5h-15a2.537 2.537 0 00-1.72.42c-.85-.46-1.72-.9-2.54-1.41-.63-.38-.79-.2-.73.45a1.51 1.51 0 01-.05.36h-16.73a3.725 3.725 0 01-3.27-1.2c-.3-.37-.76-.57-1.09.05l-3.83 2.14a2.474 2.474 0 00-1.34-.22l-15.1-.04z" fill="#5388f2" fill-rule="nonzero"/><path d="M103.043 19.816h15.12c.456-.037.912.053 1.32.26-1.28.74-2.54 1.5-3.83 2.2a1.495 1.495 0 00-.88 1.5v19.14c0 1.14-.13 2.26 1.29 2.67 0 .53.39.8.71 1.12l20 20c.25.25.59.44.65.85-1.5 0-3 0-4.49.06h-14.32a6.869 6.869 0 01-6.33-3.67l-15-26a7.342 7.342 0 01-.1-8c1.89-3.18 3.71-6.4 5.56-9.61.06-.26.19-.37.3-.52zM147.693 19.696a2.537 2.537 0 011.72-.42h15c1.52 2.573 3.033 5.15 4.54 7.73.62 1 1.21 2.12 1.83 3.17a6.78 6.78 0 010 7.21c-.41.71-.85 1.41-1.27 2.11-1-1-2-2.11-3.07-3.14-4.12-4.14-8.247-8.27-12.38-12.39-.29-.29-.53-.7-1-.63a1.073 1.073 0 00-.67-.86c-1.58-.89-3.14-1.85-4.7-2.78zM123.283 17.966c.33-.62.79-.42 1.09-.05a3.725 3.725 0 003.27 1.2h16.73c.035.69.035 1.38 0 2.07-.07.78.13 1.32.92 1.55a17.217 17.217 0 003.94 4.09c.08 2.88.13 5.75 0 8.63a.901.901 0 01-.71-.35l-4.95-4.76-4.23-4c-.2-.19-.38-.41-.7-.35 0-.44-.25-.64-.58-.81a27.455 27.455 0 00-4.19-2.54 1.001 1.001 0 00-1.15.13c-1 .64-2 1.16-3 1.73 0-.39-.3-.58-.53-.82l-4.39-4.39a2.888 2.888 0 00-1.34-.88l-.18-.45z" fill="#5487ec" fill-rule="nonzero"/><path d="M145.333 22.716c1.19.67 2.41 1.29 3.57 2 .83.52.32 1.38.37 2.09a17.217 17.217 0 01-3.94-4.09z" fill="#4e7cd7" fill-rule="nonzero"/><path d="M14.533 98.486a6.319 6.319 0 01-2.79 1.84 11.635 11.635 0 01-4 .65 7.935 7.935 0 01-4-1 6.72 6.72 0 01-2.74-2.9 10.328 10.328 0 01-1-4.5v-1.21a10.916 10.916 0 01.9-4.61 6.647 6.647 0 012.59-3 7.494 7.494 0 014-1 7.393 7.393 0 014.94 1.51 6.453 6.453 0 012.11 4.39h-3.57a3.552 3.552 0 00-1.08-2.24 3.472 3.472 0 00-2.3-.7c-1.12-.07-2.2.446-2.85 1.36a7.342 7.342 0 00-1 4.17v1.14a6.997 6.997 0 001.06 4.22 3.602 3.602 0 003.13 1.47 4.003 4.003 0 002.94-.88v-3.12h-3.33v-2.7h7l-.01 7.11zM16.723 94.006a7.756 7.756 0 01.76-3.5 5.565 5.565 0 012.17-2.38 6.396 6.396 0 013.31-.84 6.005 6.005 0 014.36 1.63 6.572 6.572 0 011.89 4.45v.9a6.922 6.922 0 01-1.7 4.88c-2.53 2.427-6.58 2.427-9.11 0a7.003 7.003 0 01-1.7-5l.02-.14zm3.53.25a4.937 4.937 0 00.7 2.88 2.551 2.551 0 004 0 5.415 5.415 0 00.72-3.15 4.871 4.871 0 00-.72-2.86 2.512 2.512 0 00-4 0 5.5 5.5 0 00-.7 3.13zM30.863 94.006a7.893 7.893 0 01.75-3.5 5.594 5.594 0 012.18-2.38 6.378 6.378 0 013.3-.84 6.002 6.002 0 014.39 1.63 6.615 6.615 0 011.88 4.45v.9a6.922 6.922 0 01-1.7 4.88c-2.53 2.427-6.58 2.427-9.11 0a7.003 7.003 0 01-1.7-5l.01-.14zm3.52.25a4.94 4.94 0 00.71 2.88 2.331 2.331 0 002 1 2.353 2.353 0 002-1 5.415 5.415 0 00.72-3.15 4.871 4.871 0 00-.72-2.86 2.344 2.344 0 00-2-1 2.312 2.312 0 00-2 1 5.493 5.493 0 00-.71 3.13zM45.033 94.076a7.785 7.785 0 011.44-4.9 4.723 4.723 0 013.9-1.85 4.082 4.082 0 013.38 1.49l.15-1.25h3.2v12.77a5.62 5.62 0 01-.79 3 5.063 5.063 0 01-2.21 2 7.802 7.802 0 01-3.35.67 7.17 7.17 0 01-2.83-.58 5 5 0 01-2.09-1.49l1.57-2.15a4.12 4.12 0 003.19 1.47 3 3 0 002.19-.75 2.82 2.82 0 00.78-2.13v-.7a4.09 4.09 0 01-3.21 1.37 4.672 4.672 0 01-3.87-1.97 7.732 7.732 0 01-1.47-4.94l.02-.06zm3.52.26a4.82 4.82 0 00.72 2.82 2.291 2.291 0 002 1 2.445 2.445 0 002.31-1.21v-5.56a2.432 2.432 0 00-2.28-1.21 2.291 2.291 0 00-2 1 5.427 5.427 0 00-.75 3.12v.04zM59.993 81.986h3.54v18.75h-3.54zM72.483 100.976a6.46 6.46 0 01-4.73-1.78 6.332 6.332 0 01-1.83-4.75v-.37a8.062 8.062 0 01.77-3.56 5.614 5.614 0 012.18-2.41 6.075 6.075 0 013.22-.85 5.46 5.46 0 014.26 1.71 6.922 6.922 0 011.56 4.84v1.44h-8.41a3.268 3.268 0 001 2.08c.6.53 1.38.809 2.18.78a3.784 3.784 0 003.18-1.48l1.74 1.94a5.348 5.348 0 01-2.15 1.76 7.148 7.148 0 01-2.97.65zm-.41-10.85a2.223 2.223 0 00-1.7.71 3.825 3.825 0 00-.84 2h4.95v-.28a2.599 2.599 0 00-.63-1.82 2.292 2.292 0 00-1.74-.61h-.04zM96.483 97.076h-6.42l-1.22 3.66h-3.89l6.53-17.77h3.4l6.65 17.77h-3.85l-1.2-3.66zm-5.43-3h4.43l-2.23-6.65-2.2 6.65zM110.423 90.836a10.584 10.584 0 00-1.27-.1 2.576 2.576 0 00-2.62 1.36v8.64h-3.53v-13.21h3.33l.15 1.55a3.265 3.265 0 012.94-1.82c.373-.004.744.05 1.1.16l-.1 3.42zM116.953 84.286v3.24h2.26v2.55h-2.26v6.59c-.036.372.063.745.28 1.05.301.25.692.366 1.08.32.335.002.67-.028 1-.09v2.68a7.286 7.286 0 01-2.13.31c-2.48 0-3.74-1.24-3.79-3.74v-7.12h-1.91v-2.55h1.93v-3.24h3.54zM121.153 84.076a1.731 1.731 0 01.53-1.3 2.276 2.276 0 012.89 0 1.7 1.7 0 01.53 1.3c.018.497-.179.978-.54 1.32a2.246 2.246 0 01-2.87 0 1.733 1.733 0 01-.54-1.32zm3.75 16.63h-3.54v-13.18h3.54v13.18zM128.773 100.736v-10.66h-2v-2.55h2v-1.12a4.574 4.574 0 011.27-3.45 4.932 4.932 0 013.57-1.23 8.54 8.54 0 011.8.25v2.73a4.635 4.635 0 00-1.07-.11c-1.33 0-2 .62-2 1.87v1.06h2.62v2.55h-2.62v10.62l-3.57.04zM144.423 100.736a3.908 3.908 0 01-.36-1.18 4.253 4.253 0 01-3.33 1.42 4.7 4.7 0 01-3.22-1.12 3.602 3.602 0 01-1.27-2.83 3.743 3.743 0 011.55-3.22 7.7 7.7 0 014.5-1.14h1.63v-.76a2.196 2.196 0 00-.47-1.46 1.857 1.857 0 00-1.49-.55 2.093 2.093 0 00-1.4.43 1.452 1.452 0 00-.5 1.17h-3.53a3.593 3.593 0 01.71-2.13 4.68 4.68 0 012-1.53 7.294 7.294 0 012.91-.55 5.812 5.812 0 013.87 1.22 4.29 4.29 0 011.44 3.45v5.73a6.215 6.215 0 00.52 2.84v.21h-3.56zm-2.94-2.45c.501.003.996-.118 1.44-.35a2.288 2.288 0 001-.94v-2.27h-1.32c-1.77 0-2.71.61-2.82 1.84v.2a1.42 1.42 0 00.46 1.09c.345.292.788.446 1.24.43zM155.663 98.136a2.32 2.32 0 001.59-.54 1.9 1.9 0 00.63-1.43h3.31a4.523 4.523 0 01-.73 2.46 4.787 4.787 0 01-2 1.74 6.144 6.144 0 01-2.76.61 5.742 5.742 0 01-4.47-1.8 7.111 7.111 0 01-1.63-5v-.23a7.003 7.003 0 011.64-4.87 5.653 5.653 0 014.46-1.82 5.56 5.56 0 014 1.41 5.003 5.003 0 011.52 3.75h-3.34a2.455 2.455 0 00-.63-1.67 2.361 2.361 0 00-3.48.25 5.223 5.223 0 00-.62 2.92v.36a5.267 5.267 0 00.62 2.94 2.152 2.152 0 001.89.92zM167.483 84.286v3.24h2.26v2.55h-2.26v6.59c-.036.372.063.745.28 1.05.297.249.685.365 1.07.32.335 0 .67-.03 1-.09v2.68a7.281 7.281 0 01-2.14.31c-2.47 0-3.73-1.24-3.78-3.74v-7.12h-1.93v-2.55h1.93v-3.24h3.57zM184.693 94.226h-2.92v6.51h-3.66v-17.77h6.6a7.453 7.453 0 014.86 1.4 4.854 4.854 0 011.71 4 5.419 5.419 0 01-.79 3 5.34 5.34 0 01-2.39 1.94l3.85 7.26v.17h-3.93l-3.33-6.51zm-2.92-3h3a3.06 3.06 0 002.14-.7 2.54 2.54 0 00.76-1.94 2.682 2.682 0 00-.72-2 3.003 3.003 0 00-2.19-.72h-2.94l-.05 5.36zM199.913 100.976a6.473 6.473 0 01-4.73-1.78 6.332 6.332 0 01-1.83-4.75v-.37a8.062 8.062 0 01.77-3.56 5.668 5.668 0 012.18-2.41 6.075 6.075 0 013.22-.85 5.46 5.46 0 014.26 1.71 6.922 6.922 0 011.56 4.84v1.44h-8.41a3.268 3.268 0 001 2.08c.6.529 1.381.808 2.18.78a3.814 3.814 0 003.19-1.48l1.73 1.94a5.348 5.348 0 01-2.15 1.76 7.148 7.148 0 01-2.97.65zm-.4-10.85a2.242 2.242 0 00-1.71.71 3.75 3.75 0 00-.83 2h4.9v-.28a2.55 2.55 0 00-.63-1.82 2.268 2.268 0 00-1.76-.61h.03zM206.833 94.076a7.723 7.723 0 011.45-4.9 4.692 4.692 0 013.9-1.85 4.094 4.094 0 013.38 1.49l.15-1.25h3.19v12.77a5.703 5.703 0 01-.78 3 5.157 5.157 0 01-2.22 2 7.757 7.757 0 01-3.34.67 7.22 7.22 0 01-2.84-.58 4.995 4.995 0 01-2.08-1.49l1.56-2.15a4.141 4.141 0 003.2 1.47c.797.05 1.582-.22 2.18-.75a2.82 2.82 0 00.78-2.13v-.7a4.09 4.09 0 01-3.21 1.37 4.683 4.683 0 01-3.85-1.86 7.732 7.732 0 01-1.47-4.94v-.17zm3.53.26a4.82 4.82 0 00.72 2.82 2.291 2.291 0 002 1 2.435 2.435 0 002.3-1.21v-5.56a2.432 2.432 0 00-2.28-1.21 2.27 2.27 0 00-2 1 5.35 5.35 0 00-.74 3.12v.04zM221.593 84.076a1.731 1.731 0 01.53-1.3 2.276 2.276 0 012.89 0 1.88 1.88 0 010 2.62 2.246 2.246 0 01-2.87 0 1.73 1.73 0 01-.55-1.32zm3.75 16.63h-3.54v-13.18h3.54v13.18zM235.403 97.076a1.15 1.15 0 00-.65-1 6.997 6.997 0 00-2-.66c-3.14-.667-4.71-2-4.71-4a3.613 3.613 0 011.44-2.95 5.895 5.895 0 013.82-1.18 6.315 6.315 0 014 1.18 3.73 3.73 0 011.51 3.08h-3.53c.017-.466-.16-.92-.49-1.25a2 2 0 00-1.52-.5 2.14 2.14 0 00-1.38.4c-.307.24-.488.61-.49 1 0 .395.214.76.56.95a5.804 5.804 0 001.87.62c.754.138 1.497.335 2.22.59 1.86.69 2.8 1.87 2.8 3.55a3.464 3.464 0 01-1.55 2.93 6.744 6.744 0 01-4 1.11 6.91 6.91 0 01-3-.59 4.88 4.88 0 01-2-1.62 3.758 3.758 0 01-.73-2.23h3.35c-.004.56.251 1.092.69 1.44a2.718 2.718 0 001.73.5 2.63 2.63 0 001.54-.38c.323-.226.517-.596.52-.99zM245.323 84.286v3.24h2.26v2.55h-2.26v6.59c-.036.372.063.745.28 1.05.298.248.685.364 1.07.32.335 0 .67-.03 1-.09v2.68a7.286 7.286 0 01-2.13.31c-2.48 0-3.74-1.24-3.79-3.74v-7.12h-1.93v-2.55h1.93v-3.24h3.57zM256.973 90.836a10.794 10.794 0 00-1.27-.1 2.584 2.584 0 00-2.63 1.36v8.64h-3.53v-13.21h3.34l.09 1.58a3.265 3.265 0 012.94-1.82c.373-.005.744.049 1.1.16l-.04 3.39zM263.813 95.746l2.45-8.22h3.78l-5.31 15.26-.29.7a4.008 4.008 0 01-3.91 2.58 5.357 5.357 0 01-1.56-.23v-2.67h.51a3.004 3.004 0 001.5-.3c.358-.241.628-.592.77-1l.42-1.08-4.63-13.25h3.8l2.47 8.21z" fill="#333" fill-rule="nonzero"/></svg> \ No newline at end of file +<svg viewBox="0 0 271 107" xmlns="http://www.w3.org/2000/svg" fill-rule="evenodd" clip-rule="evenodd" stroke-linejoin="round" stroke-miterlimit="2"><path d="M169.573 39.486c-1.747 3.08-3.5 6.157-5.26 9.23-2.98 5.16-5.98 10.32-9 15.48a6.217 6.217 0 01-5.29 3.32c-4.21.12-8.43 0-12.65 0-.06-.41-.4-.6-.65-.85l-20-20c-.32-.32-.73-.59-.71-1.12.25.12.5.23.74.37 2 1.127 4 2.267 6 3.42.47.28.64.21.63-.35v-2.84a1.004 1.004 0 00-.63-1.09c-1.21-.66-2.39-1.39-3.62-2.05a1.133 1.133 0 01-.65-1.13v-16.14a1.193 1.193 0 01.74-1.21c1.21-.65 2.37-1.38 3.58-2 .417-.198.663-.642.61-1.1v-3c.521.16.985.466 1.34.88l4.39 4.39c.23.24.53.43.53.82-.69.46-.58.76.14 1.12 1.03.529 2.03 1.11 3 1.74a1.222 1.222 0 001.43 0c1.25-.74 2.53-1.44 3.8-2.16.34.17.63.37.59.81a41.034 41.034 0 00-4.4 2.43c-.29.17-.29.44-.29.72v4c0 .65.2.65.68.36 1.1-.66 2.2-1.31 3.34-1.92.453-.187.73-.653.68-1.14v-4.5c.32-.06.5.16.7.35l4.23 4 4.97 4.75c.17.22.432.349.71.35.18 1.89-.06 3.8.11 5.68a2.01 2.01 0 01-1.5 2.34c-.11 0-.23.07-.34.12a8.926 8.926 0 00-2.94 1.9c-.52.61-.1 1.71-.15 2.59v.83c-.06.68.17.71.71.4 2.37-1.39 4.76-2.77 7.16-4.12.497-.227.8-.746.75-1.29v-20.56c.52-.07.76.34 1 .63a7610.23 7610.23 0 0112.38 12.39c1.11 1.04 2.12 2.1 3.14 3.15zm-34.59-4.52l4.28 2.49a.6.6 0 00.68 0c1.23-.73 2.47-1.45 3.71-2.16.47-.26.4-.43 0-.66-1.22-.69-2.43-1.4-3.64-2.1a.621.621 0 00-.68-.09c-1.43.82-2.85 1.63-4.35 2.52zm-2.42 0l-4.31-2.5a.472.472 0 00-.52 0l-4.4 2.54 4.32 2.49a.6.6 0 00.61 0l4.3-2.53zm-4.08 5.68v2.42c0 .51.11.67.62.37 1.15-.69 2.32-1.34 3.48-2a.832.832 0 00.51-.79v-4.11c0-.54-.18-.67-.65-.39a13.13 13.13 0 01-1.82 1c-1.84.72-2.7 1.86-2.14 3.5zm4.56-9.57v-2a.81.81 0 00-.44-.82c-1.2-.68-2.38-1.38-3.56-2.08-.54-.32-.61-.06-.6.41v4c-.025.404.22.78.6.92 1.07.58 2.14 1.18 3.18 1.82.6.37.87.37.83-.43-.03-.59-.01-1.21-.01-1.82zm-5.56 10c-.03-.58-.03-1.16 0-1.74a1.254 1.254 0 00-.77-1.38c-1-.51-2-1.12-2.93-1.69-.82-.47-.89-.44-.9.47.04.456.04.914 0 1.37-.4 2.21.31 3.76 2.54 4.46.08 0 .15.1.23.14.57.28 1.23 1 1.65.79.42-.21.12-1.16.17-1.78.01-.18.01-.4.01-.64zm12.55-.45v2.42c0 .7.15.66.63.37 1.15-.69 2.32-1.36 3.49-2a.772.772 0 00.48-.79v-4c0-.57-.14-.75-.68-.42-.555.375-1.136.71-1.74 1-1.73.69-2.73 1.76-2.17 3.45l-.01-.03zm-.95.34v-2a.811.811 0 00-.46-.82c-1.17-.66-2.33-1.34-3.49-2-.45-.26-.66-.19-.66.38v4.13a.692.692 0 00.36.68c1.22.69 2.43 1.4 3.65 2.1.38.21.58.13.58-.33l.02-2.14z" fill="#4e7cd7" fill-rule="nonzero"/><path d="M103.043 19.816c1.68-2.94 3.34-5.9 5-8.84 1.4-2.44 2.82-4.87 4.22-7.3a6.849 6.849 0 016.32-3.67h30.63a6.778 6.778 0 016.26 3.6l8.76 15.16c.082.16.152.328.21.5h-15a2.537 2.537 0 00-1.72.42c-.85-.46-1.72-.9-2.54-1.41-.63-.38-.79-.2-.73.45a1.51 1.51 0 01-.05.36h-16.73a3.725 3.725 0 01-3.27-1.2c-.3-.37-.76-.57-1.09.05l-3.83 2.14a2.474 2.474 0 00-1.34-.22l-15.1-.04z" fill="#5388f2" fill-rule="nonzero"/><path d="M103.043 19.816h15.12c.456-.037.912.053 1.32.26-1.28.74-2.54 1.5-3.83 2.2a1.495 1.495 0 00-.88 1.5v19.14c0 1.14-.13 2.26 1.29 2.67 0 .53.39.8.71 1.12l20 20c.25.25.59.44.65.85-1.5 0-3 0-4.49.06h-14.32a6.869 6.869 0 01-6.33-3.67l-15-26a7.342 7.342 0 01-.1-8c1.89-3.18 3.71-6.4 5.56-9.61.06-.26.19-.37.3-.52zM147.693 19.696a2.537 2.537 0 011.72-.42h15c1.52 2.573 3.033 5.15 4.54 7.73.62 1 1.21 2.12 1.83 3.17a6.78 6.78 0 010 7.21c-.41.71-.85 1.41-1.27 2.11-1-1-2-2.11-3.07-3.14-4.12-4.14-8.247-8.27-12.38-12.39-.29-.29-.53-.7-1-.63a1.073 1.073 0 00-.67-.86c-1.58-.89-3.14-1.85-4.7-2.78zM123.283 17.966c.33-.62.79-.42 1.09-.05a3.725 3.725 0 003.27 1.2h16.73c.035.69.035 1.38 0 2.07-.07.78.13 1.32.92 1.55a17.217 17.217 0 003.94 4.09c.08 2.88.13 5.75 0 8.63a.901.901 0 01-.71-.35l-4.95-4.76-4.23-4c-.2-.19-.38-.41-.7-.35 0-.44-.25-.64-.58-.81a27.455 27.455 0 00-4.19-2.54 1.001 1.001 0 00-1.15.13c-1 .64-2 1.16-3 1.73 0-.39-.3-.58-.53-.82l-4.39-4.39a2.888 2.888 0 00-1.34-.88l-.18-.45z" fill="#5487ec" fill-rule="nonzero"/><path d="M145.333 22.716c1.19.67 2.41 1.29 3.57 2 .83.52.32 1.38.37 2.09a17.217 17.217 0 01-3.94-4.09z" fill="#4e7cd7" fill-rule="nonzero"/><path d="M14.533 98.486a6.319 6.319 0 01-2.79 1.84 11.635 11.635 0 01-4 .65 7.935 7.935 0 01-4-1 6.72 6.72 0 01-2.74-2.9 10.328 10.328 0 01-1-4.5v-1.21a10.916 10.916 0 01.9-4.61 6.647 6.647 0 012.59-3 7.494 7.494 0 014-1 7.393 7.393 0 014.94 1.51 6.453 6.453 0 012.11 4.39h-3.57a3.552 3.552 0 00-1.08-2.24 3.472 3.472 0 00-2.3-.7c-1.12-.07-2.2.446-2.85 1.36a7.342 7.342 0 00-1 4.17v1.14a6.997 6.997 0 001.06 4.22 3.602 3.602 0 003.13 1.47 4.003 4.003 0 002.94-.88v-3.12h-3.33v-2.7h7l-.01 7.11zM16.723 94.006a7.756 7.756 0 01.76-3.5 5.565 5.565 0 012.17-2.38 6.396 6.396 0 013.31-.84 6.005 6.005 0 014.36 1.63 6.572 6.572 0 011.89 4.45v.9a6.922 6.922 0 01-1.7 4.88c-2.53 2.427-6.58 2.427-9.11 0a7.003 7.003 0 01-1.7-5l.02-.14zm3.53.25a4.937 4.937 0 00.7 2.88 2.551 2.551 0 004 0 5.415 5.415 0 00.72-3.15 4.871 4.871 0 00-.72-2.86 2.512 2.512 0 00-4 0 5.5 5.5 0 00-.7 3.13zM30.863 94.006a7.893 7.893 0 01.75-3.5 5.594 5.594 0 012.18-2.38 6.378 6.378 0 013.3-.84 6.002 6.002 0 014.39 1.63 6.615 6.615 0 011.88 4.45v.9a6.922 6.922 0 01-1.7 4.88c-2.53 2.427-6.58 2.427-9.11 0a7.003 7.003 0 01-1.7-5l.01-.14zm3.52.25a4.94 4.94 0 00.71 2.88 2.331 2.331 0 002 1 2.353 2.353 0 002-1 5.415 5.415 0 00.72-3.15 4.871 4.871 0 00-.72-2.86 2.344 2.344 0 00-2-1 2.312 2.312 0 00-2 1 5.493 5.493 0 00-.71 3.13zM45.033 94.076a7.785 7.785 0 011.44-4.9 4.723 4.723 0 013.9-1.85 4.082 4.082 0 013.38 1.49l.15-1.25h3.2v12.77a5.62 5.62 0 01-.79 3 5.063 5.063 0 01-2.21 2 7.802 7.802 0 01-3.35.67 7.17 7.17 0 01-2.83-.58 5 5 0 01-2.09-1.49l1.57-2.15a4.12 4.12 0 003.19 1.47 3 3 0 002.19-.75 2.82 2.82 0 00.78-2.13v-.7a4.09 4.09 0 01-3.21 1.37 4.672 4.672 0 01-3.87-1.97 7.732 7.732 0 01-1.47-4.94l.02-.06zm3.52.26a4.82 4.82 0 00.72 2.82 2.291 2.291 0 002 1 2.445 2.445 0 002.31-1.21v-5.56a2.432 2.432 0 00-2.28-1.21 2.291 2.291 0 00-2 1 5.427 5.427 0 00-.75 3.12v.04zM59.993 81.986h3.54v18.75h-3.54zM72.483 100.976a6.46 6.46 0 01-4.73-1.78 6.332 6.332 0 01-1.83-4.75v-.37a8.062 8.062 0 01.77-3.56 5.614 5.614 0 012.18-2.41 6.075 6.075 0 013.22-.85 5.46 5.46 0 014.26 1.71 6.922 6.922 0 011.56 4.84v1.44h-8.41a3.268 3.268 0 001 2.08c.6.53 1.38.809 2.18.78a3.784 3.784 0 003.18-1.48l1.74 1.94a5.348 5.348 0 01-2.15 1.76 7.148 7.148 0 01-2.97.65zm-.41-10.85a2.223 2.223 0 00-1.7.71 3.825 3.825 0 00-.84 2h4.95v-.28a2.599 2.599 0 00-.63-1.82 2.292 2.292 0 00-1.74-.61h-.04zM96.483 97.076h-6.42l-1.22 3.66h-3.89l6.53-17.77h3.4l6.65 17.77h-3.85l-1.2-3.66zm-5.43-3h4.43l-2.23-6.65-2.2 6.65zM110.423 90.836a10.584 10.584 0 00-1.27-.1 2.576 2.576 0 00-2.62 1.36v8.64h-3.53v-13.21h3.33l.15 1.55a3.265 3.265 0 012.94-1.82c.373-.004.744.05 1.1.16l-.1 3.42zM116.953 84.286v3.24h2.26v2.55h-2.26v6.59c-.036.372.063.745.28 1.05.301.25.692.366 1.08.32.335.002.67-.028 1-.09v2.68a7.286 7.286 0 01-2.13.31c-2.48 0-3.74-1.24-3.79-3.74v-7.12h-1.91v-2.55h1.93v-3.24h3.54zM121.153 84.076a1.731 1.731 0 01.53-1.3 2.276 2.276 0 012.89 0 1.7 1.7 0 01.53 1.3c.018.497-.179.978-.54 1.32a2.246 2.246 0 01-2.87 0 1.733 1.733 0 01-.54-1.32zm3.75 16.63h-3.54v-13.18h3.54v13.18zM128.773 100.736v-10.66h-2v-2.55h2v-1.12a4.574 4.574 0 011.27-3.45 4.932 4.932 0 013.57-1.23 8.54 8.54 0 011.8.25v2.73a4.635 4.635 0 00-1.07-.11c-1.33 0-2 .62-2 1.87v1.06h2.62v2.55h-2.62v10.62l-3.57.04zM144.423 100.736a3.908 3.908 0 01-.36-1.18 4.253 4.253 0 01-3.33 1.42 4.7 4.7 0 01-3.22-1.12 3.602 3.602 0 01-1.27-2.83 3.743 3.743 0 011.55-3.22 7.7 7.7 0 014.5-1.14h1.63v-.76a2.196 2.196 0 00-.47-1.46 1.857 1.857 0 00-1.49-.55 2.093 2.093 0 00-1.4.43 1.452 1.452 0 00-.5 1.17h-3.53a3.593 3.593 0 01.71-2.13 4.68 4.68 0 012-1.53 7.294 7.294 0 012.91-.55 5.812 5.812 0 013.87 1.22 4.29 4.29 0 011.44 3.45v5.73a6.215 6.215 0 00.52 2.84v.21h-3.56zm-2.94-2.45c.501.003.996-.118 1.44-.35a2.288 2.288 0 001-.94v-2.27h-1.32c-1.77 0-2.71.61-2.82 1.84v.2a1.42 1.42 0 00.46 1.09c.345.292.788.446 1.24.43zM155.663 98.136a2.32 2.32 0 001.59-.54 1.9 1.9 0 00.63-1.43h3.31a4.523 4.523 0 01-.73 2.46 4.787 4.787 0 01-2 1.74 6.144 6.144 0 01-2.76.61 5.742 5.742 0 01-4.47-1.8 7.111 7.111 0 01-1.63-5v-.23a7.003 7.003 0 011.64-4.87 5.653 5.653 0 014.46-1.82 5.56 5.56 0 014 1.41 5.003 5.003 0 011.52 3.75h-3.34a2.455 2.455 0 00-.63-1.67 2.361 2.361 0 00-3.48.25 5.223 5.223 0 00-.62 2.92v.36a5.267 5.267 0 00.62 2.94 2.152 2.152 0 001.89.92zM167.483 84.286v3.24h2.26v2.55h-2.26v6.59c-.036.372.063.745.28 1.05.297.249.685.365 1.07.32.335 0 .67-.03 1-.09v2.68a7.281 7.281 0 01-2.14.31c-2.47 0-3.73-1.24-3.78-3.74v-7.12h-1.93v-2.55h1.93v-3.24h3.57zM184.693 94.226h-2.92v6.51h-3.66v-17.77h6.6a7.453 7.453 0 014.86 1.4 4.854 4.854 0 011.71 4 5.419 5.419 0 01-.79 3 5.34 5.34 0 01-2.39 1.94l3.85 7.26v.17h-3.93l-3.33-6.51zm-2.92-3h3a3.06 3.06 0 002.14-.7 2.54 2.54 0 00.76-1.94 2.682 2.682 0 00-.72-2 3.003 3.003 0 00-2.19-.72h-2.94l-.05 5.36zM199.913 100.976a6.473 6.473 0 01-4.73-1.78 6.332 6.332 0 01-1.83-4.75v-.37a8.062 8.062 0 01.77-3.56 5.668 5.668 0 012.18-2.41 6.075 6.075 0 013.22-.85 5.46 5.46 0 014.26 1.71 6.922 6.922 0 011.56 4.84v1.44h-8.41a3.268 3.268 0 001 2.08c.6.529 1.381.808 2.18.78a3.814 3.814 0 003.19-1.48l1.73 1.94a5.348 5.348 0 01-2.15 1.76 7.148 7.148 0 01-2.97.65zm-.4-10.85a2.242 2.242 0 00-1.71.71 3.75 3.75 0 00-.83 2h4.9v-.28a2.55 2.55 0 00-.63-1.82 2.268 2.268 0 00-1.76-.61h.03zM206.833 94.076a7.723 7.723 0 011.45-4.9 4.692 4.692 0 013.9-1.85 4.094 4.094 0 013.38 1.49l.15-1.25h3.19v12.77a5.703 5.703 0 01-.78 3 5.157 5.157 0 01-2.22 2 7.757 7.757 0 01-3.34.67 7.22 7.22 0 01-2.84-.58 4.995 4.995 0 01-2.08-1.49l1.56-2.15a4.141 4.141 0 003.2 1.47c.797.05 1.582-.22 2.18-.75a2.82 2.82 0 00.78-2.13v-.7a4.09 4.09 0 01-3.21 1.37 4.683 4.683 0 01-3.85-1.86 7.732 7.732 0 01-1.47-4.94v-.17zm3.53.26a4.82 4.82 0 00.72 2.82 2.291 2.291 0 002 1 2.435 2.435 0 002.3-1.21v-5.56a2.432 2.432 0 00-2.28-1.21 2.27 2.27 0 00-2 1 5.35 5.35 0 00-.74 3.12v.04zM221.593 84.076a1.731 1.731 0 01.53-1.3 2.276 2.276 0 012.89 0 1.88 1.88 0 010 2.62 2.246 2.246 0 01-2.87 0 1.73 1.73 0 01-.55-1.32zm3.75 16.63h-3.54v-13.18h3.54v13.18zM235.403 97.076a1.15 1.15 0 00-.65-1 6.997 6.997 0 00-2-.66c-3.14-.667-4.71-2-4.71-4a3.613 3.613 0 011.44-2.95 5.895 5.895 0 013.82-1.18 6.315 6.315 0 014 1.18 3.73 3.73 0 011.51 3.08h-3.53c.017-.466-.16-.92-.49-1.25a2 2 0 00-1.52-.5 2.14 2.14 0 00-1.38.4c-.307.24-.488.61-.49 1 0 .395.214.76.56.95a5.804 5.804 0 001.87.62c.754.138 1.497.335 2.22.59 1.86.69 2.8 1.87 2.8 3.55a3.464 3.464 0 01-1.55 2.93 6.744 6.744 0 01-4 1.11 6.91 6.91 0 01-3-.59 4.88 4.88 0 01-2-1.62 3.758 3.758 0 01-.73-2.23h3.35c-.004.56.251 1.092.69 1.44a2.718 2.718 0 001.73.5 2.63 2.63 0 001.54-.38c.323-.226.517-.596.52-.99zM245.323 84.286v3.24h2.26v2.55h-2.26v6.59c-.036.372.063.745.28 1.05.298.248.685.364 1.07.32.335 0 .67-.03 1-.09v2.68a7.286 7.286 0 01-2.13.31c-2.48 0-3.74-1.24-3.79-3.74v-7.12h-1.93v-2.55h1.93v-3.24h3.57zM256.973 90.836a10.794 10.794 0 00-1.27-.1 2.584 2.584 0 00-2.63 1.36v8.64h-3.53v-13.21h3.34l.09 1.58a3.265 3.265 0 012.94-1.82c.373-.005.744.049 1.1.16l-.04 3.39zM263.813 95.746l2.45-8.22h3.78l-5.31 15.26-.29.7a4.008 4.008 0 01-3.91 2.58 5.357 5.357 0 01-1.56-.23v-2.67h.51a3.004 3.004 0 001.5-.3c.358-.241.628-.592.77-1l.42-1.08-4.63-13.25h3.8l2.47 8.21z" class="text" fill="#333" fill-rule="nonzero"/></svg> \ No newline at end of file diff --git a/ui/apps/platform/src/images/google-cloud.svg b/ui/apps/platform/src/images/google-cloud.svg index c479c8119ea6a..27872f699ac43 100644 --- a/ui/apps/platform/src/images/google-cloud.svg +++ b/ui/apps/platform/src/images/google-cloud.svg @@ -1 +1 @@ -<svg viewBox="0 0 338 37" xmlns="http://www.w3.org/2000/svg" fill-rule="evenodd" clip-rule="evenodd" stroke-linejoin="round" stroke-miterlimit="2"><path d="M14.433 7.389h21.288l-3.488-5.96C31.753.597 30.911 0 29.828 0h-18.04c-.964 0-1.925.479-2.407 1.43L3.85 11.085l10.584 18.233V7.389z" fill="#5273aa"/><path d="M14.433 29.317L3.85 11.084.36 17.043a2.787 2.787 0 000 2.74l9.021 15.494c.482.834 1.443 1.429 2.406 1.429h11.185l10.705-18.353-19.244 10.964z" fill="#fbbe0f"/><path d="M35.721 7.389H14.433l19.123 10.964-10.704 18.353h6.976c.962 0 1.924-.476 2.406-1.43l9.02-15.611a2.786 2.786 0 000-2.742l-5.533-9.534z" fill="#ea4638"/><path d="M27.182 7.389l6.374 10.964-6.374 10.964H14.433L8.058 18.353l6.375-10.964h12.75z" fill="#f0efeb"/><path d="M14.433 7.389h21.288l-3.488-5.96C31.753.597 30.911 0 29.828 0h-18.04c-.964 0-1.925.479-2.407 1.43L3.85 11.085l10.584 18.233V7.389z" fill="#4c8bf4"/><path d="M27.182 7.389l6.374 10.964-6.374 10.964H14.433L8.058 18.353l6.375-10.964h12.75z" fill="#f0efeb"/><g transform="translate(7.468 7.158)"><path d="M19.714.231l6.374 10.964-6.374 10.964H6.965L.59 11.195 6.965.231h12.749z" fill="#e1e1e1"/><ellipse cx="13.069" cy="11.342" rx="5.601" ry="5.55" fill="#fff"/></g><g fill="#4c4c4c"><path d="M314.75 15.017h2.886v2.026h.12c.842-1.43 2.766-2.503 4.451-2.503 2.285 0 3.848 1.073 4.57 2.74 1.082-1.667 2.766-2.74 5.051-2.74 3.608 0 5.172 2.503 5.172 6.078v8.819h-2.766v-8.342c0-2.98-1.203-3.933-3.248-3.933-2.165 0-3.728 2.264-3.728 4.409v7.985h-2.766v-8.343c0-2.98-1.204-3.932-3.248-3.932-2.165 0-3.728 2.265-3.728 4.41v7.984h-2.766V15.017zm-10.223 14.3v-14.3h2.645V17.4h.121c.601-1.67 2.645-2.742 4.21-2.742.841 0 1.442.119 2.043.358l-1.082 2.503a4.527 4.527 0 00-1.443-.24c-1.925 0-3.728 1.55-3.728 4.172v7.865h-2.766zm-4.932-7.15c0-3.336-2.285-5.244-4.69-5.244-2.406 0-4.69 1.908-4.69 5.244 0 3.337 2.284 5.244 4.69 5.244 2.405-.12 4.69-2.026 4.69-5.244zm2.766 0c0 4.41-3.126 7.628-7.457 7.628-4.33 0-7.457-3.338-7.457-7.628 0-4.41 3.127-7.627 7.457-7.627 4.331 0 7.457 3.218 7.457 7.627zM287.447 8.582l-.962 2.263c-.36-.118-.72-.238-1.203-.238-1.323 0-2.405.835-2.405 2.502v1.788h3.73V17.4h-3.73v11.916h-2.767V17.4h-2.645v-2.504h2.766v-1.788c0-2.98 2.044-4.885 5.172-4.885.842 0 1.443.119 2.044.358zm-17.68 16.445V17.52h-2.525v-2.503h2.525v-4.41h2.766v4.41h3.61v2.503h-3.61v7.388c0 1.669.722 2.384 1.925 2.384.481 0 .842 0 1.202-.238l.963 2.263c-.6.239-1.323.358-2.165.358-3.007-.12-4.69-1.788-4.69-4.648zm-6.494-1.906s-1.204-.954-3.488-.954c-2.887 0-3.969 1.549-3.969 2.86 0 1.55 1.563 2.265 3.007 2.265 2.164 0 4.45-1.788 4.45-4.171zm-10.344 1.906c0-3.217 3.007-5.005 6.374-5.005 1.925 0 3.368.596 3.97.834v-.358c0-2.145-1.805-3.455-3.729-3.455-1.563 0-3.007.715-3.487 2.025l-2.527-1.072c.481-1.311 2.286-3.456 5.894-3.456s6.494 2.145 6.494 6.197v8.7h-2.645V27.41h-.12c-.843 1.192-2.286 2.503-4.812 2.503-2.887-.12-5.412-1.907-5.412-4.887zm-5.052 4.29h2.767V8.344h-2.767v20.975zm-8.418-11.083c2.405 0 3.728-2.026 3.728-3.694 0-1.668-1.323-3.695-3.728-3.695h-4.57v7.389h4.57zm-7.337 11.083V8.343h7.216c3.488 0 6.615 2.62 6.615 6.197 0 3.576-3.127 6.197-6.615 6.197h-4.45v8.462h-2.766v.118zm-9.983-7.15c0-3.336-2.165-5.244-4.57-5.244-2.406 0-4.57 1.908-4.57 5.244 0 3.218 2.164 5.244 4.57 5.244 2.285-.12 4.57-2.026 4.57-5.244zm-12.027 0c0-4.41 3.247-7.627 6.855-7.627 2.286 0 4.09 1.192 4.931 2.503h.121l-.12-2.026V8.343h2.766v20.974h-2.526v-2.025h-.12c-.842 1.31-2.646 2.503-4.93 2.503-3.73 0-6.977-3.218-6.977-7.628zm-4.81 7.27v-2.145h-.12c-.843 1.31-2.648 2.503-4.572 2.503-3.728 0-5.533-2.503-5.533-6.08v-8.818h2.767v8.343c0 2.979 1.563 4.052 3.608 4.052 2.406 0 3.85-2.265 3.85-4.41v-7.865h2.765v14.42h-2.766zm-15.035-7.27c0-3.336-2.285-5.244-4.69-5.244-2.407 0-4.692 1.908-4.692 5.244 0 3.337 2.285 5.244 4.691 5.244 2.406-.12 4.691-2.026 4.691-5.244zm2.766 0c0 4.41-3.127 7.628-7.457 7.628s-7.457-3.338-7.457-7.628c0-4.41 3.127-7.627 7.457-7.627s7.457 3.218 7.457 7.627zm-19.724 7.15h2.766V8.344h-2.766v20.975zm-21.53-10.486c0-6.198 4.811-10.964 11.066-10.964 3.247 0 5.893 1.31 7.817 3.455l-1.924 1.787c-1.443-1.787-3.489-2.621-5.893-2.621-4.45 0-8.179 3.218-8.179 8.343 0 5.124 3.73 8.34 8.18 8.34 2.644 0 4.93-1.19 6.493-3.097l1.924 1.907c-1.803 2.145-4.81 3.694-8.418 3.694-6.255.12-11.066-4.53-11.066-10.844zM116.01 26.749c-2.359 0-4.347-1.971-4.347-4.674 0-2.725 1.988-4.718 4.346-4.718 2.335 0 4.161 1.993 4.161 4.718.023 2.726-1.826 4.674-4.16 4.674zm3.928-11.957v1.259h-.114c-.764-.916-2.243-1.74-4.115-1.74-3.907 0-7.49 3.389-7.49 7.764 0 4.329 3.583 7.72 7.49 7.72 1.872 0 3.351-.825 4.115-1.764h.114v1.123c0 2.954-1.594 4.535-4.16 4.535-2.104 0-3.398-1.49-3.93-2.75l-2.982 1.237c.855 2.062 3.144 4.582 6.935 4.582 4.023 0 7.421-2.337 7.421-8.063V14.792h-3.284zM98.95 26.749c-2.358 0-4.415-1.924-4.415-4.697 0-2.794 2.034-4.695 4.415-4.695 2.381 0 4.415 1.9 4.415 4.695 0 2.773-2.057 4.697-4.415 4.697zm0-12.416c-4.323 0-7.837 3.253-7.837 7.742 0 4.467 3.514 7.743 7.837 7.743 4.322 0 7.836-3.276 7.836-7.743 0-4.49-3.514-7.742-7.836-7.742zM81.842 26.749c-2.357 0-4.414-1.924-4.414-4.697 0-2.794 2.034-4.695 4.414-4.695 2.36 0 4.416 1.9 4.416 4.695 0 2.773-2.057 4.697-4.416 4.697zm0-12.416c-4.322 0-7.835 3.253-7.835 7.742 0 4.467 3.513 7.743 7.835 7.743 4.324 0 7.837-3.276 7.837-7.743 0-4.49-3.513-7.742-7.837-7.742zM49.18 17.792c0-6.643 5.618-12.025 12.321-12.025 3.7 0 6.334 1.443 8.322 3.32l-2.358 2.315c-1.41-1.33-3.329-2.36-5.964-2.36-4.877 0-8.692 3.894-8.692 8.728 0 4.833 3.815 8.726 8.692 8.726 3.167 0 4.97-1.26 6.126-2.405.947-.94 1.572-2.29 1.803-4.123H61.5v-3.275h11.165c.116.596.186 1.283.186 2.06 0 2.475-.67 5.52-2.867 7.675-2.15 2.198-4.878 3.367-8.484 3.367-6.703 0-12.32-5.383-12.32-12.003zM125.58 6.59H129v22.746h-3.42zM138.154 17.31c1.364 0 2.521.666 2.89 1.65l-6.98 2.864c-.094-2.98 2.333-4.513 4.09-4.513zm.255 9.439c-1.757 0-2.983-.802-3.79-2.337l10.448-4.284-.347-.87c-.647-1.741-2.636-4.925-6.68-4.925-4.023 0-7.375 3.139-7.375 7.742 0 4.329 3.305 7.743 7.744 7.743 3.583 0 5.64-2.177 6.52-3.437l-2.66-1.763c-.902 1.282-2.103 2.13-3.86 2.13z"/></g></svg> \ No newline at end of file +<svg viewBox="0 0 338 37" xmlns="http://www.w3.org/2000/svg" fill-rule="evenodd" clip-rule="evenodd" stroke-linejoin="round" stroke-miterlimit="2"><path d="M14.433 7.389h21.288l-3.488-5.96C31.753.597 30.911 0 29.828 0h-18.04c-.964 0-1.925.479-2.407 1.43L3.85 11.085l10.584 18.233V7.389z" fill="#5273aa"/><path d="M14.433 29.317L3.85 11.084.36 17.043a2.787 2.787 0 000 2.74l9.021 15.494c.482.834 1.443 1.429 2.406 1.429h11.185l10.705-18.353-19.244 10.964z" fill="#fbbe0f"/><path d="M35.721 7.389H14.433l19.123 10.964-10.704 18.353h6.976c.962 0 1.924-.476 2.406-1.43l9.02-15.611a2.786 2.786 0 000-2.742l-5.533-9.534z" fill="#ea4638"/><path d="M27.182 7.389l6.374 10.964-6.374 10.964H14.433L8.058 18.353l6.375-10.964h12.75z" fill="#f0efeb"/><path d="M14.433 7.389h21.288l-3.488-5.96C31.753.597 30.911 0 29.828 0h-18.04c-.964 0-1.925.479-2.407 1.43L3.85 11.085l10.584 18.233V7.389z" fill="#4c8bf4"/><path d="M27.182 7.389l6.374 10.964-6.374 10.964H14.433L8.058 18.353l6.375-10.964h12.75z" fill="#f0efeb"/><g transform="translate(7.468 7.158)"><path d="M19.714.231l6.374 10.964-6.374 10.964H6.965L.59 11.195 6.965.231h12.749z" fill="#e1e1e1"/><ellipse cx="13.069" cy="11.342" rx="5.601" ry="5.55" fill="#fff"/></g><g class="text" fill="#4c4c4c"><path d="M314.75 15.017h2.886v2.026h.12c.842-1.43 2.766-2.503 4.451-2.503 2.285 0 3.848 1.073 4.57 2.74 1.082-1.667 2.766-2.74 5.051-2.74 3.608 0 5.172 2.503 5.172 6.078v8.819h-2.766v-8.342c0-2.98-1.203-3.933-3.248-3.933-2.165 0-3.728 2.264-3.728 4.409v7.985h-2.766v-8.343c0-2.98-1.204-3.932-3.248-3.932-2.165 0-3.728 2.265-3.728 4.41v7.984h-2.766V15.017zm-10.223 14.3v-14.3h2.645V17.4h.121c.601-1.67 2.645-2.742 4.21-2.742.841 0 1.442.119 2.043.358l-1.082 2.503a4.527 4.527 0 00-1.443-.24c-1.925 0-3.728 1.55-3.728 4.172v7.865h-2.766zm-4.932-7.15c0-3.336-2.285-5.244-4.69-5.244-2.406 0-4.69 1.908-4.69 5.244 0 3.337 2.284 5.244 4.69 5.244 2.405-.12 4.69-2.026 4.69-5.244zm2.766 0c0 4.41-3.126 7.628-7.457 7.628-4.33 0-7.457-3.338-7.457-7.628 0-4.41 3.127-7.627 7.457-7.627 4.331 0 7.457 3.218 7.457 7.627zM287.447 8.582l-.962 2.263c-.36-.118-.72-.238-1.203-.238-1.323 0-2.405.835-2.405 2.502v1.788h3.73V17.4h-3.73v11.916h-2.767V17.4h-2.645v-2.504h2.766v-1.788c0-2.98 2.044-4.885 5.172-4.885.842 0 1.443.119 2.044.358zm-17.68 16.445V17.52h-2.525v-2.503h2.525v-4.41h2.766v4.41h3.61v2.503h-3.61v7.388c0 1.669.722 2.384 1.925 2.384.481 0 .842 0 1.202-.238l.963 2.263c-.6.239-1.323.358-2.165.358-3.007-.12-4.69-1.788-4.69-4.648zm-6.494-1.906s-1.204-.954-3.488-.954c-2.887 0-3.969 1.549-3.969 2.86 0 1.55 1.563 2.265 3.007 2.265 2.164 0 4.45-1.788 4.45-4.171zm-10.344 1.906c0-3.217 3.007-5.005 6.374-5.005 1.925 0 3.368.596 3.97.834v-.358c0-2.145-1.805-3.455-3.729-3.455-1.563 0-3.007.715-3.487 2.025l-2.527-1.072c.481-1.311 2.286-3.456 5.894-3.456s6.494 2.145 6.494 6.197v8.7h-2.645V27.41h-.12c-.843 1.192-2.286 2.503-4.812 2.503-2.887-.12-5.412-1.907-5.412-4.887zm-5.052 4.29h2.767V8.344h-2.767v20.975zm-8.418-11.083c2.405 0 3.728-2.026 3.728-3.694 0-1.668-1.323-3.695-3.728-3.695h-4.57v7.389h4.57zm-7.337 11.083V8.343h7.216c3.488 0 6.615 2.62 6.615 6.197 0 3.576-3.127 6.197-6.615 6.197h-4.45v8.462h-2.766v.118zm-9.983-7.15c0-3.336-2.165-5.244-4.57-5.244-2.406 0-4.57 1.908-4.57 5.244 0 3.218 2.164 5.244 4.57 5.244 2.285-.12 4.57-2.026 4.57-5.244zm-12.027 0c0-4.41 3.247-7.627 6.855-7.627 2.286 0 4.09 1.192 4.931 2.503h.121l-.12-2.026V8.343h2.766v20.974h-2.526v-2.025h-.12c-.842 1.31-2.646 2.503-4.93 2.503-3.73 0-6.977-3.218-6.977-7.628zm-4.81 7.27v-2.145h-.12c-.843 1.31-2.648 2.503-4.572 2.503-3.728 0-5.533-2.503-5.533-6.08v-8.818h2.767v8.343c0 2.979 1.563 4.052 3.608 4.052 2.406 0 3.85-2.265 3.85-4.41v-7.865h2.765v14.42h-2.766zm-15.035-7.27c0-3.336-2.285-5.244-4.69-5.244-2.407 0-4.692 1.908-4.692 5.244 0 3.337 2.285 5.244 4.691 5.244 2.406-.12 4.691-2.026 4.691-5.244zm2.766 0c0 4.41-3.127 7.628-7.457 7.628s-7.457-3.338-7.457-7.628c0-4.41 3.127-7.627 7.457-7.627s7.457 3.218 7.457 7.627zm-19.724 7.15h2.766V8.344h-2.766v20.975zm-21.53-10.486c0-6.198 4.811-10.964 11.066-10.964 3.247 0 5.893 1.31 7.817 3.455l-1.924 1.787c-1.443-1.787-3.489-2.621-5.893-2.621-4.45 0-8.179 3.218-8.179 8.343 0 5.124 3.73 8.34 8.18 8.34 2.644 0 4.93-1.19 6.493-3.097l1.924 1.907c-1.803 2.145-4.81 3.694-8.418 3.694-6.255.12-11.066-4.53-11.066-10.844zM116.01 26.749c-2.359 0-4.347-1.971-4.347-4.674 0-2.725 1.988-4.718 4.346-4.718 2.335 0 4.161 1.993 4.161 4.718.023 2.726-1.826 4.674-4.16 4.674zm3.928-11.957v1.259h-.114c-.764-.916-2.243-1.74-4.115-1.74-3.907 0-7.49 3.389-7.49 7.764 0 4.329 3.583 7.72 7.49 7.72 1.872 0 3.351-.825 4.115-1.764h.114v1.123c0 2.954-1.594 4.535-4.16 4.535-2.104 0-3.398-1.49-3.93-2.75l-2.982 1.237c.855 2.062 3.144 4.582 6.935 4.582 4.023 0 7.421-2.337 7.421-8.063V14.792h-3.284zM98.95 26.749c-2.358 0-4.415-1.924-4.415-4.697 0-2.794 2.034-4.695 4.415-4.695 2.381 0 4.415 1.9 4.415 4.695 0 2.773-2.057 4.697-4.415 4.697zm0-12.416c-4.323 0-7.837 3.253-7.837 7.742 0 4.467 3.514 7.743 7.837 7.743 4.322 0 7.836-3.276 7.836-7.743 0-4.49-3.514-7.742-7.836-7.742zM81.842 26.749c-2.357 0-4.414-1.924-4.414-4.697 0-2.794 2.034-4.695 4.414-4.695 2.36 0 4.416 1.9 4.416 4.695 0 2.773-2.057 4.697-4.416 4.697zm0-12.416c-4.322 0-7.835 3.253-7.835 7.742 0 4.467 3.513 7.743 7.835 7.743 4.324 0 7.837-3.276 7.837-7.743 0-4.49-3.513-7.742-7.837-7.742zM49.18 17.792c0-6.643 5.618-12.025 12.321-12.025 3.7 0 6.334 1.443 8.322 3.32l-2.358 2.315c-1.41-1.33-3.329-2.36-5.964-2.36-4.877 0-8.692 3.894-8.692 8.728 0 4.833 3.815 8.726 8.692 8.726 3.167 0 4.97-1.26 6.126-2.405.947-.94 1.572-2.29 1.803-4.123H61.5v-3.275h11.165c.116.596.186 1.283.186 2.06 0 2.475-.67 5.52-2.867 7.675-2.15 2.198-4.878 3.367-8.484 3.367-6.703 0-12.32-5.383-12.32-12.003zM125.58 6.59H129v22.746h-3.42zM138.154 17.31c1.364 0 2.521.666 2.89 1.65l-6.98 2.864c-.094-2.98 2.333-4.513 4.09-4.513zm.255 9.439c-1.757 0-2.983-.802-3.79-2.337l10.448-4.284-.347-.87c-.647-1.741-2.636-4.925-6.68-4.925-4.023 0-7.375 3.139-7.375 7.742 0 4.329 3.305 7.743 7.744 7.743 3.583 0 5.64-2.177 6.52-3.437l-2.66-1.763c-.902 1.282-2.103 2.13-3.86 2.13z"/></g></svg> \ No newline at end of file diff --git a/ui/apps/platform/src/images/google-container.svg b/ui/apps/platform/src/images/google-container.svg index b4a498c096b74..829a713fe0cb1 100644 --- a/ui/apps/platform/src/images/google-container.svg +++ b/ui/apps/platform/src/images/google-container.svg @@ -1 +1 @@ -<svg viewBox="0 0 295 105" xmlns="http://www.w3.org/2000/svg" fill-rule="evenodd" clip-rule="evenodd" stroke-linejoin="round" stroke-miterlimit="2"><path d="M135.124 49.45l3.15-3.14-4.68-4.72V26.97l4.68-4.71-3.15-3.15-6.25 6.29v17.77l6.25 6.28z" fill="#fff" fill-rule="nonzero"/><circle cx="181.45" cy="45.57" r="2.24" fill="#fff" transform="translate(-41.456 -11.29)"/><circle cx="188.1" cy="45.57" r="2.24" fill="#fff" transform="translate(-41.456 -11.29)"/><circle cx="194.78" cy="45.57" r="2.24" fill="#fff" transform="translate(-41.456 -11.29)"/><path d="M158.114 19.11l-3.1 3.15 4.68 4.71v14.62l-4.68 4.72 3.1 3.14 6.29-6.28V25.4l-6.29-6.29z" fill="#fff" fill-rule="nonzero"/><path d="M183.634 30.99l-15.63-27.16a7.007 7.007 0 00-5.86-3.51h-31.23a6.846 6.846 0 00-5.86 3.51l-15.63 27.08a6.84 6.84 0 000 6.78L125.054 65a7.065 7.065 0 005.86 3.63h31.27a7.006 7.006 0 005.86-3.59l15.63-27.15a6.898 6.898 0 00-.04-6.9zm-15.63 34a7.006 7.006 0 01-5.86 3.59h-8.18l-17.14-17.14 3.86-2.23-7.21-7.18v-3.98h2.11l-2-2a2.13 2.13 0 011.27-3.59l-1.43-1.43v-3.99l8.09-4.63-4.78-4.78 3.15-1.84h.08l6.58 3.75 6.46-3.75h.08l3.15 1.84 24.76 24.76-12.99 22.6z" fill="#4285f4" fill-rule="nonzero"/><path d="M149.744 21.42l9.8 5.62v4h-3.38v-2.13l-8.06-4.7v3.5h-3.23v-3.5l-8.05 4.7v2.12h-3.28l1.43 1.43h.24a2.128 2.128 0 011.974 2.115 2.128 2.128 0 01-1.974 2.115 2.19 2.19 0 01-1.51-.64l2 2h1.24v2.11l8.05 4.7v-3.43h3.23v3.43l8.06-4.7v-2.11h3.26v4l-9.8 5.66 6.53 3.78-3.15 1.84h-.07l-6.46-3.75-6.46 3.75h-.08l-3.15-1.84 17.14 17.14h8.18a7.006 7.006 0 005.86-3.59l13-22.61-24.77-24.72-6.57 3.71zm-3.2 18.46h-.01a2.13 2.13 0 01-2.12-2.12 2.13 2.13 0 012.12-2.12 2.13 2.13 0 012.12 2.12v.01a2.14 2.14 0 01-2.11 2.11zm0-6.38h-.01a2.13 2.13 0 01-2.12-2.12 2.13 2.13 0 012.12-2.12 2.13 2.13 0 012.12 2.12v.01a2.13 2.13 0 01-2.11 2.11zm11.37 3.21h-.01a2.13 2.13 0 01-2.12-2.12 2.13 2.13 0 012.12-2.12 2.13 2.13 0 012.12 2.12v.01a2.13 2.13 0 01-2.11 2.11z" fill="#4285f4" fill-rule="nonzero"/><path d="M149.744 21.42l9.8 5.62v4h-3.38v-2.13l-8.06-4.7v3.5h-3.23v-3.5l-8.05 4.7v2.12h-3.28l1.43 1.43h.24a2.128 2.128 0 011.974 2.115 2.128 2.128 0 01-1.974 2.115 2.19 2.19 0 01-1.51-.64l2 2h1.24v2.11l8.05 4.7v-3.43h3.23v3.43l8.06-4.7v-2.11h3.26v4l-9.8 5.66 6.53 3.78-3.15 1.84h-.07l-6.46-3.75-6.46 3.75h-.08l-3.15-1.84 17.14 17.14h8.18a7.006 7.006 0 005.86-3.59l13-22.61-24.77-24.72-6.57 3.71zm-3.2 18.46h-.01a2.13 2.13 0 01-2.12-2.12 2.13 2.13 0 012.12-2.12 2.13 2.13 0 012.12 2.12v.01a2.14 2.14 0 01-2.11 2.11zm0-6.38h-.01a2.13 2.13 0 01-2.12-2.12 2.13 2.13 0 012.12-2.12 2.13 2.13 0 012.12 2.12v.01a2.13 2.13 0 01-2.11 2.11zm11.37 3.21h-.01a2.13 2.13 0 01-2.12-2.12 2.13 2.13 0 012.12-2.12 2.13 2.13 0 012.12 2.12v.01a2.13 2.13 0 01-2.11 2.11z" fill-rule="nonzero"/><path d="M133.544 42.03l7.21 7.18 2.61-1.5-9.82-5.68z" fill="#4285f4" fill-rule="nonzero"/><path d="M133.544 42.03l7.21 7.18 2.61-1.5-9.82-5.68z" fill-rule="nonzero"/><path d="M136.824 17.63l4.78 4.78 1.72-1-6.5-3.78z" fill="#4285f4" fill-rule="nonzero"/><path d="M136.824 17.63l4.78 4.78 1.72-1-6.5-3.78z" fill-rule="nonzero"/><circle cx="199.37" cy="45.87" r="2.11" fill="#fff" transform="translate(-41.456 -11.29)"/><path d="M135.144 36.71a2.128 2.128 0 001.974-2.115 2.128 2.128 0 00-1.974-2.115.691.691 0 00-.24 0 2.129 2.129 0 00-1.87 2.12 2.002 2.002 0 00.6 1.47c.43.35.957.559 1.51.6v.04z" fill="#fff" fill-rule="nonzero"/><circle cx="188.01" cy="42.68" r="2.11" fill="#fff" transform="translate(-41.456 -11.29)"/><circle cx="188.01" cy="49.02" r="2.11" fill="#fff" transform="translate(-41.456 -11.29)"/><path d="M136.864 31.03v-2.16l8.05-4.7v3.47h3.23v-3.47l8.06 4.7v2.16h3.34v-4l-9.84-5.62 6.54-3.79-3.2-1.84h-.07l-6.43 3.76-6.5-3.75h-.08l-3.15 1.84 6.5 3.79-1.72 1-8.05 4.62v4l3.32-.01zm3.19 22.25l6.5-3.75 6.46 3.75h.07l3.2-1.84-6.54-3.73 9.8-5.68v-4h-3.38v2.15l-8.06 4.7v-3.41h-3.23v3.43l-8.05-4.7v-2.15h-3.28v4l9.82 5.66-2.68 1.51-3.86 2.23 3.15 1.84.08-.01z" fill="#fff" fill-rule="nonzero"/><path d="M183.674 30.71l-15.63-27.2a6.936 6.936 0 00-5.86-3.51h-31.27a6.936 6.936 0 00-5.86 3.51l-15.67 27.12a6.915 6.915 0 000 6.82l15.63 27.35a7.065 7.065 0 005.86 3.63h31.31a7.006 7.006 0 005.86-3.59l15.63-27.19a6.948 6.948 0 000-6.94z" fill="#4285f4" fill-rule="nonzero"/><path d="M165.544 23.21l-7.3-1.79-1.12 1.15 5.62 5.63v7.73l-11.56-11.6h-9.45l-5.94-5.94-6.19 5.32-2.16 21.51 23.21 23.21h11.53a7.006 7.006 0 005.86-3.59L182.314 40l-16.77-16.79z" fill-rule="nonzero"/><path d="M141.764 29.83l4.78 2.75 4.74-2.75v-5.5l-4.74-2.75-4.79 2.75.01 5.5zm6.54 11.21l4.78 2.75 4.75-2.75v-5.51l-4.75-2.71-4.78 2.71v5.51zm-13.08.16l4.79 2.75 4.74-2.75v-5.49l-4.74-2.75-4.79 2.75v5.49z" fill="#fff" fill-rule="nonzero"/><path d="M135.824 22.57l-4.75 2.76v17.78l4.75 2.75v4.19l-8.28-4.79V23.17l8.3-4.78-.02 4.18zm21.41 0l4.75 2.76v17.78l-4.75 2.75v4.19l8.31-4.79V23.17l-8.34-4.78.03 4.18z" fill="#fff" fill-rule="nonzero"/><path d="M14.544 97.12a6.296 6.296 0 01-2.8 1.84c-1.285.45-2.64.67-4 .65a8 8 0 01-4-1 6.708 6.708 0 01-2.74-2.9 10.152 10.152 0 01-1-4.5V90a10.928 10.928 0 01.89-4.61 6.647 6.647 0 012.59-3 7.542 7.542 0 014-1 7.47 7.47 0 015 1.51 6.495 6.495 0 012.06 4.35h-3.58a3.552 3.552 0 00-1.08-2.24 3.44 3.44 0 00-2.3-.7 3.264 3.264 0 00-2.84 1.4 7.427 7.427 0 00-1 4.18v1.13a6.997 6.997 0 001.06 4.22 3.622 3.622 0 003.12 1.47 4.062 4.062 0 002.95-.88v-3.12h-3.33v-2.7h7v7.11zM16.714 92.64a7.756 7.756 0 01.76-3.5 5.518 5.518 0 012.18-2.38 6.378 6.378 0 013.3-.84 6.005 6.005 0 014.36 1.63 6.572 6.572 0 011.89 4.45v.9a6.92 6.92 0 01-1.66 4.88c-2.53 2.427-6.58 2.427-9.11 0a7.003 7.003 0 01-1.71-5l-.01-.14zm3.53.25a4.94 4.94 0 00.71 2.88 2.323 2.323 0 002 1 2.362 2.362 0 002-1 5.415 5.415 0 00.72-3.15 4.871 4.871 0 00-.72-2.86 2.344 2.344 0 00-2-1 2.312 2.312 0 00-2 1 5.493 5.493 0 00-.71 3.13zM30.854 92.64a7.756 7.756 0 01.76-3.5 5.565 5.565 0 012.17-2.38 6.396 6.396 0 013.31-.84 6.005 6.005 0 014.36 1.63 6.572 6.572 0 011.89 4.45v.9a6.922 6.922 0 01-1.7 4.88c-2.53 2.427-6.58 2.427-9.11 0a7.003 7.003 0 01-1.7-5l.02-.14zm3.53.25a4.937 4.937 0 00.7 2.88 2.551 2.551 0 004 0 5.415 5.415 0 00.72-3.15 4.871 4.871 0 00-.72-2.86 2.512 2.512 0 00-4 0 5.5 5.5 0 00-.7 3.13zM45.024 92.71a7.723 7.723 0 011.45-4.9 4.692 4.692 0 013.9-1.85 4.125 4.125 0 013.38 1.49l.14-1.25h3.2v12.77a5.703 5.703 0 01-.78 3 5.157 5.157 0 01-2.22 2 7.757 7.757 0 01-3.34.67 7.22 7.22 0 01-2.84-.58 4.995 4.995 0 01-2.08-1.49l1.56-2.15a4.141 4.141 0 003.2 1.47c.797.05 1.582-.22 2.18-.75a2.82 2.82 0 00.78-2.13v-.7a4.09 4.09 0 01-3.21 1.37 4.685 4.685 0 01-3.8-1.97 7.722 7.722 0 01-1.47-4.93l-.05-.07zm3.53.26a4.82 4.82 0 00.72 2.82 2.291 2.291 0 002 1 2.435 2.435 0 002.3-1.21v-5.56a2.432 2.432 0 00-2.28-1.21 2.302 2.302 0 00-2 1 5.443 5.443 0 00-.75 3.12l.01.04zM60.004 80.62h3.54v18.75h-3.54zM72.544 99.61a6.473 6.473 0 01-4.73-1.78 6.322 6.322 0 01-1.82-4.75v-.37a8.045 8.045 0 01.76-3.56 5.668 5.668 0 012.18-2.41 6.105 6.105 0 013.22-.85 5.494 5.494 0 014.27 1.71 7.004 7.004 0 011.55 4.84v1.44h-8.43c.074.79.429 1.529 1 2.08.6.529 1.38.808 2.18.78a3.814 3.814 0 003.19-1.48l1.73 1.94a5.28 5.28 0 01-2.15 1.76 7.155 7.155 0 01-2.95.65zm-.4-10.85a2.242 2.242 0 00-1.71.71 3.75 3.75 0 00-.83 2h4.91v-.28a2.6 2.6 0 00-.64-1.82 2.268 2.268 0 00-1.76-.61h.03zM100.354 93.45a6.28 6.28 0 01-2.11 4.52 7.442 7.442 0 01-5 1.64 6.684 6.684 0 01-5.38-2.3 9.453 9.453 0 01-2-6.31v-1.09a10.728 10.728 0 01.9-4.52 6.714 6.714 0 012.58-3 8.064 8.064 0 018.86.6 6.787 6.787 0 012.17 4.63h-3.66a3.716 3.716 0 00-1-2.5 3.538 3.538 0 00-2.51-.77 3.103 3.103 0 00-2.66 1.36 7.262 7.262 0 00-1 4v1.34a7.873 7.873 0 00.87 4.21 3.004 3.004 0 002.75 1.33 3.58 3.58 0 002.53-.77 3.503 3.503 0 001-2.4l3.66.03zM101.984 92.64a7.756 7.756 0 01.76-3.5 5.565 5.565 0 012.17-2.38 6.396 6.396 0 013.31-.84 6.002 6.002 0 014.32 1.63 6.572 6.572 0 011.89 4.45v.9a6.922 6.922 0 01-1.7 4.88c-2.53 2.427-6.58 2.427-9.11 0a7.003 7.003 0 01-1.7-5l.06-.14zm3.53.25a4.937 4.937 0 00.7 2.88 2.551 2.551 0 004 0 5.415 5.415 0 00.72-3.15 4.871 4.871 0 00-.72-2.86 2.512 2.512 0 00-4 0 5.497 5.497 0 00-.67 3.13h-.03zM119.914 86.16l.11 1.53a4.615 4.615 0 013.8-1.77 3.823 3.823 0 013.12 1.23 5.741 5.741 0 011 3.69v8.53h-3.53v-8.45a2.322 2.322 0 00-.48-1.63 2.239 2.239 0 00-1.63-.5 2.416 2.416 0 00-2.23 1.27v9.31h-3.53V86.16h3.37zM134.894 82.92v3.24h2.26v2.55h-2.26v6.59c-.036.372.063.745.28 1.05.297.249.685.365 1.07.32.335.001.67-.029 1-.09v2.68a7.286 7.286 0 01-2.13.31c-2.48 0-3.74-1.24-3.79-3.74v-7.12h-1.93v-2.55h1.93v-3.24h3.57zM146.774 99.37a3.908 3.908 0 01-.36-1.18 4.253 4.253 0 01-3.33 1.42 4.7 4.7 0 01-3.22-1.12 3.602 3.602 0 01-1.27-2.83 3.743 3.743 0 011.55-3.22 7.7 7.7 0 014.5-1.14h1.63v-.76a2.196 2.196 0 00-.47-1.46 1.857 1.857 0 00-1.49-.55 2 2 0 00-1.39.43 1.431 1.431 0 00-.51 1.17h-3.53a3.563 3.563 0 01.71-2.12 4.622 4.622 0 012-1.54 7.294 7.294 0 012.91-.55 5.792 5.792 0 013.87 1.22 4.29 4.29 0 011.44 3.45v5.73a6.215 6.215 0 00.52 2.84v.21h-3.56zm-2.92-2.45c.5.003.996-.118 1.44-.35a2.288 2.288 0 001-.94v-2.27h-1.32c-1.77 0-2.71.61-2.82 1.84v.2a1.42 1.42 0 00.46 1.09c.345.292.788.446 1.24.43zM152.544 82.71a1.75 1.75 0 01.53-1.3 2.307 2.307 0 012.89 0c.357.336.554.81.54 1.3.014.498-.186.979-.55 1.32a2 2 0 01-1.43.52 2 2 0 01-1.44-.52 1.733 1.733 0 01-.54-1.32zm3.75 16.63h-3.54V86.16h3.54v13.18zM162.394 86.16l.15 1.55a4.621 4.621 0 013.8-1.77 3.823 3.823 0 013.12 1.23 5.68 5.68 0 011.05 3.69v8.53h-3.57v-8.45a2.322 2.322 0 00-.48-1.63 2.239 2.239 0 00-1.63-.5 2.416 2.416 0 00-2.23 1.27v9.31h-3.53V86.16h3.32zM179.224 99.61a6.453 6.453 0 01-4.72-1.78 6.332 6.332 0 01-1.83-4.75v-.37a8.062 8.062 0 01.77-3.56 5.614 5.614 0 012.18-2.41 6.058 6.058 0 013.21-.85 5.494 5.494 0 014.27 1.71 6.922 6.922 0 011.56 4.84v1.44h-8.41a3.22 3.22 0 001 2.08c.6.53 1.38.809 2.18.78a3.784 3.784 0 003.18-1.48l1.74 1.94a5.348 5.348 0 01-2.15 1.76 7.229 7.229 0 01-2.98.65zm-.4-10.85a2.2 2.2 0 00-1.7.71 3.749 3.749 0 00-.84 2h4.91v-.28a2.648 2.648 0 00-.63-1.82 2.292 2.292 0 00-1.74-.61zM194.084 89.47a10.584 10.584 0 00-1.27-.1 2.576 2.576 0 00-2.62 1.36v8.64h-3.53V86.16h3.33l.1 1.58a3.265 3.265 0 012.94-1.82c.373-.004.744.05 1.1.16l-.05 3.39zM208.814 92.86h-2.91v6.51h-3.66V81.6h6.6a7.503 7.503 0 014.86 1.4 4.854 4.854 0 011.71 4 5.497 5.497 0 01-.79 3 5.395 5.395 0 01-2.39 1.94l3.85 7.26v.17h-3.93l-3.34-6.51zm-2.91-3h2.95a3.08 3.08 0 002.14-.7c.515-.51.788-1.216.75-1.94a2.669 2.669 0 00-.71-2 3.003 3.003 0 00-2.19-.72h-2.94v5.36zM224.044 99.61a6.46 6.46 0 01-4.73-1.78 6.332 6.332 0 01-1.83-4.75v-.37a8.062 8.062 0 01.77-3.56 5.614 5.614 0 012.18-2.41 6.075 6.075 0 013.22-.85 5.483 5.483 0 014.26 1.71 6.922 6.922 0 011.56 4.84v1.44h-8.41a3.268 3.268 0 001 2.08c.6.53 1.38.809 2.18.78a3.784 3.784 0 003.18-1.48l1.74 1.94a5.348 5.348 0 01-2.15 1.76 7.148 7.148 0 01-2.97.65zm-.41-10.85a2.223 2.223 0 00-1.7.71 3.825 3.825 0 00-.84 2h4.91v-.28a2.599 2.599 0 00-.63-1.82 2.292 2.292 0 00-1.74-.61zM230.964 92.71a7.785 7.785 0 011.44-4.9 4.723 4.723 0 013.9-1.85 4.143 4.143 0 013.39 1.49l.14-1.25h3.2v12.77a5.62 5.62 0 01-.79 3 5.063 5.063 0 01-2.21 2 7.77 7.77 0 01-3.35.67 7.17 7.17 0 01-2.83-.58 5.12 5.12 0 01-2.09-1.49l1.57-2.15a4.132 4.132 0 003.19 1.47 3 3 0 002.19-.75 2.82 2.82 0 00.78-2.13v-.7a4.09 4.09 0 01-3.21 1.37 4.674 4.674 0 01-3.85-1.86 7.722 7.722 0 01-1.47-4.93v-.18zm3.53.26a4.82 4.82 0 00.72 2.82 2.282 2.282 0 002 1 2.445 2.445 0 002.31-1.21v-5.56a2.432 2.432 0 00-2.28-1.21 2.302 2.302 0 00-2 1 5.44 5.44 0 00-.7 3.12l-.05.04zM245.724 82.71a1.71 1.71 0 01.53-1.3 2.296 2.296 0 012.88 0c.715.72.715 1.9 0 2.62a2.246 2.246 0 01-2.87 0 1.733 1.733 0 01-.54-1.32zm3.74 16.63h-3.54V86.16h3.54v13.18zM259.544 95.71a1.142 1.142 0 00-.64-1 7.087 7.087 0 00-2.06-.66c-3.14-.667-4.71-2-4.71-4a3.622 3.622 0 011.41-2.95 5.87 5.87 0 013.82-1.18 6.341 6.341 0 014 1.18 3.76 3.76 0 011.51 3.08h-3.53a1.718 1.718 0 00-.49-1.25 2.07 2.07 0 00-1.53-.5 2.125 2.125 0 00-1.38.41 1.261 1.261 0 00-.48 1 1.09 1.09 0 00.55.95 5.893 5.893 0 001.88.62c.754.14 1.496.338 2.22.59 1.86.667 2.79 1.85 2.79 3.55a3.444 3.444 0 01-1.55 2.93 6.714 6.714 0 01-4 1.11 6.914 6.914 0 01-2.95-.59 4.88 4.88 0 01-2-1.62 3.758 3.758 0 01-.73-2.23h3.34c0 .562.258 1.093.7 1.44a2.718 2.718 0 001.73.5 2.568 2.568 0 001.53-.38 1.19 1.19 0 00.57-1zM269.454 82.92v3.24h2.26v2.55h-2.26v6.59c-.036.372.063.745.28 1.05.297.249.685.365 1.07.32.335.001.67-.029 1-.09v2.68a7.281 7.281 0 01-2.14.31c-2.47 0-3.73-1.24-3.78-3.74v-7.12h-1.93v-2.55h1.93v-3.24h3.57zM281.094 89.47a10.584 10.584 0 00-1.27-.1 2.576 2.576 0 00-2.62 1.36v8.64h-3.53V86.16h3.33l.1 1.58a3.265 3.265 0 012.94-1.82c.373-.004.744.05 1.1.16l-.05 3.39zM287.944 94.38l2.44-8.22h3.79l-5.31 15.26-.3.7a4.01 4.01 0 01-3.9 2.58 5.385 5.385 0 01-1.57-.23v-2.67h.54a3.004 3.004 0 001.5-.3c.354-.245.624-.595.77-1l.42-1.08-4.63-13.25h3.85l2.4 8.21z" fill="#333" fill-rule="nonzero"/></svg> \ No newline at end of file +<svg viewBox="0 0 295 105" xmlns="http://www.w3.org/2000/svg" fill-rule="evenodd" clip-rule="evenodd" stroke-linejoin="round" stroke-miterlimit="2"><path d="M135.124 49.45l3.15-3.14-4.68-4.72V26.97l4.68-4.71-3.15-3.15-6.25 6.29v17.77l6.25 6.28z" fill="#fff" fill-rule="nonzero"/><circle cx="181.45" cy="45.57" r="2.24" fill="#fff" transform="translate(-41.456 -11.29)"/><circle cx="188.1" cy="45.57" r="2.24" fill="#fff" transform="translate(-41.456 -11.29)"/><circle cx="194.78" cy="45.57" r="2.24" fill="#fff" transform="translate(-41.456 -11.29)"/><path d="M158.114 19.11l-3.1 3.15 4.68 4.71v14.62l-4.68 4.72 3.1 3.14 6.29-6.28V25.4l-6.29-6.29z" fill="#fff" fill-rule="nonzero"/><path d="M183.634 30.99l-15.63-27.16a7.007 7.007 0 00-5.86-3.51h-31.23a6.846 6.846 0 00-5.86 3.51l-15.63 27.08a6.84 6.84 0 000 6.78L125.054 65a7.065 7.065 0 005.86 3.63h31.27a7.006 7.006 0 005.86-3.59l15.63-27.15a6.898 6.898 0 00-.04-6.9zm-15.63 34a7.006 7.006 0 01-5.86 3.59h-8.18l-17.14-17.14 3.86-2.23-7.21-7.18v-3.98h2.11l-2-2a2.13 2.13 0 011.27-3.59l-1.43-1.43v-3.99l8.09-4.63-4.78-4.78 3.15-1.84h.08l6.58 3.75 6.46-3.75h.08l3.15 1.84 24.76 24.76-12.99 22.6z" fill="#4285f4" fill-rule="nonzero"/><path d="M149.744 21.42l9.8 5.62v4h-3.38v-2.13l-8.06-4.7v3.5h-3.23v-3.5l-8.05 4.7v2.12h-3.28l1.43 1.43h.24a2.128 2.128 0 011.974 2.115 2.128 2.128 0 01-1.974 2.115 2.19 2.19 0 01-1.51-.64l2 2h1.24v2.11l8.05 4.7v-3.43h3.23v3.43l8.06-4.7v-2.11h3.26v4l-9.8 5.66 6.53 3.78-3.15 1.84h-.07l-6.46-3.75-6.46 3.75h-.08l-3.15-1.84 17.14 17.14h8.18a7.006 7.006 0 005.86-3.59l13-22.61-24.77-24.72-6.57 3.71zm-3.2 18.46h-.01a2.13 2.13 0 01-2.12-2.12 2.13 2.13 0 012.12-2.12 2.13 2.13 0 012.12 2.12v.01a2.14 2.14 0 01-2.11 2.11zm0-6.38h-.01a2.13 2.13 0 01-2.12-2.12 2.13 2.13 0 012.12-2.12 2.13 2.13 0 012.12 2.12v.01a2.13 2.13 0 01-2.11 2.11zm11.37 3.21h-.01a2.13 2.13 0 01-2.12-2.12 2.13 2.13 0 012.12-2.12 2.13 2.13 0 012.12 2.12v.01a2.13 2.13 0 01-2.11 2.11z" fill="#4285f4" fill-rule="nonzero"/><path d="M149.744 21.42l9.8 5.62v4h-3.38v-2.13l-8.06-4.7v3.5h-3.23v-3.5l-8.05 4.7v2.12h-3.28l1.43 1.43h.24a2.128 2.128 0 011.974 2.115 2.128 2.128 0 01-1.974 2.115 2.19 2.19 0 01-1.51-.64l2 2h1.24v2.11l8.05 4.7v-3.43h3.23v3.43l8.06-4.7v-2.11h3.26v4l-9.8 5.66 6.53 3.78-3.15 1.84h-.07l-6.46-3.75-6.46 3.75h-.08l-3.15-1.84 17.14 17.14h8.18a7.006 7.006 0 005.86-3.59l13-22.61-24.77-24.72-6.57 3.71zm-3.2 18.46h-.01a2.13 2.13 0 01-2.12-2.12 2.13 2.13 0 012.12-2.12 2.13 2.13 0 012.12 2.12v.01a2.14 2.14 0 01-2.11 2.11zm0-6.38h-.01a2.13 2.13 0 01-2.12-2.12 2.13 2.13 0 012.12-2.12 2.13 2.13 0 012.12 2.12v.01a2.13 2.13 0 01-2.11 2.11zm11.37 3.21h-.01a2.13 2.13 0 01-2.12-2.12 2.13 2.13 0 012.12-2.12 2.13 2.13 0 012.12 2.12v.01a2.13 2.13 0 01-2.11 2.11z" fill-rule="nonzero"/><path d="M133.544 42.03l7.21 7.18 2.61-1.5-9.82-5.68z" fill="#4285f4" fill-rule="nonzero"/><path d="M133.544 42.03l7.21 7.18 2.61-1.5-9.82-5.68z" fill-rule="nonzero"/><path d="M136.824 17.63l4.78 4.78 1.72-1-6.5-3.78z" fill="#4285f4" fill-rule="nonzero"/><path d="M136.824 17.63l4.78 4.78 1.72-1-6.5-3.78z" fill-rule="nonzero"/><circle cx="199.37" cy="45.87" r="2.11" fill="#fff" transform="translate(-41.456 -11.29)"/><path d="M135.144 36.71a2.128 2.128 0 001.974-2.115 2.128 2.128 0 00-1.974-2.115.691.691 0 00-.24 0 2.129 2.129 0 00-1.87 2.12 2.002 2.002 0 00.6 1.47c.43.35.957.559 1.51.6v.04z" fill="#fff" fill-rule="nonzero"/><circle cx="188.01" cy="42.68" r="2.11" fill="#fff" transform="translate(-41.456 -11.29)"/><circle cx="188.01" cy="49.02" r="2.11" fill="#fff" transform="translate(-41.456 -11.29)"/><path d="M136.864 31.03v-2.16l8.05-4.7v3.47h3.23v-3.47l8.06 4.7v2.16h3.34v-4l-9.84-5.62 6.54-3.79-3.2-1.84h-.07l-6.43 3.76-6.5-3.75h-.08l-3.15 1.84 6.5 3.79-1.72 1-8.05 4.62v4l3.32-.01zm3.19 22.25l6.5-3.75 6.46 3.75h.07l3.2-1.84-6.54-3.73 9.8-5.68v-4h-3.38v2.15l-8.06 4.7v-3.41h-3.23v3.43l-8.05-4.7v-2.15h-3.28v4l9.82 5.66-2.68 1.51-3.86 2.23 3.15 1.84.08-.01z" fill="#fff" fill-rule="nonzero"/><path d="M183.674 30.71l-15.63-27.2a6.936 6.936 0 00-5.86-3.51h-31.27a6.936 6.936 0 00-5.86 3.51l-15.67 27.12a6.915 6.915 0 000 6.82l15.63 27.35a7.065 7.065 0 005.86 3.63h31.31a7.006 7.006 0 005.86-3.59l15.63-27.19a6.948 6.948 0 000-6.94z" fill="#4285f4" fill-rule="nonzero"/><path d="M165.544 23.21l-7.3-1.79-1.12 1.15 5.62 5.63v7.73l-11.56-11.6h-9.45l-5.94-5.94-6.19 5.32-2.16 21.51 23.21 23.21h11.53a7.006 7.006 0 005.86-3.59L182.314 40l-16.77-16.79z" fill-rule="nonzero"/><path d="M141.764 29.83l4.78 2.75 4.74-2.75v-5.5l-4.74-2.75-4.79 2.75.01 5.5zm6.54 11.21l4.78 2.75 4.75-2.75v-5.51l-4.75-2.71-4.78 2.71v5.51zm-13.08.16l4.79 2.75 4.74-2.75v-5.49l-4.74-2.75-4.79 2.75v5.49z" fill="#fff" fill-rule="nonzero"/><path d="M135.824 22.57l-4.75 2.76v17.78l4.75 2.75v4.19l-8.28-4.79V23.17l8.3-4.78-.02 4.18zm21.41 0l4.75 2.76v17.78l-4.75 2.75v4.19l8.31-4.79V23.17l-8.34-4.78.03 4.18z" fill="#fff" fill-rule="nonzero"/><path d="M14.544 97.12a6.296 6.296 0 01-2.8 1.84c-1.285.45-2.64.67-4 .65a8 8 0 01-4-1 6.708 6.708 0 01-2.74-2.9 10.152 10.152 0 01-1-4.5V90a10.928 10.928 0 01.89-4.61 6.647 6.647 0 012.59-3 7.542 7.542 0 014-1 7.47 7.47 0 015 1.51 6.495 6.495 0 012.06 4.35h-3.58a3.552 3.552 0 00-1.08-2.24 3.44 3.44 0 00-2.3-.7 3.264 3.264 0 00-2.84 1.4 7.427 7.427 0 00-1 4.18v1.13a6.997 6.997 0 001.06 4.22 3.622 3.622 0 003.12 1.47 4.062 4.062 0 002.95-.88v-3.12h-3.33v-2.7h7v7.11zM16.714 92.64a7.756 7.756 0 01.76-3.5 5.518 5.518 0 012.18-2.38 6.378 6.378 0 013.3-.84 6.005 6.005 0 014.36 1.63 6.572 6.572 0 011.89 4.45v.9a6.92 6.92 0 01-1.66 4.88c-2.53 2.427-6.58 2.427-9.11 0a7.003 7.003 0 01-1.71-5l-.01-.14zm3.53.25a4.94 4.94 0 00.71 2.88 2.323 2.323 0 002 1 2.362 2.362 0 002-1 5.415 5.415 0 00.72-3.15 4.871 4.871 0 00-.72-2.86 2.344 2.344 0 00-2-1 2.312 2.312 0 00-2 1 5.493 5.493 0 00-.71 3.13zM30.854 92.64a7.756 7.756 0 01.76-3.5 5.565 5.565 0 012.17-2.38 6.396 6.396 0 013.31-.84 6.005 6.005 0 014.36 1.63 6.572 6.572 0 011.89 4.45v.9a6.922 6.922 0 01-1.7 4.88c-2.53 2.427-6.58 2.427-9.11 0a7.003 7.003 0 01-1.7-5l.02-.14zm3.53.25a4.937 4.937 0 00.7 2.88 2.551 2.551 0 004 0 5.415 5.415 0 00.72-3.15 4.871 4.871 0 00-.72-2.86 2.512 2.512 0 00-4 0 5.5 5.5 0 00-.7 3.13zM45.024 92.71a7.723 7.723 0 011.45-4.9 4.692 4.692 0 013.9-1.85 4.125 4.125 0 013.38 1.49l.14-1.25h3.2v12.77a5.703 5.703 0 01-.78 3 5.157 5.157 0 01-2.22 2 7.757 7.757 0 01-3.34.67 7.22 7.22 0 01-2.84-.58 4.995 4.995 0 01-2.08-1.49l1.56-2.15a4.141 4.141 0 003.2 1.47c.797.05 1.582-.22 2.18-.75a2.82 2.82 0 00.78-2.13v-.7a4.09 4.09 0 01-3.21 1.37 4.685 4.685 0 01-3.8-1.97 7.722 7.722 0 01-1.47-4.93l-.05-.07zm3.53.26a4.82 4.82 0 00.72 2.82 2.291 2.291 0 002 1 2.435 2.435 0 002.3-1.21v-5.56a2.432 2.432 0 00-2.28-1.21 2.302 2.302 0 00-2 1 5.443 5.443 0 00-.75 3.12l.01.04zM60.004 80.62h3.54v18.75h-3.54zM72.544 99.61a6.473 6.473 0 01-4.73-1.78 6.322 6.322 0 01-1.82-4.75v-.37a8.045 8.045 0 01.76-3.56 5.668 5.668 0 012.18-2.41 6.105 6.105 0 013.22-.85 5.494 5.494 0 014.27 1.71 7.004 7.004 0 011.55 4.84v1.44h-8.43c.074.79.429 1.529 1 2.08.6.529 1.38.808 2.18.78a3.814 3.814 0 003.19-1.48l1.73 1.94a5.28 5.28 0 01-2.15 1.76 7.155 7.155 0 01-2.95.65zm-.4-10.85a2.242 2.242 0 00-1.71.71 3.75 3.75 0 00-.83 2h4.91v-.28a2.6 2.6 0 00-.64-1.82 2.268 2.268 0 00-1.76-.61h.03zM100.354 93.45a6.28 6.28 0 01-2.11 4.52 7.442 7.442 0 01-5 1.64 6.684 6.684 0 01-5.38-2.3 9.453 9.453 0 01-2-6.31v-1.09a10.728 10.728 0 01.9-4.52 6.714 6.714 0 012.58-3 8.064 8.064 0 018.86.6 6.787 6.787 0 012.17 4.63h-3.66a3.716 3.716 0 00-1-2.5 3.538 3.538 0 00-2.51-.77 3.103 3.103 0 00-2.66 1.36 7.262 7.262 0 00-1 4v1.34a7.873 7.873 0 00.87 4.21 3.004 3.004 0 002.75 1.33 3.58 3.58 0 002.53-.77 3.503 3.503 0 001-2.4l3.66.03zM101.984 92.64a7.756 7.756 0 01.76-3.5 5.565 5.565 0 012.17-2.38 6.396 6.396 0 013.31-.84 6.002 6.002 0 014.32 1.63 6.572 6.572 0 011.89 4.45v.9a6.922 6.922 0 01-1.7 4.88c-2.53 2.427-6.58 2.427-9.11 0a7.003 7.003 0 01-1.7-5l.06-.14zm3.53.25a4.937 4.937 0 00.7 2.88 2.551 2.551 0 004 0 5.415 5.415 0 00.72-3.15 4.871 4.871 0 00-.72-2.86 2.512 2.512 0 00-4 0 5.497 5.497 0 00-.67 3.13h-.03zM119.914 86.16l.11 1.53a4.615 4.615 0 013.8-1.77 3.823 3.823 0 013.12 1.23 5.741 5.741 0 011 3.69v8.53h-3.53v-8.45a2.322 2.322 0 00-.48-1.63 2.239 2.239 0 00-1.63-.5 2.416 2.416 0 00-2.23 1.27v9.31h-3.53V86.16h3.37zM134.894 82.92v3.24h2.26v2.55h-2.26v6.59c-.036.372.063.745.28 1.05.297.249.685.365 1.07.32.335.001.67-.029 1-.09v2.68a7.286 7.286 0 01-2.13.31c-2.48 0-3.74-1.24-3.79-3.74v-7.12h-1.93v-2.55h1.93v-3.24h3.57zM146.774 99.37a3.908 3.908 0 01-.36-1.18 4.253 4.253 0 01-3.33 1.42 4.7 4.7 0 01-3.22-1.12 3.602 3.602 0 01-1.27-2.83 3.743 3.743 0 011.55-3.22 7.7 7.7 0 014.5-1.14h1.63v-.76a2.196 2.196 0 00-.47-1.46 1.857 1.857 0 00-1.49-.55 2 2 0 00-1.39.43 1.431 1.431 0 00-.51 1.17h-3.53a3.563 3.563 0 01.71-2.12 4.622 4.622 0 012-1.54 7.294 7.294 0 012.91-.55 5.792 5.792 0 013.87 1.22 4.29 4.29 0 011.44 3.45v5.73a6.215 6.215 0 00.52 2.84v.21h-3.56zm-2.92-2.45c.5.003.996-.118 1.44-.35a2.288 2.288 0 001-.94v-2.27h-1.32c-1.77 0-2.71.61-2.82 1.84v.2a1.42 1.42 0 00.46 1.09c.345.292.788.446 1.24.43zM152.544 82.71a1.75 1.75 0 01.53-1.3 2.307 2.307 0 012.89 0c.357.336.554.81.54 1.3.014.498-.186.979-.55 1.32a2 2 0 01-1.43.52 2 2 0 01-1.44-.52 1.733 1.733 0 01-.54-1.32zm3.75 16.63h-3.54V86.16h3.54v13.18zM162.394 86.16l.15 1.55a4.621 4.621 0 013.8-1.77 3.823 3.823 0 013.12 1.23 5.68 5.68 0 011.05 3.69v8.53h-3.57v-8.45a2.322 2.322 0 00-.48-1.63 2.239 2.239 0 00-1.63-.5 2.416 2.416 0 00-2.23 1.27v9.31h-3.53V86.16h3.32zM179.224 99.61a6.453 6.453 0 01-4.72-1.78 6.332 6.332 0 01-1.83-4.75v-.37a8.062 8.062 0 01.77-3.56 5.614 5.614 0 012.18-2.41 6.058 6.058 0 013.21-.85 5.494 5.494 0 014.27 1.71 6.922 6.922 0 011.56 4.84v1.44h-8.41a3.22 3.22 0 001 2.08c.6.53 1.38.809 2.18.78a3.784 3.784 0 003.18-1.48l1.74 1.94a5.348 5.348 0 01-2.15 1.76 7.229 7.229 0 01-2.98.65zm-.4-10.85a2.2 2.2 0 00-1.7.71 3.749 3.749 0 00-.84 2h4.91v-.28a2.648 2.648 0 00-.63-1.82 2.292 2.292 0 00-1.74-.61zM194.084 89.47a10.584 10.584 0 00-1.27-.1 2.576 2.576 0 00-2.62 1.36v8.64h-3.53V86.16h3.33l.1 1.58a3.265 3.265 0 012.94-1.82c.373-.004.744.05 1.1.16l-.05 3.39zM208.814 92.86h-2.91v6.51h-3.66V81.6h6.6a7.503 7.503 0 014.86 1.4 4.854 4.854 0 011.71 4 5.497 5.497 0 01-.79 3 5.395 5.395 0 01-2.39 1.94l3.85 7.26v.17h-3.93l-3.34-6.51zm-2.91-3h2.95a3.08 3.08 0 002.14-.7c.515-.51.788-1.216.75-1.94a2.669 2.669 0 00-.71-2 3.003 3.003 0 00-2.19-.72h-2.94v5.36zM224.044 99.61a6.46 6.46 0 01-4.73-1.78 6.332 6.332 0 01-1.83-4.75v-.37a8.062 8.062 0 01.77-3.56 5.614 5.614 0 012.18-2.41 6.075 6.075 0 013.22-.85 5.483 5.483 0 014.26 1.71 6.922 6.922 0 011.56 4.84v1.44h-8.41a3.268 3.268 0 001 2.08c.6.53 1.38.809 2.18.78a3.784 3.784 0 003.18-1.48l1.74 1.94a5.348 5.348 0 01-2.15 1.76 7.148 7.148 0 01-2.97.65zm-.41-10.85a2.223 2.223 0 00-1.7.71 3.825 3.825 0 00-.84 2h4.91v-.28a2.599 2.599 0 00-.63-1.82 2.292 2.292 0 00-1.74-.61zM230.964 92.71a7.785 7.785 0 011.44-4.9 4.723 4.723 0 013.9-1.85 4.143 4.143 0 013.39 1.49l.14-1.25h3.2v12.77a5.62 5.62 0 01-.79 3 5.063 5.063 0 01-2.21 2 7.77 7.77 0 01-3.35.67 7.17 7.17 0 01-2.83-.58 5.12 5.12 0 01-2.09-1.49l1.57-2.15a4.132 4.132 0 003.19 1.47 3 3 0 002.19-.75 2.82 2.82 0 00.78-2.13v-.7a4.09 4.09 0 01-3.21 1.37 4.674 4.674 0 01-3.85-1.86 7.722 7.722 0 01-1.47-4.93v-.18zm3.53.26a4.82 4.82 0 00.72 2.82 2.282 2.282 0 002 1 2.445 2.445 0 002.31-1.21v-5.56a2.432 2.432 0 00-2.28-1.21 2.302 2.302 0 00-2 1 5.44 5.44 0 00-.7 3.12l-.05.04zM245.724 82.71a1.71 1.71 0 01.53-1.3 2.296 2.296 0 012.88 0c.715.72.715 1.9 0 2.62a2.246 2.246 0 01-2.87 0 1.733 1.733 0 01-.54-1.32zm3.74 16.63h-3.54V86.16h3.54v13.18zM259.544 95.71a1.142 1.142 0 00-.64-1 7.087 7.087 0 00-2.06-.66c-3.14-.667-4.71-2-4.71-4a3.622 3.622 0 011.41-2.95 5.87 5.87 0 013.82-1.18 6.341 6.341 0 014 1.18 3.76 3.76 0 011.51 3.08h-3.53a1.718 1.718 0 00-.49-1.25 2.07 2.07 0 00-1.53-.5 2.125 2.125 0 00-1.38.41 1.261 1.261 0 00-.48 1 1.09 1.09 0 00.55.95 5.893 5.893 0 001.88.62c.754.14 1.496.338 2.22.59 1.86.667 2.79 1.85 2.79 3.55a3.444 3.444 0 01-1.55 2.93 6.714 6.714 0 01-4 1.11 6.914 6.914 0 01-2.95-.59 4.88 4.88 0 01-2-1.62 3.758 3.758 0 01-.73-2.23h3.34c0 .562.258 1.093.7 1.44a2.718 2.718 0 001.73.5 2.568 2.568 0 001.53-.38 1.19 1.19 0 00.57-1zM269.454 82.92v3.24h2.26v2.55h-2.26v6.59c-.036.372.063.745.28 1.05.297.249.685.365 1.07.32.335.001.67-.029 1-.09v2.68a7.281 7.281 0 01-2.14.31c-2.47 0-3.73-1.24-3.78-3.74v-7.12h-1.93v-2.55h1.93v-3.24h3.57zM281.094 89.47a10.584 10.584 0 00-1.27-.1 2.576 2.576 0 00-2.62 1.36v8.64h-3.53V86.16h3.33l.1 1.58a3.265 3.265 0 012.94-1.82c.373-.004.744.05 1.1.16l-.05 3.39zM287.944 94.38l2.44-8.22h3.79l-5.31 15.26-.3.7a4.01 4.01 0 01-3.9 2.58 5.385 5.385 0 01-1.57-.23v-2.67h.54a3.004 3.004 0 001.5-.3c.354-.245.624-.595.77-1l.42-1.08-4.63-13.25h3.85l2.4 8.21z" class="text" fill="#333" fill-rule="nonzero"/></svg> \ No newline at end of file diff --git a/ui/apps/platform/src/images/helm.svg b/ui/apps/platform/src/images/helm.svg index a83678325fcf0..da2e02213263d 100644 --- a/ui/apps/platform/src/images/helm.svg +++ b/ui/apps/platform/src/images/helm.svg @@ -1 +1,34 @@ -<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 304 351"><mask id="a" fill="#fff"><path d="M0 0h313.303v159.865H0z" fill-rule="evenodd"/></mask><mask id="b" fill="#fff"><path d="M0 0h313.303v159.865H0z" fill-rule="evenodd"/></mask><g fill="none" fill-rule="evenodd"><path d="M.679 138h19.785v26.789h23.904V138h19.786v75.25H44.368v-28.695H20.464v28.695H.68zm86.173 75.25V138h46.803v16.354h-27.017v12.241h23.904v16.655h-23.904v13.846h27.017v16.154zm68.498 0V138h19.785v55.384h27.118v19.866zM232.886 138l30.733 27.893L294.252 138h8.939v75.25h-19.886v-38.628l-19.686 17.96-19.786-17.86v38.528h-19.886V138z" fill="#0f1689"/><g fill="#0f1689" mask="url(#a)" transform="matrix(1 0 0 -1 .958 404)"><path d="M223.651 143.376c5.682 3.979 18.782-4.927 29.26-19.891s14.367-30.32 8.685-34.3c-5.682-3.978-18.782 4.928-29.26 19.892s-14.367 30.32-8.685 34.3zM88.278 143.376c-5.682 3.979-18.783-4.927-29.26-19.891s-14.367-30.32-8.685-34.3 18.782 4.928 29.26 19.892 14.366 30.32 8.685 34.3zM155.896 119.946c-6.937 0-12.56-14.81-12.56-33.077 0-18.268 5.623-33.078 12.56-33.078 6.936 0 12.559 14.81 12.559 33.078s-5.623 33.077-12.56 33.077z"/></g><path d="M251.467 173.1c-20.23-33.61-56.89-56.068-98.756-56.068-40.72 0-76.516 21.246-97.058 53.335m2.198 129.17c20.84 30.232 55.556 50.026 94.86 50.026 39.376 0 74.147-19.866 94.974-50.192" mask="url(#a)" stroke="#0f1689" stroke-width="20" transform="matrix(1 0 0 -1 .958 404)"/><g><g fill="#0f1689" mask="url(#b)" transform="translate(.958 -51)"><path d="M223.651 140.917c5.682 3.978 18.782-4.927 29.26-19.892s14.367-30.32 8.685-34.299c-5.682-3.978-18.782 4.927-29.26 19.892s-14.367 30.32-8.685 34.299zM88.278 140.917c-5.682 3.978-18.783-4.927-29.26-19.892s-14.367-30.32-8.685-34.299 18.782 4.927 29.26 19.892 14.366 30.32 8.685 34.299zM155.896 117.487c-6.937 0-12.56-14.81-12.56-33.078s5.623-33.077 12.56-33.077c6.936 0 12.559 14.81 12.559 33.077 0 18.268-5.623 33.078-12.56 33.078z"/></g><path d="M251.467 170.64c-20.23-33.61-56.89-56.068-98.756-56.068-40.72 0-76.516 21.246-97.058 53.335m2.198 129.17c20.84 30.232 55.556 50.026 94.86 50.026 39.376 0 74.147-19.866 94.974-50.191" mask="url(#b)" stroke="#0f1689" stroke-width="20" transform="translate(.958 -51)"/></g></g></svg> \ No newline at end of file +<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 304 351"> + <mask id="a" fill="#fff"> + <path d="M0 0h313.303v159.865H0z" fill-rule="evenodd" /> + </mask> + <mask id="b" fill="#fff"> + <path d="M0 0h313.303v159.865H0z" fill-rule="evenodd" /> + </mask> + <g fill="none" fill-rule="evenodd"> + <path + class="text" + d="M.679 138h19.785v26.789h23.904V138h19.786v75.25H44.368v-28.695H20.464v28.695H.68zm86.173 75.25V138h46.803v16.354h-27.017v12.241h23.904v16.655h-23.904v13.846h27.017v16.154zm68.498 0V138h19.785v55.384h27.118v19.866zM232.886 138l30.733 27.893L294.252 138h8.939v75.25h-19.886v-38.628l-19.686 17.96-19.786-17.86v38.528h-19.886V138z" + fill="#0f1689" /> + <g + class="text" + fill="#0f1689" mask="url(#a)" transform="matrix(1 0 0 -1 .958 404)"> + <path + d="M223.651 143.376c5.682 3.979 18.782-4.927 29.26-19.891s14.367-30.32 8.685-34.3c-5.682-3.978-18.782 4.928-29.26 19.892s-14.367 30.32-8.685 34.3zM88.278 143.376c-5.682 3.979-18.783-4.927-29.26-19.891s-14.367-30.32-8.685-34.3 18.782 4.928 29.26 19.892 14.366 30.32 8.685 34.3zM155.896 119.946c-6.937 0-12.56-14.81-12.56-33.077 0-18.268 5.623-33.078 12.56-33.078 6.936 0 12.559 14.81 12.559 33.078s-5.623 33.077-12.56 33.077z" /> + </g> + <path + class="text" + d="M251.467 173.1c-20.23-33.61-56.89-56.068-98.756-56.068-40.72 0-76.516 21.246-97.058 53.335m2.198 129.17c20.84 30.232 55.556 50.026 94.86 50.026 39.376 0 74.147-19.866 94.974-50.192" + mask="url(#a)" stroke="#0f1689" stroke-width="20" transform="matrix(1 0 0 -1 .958 404)" /> + <g> + <g class="text" fill="#0f1689" mask="url(#b)" transform="translate(.958 -51)"> + <path + d="M223.651 140.917c5.682 3.978 18.782-4.927 29.26-19.892s14.367-30.32 8.685-34.299c-5.682-3.978-18.782 4.927-29.26 19.892s-14.367 30.32-8.685 34.299zM88.278 140.917c-5.682 3.978-18.783-4.927-29.26-19.892s-14.367-30.32-8.685-34.299 18.782 4.927 29.26 19.892 14.366 30.32 8.685 34.299zM155.896 117.487c-6.937 0-12.56-14.81-12.56-33.078s5.623-33.077 12.56-33.077c6.936 0 12.559 14.81 12.559 33.077 0 18.268-5.623 33.078-12.56 33.078z" /> + </g> + <path + class="text" + d="M251.467 170.64c-20.23-33.61-56.89-56.068-98.756-56.068-40.72 0-76.516 21.246-97.058 53.335m2.198 129.17c20.84 30.232 55.556 50.026 94.86 50.026 39.376 0 74.147-19.866 94.974-50.191" + mask="url(#b)" stroke="#0f1689" stroke-width="20" transform="translate(.958 -51)" /> + </g> + </g> +</svg> diff --git a/ui/apps/platform/src/images/ibm-ccr.svg b/ui/apps/platform/src/images/ibm-ccr.svg index d7c2d65f28f67..60f5af21cfb1b 100644 --- a/ui/apps/platform/src/images/ibm-ccr.svg +++ b/ui/apps/platform/src/images/ibm-ccr.svg @@ -1 +1 @@ -<svg viewBox="0 0 319 92" xmlns="http://www.w3.org/2000/svg" fill-rule="evenodd" clip-rule="evenodd" stroke-linejoin="round" stroke-miterlimit="2"><path d="M103.179 41.78v-1.86h2.48V25.1h-2.48v-1.86h7.08v1.86h-2.48v14.82h2.48v1.86h-7.08zM116.249 39.82h5.24a2.652 2.652 0 002.93-2.87v-.9a2.652 2.652 0 00-2.93-2.87h-5.24v6.64zm0-8.56h4.88a2.41 2.41 0 002.68-2.57v-.9a2.422 2.422 0 00-2.68-2.58h-4.88v6.05zm-2.12-8h7.22c.098-.006.196-.01.295-.01 2.43 0 4.43 2 4.43 4.43 0 .12-.005.24-.015.36 0 2.77-1.7 3.75-2.86 3.94v.15a4.018 4.018 0 013.46 4.31c0 3.05-1.94 5.36-4.55 5.36h-8l.02-18.54zM130.639 23.24h2.83l5 10h.13l5.08-10h2.73v18.54h-2.06V26.16h-.13l-1.49 3.11-4.22 8.08-4.16-8.08-1.5-3.11h-.12v15.62h-2.07l-.02-18.54zM156.089 32.62c0-6.25 3-9.73 7.61-9.73a6.444 6.444 0 016.45 4.28l-2.86 1.59a3.53 3.53 0 00-3.59-2.76c-2.48 0-4.07 1.89-4.07 5.05v2.92c0 3.19 1.59 5 4.07 5a4.01 4.01 0 003.82-2.94l2.7 1.67a6.782 6.782 0 01-6.52 4.38c-4.65 0-7.61-3.21-7.61-9.45M176.109 41.78c-2.2 0-3.23-1.22-3.23-3.34V22.13h3.23v16.94h1.75v2.71h-1.75zM188.349 36.13v-2.58c0-2.07-1.06-3.21-2.76-3.21-1.7 0-2.73 1.14-2.73 3.21v2.58c0 2.09 1.06 3.24 2.73 3.24s2.76-1.15 2.76-3.24m-8.88-1.31c0-4.43 2.35-7.22 6.12-7.22s6.15 2.79 6.15 7.22-2.36 7.28-6.15 7.28c-3.79 0-6.12-2.81-6.12-7.28M202.429 39.47h-.08a3.601 3.601 0 01-3.69 2.63c-2.7 0-4.22-2-4.22-5.42v-8.76h3.24v8.42c0 1.91.68 3 2.22 3a2.33 2.33 0 002.58-2.21v-9.21h3.24v13.86h-3.24l-.05-2.31zM217.599 37.03v-4.41c0-1.36-1.19-2.23-2.73-2.23s-2.81 1.3-2.81 3.27v2.39c0 2 1.14 3.24 2.81 3.24 1.67 0 2.73-.83 2.73-2.26m0 2.44h-.13a3.73 3.73 0 01-3.64 2.63c-3.31 0-5.16-2.63-5.16-7.28s1.85-7.2 5.16-7.2a3.659 3.659 0 013.64 2.6h.13v-8.09h3.23v19.65h-3.23v-2.31zM102.979 59.49c0-6.24 3-9.72 7.61-9.72a6.444 6.444 0 016.45 4.28l-2.86 1.57a3.53 3.53 0 00-3.59-2.76c-2.48 0-4.07 1.88-4.07 5v2.93c0 3.18 1.59 5 4.07 5a4.01 4.01 0 003.82-3l2.7 1.67a6.773 6.773 0 01-6.52 4.39c-4.65 0-7.61-3.22-7.61-9.46M127.749 62.97v-2.58c0-2.07-1.06-3.21-2.75-3.21s-2.73 1.14-2.73 3.21v2.58c0 2.1 1.06 3.24 2.73 3.24s2.75-1.14 2.75-3.24m-8.87-1.3c0-4.44 2.35-7.23 6.12-7.23s6.14 2.79 6.14 7.23-2.35 7.28-6.14 7.28c-3.79 0-6.12-2.82-6.12-7.28M133.999 68.62V54.76h3.23v2.31h.12a3.67 3.67 0 013.69-2.63c2.71 0 4.22 2 4.22 5.42v8.76h-3.23v-8.41c0-2-.63-3-2.18-3a2.37 2.37 0 00-2.63 2.23v9.18h-3.22zM149.569 65.1v-7.63h-1.95v-2.71h1c1 0 1.27-.48 1.27-1.43v-2.37h2.91v3.8h2.7v2.71h-2.7v8.45h2.55v2.7h-2.33c-2.22 0-3.41-1.28-3.41-3.53M165.269 64.48v-1.86h-2.07c-1.7 0-2.53.61-2.53 1.7v.45c0 1.12.73 1.68 2 1.68 1.44 0 2.6-.69 2.6-2m-7.89.38c0-2.85 2.05-4.25 5.64-4.25h2.25v-.96a2.18 2.18 0 00-2.45-2.45 3.405 3.405 0 00-3 1.76l-1.92-1.81a5.488 5.488 0 015.15-2.66c3.57 0 5.47 1.78 5.47 4.94v6.52h1.31v2.7h-1.79a2.471 2.471 0 01-2.46-2.39h-.15a3.592 3.592 0 01-3.84 2.71 3.848 3.848 0 01-4.2-4.09M172.449 54.76h3.23v13.86h-3.23V54.76zm-.28-3.72v-.53c0-1 .56-1.7 1.9-1.7 1.34 0 1.89.72 1.89 1.7v.53c0 1-.58 1.7-1.89 1.7s-1.9-.71-1.9-1.7M179.419 68.62V54.76h3.24v2.31h.13a3.67 3.67 0 013.69-2.63c2.7 0 4.22 2 4.22 5.42v8.76h-3.24v-8.41c0-2-.63-3-2.17-3a2.37 2.37 0 00-2.63 2.23v9.18h-3.24zM196.769 60.23v.22h5.41v-.24c0-1.91-.94-3.22-2.61-3.22s-2.8 1.33-2.8 3.24m-3.37 1.44c0-4.38 2.25-7.23 6.12-7.23 4.12 0 6 3.19 6 7v1.11h-8.77v.35a3.015 3.015 0 003.21 3.35 4.004 4.004 0 003.39-1.9l1.74 2a6.415 6.415 0 01-5.46 2.55c-3.89 0-6.22-2.85-6.22-7.28M208.349 68.62V54.76h3.24v2.86h.13a3.442 3.442 0 013.49-2.87h.7v3.22h-1c-2.17 0-3.31.63-3.31 2.15v8.5h-3.25zM232.129 58.53a1.91 1.91 0 002.08-2.09v-1.23a1.9 1.9 0 00-2.08-2.07h-4.3v5.39h4.3zm-4.3 10.09h-3.33V50.09h8c3.21 0 5.21 2.23 5.21 5.73 0 2.55-1.11 4.49-3.29 5.26l3.58 7.54h-3.72l-3.29-7.15h-3.16v7.15zM243.179 60.23v.22h5.41v-.24c0-1.91-.94-3.22-2.61-3.22s-2.8 1.33-2.8 3.24m-3.36 1.44c0-4.38 2.25-7.23 6.11-7.23 4.13 0 6 3.19 6 7v1.11h-8.77v.35a3.014 3.014 0 003.19 3.34 4.003 4.003 0 003.36-1.89l1.75 2a6.437 6.437 0 01-5.46 2.55c-3.9 0-6.22-2.85-6.22-7.28M262.159 59.36v-.45c0-1.41-.83-2.13-2.37-2.13s-2.38.72-2.38 2.13v.45c0 1.38.83 2.12 2.38 2.12 1.55 0 2.37-.74 2.37-2.12m-.73 9.43h-4.5a1.723 1.723 0 00-.68 1.43c0 1.06.76 1.7 2.78 1.7h1.62c2.09 0 3-.56 3-1.73 0-.87-.61-1.4-2.25-1.4m-1.64 5.47c-4.45 0-6.15-1.22-6.15-3.27a2.51 2.51 0 012.35-2.65v-.3a2.266 2.266 0 01-1.61-2.31c0-1.43 1.16-2.15 2.43-2.44v-.11a4.207 4.207 0 01-2.4-4c0-2.82 1.89-4.71 5.46-4.71a7.016 7.016 0 012.3.35v-.45c0-1.36.65-2 1.87-2h2.05v2.6h-2.81v.37a4.216 4.216 0 012 3.86c0 2.78-1.87 4.64-5.46 4.64a7.794 7.794 0 01-2-.24c-.53.195-.897.687-.93 1.25 0 .69.56 1 1.72 1h3.54c3.23 0 4.62 1.46 4.62 4 0 2.89-1.87 4.46-6.92 4.46M268.579 54.76h3.24v13.86h-3.24V54.76zm-.23-3.72v-.53c0-1 .55-1.7 1.89-1.7 1.34 0 1.9.72 1.9 1.7v.53c0 1-.58 1.7-1.9 1.7-1.32 0-1.89-.71-1.89-1.7M274.419 66.4l2-2a4.552 4.552 0 003.61 1.88c1.54 0 2.2-.61 2.2-1.59 0-.8-.46-1.3-1.62-1.46l-1.31-.19c-2.83-.37-4.4-1.67-4.4-4.19 0-2.69 2-4.39 5-4.39a6.156 6.156 0 015.14 2.16l-1.89 2a4.29 4.29 0 00-3.17-1.48c-1.39 0-2 .58-2 1.43s.48 1.36 1.72 1.57l1.34.18c2.88.43 4.27 1.78 4.27 4.09 0 2.69-2.15 4.55-5.44 4.55a6.593 6.593 0 01-5.46-2.55M288.679 65.1v-7.63h-1.95v-2.71h1c1 0 1.26-.48 1.26-1.43v-2.37h2.91v3.8h2.7v2.71h-2.7v8.45h2.5v2.7h-2.33c-2.22 0-3.41-1.28-3.41-3.53M297.429 68.62V54.76h3.23v2.86h.13a3.442 3.442 0 013.49-2.87h.71v3.22h-1c-2.18 0-3.32.63-3.32 2.15v8.5h-3.24zM315.649 54.76h3l-5.3 16.34c-.66 2-1.59 2.84-3.77 2.84h-1.95v-2.71h2.38l.61-1.94-4.73-14.53h3.21l2.3 7.33.86 3.51h.15l.91-3.51 2.33-7.33z" fill-rule="nonzero"/><path d="M25.349 84.18a4.432 4.432 0 01-1.73-3.8l.07-40.76a9.833 9.833 0 015.89-8.52l38.09-14.4a4.403 4.403 0 014.16.27l9.24 6.4a4.403 4.403 0 00-4.15-.28l-38.09 14.44a9.865 9.865 0 00-5.9 8.53v40.72a4.435 4.435 0 001.67 3.84l-9.25-6.44z" fill="#0f3659" fill-rule="nonzero"/><path d="M49.889 33.35v11.83a9.884 9.884 0 01-5.9 8.53l-11.08 4.18v17.59l27.5-10.41a9.841 9.841 0 005.94-8.52V27.13l-16.46 6.22z" fill="#9e7bff" fill-rule="nonzero"/><path d="M64.639 12.04a4.424 4.424 0 00-4.16-.28l-38.13 14.41a9.843 9.843 0 00-5.89 8.52l-.06 40.72a4.412 4.412 0 001.73 3.79L1.739 67.83a4.412 4.412 0 01-1.73-3.79l.05-40.72a9.884 9.884 0 015.9-8.53L44.049.39a4.424 4.424 0 014.16.28l16.43 11.37z" fill="#0f3659" fill-rule="nonzero"/><path d="M16.439 75.41a4.02 4.02 0 00-.025.454c0 2.232 1.837 4.07 4.07 4.07.649 0 1.288-.156 1.865-.453l1.31-.5V61.39l-7.2 2.72-.02 11.3zM64.639 12.04l-.51-.29a3.833 3.833 0 00-1.12-.32h-1.43l-.35.07-.19.05-.56.18-10.56 4v7.69l16.43-6.19v-1.4a4.384 4.384 0 00-1.72-3.79M81.069 23.41a3.901 3.901 0 00-2.37-.62h-.56l-.25.05a6.822 6.822 0 00-.93.27l-3.37 1.27v37.13a9.851 9.851 0 01-5.9 8.52l-34.81 13.15v3.6a4.434 4.434 0 001.72 3.84 4.424 4.424 0 004.16.28l38.09-14.46a9.833 9.833 0 005.89-8.52l.06-40.72a4.412 4.412 0 00-1.73-3.79" fill="#9e7bff" fill-rule="nonzero"/></svg> \ No newline at end of file +<svg viewBox="0 0 319 92" xmlns="http://www.w3.org/2000/svg" fill-rule="evenodd" clip-rule="evenodd" stroke-linejoin="round" stroke-miterlimit="2"><path class="text" d="M103.179 41.78v-1.86h2.48V25.1h-2.48v-1.86h7.08v1.86h-2.48v14.82h2.48v1.86h-7.08zM116.249 39.82h5.24a2.652 2.652 0 002.93-2.87v-.9a2.652 2.652 0 00-2.93-2.87h-5.24v6.64zm0-8.56h4.88a2.41 2.41 0 002.68-2.57v-.9a2.422 2.422 0 00-2.68-2.58h-4.88v6.05zm-2.12-8h7.22c.098-.006.196-.01.295-.01 2.43 0 4.43 2 4.43 4.43 0 .12-.005.24-.015.36 0 2.77-1.7 3.75-2.86 3.94v.15a4.018 4.018 0 013.46 4.31c0 3.05-1.94 5.36-4.55 5.36h-8l.02-18.54zM130.639 23.24h2.83l5 10h.13l5.08-10h2.73v18.54h-2.06V26.16h-.13l-1.49 3.11-4.22 8.08-4.16-8.08-1.5-3.11h-.12v15.62h-2.07l-.02-18.54zM156.089 32.62c0-6.25 3-9.73 7.61-9.73a6.444 6.444 0 016.45 4.28l-2.86 1.59a3.53 3.53 0 00-3.59-2.76c-2.48 0-4.07 1.89-4.07 5.05v2.92c0 3.19 1.59 5 4.07 5a4.01 4.01 0 003.82-2.94l2.7 1.67a6.782 6.782 0 01-6.52 4.38c-4.65 0-7.61-3.21-7.61-9.45M176.109 41.78c-2.2 0-3.23-1.22-3.23-3.34V22.13h3.23v16.94h1.75v2.71h-1.75zM188.349 36.13v-2.58c0-2.07-1.06-3.21-2.76-3.21-1.7 0-2.73 1.14-2.73 3.21v2.58c0 2.09 1.06 3.24 2.73 3.24s2.76-1.15 2.76-3.24m-8.88-1.31c0-4.43 2.35-7.22 6.12-7.22s6.15 2.79 6.15 7.22-2.36 7.28-6.15 7.28c-3.79 0-6.12-2.81-6.12-7.28M202.429 39.47h-.08a3.601 3.601 0 01-3.69 2.63c-2.7 0-4.22-2-4.22-5.42v-8.76h3.24v8.42c0 1.91.68 3 2.22 3a2.33 2.33 0 002.58-2.21v-9.21h3.24v13.86h-3.24l-.05-2.31zM217.599 37.03v-4.41c0-1.36-1.19-2.23-2.73-2.23s-2.81 1.3-2.81 3.27v2.39c0 2 1.14 3.24 2.81 3.24 1.67 0 2.73-.83 2.73-2.26m0 2.44h-.13a3.73 3.73 0 01-3.64 2.63c-3.31 0-5.16-2.63-5.16-7.28s1.85-7.2 5.16-7.2a3.659 3.659 0 013.64 2.6h.13v-8.09h3.23v19.65h-3.23v-2.31zM102.979 59.49c0-6.24 3-9.72 7.61-9.72a6.444 6.444 0 016.45 4.28l-2.86 1.57a3.53 3.53 0 00-3.59-2.76c-2.48 0-4.07 1.88-4.07 5v2.93c0 3.18 1.59 5 4.07 5a4.01 4.01 0 003.82-3l2.7 1.67a6.773 6.773 0 01-6.52 4.39c-4.65 0-7.61-3.22-7.61-9.46M127.749 62.97v-2.58c0-2.07-1.06-3.21-2.75-3.21s-2.73 1.14-2.73 3.21v2.58c0 2.1 1.06 3.24 2.73 3.24s2.75-1.14 2.75-3.24m-8.87-1.3c0-4.44 2.35-7.23 6.12-7.23s6.14 2.79 6.14 7.23-2.35 7.28-6.14 7.28c-3.79 0-6.12-2.82-6.12-7.28M133.999 68.62V54.76h3.23v2.31h.12a3.67 3.67 0 013.69-2.63c2.71 0 4.22 2 4.22 5.42v8.76h-3.23v-8.41c0-2-.63-3-2.18-3a2.37 2.37 0 00-2.63 2.23v9.18h-3.22zM149.569 65.1v-7.63h-1.95v-2.71h1c1 0 1.27-.48 1.27-1.43v-2.37h2.91v3.8h2.7v2.71h-2.7v8.45h2.55v2.7h-2.33c-2.22 0-3.41-1.28-3.41-3.53M165.269 64.48v-1.86h-2.07c-1.7 0-2.53.61-2.53 1.7v.45c0 1.12.73 1.68 2 1.68 1.44 0 2.6-.69 2.6-2m-7.89.38c0-2.85 2.05-4.25 5.64-4.25h2.25v-.96a2.18 2.18 0 00-2.45-2.45 3.405 3.405 0 00-3 1.76l-1.92-1.81a5.488 5.488 0 015.15-2.66c3.57 0 5.47 1.78 5.47 4.94v6.52h1.31v2.7h-1.79a2.471 2.471 0 01-2.46-2.39h-.15a3.592 3.592 0 01-3.84 2.71 3.848 3.848 0 01-4.2-4.09M172.449 54.76h3.23v13.86h-3.23V54.76zm-.28-3.72v-.53c0-1 .56-1.7 1.9-1.7 1.34 0 1.89.72 1.89 1.7v.53c0 1-.58 1.7-1.89 1.7s-1.9-.71-1.9-1.7M179.419 68.62V54.76h3.24v2.31h.13a3.67 3.67 0 013.69-2.63c2.7 0 4.22 2 4.22 5.42v8.76h-3.24v-8.41c0-2-.63-3-2.17-3a2.37 2.37 0 00-2.63 2.23v9.18h-3.24zM196.769 60.23v.22h5.41v-.24c0-1.91-.94-3.22-2.61-3.22s-2.8 1.33-2.8 3.24m-3.37 1.44c0-4.38 2.25-7.23 6.12-7.23 4.12 0 6 3.19 6 7v1.11h-8.77v.35a3.015 3.015 0 003.21 3.35 4.004 4.004 0 003.39-1.9l1.74 2a6.415 6.415 0 01-5.46 2.55c-3.89 0-6.22-2.85-6.22-7.28M208.349 68.62V54.76h3.24v2.86h.13a3.442 3.442 0 013.49-2.87h.7v3.22h-1c-2.17 0-3.31.63-3.31 2.15v8.5h-3.25zM232.129 58.53a1.91 1.91 0 002.08-2.09v-1.23a1.9 1.9 0 00-2.08-2.07h-4.3v5.39h4.3zm-4.3 10.09h-3.33V50.09h8c3.21 0 5.21 2.23 5.21 5.73 0 2.55-1.11 4.49-3.29 5.26l3.58 7.54h-3.72l-3.29-7.15h-3.16v7.15zM243.179 60.23v.22h5.41v-.24c0-1.91-.94-3.22-2.61-3.22s-2.8 1.33-2.8 3.24m-3.36 1.44c0-4.38 2.25-7.23 6.11-7.23 4.13 0 6 3.19 6 7v1.11h-8.77v.35a3.014 3.014 0 003.19 3.34 4.003 4.003 0 003.36-1.89l1.75 2a6.437 6.437 0 01-5.46 2.55c-3.9 0-6.22-2.85-6.22-7.28M262.159 59.36v-.45c0-1.41-.83-2.13-2.37-2.13s-2.38.72-2.38 2.13v.45c0 1.38.83 2.12 2.38 2.12 1.55 0 2.37-.74 2.37-2.12m-.73 9.43h-4.5a1.723 1.723 0 00-.68 1.43c0 1.06.76 1.7 2.78 1.7h1.62c2.09 0 3-.56 3-1.73 0-.87-.61-1.4-2.25-1.4m-1.64 5.47c-4.45 0-6.15-1.22-6.15-3.27a2.51 2.51 0 012.35-2.65v-.3a2.266 2.266 0 01-1.61-2.31c0-1.43 1.16-2.15 2.43-2.44v-.11a4.207 4.207 0 01-2.4-4c0-2.82 1.89-4.71 5.46-4.71a7.016 7.016 0 012.3.35v-.45c0-1.36.65-2 1.87-2h2.05v2.6h-2.81v.37a4.216 4.216 0 012 3.86c0 2.78-1.87 4.64-5.46 4.64a7.794 7.794 0 01-2-.24c-.53.195-.897.687-.93 1.25 0 .69.56 1 1.72 1h3.54c3.23 0 4.62 1.46 4.62 4 0 2.89-1.87 4.46-6.92 4.46M268.579 54.76h3.24v13.86h-3.24V54.76zm-.23-3.72v-.53c0-1 .55-1.7 1.89-1.7 1.34 0 1.9.72 1.9 1.7v.53c0 1-.58 1.7-1.9 1.7-1.32 0-1.89-.71-1.89-1.7M274.419 66.4l2-2a4.552 4.552 0 003.61 1.88c1.54 0 2.2-.61 2.2-1.59 0-.8-.46-1.3-1.62-1.46l-1.31-.19c-2.83-.37-4.4-1.67-4.4-4.19 0-2.69 2-4.39 5-4.39a6.156 6.156 0 015.14 2.16l-1.89 2a4.29 4.29 0 00-3.17-1.48c-1.39 0-2 .58-2 1.43s.48 1.36 1.72 1.57l1.34.18c2.88.43 4.27 1.78 4.27 4.09 0 2.69-2.15 4.55-5.44 4.55a6.593 6.593 0 01-5.46-2.55M288.679 65.1v-7.63h-1.95v-2.71h1c1 0 1.26-.48 1.26-1.43v-2.37h2.91v3.8h2.7v2.71h-2.7v8.45h2.5v2.7h-2.33c-2.22 0-3.41-1.28-3.41-3.53M297.429 68.62V54.76h3.23v2.86h.13a3.442 3.442 0 013.49-2.87h.71v3.22h-1c-2.18 0-3.32.63-3.32 2.15v8.5h-3.24zM315.649 54.76h3l-5.3 16.34c-.66 2-1.59 2.84-3.77 2.84h-1.95v-2.71h2.38l.61-1.94-4.73-14.53h3.21l2.3 7.33.86 3.51h.15l.91-3.51 2.33-7.33z" fill-rule="nonzero"/><path d="M25.349 84.18a4.432 4.432 0 01-1.73-3.8l.07-40.76a9.833 9.833 0 015.89-8.52l38.09-14.4a4.403 4.403 0 014.16.27l9.24 6.4a4.403 4.403 0 00-4.15-.28l-38.09 14.44a9.865 9.865 0 00-5.9 8.53v40.72a4.435 4.435 0 001.67 3.84l-9.25-6.44z" fill="#0f3659" fill-rule="nonzero"/><path d="M49.889 33.35v11.83a9.884 9.884 0 01-5.9 8.53l-11.08 4.18v17.59l27.5-10.41a9.841 9.841 0 005.94-8.52V27.13l-16.46 6.22z" fill="#9e7bff" fill-rule="nonzero"/><path d="M64.639 12.04a4.424 4.424 0 00-4.16-.28l-38.13 14.41a9.843 9.843 0 00-5.89 8.52l-.06 40.72a4.412 4.412 0 001.73 3.79L1.739 67.83a4.412 4.412 0 01-1.73-3.79l.05-40.72a9.884 9.884 0 015.9-8.53L44.049.39a4.424 4.424 0 014.16.28l16.43 11.37z" fill="#0f3659" fill-rule="nonzero"/><path d="M16.439 75.41a4.02 4.02 0 00-.025.454c0 2.232 1.837 4.07 4.07 4.07.649 0 1.288-.156 1.865-.453l1.31-.5V61.39l-7.2 2.72-.02 11.3zM64.639 12.04l-.51-.29a3.833 3.833 0 00-1.12-.32h-1.43l-.35.07-.19.05-.56.18-10.56 4v7.69l16.43-6.19v-1.4a4.384 4.384 0 00-1.72-3.79M81.069 23.41a3.901 3.901 0 00-2.37-.62h-.56l-.25.05a6.822 6.822 0 00-.93.27l-3.37 1.27v37.13a9.851 9.851 0 01-5.9 8.52l-34.81 13.15v3.6a4.434 4.434 0 001.72 3.84 4.424 4.424 0 004.16.28l38.09-14.46a9.833 9.833 0 005.89-8.52l.06-40.72a4.412 4.412 0 00-1.73-3.79" fill="#9e7bff" fill-rule="nonzero"/></svg> \ No newline at end of file diff --git a/ui/apps/platform/src/images/jira.svg b/ui/apps/platform/src/images/jira.svg index b3d770c83467a..239494ecc6278 100644 --- a/ui/apps/platform/src/images/jira.svg +++ b/ui/apps/platform/src/images/jira.svg @@ -1 +1 @@ -<svg viewBox="0 0 281 36" xmlns="http://www.w3.org/2000/svg" fill-rule="evenodd" clip-rule="evenodd" stroke-linejoin="round" stroke-miterlimit="2"><g fill="#253858" fill-rule="nonzero"><path d="M52.58 4.263h3.81v19.042c0 5.045-2.241 8.527-7.495 8.527-1.554.023-3.1-.218-4.571-.711v-3.647c1.255.479 2.59.72 3.936.71 3.219 0 4.33-1.895 4.33-4.628l-.01-19.293zM63.335 2.799a2.4 2.4 0 011.85.68 2.32 2.32 0 01.69 1.822c0 1.381-1.137 2.501-2.54 2.501s-2.541-1.12-2.541-2.501a2.323 2.323 0 01.69-1.822 2.402 2.402 0 011.85-.68zm-1.862 8.006h3.642v20.842h-3.642V10.805zM70.615 10.8h3.555v3.666c1.227-2.458 3.369-4.211 7.497-3.96v3.501c-4.658-.474-7.497.919-7.497 5.334v12.315h-3.555V10.8zM98.729 27.891c-1.357 2.752-3.897 4.168-7.155 4.168-5.63 0-8.468-4.708-8.468-10.838 0-5.878 2.964-10.838 8.892-10.838 3.089 0 5.46 1.374 6.736 4.083V10.8h3.642v20.842h-3.642l-.005-3.751zm-6.183.833c3.262 0 6.183-2.041 6.183-6.669v-1.687c0-4.627-2.666-6.669-5.774-6.669-4.11 0-6.226 2.667-6.226 7.503.019 5.021 2.05 7.522 5.822 7.522h-.005zM123.923 32.059c-5.38 0-7.877-1.042-10.037-2.127V26.1c2.584 1.336 6.563 2.293 10.244 2.293 4.19 0 5.774-1.625 5.774-4.046 0-2.42-1.526-3.709-6.818-4.959-6.255-1.502-9.061-3.629-9.061-8.129 0-4.263 3.3-7.417 9.782-7.417 4.023 0 6.607.947 8.512 1.999v3.751a17.304 17.304 0 00-8.661-2.084c-3.642 0-5.803 1.25-5.803 3.751 0 2.25 1.78 3.378 6.689 4.586 5.884 1.459 9.19 3.316 9.19 8.251-.03 4.751-2.906 7.963-9.811 7.963zM136.924 21.178c0-6.252 3.724-10.795 10.076-10.795 6.35 0 9.993 4.543 9.993 10.795 0 6.253-3.685 10.895-9.993 10.895-6.31 0-10.076-4.642-10.076-10.895zm3.556 0c0 3.96 1.992 7.546 6.52 7.546 4.527 0 6.438-3.586 6.438-7.546 0-3.96-1.95-7.441-6.438-7.441-4.49 0-6.501 3.481-6.501 7.441h-.02zM166.265 10.8h5.462v3.316h-5.462v17.526h-3.555V14.116h-3.446V10.8h3.43V8.526c0-3.874 2.205-6.503 6.737-6.503a8.883 8.883 0 012.454.331V5.67a12.156 12.156 0 00-2.285-.208c-2.242 0-3.368 1.293-3.368 3.169l.033 2.169zM184.049 28.142a11.73 11.73 0 002.286-.294v3.458a8.845 8.845 0 01-2.454.331c-4.533 0-6.737-2.624-6.737-6.503V14.135h-3.445v-3.316h3.43V6.381h3.557V10.8h5.629v3.316h-5.63v10.942c.02 1.833 1.122 3.084 3.364 3.084zM187.355 10.8h4.022l6.097 17.673 6.178-17.673h3.474l6.183 17.673 6.1-17.673h4.023l-7.79 20.842h-4.657l-3.643-10.085-1.924-6.418-1.925 6.418-3.69 10.085h-4.658l-7.79-20.842zM240.066 27.891c-1.357 2.752-3.897 4.168-7.155 4.168-5.63 0-8.468-4.708-8.468-10.838 0-5.878 2.964-10.838 8.892-10.838 3.089 0 5.46 1.374 6.736 4.083V10.8h3.643v20.842h-3.643l-.005-3.751zm-6.183.833c3.263 0 6.183-2.041 6.183-6.669v-1.687c0-4.627-2.665-6.669-5.774-6.669-4.09.038-6.221 2.686-6.221 7.522 0 5.002 2.045 7.503 5.817 7.503h-.005zM249.213 10.8h3.556v3.666c1.227-2.458 3.368-4.211 7.497-3.96v3.501c-4.658-.474-7.497.919-7.497 5.334v12.315h-3.556V10.8zM273.093 32.059c-7.92 0-11.39-4.5-11.39-10.895 0-6.295 3.557-10.795 9.995-10.795 6.52 0 9.142 4.462 9.142 10.795v1.625h-15.45c.51 3.543 2.839 5.836 7.833 5.836a19.023 19.023 0 006.438-1.128v3.316c-1.737.924-4.407 1.246-6.568 1.246zm-7.746-12.316h11.803c-.212-3.875-1.992-6.087-5.63-6.087-3.844-.019-5.793 2.449-6.173 6.063v.024z"/></g><path d="M34.835 16.939L17.629 0 .422 16.939a1.406 1.406 0 000 2.008l17.207 16.939 17.206-16.939a1.405 1.405 0 000-2.008zm-17.206 6.309l-5.39-5.305 5.39-5.305 5.389 5.305-5.39 5.305z" fill="#2684ff" fill-rule="nonzero"/><path d="M17.63 12.638A8.836 8.836 0 0117.591.043L5.798 11.648l6.419 6.319 5.413-5.329z" fill="url(#_Linear1)" fill-rule="nonzero" transform="translate(-.001)"/><path d="M23.033 17.929l-5.403 5.319a8.865 8.865 0 012.66 6.319 8.862 8.862 0 01-2.66 6.319l11.822-11.638-6.419-6.319z" fill="url(#_Linear2)" fill-rule="nonzero" transform="translate(-.001)"/><defs><linearGradient id="_Linear1" x1="0" y1="0" x2="1" y2="0" gradientUnits="userSpaceOnUse" gradientTransform="scale(-10.56014) rotate(-44.551 -1.63 1.582)"><stop offset="0" stop-color="#0052cc"/><stop offset=".18" stop-color="#0052cc"/><stop offset="1" stop-color="#2684ff"/></linearGradient><linearGradient id="_Linear2" x1="0" y1="0" x2="1" y2="0" gradientUnits="userSpaceOnUse" gradientTransform="scale(10.53988) rotate(-44.551 4.192 -.806)"><stop offset="0" stop-color="#0052cc"/><stop offset=".18" stop-color="#0052cc"/><stop offset="1" stop-color="#2684ff"/></linearGradient></defs></svg> \ No newline at end of file +<svg viewBox="0 0 281 36" xmlns="http://www.w3.org/2000/svg" fill-rule="evenodd" clip-rule="evenodd" stroke-linejoin="round" stroke-miterlimit="2"><g class="text" fill="#253858" fill-rule="nonzero"><path d="M52.58 4.263h3.81v19.042c0 5.045-2.241 8.527-7.495 8.527-1.554.023-3.1-.218-4.571-.711v-3.647c1.255.479 2.59.72 3.936.71 3.219 0 4.33-1.895 4.33-4.628l-.01-19.293zM63.335 2.799a2.4 2.4 0 011.85.68 2.32 2.32 0 01.69 1.822c0 1.381-1.137 2.501-2.54 2.501s-2.541-1.12-2.541-2.501a2.323 2.323 0 01.69-1.822 2.402 2.402 0 011.85-.68zm-1.862 8.006h3.642v20.842h-3.642V10.805zM70.615 10.8h3.555v3.666c1.227-2.458 3.369-4.211 7.497-3.96v3.501c-4.658-.474-7.497.919-7.497 5.334v12.315h-3.555V10.8zM98.729 27.891c-1.357 2.752-3.897 4.168-7.155 4.168-5.63 0-8.468-4.708-8.468-10.838 0-5.878 2.964-10.838 8.892-10.838 3.089 0 5.46 1.374 6.736 4.083V10.8h3.642v20.842h-3.642l-.005-3.751zm-6.183.833c3.262 0 6.183-2.041 6.183-6.669v-1.687c0-4.627-2.666-6.669-5.774-6.669-4.11 0-6.226 2.667-6.226 7.503.019 5.021 2.05 7.522 5.822 7.522h-.005zM123.923 32.059c-5.38 0-7.877-1.042-10.037-2.127V26.1c2.584 1.336 6.563 2.293 10.244 2.293 4.19 0 5.774-1.625 5.774-4.046 0-2.42-1.526-3.709-6.818-4.959-6.255-1.502-9.061-3.629-9.061-8.129 0-4.263 3.3-7.417 9.782-7.417 4.023 0 6.607.947 8.512 1.999v3.751a17.304 17.304 0 00-8.661-2.084c-3.642 0-5.803 1.25-5.803 3.751 0 2.25 1.78 3.378 6.689 4.586 5.884 1.459 9.19 3.316 9.19 8.251-.03 4.751-2.906 7.963-9.811 7.963zM136.924 21.178c0-6.252 3.724-10.795 10.076-10.795 6.35 0 9.993 4.543 9.993 10.795 0 6.253-3.685 10.895-9.993 10.895-6.31 0-10.076-4.642-10.076-10.895zm3.556 0c0 3.96 1.992 7.546 6.52 7.546 4.527 0 6.438-3.586 6.438-7.546 0-3.96-1.95-7.441-6.438-7.441-4.49 0-6.501 3.481-6.501 7.441h-.02zM166.265 10.8h5.462v3.316h-5.462v17.526h-3.555V14.116h-3.446V10.8h3.43V8.526c0-3.874 2.205-6.503 6.737-6.503a8.883 8.883 0 012.454.331V5.67a12.156 12.156 0 00-2.285-.208c-2.242 0-3.368 1.293-3.368 3.169l.033 2.169zM184.049 28.142a11.73 11.73 0 002.286-.294v3.458a8.845 8.845 0 01-2.454.331c-4.533 0-6.737-2.624-6.737-6.503V14.135h-3.445v-3.316h3.43V6.381h3.557V10.8h5.629v3.316h-5.63v10.942c.02 1.833 1.122 3.084 3.364 3.084zM187.355 10.8h4.022l6.097 17.673 6.178-17.673h3.474l6.183 17.673 6.1-17.673h4.023l-7.79 20.842h-4.657l-3.643-10.085-1.924-6.418-1.925 6.418-3.69 10.085h-4.658l-7.79-20.842zM240.066 27.891c-1.357 2.752-3.897 4.168-7.155 4.168-5.63 0-8.468-4.708-8.468-10.838 0-5.878 2.964-10.838 8.892-10.838 3.089 0 5.46 1.374 6.736 4.083V10.8h3.643v20.842h-3.643l-.005-3.751zm-6.183.833c3.263 0 6.183-2.041 6.183-6.669v-1.687c0-4.627-2.665-6.669-5.774-6.669-4.09.038-6.221 2.686-6.221 7.522 0 5.002 2.045 7.503 5.817 7.503h-.005zM249.213 10.8h3.556v3.666c1.227-2.458 3.368-4.211 7.497-3.96v3.501c-4.658-.474-7.497.919-7.497 5.334v12.315h-3.556V10.8zM273.093 32.059c-7.92 0-11.39-4.5-11.39-10.895 0-6.295 3.557-10.795 9.995-10.795 6.52 0 9.142 4.462 9.142 10.795v1.625h-15.45c.51 3.543 2.839 5.836 7.833 5.836a19.023 19.023 0 006.438-1.128v3.316c-1.737.924-4.407 1.246-6.568 1.246zm-7.746-12.316h11.803c-.212-3.875-1.992-6.087-5.63-6.087-3.844-.019-5.793 2.449-6.173 6.063v.024z"/></g><path d="M34.835 16.939L17.629 0 .422 16.939a1.406 1.406 0 000 2.008l17.207 16.939 17.206-16.939a1.405 1.405 0 000-2.008zm-17.206 6.309l-5.39-5.305 5.39-5.305 5.389 5.305-5.39 5.305z" fill="#2684ff" fill-rule="nonzero"/><path d="M17.63 12.638A8.836 8.836 0 0117.591.043L5.798 11.648l6.419 6.319 5.413-5.329z" fill="url(#_Linear1)" fill-rule="nonzero" transform="translate(-.001)"/><path d="M23.033 17.929l-5.403 5.319a8.865 8.865 0 012.66 6.319 8.862 8.862 0 01-2.66 6.319l11.822-11.638-6.419-6.319z" fill="url(#_Linear2)" fill-rule="nonzero" transform="translate(-.001)"/><defs><linearGradient id="_Linear1" x1="0" y1="0" x2="1" y2="0" gradientUnits="userSpaceOnUse" gradientTransform="scale(-10.56014) rotate(-44.551 -1.63 1.582)"><stop offset="0" stop-color="#0052cc"/><stop offset=".18" stop-color="#0052cc"/><stop offset="1" stop-color="#2684ff"/></linearGradient><linearGradient id="_Linear2" x1="0" y1="0" x2="1" y2="0" gradientUnits="userSpaceOnUse" gradientTransform="scale(10.53988) rotate(-44.551 4.192 -.806)"><stop offset="0" stop-color="#0052cc"/><stop offset=".18" stop-color="#0052cc"/><stop offset="1" stop-color="#2684ff"/></linearGradient></defs></svg> \ No newline at end of file diff --git a/ui/apps/platform/src/images/microsoft_sentinel.svg b/ui/apps/platform/src/images/microsoft_sentinel.svg index a5dc038ed1ee1..2f32edf3831af 100644 --- a/ui/apps/platform/src/images/microsoft_sentinel.svg +++ b/ui/apps/platform/src/images/microsoft_sentinel.svg @@ -3,13 +3,13 @@ <path d="M32.4954 54.0245C31.9353 54.1257 31.869 54.6597 31.7298 55.0786C29.8441 60.7364 27.9782 66.4013 26.1024 72.0661C25.8604 72.7921 25.6052 73.5146 25.3534 74.2371C25.1976 74.6909 25.0551 74.9038 24.558 74.4919C20.6539 71.2459 16.9652 67.7381 13.5914 63.8952C10.2607 60.1012 7.28789 55.993 5.12705 51.3194C3.53294 47.8745 2.43927 44.2689 2.141 40.3946C1.97529 38.2446 2.01837 36.105 2.00843 33.9619C1.97529 27.3407 1.99517 20.7195 1.99517 14.0983C1.99517 12.559 2.05151 12.5276 3.5694 12.4648C6.91007 12.3252 10.1878 11.7842 13.4158 10.8592C16.773 9.89588 19.8154 8.24843 22.6457 6.16119C25.2838 4.21706 28.061 2.66036 31.3255 2.27643C37.0524 1.60279 42.5704 1.95182 47.4555 5.70047C47.8996 6.04252 48.0156 6.29383 47.83 6.84181C46.7297 10.0913 45.6592 13.3548 44.5987 16.6183C44.4993 16.9255 44.2905 17.1139 44.1347 17.3583C43.6111 17.6759 43.1371 17.3338 42.6665 17.1977C35.9719 15.271 29.443 15.7841 23.3118 19.1872C15.623 23.4594 10.9069 30.1923 9.35592 39.2742C9.23661 39.9688 9.14713 40.6669 9.13387 41.3754C9.12724 41.8501 9.31615 42.0525 9.75362 42.056C11.8946 42.0595 14.0322 42.0665 16.1731 42.0525C16.71 42.0491 16.8658 41.6861 16.9487 41.2149C17.1608 40.0246 17.3729 38.8344 17.7871 37.6966C20.528 30.1818 25.6715 25.8503 33.2411 24.6741C35.7665 24.2831 38.2024 24.674 40.625 25.3407C40.9697 25.4349 41.4171 25.4454 41.4933 25.976C40.6847 28.3424 39.8793 30.7089 39.064 33.0753C38.9249 33.4802 38.7525 33.8711 38.5934 34.269C38.2355 34.5797 37.8643 34.3598 37.4964 34.3005C35.6803 34.0073 33.884 33.9793 32.1143 34.632C28.5648 35.9444 25.9101 39.6896 25.8207 43.5639C25.7146 48.0036 27.9517 51.7662 31.6238 53.3613C31.9519 53.5044 32.4092 53.5009 32.4888 54.021L32.4954 54.0245Z" fill="#2686CD"/> <path d="M41.6655 25.1351C36.5054 23.1874 31.4778 23.5853 26.7087 26.3637C21.3364 29.491 18.2543 34.381 17.3429 40.7684C17.2633 41.3163 17.1175 41.5048 16.5873 41.4978C14.2574 41.4734 11.9275 41.4664 9.59769 41.4978C9.00114 41.5048 8.96468 41.278 8.99783 40.73C9.75345 28.786 18.4564 18.2032 29.5887 15.6727C34.5765 14.5383 39.4715 14.8525 44.3069 16.5104C50.2028 18.828 54.8923 22.7232 58.2032 28.3881C60.4104 32.1646 61.6797 36.2728 62.0277 40.702C62.0774 41.3338 61.9714 41.5083 61.3582 41.4978C59.0615 41.4629 56.7648 41.4629 54.4681 41.4978C53.8749 41.5083 53.7622 41.271 53.676 40.702C52.5658 33.3863 48.7479 28.2729 42.2985 25.3305C42.0963 25.2398 41.8743 25.1944 41.6622 25.1316L41.6655 25.1351Z" fill="#FEFEFE"/> <path d="M32.9863 53.2357C30.4378 52.2689 28.3665 50.6633 27.1569 48.0595C25.3408 44.1468 25.6158 40.3458 28.1809 36.9218C30.6996 33.564 34.0899 32.4401 38.0668 33.2534C38.4082 33.3232 38.7495 33.407 39.0909 33.4837C41.8184 34.6879 43.9593 36.5727 44.9933 39.5535C46.3189 43.3894 45.8118 47.0019 43.2335 50.0909C40.6618 53.1694 37.3676 54.199 33.5531 53.3439C33.3675 53.302 33.1786 53.2741 32.9897 53.2392L32.9863 53.2357Z" fill="#FEFEFE"/> -<path d="M108.08 15.8932V41.5531H103.904V21.4495H103.821L96.3699 41.5531H93.5942L85.9345 21.4495H85.8946V41.5531H82V15.8932H88.003L94.919 34.8953H95.0452L102.33 15.8932H108.08ZM111.557 17.8321C111.557 17.1283 111.806 16.5547 112.3 16.0691C112.798 15.5835 113.376 15.3196 114.04 15.3196C114.747 15.3196 115.325 15.5835 115.823 16.0691C116.281 16.5547 116.53 17.1705 116.53 17.8321C116.53 18.5359 116.281 19.1552 115.787 19.6408C115.328 20.0807 114.747 20.3446 114.044 20.3446C113.34 20.3446 112.762 20.0807 112.267 19.5951C111.809 19.1095 111.56 18.5359 111.56 17.8321H111.557ZM116.032 41.5531H111.968V23.1668H116.032V41.5531ZM128.37 38.379C128.988 38.379 129.652 38.2453 130.356 37.9392C131.1 37.6295 131.764 37.2319 132.381 36.7498V40.8071C131.72 41.2047 131.017 41.4686 130.19 41.6868C129.363 41.9085 128.45 41.9965 127.457 41.9965C124.931 41.9965 122.859 41.1132 121.285 39.4382C119.675 37.7175 118.884 35.5146 118.884 32.8684C118.884 29.9125 119.711 27.488 121.328 25.5491C122.938 23.6524 125.219 22.6812 128.201 22.6812C128.985 22.6812 129.732 22.8149 130.518 22.9908C131.302 23.2125 131.926 23.4764 132.378 23.7404V27.8856C131.76 27.4 131.096 27.0024 130.472 26.7385C129.811 26.4745 129.147 26.3408 128.447 26.3408C126.83 26.3408 125.548 26.9144 124.555 28.0158C123.599 29.1173 123.104 30.6163 123.104 32.4673C123.104 34.3182 123.563 35.8173 124.512 36.8307C125.468 37.8899 126.747 38.372 128.364 38.372L128.37 38.379ZM143.936 22.8606C144.268 22.8606 144.56 22.8606 144.809 22.9486C145.094 22.9943 145.307 23.0366 145.469 23.1245V27.488C145.26 27.3121 144.971 27.1783 144.56 27.0024C144.145 26.8687 143.65 26.7807 143.069 26.7807C142.076 26.7807 141.203 27.2206 140.542 28.146C139.842 29.0293 139.51 30.3946 139.51 32.2456V41.5496H135.452V23.1633H139.51V26.0734H139.593C139.925 25.0599 140.502 24.2647 141.249 23.6911C141.993 23.1175 142.906 22.8536 143.939 22.8536L143.936 22.8606ZM145.719 32.6045C145.719 29.5642 146.502 27.1819 148.119 25.4189C149.729 23.6102 151.967 22.7304 154.826 22.7304C157.519 22.7304 159.627 23.5679 161.161 25.2887C162.652 27.0094 163.435 29.3002 163.435 32.2104C163.435 35.1205 162.609 37.5908 160.995 39.3538C159.378 41.1168 157.187 42 154.411 42C151.635 42 149.646 41.1625 148.076 39.4875C146.505 37.8125 145.719 35.5182 145.719 32.608V32.6045ZM149.942 32.4708C149.942 34.4097 150.357 35.8665 151.14 36.88C151.967 37.8934 153.126 38.379 154.663 38.379C156.2 38.379 157.273 37.8934 158.056 36.88C158.8 35.8665 159.215 34.3675 159.215 32.3828C159.215 30.3981 158.8 28.8991 158.017 27.8856C157.19 26.8722 156.068 26.3866 154.617 26.3866C153.166 26.3866 151.967 26.9144 151.184 27.9736C150.357 29.0328 149.942 30.5319 149.942 32.4708ZM169.481 27.9736C169.481 28.5894 169.647 29.075 170.023 29.4269C170.391 29.7788 171.221 30.2222 172.463 30.7923C174.12 31.4538 175.239 32.2456 175.903 33.0866C176.563 33.9663 176.895 35.0255 176.895 36.2607C176.895 37.9814 176.271 39.3467 174.99 40.4059C173.748 41.4651 172.048 41.993 169.94 41.993C169.232 41.993 168.449 41.905 167.576 41.729C166.709 41.5074 165.965 41.2892 165.341 41.0253V36.7498C166.085 37.2776 166.875 37.721 167.742 38.0729C168.615 38.3826 169.359 38.5585 170.059 38.5585C170.969 38.5585 171.633 38.3826 172.091 38.1186C172.543 37.8547 172.752 37.4149 172.752 36.7533C172.752 36.1375 172.503 35.6519 172.045 35.2542C171.593 34.8144 170.763 34.371 169.478 33.7974C167.987 33.1359 166.912 32.3863 166.294 31.5488C165.67 30.7113 165.338 29.6521 165.338 28.3748C165.338 26.742 165.962 25.3766 167.204 24.3175C168.445 23.216 170.056 22.6847 172.005 22.6847C172.622 22.6847 173.286 22.7727 174.03 22.9064C174.82 23.0401 175.438 23.2583 175.936 23.48V27.5795C175.401 27.1819 174.777 26.8757 174.03 26.6083C173.33 26.2986 172.622 26.1684 171.922 26.1684C171.132 26.1684 170.554 26.3444 170.099 26.654C169.684 27.0059 169.475 27.4493 169.475 27.9771L169.481 27.9736ZM178.632 32.6045C178.632 29.5642 179.422 27.1819 181.032 25.4189C182.649 23.6102 184.884 22.7304 187.739 22.7304C190.595 22.7304 192.54 23.5679 194.074 25.2887C195.605 27.0094 196.349 29.3002 196.349 32.2104C196.349 35.1205 195.565 37.5908 193.948 39.3538C192.338 41.1168 190.14 42 187.367 42C184.595 42 182.566 41.1625 180.993 39.4875C179.419 37.8125 178.629 35.5182 178.629 32.608L178.632 32.6045ZM182.855 32.4708C182.855 34.4097 183.27 35.8665 184.097 36.88C184.887 37.8934 186.083 38.379 187.573 38.379C189.064 38.379 190.183 37.8934 190.967 36.88C191.71 35.8665 192.125 34.3675 192.125 32.3828C192.125 30.3981 191.71 28.8991 190.927 27.8856C190.1 26.8722 188.978 26.3866 187.533 26.3866C186.089 26.3866 184.924 26.9144 184.094 27.9736C183.267 29.0328 182.852 30.5319 182.852 32.4708H182.855ZM209.852 26.6962H203.763V41.5531H199.666V26.6962H196.764V23.1703H199.666V20.612C199.666 18.6731 200.247 17.0861 201.442 15.8509C202.601 14.6158 204.135 14 205.957 14C206.455 14 206.907 14.0457 207.282 14.088C207.651 14.1337 207.983 14.2217 208.275 14.3097V18.0573C208.149 17.9693 207.943 17.8814 207.568 17.7476C207.236 17.6597 206.867 17.5717 206.409 17.5717C205.582 17.5717 204.918 17.8814 204.467 18.4549C204.008 18.9828 203.759 19.8203 203.759 20.9675V23.1703H209.849V19.025L213.906 17.7019V23.1703H218.003V26.6962H213.906V35.293C213.906 36.4401 214.112 37.2319 214.487 37.6753C214.856 38.1609 215.48 38.379 216.31 38.379C216.559 38.379 216.844 38.3333 217.176 38.2031C217.508 38.1151 217.758 37.9392 218.003 37.8055V41.3772C217.754 41.5109 217.342 41.6411 216.722 41.7748C216.141 41.9085 215.563 41.9965 214.982 41.9965C213.242 41.9965 211.957 41.5109 211.13 40.5396C210.264 39.5684 209.849 38.1151 209.849 36.1305V26.6962H209.852Z" fill="#282828"/> -<path d="M95.0077 68.6124V66.2625C95.2741 66.499 95.5945 66.7123 95.9689 66.9023C96.3433 67.0923 96.7371 67.2513 97.1501 67.3831C97.5631 67.515 97.98 67.6158 98.3969 67.6856C98.8138 67.7554 99.1998 67.7942 99.555 67.7942C100.775 67.7942 101.686 67.5654 102.288 67.1117C102.89 66.658 103.191 66.0026 103.191 65.1495C103.191 64.6919 103.091 64.2925 102.89 63.9513C102.689 63.6101 102.411 63.2998 102.056 63.0206C101.701 62.7414 101.284 62.47 100.798 62.2141C100.312 61.9581 99.7904 61.6867 99.2346 61.3997C98.644 61.1011 98.092 60.7948 97.5824 60.4846C97.069 60.1743 96.6251 59.837 96.2468 59.4647C95.8685 59.0924 95.5713 58.6736 95.3551 58.2006C95.139 57.7313 95.0309 57.1768 95.0309 56.5447C95.0309 55.7692 95.2007 55.0945 95.5404 54.5206C95.8801 53.9466 96.324 53.4736 96.876 53.1013C97.428 52.729 98.0534 52.4537 98.7598 52.2714C99.4662 52.0892 100.184 52 100.914 52C102.581 52 103.801 52.2016 104.562 52.6049V54.8463C103.562 54.1522 102.276 53.8032 100.713 53.8032C100.281 53.8032 99.8483 53.8497 99.4121 53.9389C98.9798 54.0281 98.5938 54.1793 98.2541 54.3848C97.9144 54.5904 97.6403 54.854 97.428 55.1798C97.2157 55.5055 97.1076 55.901 97.1076 56.3664C97.1076 56.8007 97.1887 57.1768 97.3508 57.4948C97.5129 57.8128 97.7523 58.0997 98.0649 58.3595C98.3776 58.6194 98.7636 58.8753 99.2153 59.1196C99.6669 59.3639 100.188 59.6353 100.779 59.9262C101.385 60.2286 101.96 60.5427 102.504 60.8762C103.048 61.2097 103.523 61.5781 103.932 61.9814C104.342 62.3847 104.666 62.8306 104.905 63.3231C105.144 63.8156 105.264 64.374 105.264 65.0099C105.264 65.8475 105.102 66.5572 104.774 67.1388C104.446 67.7205 104.006 68.1936 103.45 68.5581C102.894 68.9226 102.253 69.1863 101.531 69.3453C100.809 69.5043 100.041 69.5896 99.2384 69.5896C98.9721 69.5896 98.6401 69.5663 98.2464 69.5237C97.8526 69.481 97.4512 69.4151 97.042 69.3336C96.6328 69.2522 96.2468 69.1475 95.8801 69.0234C95.5134 68.8993 95.22 68.7636 95 68.6163L95.0077 68.6124Z" fill="#282828"/> -<path d="M117.555 63.8355H109.017C109.047 65.1888 109.41 66.2319 110.101 66.9687C110.792 67.7055 111.746 68.0739 112.958 68.0739C114.32 68.0739 115.571 67.6241 116.714 66.7205V68.547C115.652 69.3225 114.247 69.7103 112.498 69.7103C110.75 69.7103 109.449 69.1597 108.472 68.0545C107.496 66.9493 107.009 65.3982 107.009 63.3973C107.009 61.5088 107.542 59.9655 108.611 58.775C109.677 57.5845 111.005 56.9912 112.587 56.9912C114.17 56.9912 115.393 57.507 116.262 58.5346C117.127 59.5622 117.563 60.9892 117.563 62.8195V63.8394L117.555 63.8355ZM115.571 62.1874C115.563 61.0629 115.293 60.1904 114.76 59.5661C114.228 58.9417 113.49 58.6276 112.545 58.6276C111.599 58.6276 110.858 58.9572 110.217 59.6126C109.58 60.2679 109.186 61.1288 109.036 62.1874H115.567H115.571Z" fill="#282828"/> -<path d="M131.06 69.4272H129.123V62.4976C129.123 59.9189 128.185 58.6315 126.312 58.6315C125.344 58.6315 124.545 58.996 123.908 59.7289C123.275 60.4618 122.958 61.3847 122.958 62.4976V69.4272H121.02V57.2782H122.958V59.2946H123.004C123.919 57.759 125.239 56.9912 126.973 56.9912C128.297 56.9912 129.308 57.4216 130.007 58.2786C130.705 59.1356 131.057 60.3765 131.057 61.9974V69.4233L131.06 69.4272Z" fill="#282828"/> -<path d="M140.09 69.6196C139.634 69.8717 139.032 69.9997 138.283 69.9997C136.164 69.9997 135.106 68.8131 135.106 66.4399V59.2505H133.03V57.5908H135.106V54.6243L137.044 53.9961V57.5908H140.09V59.2505H137.044V66.0947C137.044 66.9091 137.183 67.4907 137.457 67.8397C137.731 68.1887 138.191 68.3632 138.827 68.3632C139.318 68.3632 139.738 68.2275 140.09 67.96V69.6196Z" fill="#282828"/> -<path d="M143.287 54.5283C142.94 54.5283 142.647 54.4081 142.403 54.1715C142.16 53.935 142.037 53.6325 142.037 53.268C142.037 52.9035 142.16 52.6011 142.403 52.3606C142.647 52.1202 142.944 52 143.287 52C143.631 52 143.944 52.1202 144.191 52.3606C144.438 52.6011 144.561 52.9035 144.561 53.268C144.561 53.6325 144.438 53.9117 144.191 54.156C143.944 54.4003 143.642 54.5244 143.287 54.5244V54.5283ZM144.233 69.7641H142.295V57.615H144.233V69.7641Z" fill="#282828"/> -<path d="M159.082 69.4272H157.144V62.4976C157.144 59.9189 156.206 58.6315 154.334 58.6315C153.365 58.6315 152.562 58.996 151.929 59.7289C151.296 60.4618 150.98 61.3847 150.98 62.4976V69.4272H149.042V57.2782H150.98V59.2946H151.026C151.941 57.759 153.261 56.9912 154.994 56.9912C156.318 56.9912 157.33 57.4216 158.028 58.2786C158.727 59.1356 159.078 60.3765 159.078 61.9974V69.4233L159.082 69.4272Z" fill="#282828"/> -<path d="M171.593 63.8355H163.055C163.086 65.1888 163.448 66.2319 164.139 66.9687C164.83 67.7055 165.784 68.0739 167 68.0739C168.362 68.0739 169.613 67.6241 170.756 66.7205V68.547C169.694 69.3225 168.289 69.7103 166.54 69.7103C164.792 69.7103 163.491 69.1597 162.514 68.0545C161.538 66.9493 161.051 65.3982 161.051 63.3973C161.051 61.5088 161.584 59.9655 162.653 58.775C163.722 57.5845 165.043 56.9912 166.629 56.9912C168.216 56.9912 169.435 57.507 170.304 58.5346C171.169 59.5622 171.605 60.9892 171.605 62.8195V63.8394L171.593 63.8355ZM169.609 62.1874C169.601 61.0629 169.331 60.1904 168.799 59.5661C168.266 58.9417 167.529 58.6276 166.583 58.6276C165.637 58.6276 164.892 58.9572 164.255 59.6126C163.618 60.2679 163.225 61.1288 163.074 62.1874H169.605H169.609Z" fill="#282828"/> -<path d="M177 69.9851H175.062V52H177V69.9851Z" fill="#282828"/> +<path d="M108.08 15.8932V41.5531H103.904V21.4495H103.821L96.3699 41.5531H93.5942L85.9345 21.4495H85.8946V41.5531H82V15.8932H88.003L94.919 34.8953H95.0452L102.33 15.8932H108.08ZM111.557 17.8321C111.557 17.1283 111.806 16.5547 112.3 16.0691C112.798 15.5835 113.376 15.3196 114.04 15.3196C114.747 15.3196 115.325 15.5835 115.823 16.0691C116.281 16.5547 116.53 17.1705 116.53 17.8321C116.53 18.5359 116.281 19.1552 115.787 19.6408C115.328 20.0807 114.747 20.3446 114.044 20.3446C113.34 20.3446 112.762 20.0807 112.267 19.5951C111.809 19.1095 111.56 18.5359 111.56 17.8321H111.557ZM116.032 41.5531H111.968V23.1668H116.032V41.5531ZM128.37 38.379C128.988 38.379 129.652 38.2453 130.356 37.9392C131.1 37.6295 131.764 37.2319 132.381 36.7498V40.8071C131.72 41.2047 131.017 41.4686 130.19 41.6868C129.363 41.9085 128.45 41.9965 127.457 41.9965C124.931 41.9965 122.859 41.1132 121.285 39.4382C119.675 37.7175 118.884 35.5146 118.884 32.8684C118.884 29.9125 119.711 27.488 121.328 25.5491C122.938 23.6524 125.219 22.6812 128.201 22.6812C128.985 22.6812 129.732 22.8149 130.518 22.9908C131.302 23.2125 131.926 23.4764 132.378 23.7404V27.8856C131.76 27.4 131.096 27.0024 130.472 26.7385C129.811 26.4745 129.147 26.3408 128.447 26.3408C126.83 26.3408 125.548 26.9144 124.555 28.0158C123.599 29.1173 123.104 30.6163 123.104 32.4673C123.104 34.3182 123.563 35.8173 124.512 36.8307C125.468 37.8899 126.747 38.372 128.364 38.372L128.37 38.379ZM143.936 22.8606C144.268 22.8606 144.56 22.8606 144.809 22.9486C145.094 22.9943 145.307 23.0366 145.469 23.1245V27.488C145.26 27.3121 144.971 27.1783 144.56 27.0024C144.145 26.8687 143.65 26.7807 143.069 26.7807C142.076 26.7807 141.203 27.2206 140.542 28.146C139.842 29.0293 139.51 30.3946 139.51 32.2456V41.5496H135.452V23.1633H139.51V26.0734H139.593C139.925 25.0599 140.502 24.2647 141.249 23.6911C141.993 23.1175 142.906 22.8536 143.939 22.8536L143.936 22.8606ZM145.719 32.6045C145.719 29.5642 146.502 27.1819 148.119 25.4189C149.729 23.6102 151.967 22.7304 154.826 22.7304C157.519 22.7304 159.627 23.5679 161.161 25.2887C162.652 27.0094 163.435 29.3002 163.435 32.2104C163.435 35.1205 162.609 37.5908 160.995 39.3538C159.378 41.1168 157.187 42 154.411 42C151.635 42 149.646 41.1625 148.076 39.4875C146.505 37.8125 145.719 35.5182 145.719 32.608V32.6045ZM149.942 32.4708C149.942 34.4097 150.357 35.8665 151.14 36.88C151.967 37.8934 153.126 38.379 154.663 38.379C156.2 38.379 157.273 37.8934 158.056 36.88C158.8 35.8665 159.215 34.3675 159.215 32.3828C159.215 30.3981 158.8 28.8991 158.017 27.8856C157.19 26.8722 156.068 26.3866 154.617 26.3866C153.166 26.3866 151.967 26.9144 151.184 27.9736C150.357 29.0328 149.942 30.5319 149.942 32.4708ZM169.481 27.9736C169.481 28.5894 169.647 29.075 170.023 29.4269C170.391 29.7788 171.221 30.2222 172.463 30.7923C174.12 31.4538 175.239 32.2456 175.903 33.0866C176.563 33.9663 176.895 35.0255 176.895 36.2607C176.895 37.9814 176.271 39.3467 174.99 40.4059C173.748 41.4651 172.048 41.993 169.94 41.993C169.232 41.993 168.449 41.905 167.576 41.729C166.709 41.5074 165.965 41.2892 165.341 41.0253V36.7498C166.085 37.2776 166.875 37.721 167.742 38.0729C168.615 38.3826 169.359 38.5585 170.059 38.5585C170.969 38.5585 171.633 38.3826 172.091 38.1186C172.543 37.8547 172.752 37.4149 172.752 36.7533C172.752 36.1375 172.503 35.6519 172.045 35.2542C171.593 34.8144 170.763 34.371 169.478 33.7974C167.987 33.1359 166.912 32.3863 166.294 31.5488C165.67 30.7113 165.338 29.6521 165.338 28.3748C165.338 26.742 165.962 25.3766 167.204 24.3175C168.445 23.216 170.056 22.6847 172.005 22.6847C172.622 22.6847 173.286 22.7727 174.03 22.9064C174.82 23.0401 175.438 23.2583 175.936 23.48V27.5795C175.401 27.1819 174.777 26.8757 174.03 26.6083C173.33 26.2986 172.622 26.1684 171.922 26.1684C171.132 26.1684 170.554 26.3444 170.099 26.654C169.684 27.0059 169.475 27.4493 169.475 27.9771L169.481 27.9736ZM178.632 32.6045C178.632 29.5642 179.422 27.1819 181.032 25.4189C182.649 23.6102 184.884 22.7304 187.739 22.7304C190.595 22.7304 192.54 23.5679 194.074 25.2887C195.605 27.0094 196.349 29.3002 196.349 32.2104C196.349 35.1205 195.565 37.5908 193.948 39.3538C192.338 41.1168 190.14 42 187.367 42C184.595 42 182.566 41.1625 180.993 39.4875C179.419 37.8125 178.629 35.5182 178.629 32.608L178.632 32.6045ZM182.855 32.4708C182.855 34.4097 183.27 35.8665 184.097 36.88C184.887 37.8934 186.083 38.379 187.573 38.379C189.064 38.379 190.183 37.8934 190.967 36.88C191.71 35.8665 192.125 34.3675 192.125 32.3828C192.125 30.3981 191.71 28.8991 190.927 27.8856C190.1 26.8722 188.978 26.3866 187.533 26.3866C186.089 26.3866 184.924 26.9144 184.094 27.9736C183.267 29.0328 182.852 30.5319 182.852 32.4708H182.855ZM209.852 26.6962H203.763V41.5531H199.666V26.6962H196.764V23.1703H199.666V20.612C199.666 18.6731 200.247 17.0861 201.442 15.8509C202.601 14.6158 204.135 14 205.957 14C206.455 14 206.907 14.0457 207.282 14.088C207.651 14.1337 207.983 14.2217 208.275 14.3097V18.0573C208.149 17.9693 207.943 17.8814 207.568 17.7476C207.236 17.6597 206.867 17.5717 206.409 17.5717C205.582 17.5717 204.918 17.8814 204.467 18.4549C204.008 18.9828 203.759 19.8203 203.759 20.9675V23.1703H209.849V19.025L213.906 17.7019V23.1703H218.003V26.6962H213.906V35.293C213.906 36.4401 214.112 37.2319 214.487 37.6753C214.856 38.1609 215.48 38.379 216.31 38.379C216.559 38.379 216.844 38.3333 217.176 38.2031C217.508 38.1151 217.758 37.9392 218.003 37.8055V41.3772C217.754 41.5109 217.342 41.6411 216.722 41.7748C216.141 41.9085 215.563 41.9965 214.982 41.9965C213.242 41.9965 211.957 41.5109 211.13 40.5396C210.264 39.5684 209.849 38.1151 209.849 36.1305V26.6962H209.852Z" class="text" fill="#282828"/> +<path d="M95.0077 68.6124V66.2625C95.2741 66.499 95.5945 66.7123 95.9689 66.9023C96.3433 67.0923 96.7371 67.2513 97.1501 67.3831C97.5631 67.515 97.98 67.6158 98.3969 67.6856C98.8138 67.7554 99.1998 67.7942 99.555 67.7942C100.775 67.7942 101.686 67.5654 102.288 67.1117C102.89 66.658 103.191 66.0026 103.191 65.1495C103.191 64.6919 103.091 64.2925 102.89 63.9513C102.689 63.6101 102.411 63.2998 102.056 63.0206C101.701 62.7414 101.284 62.47 100.798 62.2141C100.312 61.9581 99.7904 61.6867 99.2346 61.3997C98.644 61.1011 98.092 60.7948 97.5824 60.4846C97.069 60.1743 96.6251 59.837 96.2468 59.4647C95.8685 59.0924 95.5713 58.6736 95.3551 58.2006C95.139 57.7313 95.0309 57.1768 95.0309 56.5447C95.0309 55.7692 95.2007 55.0945 95.5404 54.5206C95.8801 53.9466 96.324 53.4736 96.876 53.1013C97.428 52.729 98.0534 52.4537 98.7598 52.2714C99.4662 52.0892 100.184 52 100.914 52C102.581 52 103.801 52.2016 104.562 52.6049V54.8463C103.562 54.1522 102.276 53.8032 100.713 53.8032C100.281 53.8032 99.8483 53.8497 99.4121 53.9389C98.9798 54.0281 98.5938 54.1793 98.2541 54.3848C97.9144 54.5904 97.6403 54.854 97.428 55.1798C97.2157 55.5055 97.1076 55.901 97.1076 56.3664C97.1076 56.8007 97.1887 57.1768 97.3508 57.4948C97.5129 57.8128 97.7523 58.0997 98.0649 58.3595C98.3776 58.6194 98.7636 58.8753 99.2153 59.1196C99.6669 59.3639 100.188 59.6353 100.779 59.9262C101.385 60.2286 101.96 60.5427 102.504 60.8762C103.048 61.2097 103.523 61.5781 103.932 61.9814C104.342 62.3847 104.666 62.8306 104.905 63.3231C105.144 63.8156 105.264 64.374 105.264 65.0099C105.264 65.8475 105.102 66.5572 104.774 67.1388C104.446 67.7205 104.006 68.1936 103.45 68.5581C102.894 68.9226 102.253 69.1863 101.531 69.3453C100.809 69.5043 100.041 69.5896 99.2384 69.5896C98.9721 69.5896 98.6401 69.5663 98.2464 69.5237C97.8526 69.481 97.4512 69.4151 97.042 69.3336C96.6328 69.2522 96.2468 69.1475 95.8801 69.0234C95.5134 68.8993 95.22 68.7636 95 68.6163L95.0077 68.6124Z" class="text" fill="#282828"/> +<path d="M117.555 63.8355H109.017C109.047 65.1888 109.41 66.2319 110.101 66.9687C110.792 67.7055 111.746 68.0739 112.958 68.0739C114.32 68.0739 115.571 67.6241 116.714 66.7205V68.547C115.652 69.3225 114.247 69.7103 112.498 69.7103C110.75 69.7103 109.449 69.1597 108.472 68.0545C107.496 66.9493 107.009 65.3982 107.009 63.3973C107.009 61.5088 107.542 59.9655 108.611 58.775C109.677 57.5845 111.005 56.9912 112.587 56.9912C114.17 56.9912 115.393 57.507 116.262 58.5346C117.127 59.5622 117.563 60.9892 117.563 62.8195V63.8394L117.555 63.8355ZM115.571 62.1874C115.563 61.0629 115.293 60.1904 114.76 59.5661C114.228 58.9417 113.49 58.6276 112.545 58.6276C111.599 58.6276 110.858 58.9572 110.217 59.6126C109.58 60.2679 109.186 61.1288 109.036 62.1874H115.567H115.571Z" class="text" fill="#282828"/> +<path d="M131.06 69.4272H129.123V62.4976C129.123 59.9189 128.185 58.6315 126.312 58.6315C125.344 58.6315 124.545 58.996 123.908 59.7289C123.275 60.4618 122.958 61.3847 122.958 62.4976V69.4272H121.02V57.2782H122.958V59.2946H123.004C123.919 57.759 125.239 56.9912 126.973 56.9912C128.297 56.9912 129.308 57.4216 130.007 58.2786C130.705 59.1356 131.057 60.3765 131.057 61.9974V69.4233L131.06 69.4272Z" class="text" fill="#282828"/> +<path d="M140.09 69.6196C139.634 69.8717 139.032 69.9997 138.283 69.9997C136.164 69.9997 135.106 68.8131 135.106 66.4399V59.2505H133.03V57.5908H135.106V54.6243L137.044 53.9961V57.5908H140.09V59.2505H137.044V66.0947C137.044 66.9091 137.183 67.4907 137.457 67.8397C137.731 68.1887 138.191 68.3632 138.827 68.3632C139.318 68.3632 139.738 68.2275 140.09 67.96V69.6196Z" class="text" fill="#282828"/> +<path d="M143.287 54.5283C142.94 54.5283 142.647 54.4081 142.403 54.1715C142.16 53.935 142.037 53.6325 142.037 53.268C142.037 52.9035 142.16 52.6011 142.403 52.3606C142.647 52.1202 142.944 52 143.287 52C143.631 52 143.944 52.1202 144.191 52.3606C144.438 52.6011 144.561 52.9035 144.561 53.268C144.561 53.6325 144.438 53.9117 144.191 54.156C143.944 54.4003 143.642 54.5244 143.287 54.5244V54.5283ZM144.233 69.7641H142.295V57.615H144.233V69.7641Z" class="text" fill="#282828"/> +<path d="M159.082 69.4272H157.144V62.4976C157.144 59.9189 156.206 58.6315 154.334 58.6315C153.365 58.6315 152.562 58.996 151.929 59.7289C151.296 60.4618 150.98 61.3847 150.98 62.4976V69.4272H149.042V57.2782H150.98V59.2946H151.026C151.941 57.759 153.261 56.9912 154.994 56.9912C156.318 56.9912 157.33 57.4216 158.028 58.2786C158.727 59.1356 159.078 60.3765 159.078 61.9974V69.4233L159.082 69.4272Z" class="text" fill="#282828"/> +<path d="M171.593 63.8355H163.055C163.086 65.1888 163.448 66.2319 164.139 66.9687C164.83 67.7055 165.784 68.0739 167 68.0739C168.362 68.0739 169.613 67.6241 170.756 66.7205V68.547C169.694 69.3225 168.289 69.7103 166.54 69.7103C164.792 69.7103 163.491 69.1597 162.514 68.0545C161.538 66.9493 161.051 65.3982 161.051 63.3973C161.051 61.5088 161.584 59.9655 162.653 58.775C163.722 57.5845 165.043 56.9912 166.629 56.9912C168.216 56.9912 169.435 57.507 170.304 58.5346C171.169 59.5622 171.605 60.9892 171.605 62.8195V63.8394L171.593 63.8355ZM169.609 62.1874C169.601 61.0629 169.331 60.1904 168.799 59.5661C168.266 58.9417 167.529 58.6276 166.583 58.6276C165.637 58.6276 164.892 58.9572 164.255 59.6126C163.618 60.2679 163.225 61.1288 163.074 62.1874H169.605H169.609Z" class="text" fill="#282828"/> +<path d="M177 69.9851H175.062V52H177V69.9851Z" class="text" fill="#282828"/> </svg> diff --git a/ui/apps/platform/src/images/nexus.svg b/ui/apps/platform/src/images/nexus.svg index f658ade4b2ee2..696d55808b89b 100644 --- a/ui/apps/platform/src/images/nexus.svg +++ b/ui/apps/platform/src/images/nexus.svg @@ -1 +1 @@ -<svg viewBox="0 0 228 46" xmlns="http://www.w3.org/2000/svg" fill-rule="evenodd" clip-rule="evenodd" stroke-linejoin="round" stroke-miterlimit="2"><path d="M104.65 0v45.25h-2.88L67.37 5.7v39.55h-3.5V0h3l34.32 39.55V0h3.46zM139.29 29.25h-23.48a11.62 11.62 0 00-.1 1.56 11.366 11.366 0 003.56 8.45 11.688 11.688 0 008.38 3.47c3.78 0 7.473-1.48 11.08-4.44v3.63a18.313 18.313 0 01-11.47 4 14.005 14.005 0 01-10.61-4.55A15.917 15.917 0 01112.44 30a15.543 15.543 0 013.88-10.84 13.295 13.295 0 019.777-4.288c3.511 0 6.884 1.392 9.373 3.868 2.54 2.58 3.813 6.083 3.82 10.51zm-23.06-2.56h19.3c-1.12-5.807-4.26-8.71-9.42-8.71a9.46 9.46 0 00-6.34 2.28 11.204 11.204 0 00-3.54 6.43zM157.76 32.17l-11.72 13.08h-4.09L155.58 30l-13.63-14.55h4.09l11.72 12.37 11.67-12.37h4.1L159.85 30l13.68 15.25h-4.1l-11.67-13.08zM198.47 45.25v-4.92h-.13a13.865 13.865 0 01-4.26 4.24 12.112 12.112 0 01-13.49-1.84c-2.1-2.07-3.14-5-3.14-8.81V15.45h3.2v18.4a9.006 9.006 0 002.27 6.51 7.772 7.772 0 005.89 2.37 9.491 9.491 0 005.3-1.43 15.853 15.853 0 004.39-4.92V15.45h3.15v29.8h-3.18zM226.36 17.4v3.43c-3.027-2-5.75-3-8.17-3a7.096 7.096 0 00-4.54 1.41 4.412 4.412 0 00-1.85 3.59 4.14 4.14 0 001.13 2.79c.753.847 2.813 1.923 6.18 3.23 3.367 1.307 5.577 2.663 6.63 4.07a7.723 7.723 0 011.56 4.7 7.384 7.384 0 01-2.82 5.85 10.474 10.474 0 01-7 2.38 17.002 17.002 0 01-8.94-2.72v-3.12a21.001 21.001 0 009.36 2.72 6.862 6.862 0 004.52-1.46 4.604 4.604 0 001.77-3.72 4.26 4.26 0 00-1.15-2.87c-.773-.873-2.847-1.98-6.22-3.32-3.373-1.34-5.567-2.673-6.58-4a6.998 6.998 0 01-1.5-4.36 7.338 7.338 0 012.8-5.78 10.16 10.16 0 016.85-2.3c2.845.112 5.608.986 8 2.53l-.03-.05z" fill="#000301" fill-rule="nonzero"/><path fill="#2e5e8a" fill-rule="nonzero" d="M0 .06h18.89v4.12H0zM26.01.06h18.8v4.12h-18.8zM0 16.39h18.89v4.12H0z"/><path fill="#000301" fill-rule="nonzero" d="M0 24.7h18.89v4.11H0zM0 32.92h18.89v4.12H0zM.07 41.22h18.89v4.12H.07z"/><path fill="#2e5e8a" fill-rule="nonzero" d="M.14 8.42h44.6v4.11H.14zM25.78 16.39h19v4.12h-19z"/><path fill="#000301" fill-rule="nonzero" d="M25.78 24.7h19v4.11h-19zM25.78 32.92h19v4.12h-19zM25.85 41.22h18.89v4.12H25.85z"/></svg> \ No newline at end of file +<svg viewBox="0 0 228 46" xmlns="http://www.w3.org/2000/svg" fill-rule="evenodd" clip-rule="evenodd" stroke-linejoin="round" stroke-miterlimit="2"><path d="M104.65 0v45.25h-2.88L67.37 5.7v39.55h-3.5V0h3l34.32 39.55V0h3.46zM139.29 29.25h-23.48a11.62 11.62 0 00-.1 1.56 11.366 11.366 0 003.56 8.45 11.688 11.688 0 008.38 3.47c3.78 0 7.473-1.48 11.08-4.44v3.63a18.313 18.313 0 01-11.47 4 14.005 14.005 0 01-10.61-4.55A15.917 15.917 0 01112.44 30a15.543 15.543 0 013.88-10.84 13.295 13.295 0 019.777-4.288c3.511 0 6.884 1.392 9.373 3.868 2.54 2.58 3.813 6.083 3.82 10.51zm-23.06-2.56h19.3c-1.12-5.807-4.26-8.71-9.42-8.71a9.46 9.46 0 00-6.34 2.28 11.204 11.204 0 00-3.54 6.43zM157.76 32.17l-11.72 13.08h-4.09L155.58 30l-13.63-14.55h4.09l11.72 12.37 11.67-12.37h4.1L159.85 30l13.68 15.25h-4.1l-11.67-13.08zM198.47 45.25v-4.92h-.13a13.865 13.865 0 01-4.26 4.24 12.112 12.112 0 01-13.49-1.84c-2.1-2.07-3.14-5-3.14-8.81V15.45h3.2v18.4a9.006 9.006 0 002.27 6.51 7.772 7.772 0 005.89 2.37 9.491 9.491 0 005.3-1.43 15.853 15.853 0 004.39-4.92V15.45h3.15v29.8h-3.18zM226.36 17.4v3.43c-3.027-2-5.75-3-8.17-3a7.096 7.096 0 00-4.54 1.41 4.412 4.412 0 00-1.85 3.59 4.14 4.14 0 001.13 2.79c.753.847 2.813 1.923 6.18 3.23 3.367 1.307 5.577 2.663 6.63 4.07a7.723 7.723 0 011.56 4.7 7.384 7.384 0 01-2.82 5.85 10.474 10.474 0 01-7 2.38 17.002 17.002 0 01-8.94-2.72v-3.12a21.001 21.001 0 009.36 2.72 6.862 6.862 0 004.52-1.46 4.604 4.604 0 001.77-3.72 4.26 4.26 0 00-1.15-2.87c-.773-.873-2.847-1.98-6.22-3.32-3.373-1.34-5.567-2.673-6.58-4a6.998 6.998 0 01-1.5-4.36 7.338 7.338 0 012.8-5.78 10.16 10.16 0 016.85-2.3c2.845.112 5.608.986 8 2.53l-.03-.05z" class="text" fill="#000301" fill-rule="nonzero"/><path fill="#2e5e8a" fill-rule="nonzero" d="M0 .06h18.89v4.12H0zM26.01.06h18.8v4.12h-18.8zM0 16.39h18.89v4.12H0z"/><path fill="#000301" fill-rule="nonzero" d="M0 24.7h18.89v4.11H0zM0 32.92h18.89v4.12H0zM.07 41.22h18.89v4.12H.07z"/><path fill="#2e5e8a" fill-rule="nonzero" d="M.14 8.42h44.6v4.11H.14zM25.78 16.39h19v4.12h-19z"/><path fill="#000301" fill-rule="nonzero" d="M25.78 24.7h19v4.11h-19zM25.78 32.92h19v4.12h-19zM25.85 41.22h18.89v4.12H25.85z"/></svg> \ No newline at end of file diff --git a/ui/apps/platform/src/images/paladinCloud.svg b/ui/apps/platform/src/images/paladinCloud.svg index 862fcf8a4c1a9..67f62c2f69088 100644 --- a/ui/apps/platform/src/images/paladinCloud.svg +++ b/ui/apps/platform/src/images/paladinCloud.svg @@ -3,7 +3,7 @@ <title>Artboard - + @@ -12,7 +12,7 @@ - + diff --git a/ui/apps/platform/src/images/quay.svg b/ui/apps/platform/src/images/quay.svg index a6da5a5da65d0..57f649e746a91 100644 --- a/ui/apps/platform/src/images/quay.svg +++ b/ui/apps/platform/src/images/quay.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/ui/apps/platform/src/images/redhat.svg b/ui/apps/platform/src/images/redhat.svg index 9ba977195e88d..3b23263e55cd4 100644 --- a/ui/apps/platform/src/images/redhat.svg +++ b/ui/apps/platform/src/images/redhat.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/ui/apps/platform/src/images/s3-compatible.svg b/ui/apps/platform/src/images/s3-compatible.svg index 1b523f57d2280..022acbed9c43b 100644 --- a/ui/apps/platform/src/images/s3-compatible.svg +++ b/ui/apps/platform/src/images/s3-compatible.svg @@ -2,8 +2,8 @@ - - + + diff --git a/ui/apps/platform/src/images/s3.svg b/ui/apps/platform/src/images/s3.svg index 9cfc4bc168112..6b2e91726a722 100644 --- a/ui/apps/platform/src/images/s3.svg +++ b/ui/apps/platform/src/images/s3.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/ui/apps/platform/src/images/slack.svg b/ui/apps/platform/src/images/slack.svg index 99774dd861c95..d5b284e5d8bab 100644 --- a/ui/apps/platform/src/images/slack.svg +++ b/ui/apps/platform/src/images/slack.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/ui/apps/platform/src/images/splunk.svg b/ui/apps/platform/src/images/splunk.svg index 72732ab532e84..590ab017b5735 100644 --- a/ui/apps/platform/src/images/splunk.svg +++ b/ui/apps/platform/src/images/splunk.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/ui/apps/platform/src/images/sumologic.svg b/ui/apps/platform/src/images/sumologic.svg index f49e7f869143a..5cd1f9a1964e8 100644 --- a/ui/apps/platform/src/images/sumologic.svg +++ b/ui/apps/platform/src/images/sumologic.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/ui/apps/platform/src/images/syslog.svg b/ui/apps/platform/src/images/syslog.svg index 3541cbcc78196..4769f7e54c8d6 100644 --- a/ui/apps/platform/src/images/syslog.svg +++ b/ui/apps/platform/src/images/syslog.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file From 5f84c5d284d671b7b5a1f17014e2f7bbf0dd154f Mon Sep 17 00:00:00 2001 From: David Vail Date: Fri, 13 Mar 2026 14:10:30 -0400 Subject: [PATCH 3/3] Rename prop --- .../IntegrationTiles/APITokensTile.tsx | 4 +- .../BackupIntegrationsTab.tsx | 4 +- .../IntegrationTiles/ImageIntegrationsTab.tsx | 4 +- .../IntegrationTiles/IntegrationTile.tsx | 6 +- .../IntegrationTiles/MachineAccessTile.tsx | 4 +- .../NotifierIntegrationsTab.tsx | 4 +- .../Integrations/IntegrationTiles/OcmTile.tsx | 4 +- .../IntegrationTiles/PaladinCloudTile.tsx | 4 +- .../SignatureIntegrationsTab.tsx | 4 +- .../Integrations/utils/integrationsList.ts | 74 +++++++++---------- 10 files changed, 56 insertions(+), 56 deletions(-) diff --git a/ui/apps/platform/src/Containers/Integrations/IntegrationTiles/APITokensTile.tsx b/ui/apps/platform/src/Containers/Integrations/IntegrationTiles/APITokensTile.tsx index fc11f73763e35..5ca3fb6b84679 100644 --- a/ui/apps/platform/src/Containers/Integrations/IntegrationTiles/APITokensTile.tsx +++ b/ui/apps/platform/src/Containers/Integrations/IntegrationTiles/APITokensTile.tsx @@ -10,7 +10,7 @@ import { } from '../utils/integrationsList'; import IntegrationTile from './IntegrationTile'; -const { ImageComponent, label, type } = descriptor; +const { Logo, label, type } = descriptor; function APITokensTile(): ReactElement { const { data } = useRestQuery(fetchAPITokens); @@ -18,7 +18,7 @@ function APITokensTile(): ReactElement { return ( {descriptors.filter(featureFlagDependencyFilter).map((descriptor) => { - const { ImageComponent, label, type } = descriptor; + const { Logo, label, type } = descriptor; return ( {descriptors.filter(featureFlagDependencyFilter).map((descriptor) => { - const { categories, ImageComponent, label, type } = descriptor; + const { categories, Logo, label, type } = descriptor; return ( >; + Logo: ComponentType>; label: string; linkTo: string; numIntegrations: number; @@ -24,7 +24,7 @@ type IntegrationTileProps = { function IntegrationTile({ categories, - ImageComponent, + Logo, label, linkTo, numIntegrations, @@ -48,7 +48,7 @@ function IntegrationTile({ {numIntegrations} )} - {descriptors.filter(featureFlagDependencyFilter).map((descriptor) => { - const { ImageComponent, label, type } = descriptor; + const { Logo, label, type } = descriptor; if (!canUseAcscsEmailIntegration && type === 'acscsEmail') { return null; // TODO add centralCapabilityRequirement to descriptor } @@ -47,7 +47,7 @@ function NotifierIntegrationsTab({ sourcesEnabled }: IntegrationsTabProps): Reac return ( >; + Logo: ComponentType>; centralCapabilityRequirement?: CentralCapabilitiesFlags; featureFlagDependency?: FeatureFlagEnvVar[]; }; @@ -99,92 +99,92 @@ export const imageIntegrationsSource: IntegrationSource = 'imageIntegrations'; export const imageIntegrationsDescriptors: ImageIntegrationDescriptor[] = [ { categories: 'Image Scanner + Node Scanner', - ImageComponent: LogoSvg, + Logo: LogoSvg, label: 'Scanner V4', type: 'scannerv4', featureFlagDependency: ['ROX_SCANNER_V4'], }, { categories: 'Registry', - ImageComponent: DockerSvg, + Logo: DockerSvg, label: 'Generic Docker Registry', type: 'docker', }, { categories: 'Registry', - ImageComponent: AwsSvg, + Logo: AwsSvg, label: 'Amazon ECR', type: 'ecr', }, { categories: 'Registry', - ImageComponent: GoogleArtifactSvg, + Logo: GoogleArtifactSvg, label: 'Google Artifact Registry', type: 'artifactregistry', }, { categories: 'Registry', - ImageComponent: AzureSvg, + Logo: AzureSvg, label: 'Microsoft ACR', type: 'azure', }, { categories: 'Registry', - ImageComponent: ArtifactorySvg, + Logo: ArtifactorySvg, label: 'JFrog Artifactory', type: 'artifactory', }, { categories: 'Registry + Scanner', - ImageComponent: QuaySvg, + Logo: QuaySvg, label: 'Quay.io', type: 'quay', }, { categories: 'Scanner', - ImageComponent: ClairSvg, + Logo: ClairSvg, label: 'Clair v4', type: 'clairV4', }, { categories: 'Registry', - ImageComponent: NexusSvg, + Logo: NexusSvg, label: 'Sonatype Nexus', type: 'nexus', }, { categories: 'Registry', - ImageComponent: IbmSvg, + Logo: IbmSvg, label: 'IBM Cloud', type: 'ibm', }, { categories: 'Registry', - ImageComponent: RedhatSvg, + Logo: RedhatSvg, label: 'Red Hat', type: 'rhel', }, { categories: 'Registry', - ImageComponent: GhcrSvg, + Logo: GhcrSvg, label: 'GitHub Container Registry', type: 'ghcr', }, { categories: 'Image Scanner + Node Scanner', - ImageComponent: LogoSvg, + Logo: LogoSvg, label: '[DEPRECATED] StackRox Scanner', type: 'clairify', }, { categories: 'Scanner', - ImageComponent: ClairSvg, + Logo: ClairSvg, label: '[DEPRECATED] CoreOS Clair', type: 'clair', }, { categories: 'Registry + Scanner', - ImageComponent: GoogleRegistrySvg, + Logo: GoogleRegistrySvg, label: '[DEPRECATED] Google Container Registry', type: 'google', }, @@ -193,7 +193,7 @@ export const imageIntegrationsDescriptors: ImageIntegrationDescriptor[] = [ export const signatureIntegrationsSource = 'signatureIntegrations'; export const signatureIntegrationDescriptor: SignatureIntegrationDescriptor = { - ImageComponent: SignatureSvg, + Logo: SignatureSvg, label: 'Signature', type: 'signature', }; @@ -204,67 +204,67 @@ export const notifierIntegrationsSource = 'notifiers'; export const notifierIntegrationsDescriptors: NotifierIntegrationDescriptor[] = [ { - ImageComponent: SlackSvg, + Logo: SlackSvg, label: 'Slack', type: 'slack', }, { - ImageComponent: LogoSvg, + Logo: LogoSvg, label: 'Generic Webhook', type: 'generic', }, { - ImageComponent: JiraSvg, + Logo: JiraSvg, label: 'Jira', type: 'jira', }, { - ImageComponent: EmailSvg, + Logo: EmailSvg, label: 'Email', type: 'email', }, { - ImageComponent: AcscsEmailSvg, + Logo: AcscsEmailSvg, label: 'RHACS Cloud Service', type: 'acscsEmail', }, { - ImageComponent: GoogleSvg, + Logo: GoogleSvg, label: 'Google Cloud SCC', type: 'cscc', }, { - ImageComponent: SplunkSvg, + Logo: SplunkSvg, label: 'Splunk', type: 'splunk', }, { - ImageComponent: PagerDutySvg, + Logo: PagerDutySvg, label: 'PagerDuty', type: 'pagerduty', }, { - ImageComponent: SumologicSvg, + Logo: SumologicSvg, label: 'Sumo Logic', type: 'sumologic', }, { - ImageComponent: TeamsSvg, + Logo: TeamsSvg, label: 'Microsoft Teams', type: 'teams', }, { - ImageComponent: AwsSecurityHubSvg, + Logo: AwsSecurityHubSvg, label: 'AWS Security Hub', type: 'awsSecurityHub', }, { - ImageComponent: SyslogSvg, + Logo: SyslogSvg, label: 'Syslog', type: 'syslog', }, { - ImageComponent: MicrosoftSentinelSvg, + Logo: MicrosoftSentinelSvg, label: 'Microsoft Sentinel', type: 'microsoftSentinel', }, @@ -274,17 +274,17 @@ export const backupIntegrationsSource = 'backups'; export const backupIntegrationsDescriptors: BackupIntegrationDescriptor[] = [ { - ImageComponent: S3Svg, + Logo: S3Svg, label: 'Amazon S3', type: 's3', }, { - ImageComponent: S3CompatibleSvg, + Logo: S3CompatibleSvg, label: 'S3 API Compatible', type: 's3compatible', }, { - ImageComponent: GoogleSvg, + Logo: GoogleSvg, label: 'Google Cloud Storage', type: 'gcs', }, @@ -293,13 +293,13 @@ export const backupIntegrationsDescriptors: BackupIntegrationDescriptor[] = [ export const authenticationTokensSource = 'authProviders'; export const apiTokenDescriptor: AuthProviderDescriptor = { - ImageComponent: LogoSvg, + Logo: LogoSvg, label: 'API Token', type: 'apitoken', }; export const machineAccessDescriptor: AuthProviderDescriptor = { - ImageComponent: LogoSvg, + Logo: LogoSvg, label: 'Machine access configuration', type: 'machineAccess', }; @@ -309,13 +309,13 @@ const authenticationTokensDescriptors = [apiTokenDescriptor, machineAccessDescri export const cloudSourcesSource = 'cloudSources'; export const paladinCloudDescriptor: CloudSourceDescriptor = { - ImageComponent: PaladinCloudSvg, + Logo: PaladinCloudSvg, label: 'Paladin Cloud', type: 'paladinCloud', }; export const ocmDescriptor: CloudSourceDescriptor = { - ImageComponent: RedhatSvg, + Logo: RedhatSvg, label: 'OpenShift Cluster Manager', type: 'ocm', };