homepage cleanup (#29295)
* new homepage logos marquee * add products claim * logos spacing * dashboard table editor demo * dashboard table editor demo * dashboard recordings * rls policies * update hp frameworks * add dataAPIs to homepage bento * tweet section update * padding * hp products update * new customer stories hp section * height * finish homepage details * update logos * fix database visual * improve functions visual ux * animate data-apis visual * realtime visual update * reduce-motion and update chatbase logo * lighter heading paragraph * improve video tabs components * add priority to offsetted images * video plays inline * fix mobile tweets spacing * smoll * load video slightly before the component enters the viewport * fix product pointer-events * theme based and light weight dashboard video * testimonials margin * remove yellow tint from light mode recordings * fix vitest window-matchMedia error * fix vitest window-matchMedia error * fix url type * remove tweet
27
apps/www/components/BrowserFrame.tsx
Normal file
@@ -0,0 +1,27 @@
|
||||
import React, { PropsWithChildren } from 'react'
|
||||
import { cn } from 'ui'
|
||||
|
||||
interface Props extends PropsWithChildren {
|
||||
className?: string
|
||||
contentClassName?: string
|
||||
}
|
||||
|
||||
const BrowserFrame: React.FC<Props> = ({ children, className, contentClassName }) => {
|
||||
return (
|
||||
<div
|
||||
className={cn(
|
||||
'relative rounded-2xl shadow-lg p-2 pt-0 w-full h-full bg-alternative-200 border flex flex-col',
|
||||
className
|
||||
)}
|
||||
>
|
||||
<div className="w-full px-2 py-3 relative flex items-center gap-1.5 lg:gap-2">
|
||||
<div className="w-2 h-2 bg-border rounded-full" />
|
||||
<div className="w-2 h-2 bg-border rounded-full" />
|
||||
<div className="w-2 h-2 bg-border rounded-full" />
|
||||
</div>
|
||||
<div className={cn('h-full w-full rounded-lg', contentClassName)}>{children}</div>
|
||||
</div>
|
||||
)
|
||||
}
|
||||
|
||||
export default BrowserFrame
|
||||
@@ -1,12 +1,12 @@
|
||||
import { Button, IconGitHubSolid } from 'ui'
|
||||
import Link from 'next/link'
|
||||
|
||||
import SectionContainer from '../Layouts/SectionContainer'
|
||||
import ExampleCard from '../ExampleCard'
|
||||
import SectionContainer from '~/components/Layouts/SectionContainer'
|
||||
import ExampleCard from './ExampleCard'
|
||||
|
||||
import Examples from 'data/Examples'
|
||||
|
||||
const BuiltExamples = () => {
|
||||
const BuiltWithSupabase = () => {
|
||||
return (
|
||||
<SectionContainer id="examples" className="xl:pt-32">
|
||||
<div className="text-center">
|
||||
@@ -18,7 +18,12 @@ const BuiltExamples = () => {
|
||||
<Button asChild type="default" size="small" className="h-full">
|
||||
<Link href="/docs/guides/examples">View all examples</Link>
|
||||
</Button>
|
||||
<Button asChild type="default" icon={<IconGitHubSolid size="tiny" />} size="small">
|
||||
<Button
|
||||
asChild
|
||||
type="default"
|
||||
icon={<IconGitHubSolid size="tiny" className="!w-full !h-full" />}
|
||||
size="small"
|
||||
>
|
||||
<Link href="https://github.com/supabase/supabase/tree/master/examples">
|
||||
Official GitHub library
|
||||
</Link>
|
||||
@@ -41,4 +46,4 @@ const BuiltExamples = () => {
|
||||
)
|
||||
}
|
||||
|
||||
export default BuiltExamples
|
||||
export default BuiltWithSupabase
|
||||
@@ -1,28 +1,75 @@
|
||||
import { PropsWithChildren } from 'react'
|
||||
import Link from 'next/link'
|
||||
import { GlassPanel } from 'ui-patterns/GlassPanel'
|
||||
import Image from 'next/image'
|
||||
import { useTheme } from 'next-themes'
|
||||
import { range } from 'lodash'
|
||||
import { ArrowRight } from 'lucide-react'
|
||||
import { Button, cn } from 'ui'
|
||||
|
||||
import SectionContainer from '../Layouts/SectionContainer'
|
||||
import TextLink from '../TextLink'
|
||||
import SectionContainer from '~/components/Layouts/SectionContainer'
|
||||
import SectionHeader from 'components/UI/SectionHeader'
|
||||
import Panel from '~/components/Panel'
|
||||
|
||||
import customerStories from '~/data/CustomerStories'
|
||||
import Panel from '../Panel'
|
||||
import type { CustomerStoryType } from '~/data/CustomerStories'
|
||||
|
||||
const getCustomer = (customer: string, linked: boolean) => ({
|
||||
...customerStories.find((story: any) => customer.includes(story.organization)),
|
||||
linked,
|
||||
})
|
||||
|
||||
const CustomerStories = () => {
|
||||
// const selection = ['Pebblely', 'Chatbase', 'Mendable.ai']
|
||||
const selection = ['Pebblely', 'Good Tape', 'Mendable.ai']
|
||||
const customers = customerStories.filter((story: any) => selection.includes(story.organization))
|
||||
const composition = [
|
||||
{
|
||||
type: 'narrow',
|
||||
cards: [getCustomer('Quivr', false), getCustomer('Tinloof', false)],
|
||||
},
|
||||
{
|
||||
type: 'narrow',
|
||||
cards: [
|
||||
{
|
||||
logo: '/images/customers/logos/1password.png',
|
||||
logo_inverse: '/images/customers/logos/light/1password.png',
|
||||
organization: '1Password',
|
||||
},
|
||||
getCustomer('Next Door Lending', true),
|
||||
],
|
||||
},
|
||||
{
|
||||
type: 'expanded',
|
||||
cards: [getCustomer('Maergo', true)],
|
||||
},
|
||||
{
|
||||
type: 'narrow',
|
||||
cards: [
|
||||
getCustomer('Shotgun', true),
|
||||
{
|
||||
logo: '/images/customers/logos/mozilla.png',
|
||||
logo_inverse: '/images/customers/logos/light/mozilla.png',
|
||||
organization: 'Mozilla',
|
||||
linked: false,
|
||||
},
|
||||
],
|
||||
},
|
||||
{
|
||||
type: 'expanded',
|
||||
cards: [getCustomer('Chatbase', true)],
|
||||
},
|
||||
{
|
||||
type: 'narrow',
|
||||
cards: [getCustomer('Mobbin', true), getCustomer('HappyTeams', true)],
|
||||
},
|
||||
{
|
||||
type: 'expanded',
|
||||
cards: [getCustomer('Pebblely', true)],
|
||||
},
|
||||
]
|
||||
|
||||
const caseStudyThumbs = customers.map((customer: any, idx: number) => {
|
||||
return {
|
||||
logo: customer.logo_inverse,
|
||||
title: customer.title,
|
||||
link: customer.url,
|
||||
}
|
||||
})
|
||||
const compositionGap = 'gap-4'
|
||||
|
||||
return (
|
||||
<SectionContainer id="customers">
|
||||
<div className="mb-12">
|
||||
<div id="customers" className="overflow-hidden">
|
||||
<SectionContainer className="!pb-8 w-full flex gap-4 justify-between flex-col xl:flex-row xl:items-end">
|
||||
<SectionHeader
|
||||
title={'Infrastructure'}
|
||||
title_alt={' to innovate and scale with ease.'}
|
||||
@@ -32,33 +79,156 @@ const CustomerStories = () => {
|
||||
}
|
||||
className="xl:w-1/2"
|
||||
/>
|
||||
</div>
|
||||
<div className="mx-auto mt-5 grid grid-cols-12 gap-5">
|
||||
{caseStudyThumbs.map((caseStudy: any, i: number) => (
|
||||
<Link
|
||||
href={`${caseStudy.link}`}
|
||||
key={caseStudy.title}
|
||||
className="col-span-12 md:col-span-4"
|
||||
<div className="flex gap-2">
|
||||
<Button asChild>
|
||||
<Link href="/customers">View all stories</Link>
|
||||
</Button>
|
||||
<Button asChild type="default">
|
||||
<Link href="/events">View Events</Link>
|
||||
</Button>
|
||||
</div>
|
||||
</SectionContainer>
|
||||
<div
|
||||
className={cn(
|
||||
'group/tw-marquee w-full flex items-stretch h-[300px] min-w-[300px] nowrap mb-16 md:mb-24 lg:mb-24',
|
||||
compositionGap
|
||||
)}
|
||||
>
|
||||
{range(0, 2).map((_, idx1: number) => (
|
||||
<div
|
||||
key={`row-${idx1}`}
|
||||
className={cn(
|
||||
'relative',
|
||||
'left-0 z-10',
|
||||
'w-auto h-full',
|
||||
'flex gap-4 items-end',
|
||||
'motion-safe:run motion-safe:animate-[marquee_50000ms_linear_both_infinite] group-hover/tw-marquee:pause',
|
||||
'will-change-transform transition-transform',
|
||||
compositionGap
|
||||
)}
|
||||
>
|
||||
<Panel hasActiveOnHover outerClassName="h-full">
|
||||
<GlassPanel
|
||||
{...caseStudy}
|
||||
background={false}
|
||||
className="border-none"
|
||||
showIconBg={true}
|
||||
showLink={true}
|
||||
{composition.map((group, idx2) => (
|
||||
<div
|
||||
key={`customers-col-${idx1}-${idx2}`}
|
||||
className={cn(
|
||||
'flex flex-col !h-full',
|
||||
compositionGap,
|
||||
group.type === 'expanded' ? 'w-[450px]' : 'w-[250px]'
|
||||
)}
|
||||
>
|
||||
{caseStudy.description}
|
||||
</GlassPanel>
|
||||
</Panel>
|
||||
</Link>
|
||||
{group.cards.map((customer: any, idx3) =>
|
||||
group.type === 'expanded' ? (
|
||||
<Link
|
||||
href={`${customer.url}`}
|
||||
key={customer.organization}
|
||||
className="col-span-12 md:col-span-4 w-[450px] h-full"
|
||||
>
|
||||
<CustomerCard size="expanded" customer={customer} />
|
||||
</Link>
|
||||
) : customer.linked ? (
|
||||
<Link
|
||||
href={`${customer.url}`}
|
||||
key={customer.organization}
|
||||
className="col-span-12 md:col-span-4 h-full flex-grow"
|
||||
>
|
||||
<CustomerCard size="narrow" customer={customer} />
|
||||
</Link>
|
||||
) : (
|
||||
<CustomerCard
|
||||
size="narrow"
|
||||
key={customer.organization}
|
||||
customer={customer}
|
||||
className="pointer-events-none"
|
||||
/>
|
||||
)
|
||||
)}
|
||||
</div>
|
||||
))}
|
||||
</div>
|
||||
))}
|
||||
</div>
|
||||
<div className="mt-12 flex flex-col md:flex-row gap-8 justify-between">
|
||||
<TextLink url="/customers" label="Explore more" />
|
||||
</div>
|
||||
</SectionContainer>
|
||||
</div>
|
||||
)
|
||||
}
|
||||
|
||||
interface CustomerCardProps extends PropsWithChildren {
|
||||
customer: CustomerStoryType
|
||||
className?: string
|
||||
size?: 'narrow' | 'expanded'
|
||||
}
|
||||
|
||||
const CustomerCard: React.FC<CustomerCardProps> = ({
|
||||
customer,
|
||||
className,
|
||||
size,
|
||||
children,
|
||||
...rest
|
||||
}) => {
|
||||
const { resolvedTheme } = useTheme()
|
||||
const showLogoInverse = customer.logo_inverse && resolvedTheme?.includes('dark')
|
||||
const showLogo = !showLogoInverse && customer.logo
|
||||
|
||||
const LogoComponent = ({ logoImage, className }: { logoImage: string; className?: string }) => (
|
||||
<div className="relative box-content opacity-50 group-hover:opacity-75 transition-opacity">
|
||||
<div className="relative h-[33px] w-auto max-w-[145px]">
|
||||
<Image
|
||||
src={logoImage}
|
||||
alt={customer.title}
|
||||
fill
|
||||
priority
|
||||
sizes="100%"
|
||||
className={cn('object-contain object-left', className)}
|
||||
/>
|
||||
</div>
|
||||
</div>
|
||||
)
|
||||
|
||||
switch (size) {
|
||||
case 'narrow':
|
||||
return (
|
||||
<Panel
|
||||
hasActiveOnHover
|
||||
outerClassName={cn('h-full w-[250px] h-full flex-grow', className)}
|
||||
innerClassName="flex items-center justify-center"
|
||||
>
|
||||
<Image
|
||||
key={customer.organization}
|
||||
src={customer.logo}
|
||||
alt={customer.organization}
|
||||
width={300}
|
||||
height={150}
|
||||
priority
|
||||
className="w-full opacity-50 group-hover/panel:opacity-75 transition-opacity max-w-[140px] filter dark:invert"
|
||||
/>
|
||||
</Panel>
|
||||
)
|
||||
case 'expanded':
|
||||
return (
|
||||
<Panel
|
||||
hasActiveOnHover
|
||||
outerClassName={cn(
|
||||
'relative',
|
||||
'h-full',
|
||||
'group',
|
||||
'cursor-pointer',
|
||||
'overflow-hidden',
|
||||
'text-left',
|
||||
'transition',
|
||||
className
|
||||
)}
|
||||
innerClassName="h-full p-8 flex flex-col gap-6 justify-between"
|
||||
{...rest}
|
||||
>
|
||||
<ArrowRight className="not-sr-only absolute top-8 right-8 -rotate-45 stroke-1 -translate-x-1 translate-y-1 opacity-0 transition-all group-hover:opacity-100 group-hover:translate-x-0 group-hover:translate-y-0" />
|
||||
|
||||
{showLogoInverse && <LogoComponent logoImage={customer.logo_inverse!} />}
|
||||
{showLogo && <LogoComponent logoImage={customer.logo} />}
|
||||
|
||||
<p className="text-base text-foreground-lighter">{customer.title}</p>
|
||||
{children && <span className="text-sm text-foreground-light flex-grow">{children}</span>}
|
||||
</Panel>
|
||||
)
|
||||
}
|
||||
}
|
||||
|
||||
export default CustomerStories
|
||||
|
||||
18
apps/www/components/DashboardFeatures/index.tsx
Normal file
@@ -0,0 +1,18 @@
|
||||
import React from 'react'
|
||||
import SectionContainer from '~/components/Layouts/SectionContainer'
|
||||
import TabsWithHighlights from '~/components/TabsWithHighlights'
|
||||
import type { Tab } from '~/components/TabsWithHighlights'
|
||||
|
||||
interface Props {
|
||||
title: string | React.ReactNode
|
||||
tabs: Tab[]
|
||||
}
|
||||
|
||||
const DashboardFeatures: React.FC<Props> = ({ title, tabs }) => (
|
||||
<SectionContainer className="text-center" id="dashboard">
|
||||
<h3 className="mb-8 text-2xl lg:text-4xl text-foreground-lighter">{title}</h3>
|
||||
<TabsWithHighlights tabs={tabs} />
|
||||
</SectionContainer>
|
||||
)
|
||||
|
||||
export default DashboardFeatures
|
||||
@@ -21,7 +21,7 @@ const Footer = (props: Props) => {
|
||||
|
||||
const isDarkLaunchWeek = useDarkLaunchWeeks()
|
||||
const isGAWeek = pathname.includes('/ga-week')
|
||||
const forceDark = isDarkLaunchWeek || pathname === '/'
|
||||
const forceDark = isDarkLaunchWeek
|
||||
|
||||
if (props.hideFooter) {
|
||||
return null
|
||||
|
||||
@@ -23,12 +23,8 @@ const Hero = () => {
|
||||
<div className="relative z-10 lg:h-auto pt-[90px] lg:pt-[90px] lg:min-h-[300px] flex flex-col items-center justify-center sm:mx-auto md:w-3/4 lg:mx-0 lg:w-full gap-4 lg:gap-8">
|
||||
<div className="flex flex-col items-center">
|
||||
<h1 className="text-foreground text-4xl sm:text-5xl sm:leading-none lg:text-7xl">
|
||||
<span className="block text-[#F4FFFA00] bg-clip-text bg-gradient-to-b from-foreground to-foreground-light">
|
||||
Build in a weekend
|
||||
</span>
|
||||
<span className="text-transparent bg-clip-text bg-gradient-to-br from-[#3ECF8E] via-[#3ECF8E] to-[#3ecfb2] block md:ml-0">
|
||||
Scale to billions
|
||||
</span>
|
||||
<span className="block text-foreground">Build in a weekend</span>
|
||||
<span className="text-brand block md:ml-0">Scale to billions</span>
|
||||
</h1>
|
||||
<p className="pt-2 text-foreground my-3 text-sm sm:mt-5 lg:mb-0 sm:text-base lg:text-lg">
|
||||
Supabase is an open source Firebase alternative.{' '}
|
||||
@@ -38,7 +34,7 @@ const Hero = () => {
|
||||
</p>
|
||||
</div>
|
||||
<div className="flex items-center gap-2">
|
||||
<Button asChild size="medium" className="text-white">
|
||||
<Button asChild size="medium">
|
||||
<Link
|
||||
href="https://supabase.com/dashboard"
|
||||
as="https://supabase.com/dashboard"
|
||||
|
||||
@@ -1,175 +0,0 @@
|
||||
import { useState } from 'react'
|
||||
import { Light as SyntaxHighlighter } from 'react-syntax-highlighter'
|
||||
import js from 'react-syntax-highlighter/dist/cjs/languages/hljs/javascript'
|
||||
import CopyToClipboard from 'react-copy-to-clipboard'
|
||||
import {
|
||||
createUserExample,
|
||||
subscribeExample,
|
||||
readExample,
|
||||
createExample,
|
||||
updateExample,
|
||||
ExampleProps,
|
||||
} from 'data/CodeExamples'
|
||||
import monokaiCustomTheme from 'data/CodeEditorTheme'
|
||||
import { Button, Space, Tabs } from 'ui'
|
||||
|
||||
SyntaxHighlighter.registerLanguage('javascript', js)
|
||||
|
||||
const ClipboardIcon = () => (
|
||||
<svg
|
||||
viewBox="0 0 24 24"
|
||||
width="12"
|
||||
height="12"
|
||||
stroke="currentColor"
|
||||
strokeWidth="2"
|
||||
fill="none"
|
||||
strokeLinecap="round"
|
||||
strokeLinejoin="round"
|
||||
className="css-i6dzq1"
|
||||
>
|
||||
<path d="M16 4h2a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2V6a2 2 0 0 1 2-2h2" />
|
||||
<rect x="8" y="2" width="8" height="4" rx="1" ry="1" />
|
||||
</svg>
|
||||
)
|
||||
|
||||
const CopiedIcon = () => (
|
||||
<svg
|
||||
viewBox="0 0 24 24"
|
||||
width="12"
|
||||
height="12"
|
||||
stroke="currentColor"
|
||||
strokeWidth="2"
|
||||
fill="none"
|
||||
strokeLinecap="round"
|
||||
strokeLinejoin="round"
|
||||
className="css-i6dzq1"
|
||||
>
|
||||
<polyline points="20 6 9 17 4 12" />
|
||||
</svg>
|
||||
)
|
||||
|
||||
const CodeExamples = () => {
|
||||
const [example, setExample] = useState('createUserExample')
|
||||
const [copied, setCopied] = useState(false)
|
||||
|
||||
type exampleListProps = {
|
||||
[key: string]: ExampleProps
|
||||
}
|
||||
|
||||
const exampleList: exampleListProps = {
|
||||
createUserExample,
|
||||
subscribeExample,
|
||||
readExample,
|
||||
createExample,
|
||||
updateExample,
|
||||
}
|
||||
|
||||
const lang = 'javascript'
|
||||
|
||||
function handleClick(key: string) {
|
||||
setExample(key)
|
||||
setCopied(false)
|
||||
}
|
||||
|
||||
const Buttons = () => (
|
||||
<Space direction="vertical" size={1}>
|
||||
{Object.values(exampleList).map((x, i) => {
|
||||
return (
|
||||
<Button
|
||||
block
|
||||
type={'outline'}
|
||||
size="small"
|
||||
key={x.id}
|
||||
onClick={() => handleClick(x.id)}
|
||||
style={
|
||||
example === x.id
|
||||
? {
|
||||
background: 'white',
|
||||
color: '#3d3d3d',
|
||||
}
|
||||
: undefined
|
||||
}
|
||||
>
|
||||
{x.name}
|
||||
</Button>
|
||||
)
|
||||
})}
|
||||
</Space>
|
||||
)
|
||||
|
||||
const TabNav = () => (
|
||||
<Tabs
|
||||
key="mobile-tabs"
|
||||
scrollable
|
||||
onClick={(id: string) => handleClick(id)}
|
||||
activeId={example}
|
||||
type="underlined"
|
||||
>
|
||||
{Object.values(exampleList).map((x, i) => {
|
||||
return (
|
||||
<Tabs.Panel id={x.id} label={x.name} key={i}>
|
||||
<span></span>
|
||||
</Tabs.Panel>
|
||||
)
|
||||
})}
|
||||
</Tabs>
|
||||
)
|
||||
|
||||
return (
|
||||
<div>
|
||||
<div className="grid grid-cols-12 gap-2 xl:gap-8">
|
||||
<div className="col-span-12 text-center lg:col-span-3 lg:hidden">{<TabNav />}</div>
|
||||
<div className="col-span-12 lg:col-span-9">
|
||||
<div className="bg-surface-100 rounded-md rounded-b-lg">
|
||||
<div className="flex items-center justify-between p-2 pl-5">
|
||||
<p className="text-dark-100 mr-2 truncate text-sm sm:text-base">
|
||||
{exampleList[example].description}
|
||||
</p>
|
||||
<div className="dark">
|
||||
<CopyToClipboard
|
||||
text={exampleList[example].code[lang]}
|
||||
onCopy={() => setCopied(true)}
|
||||
>
|
||||
<Button type="outline" icon={copied ? <CopiedIcon /> : <ClipboardIcon />}>
|
||||
<span className="hidden sm:block">{copied ? 'Copied!' : 'Copy code'}</span>
|
||||
</Button>
|
||||
</CopyToClipboard>
|
||||
</div>
|
||||
</div>
|
||||
<SyntaxHighlighter
|
||||
language="javascript"
|
||||
// @ts-ignore
|
||||
style={isDarkTheme ? monokaiCustomTheme.dark : monokaiCustomTheme.light}
|
||||
className="rounded-b-lg"
|
||||
customStyle={{
|
||||
padding: 0,
|
||||
fontSize: 12,
|
||||
lineHeight: 1.2,
|
||||
borderTop: '1px solid #393939',
|
||||
background: '#181818',
|
||||
}}
|
||||
showLineNumbers
|
||||
lineNumberContainerStyle={{
|
||||
paddingTop: '128px',
|
||||
}}
|
||||
lineNumberStyle={{
|
||||
minWidth: '48px',
|
||||
background: '#1e1e1e',
|
||||
paddingLeft: '21px',
|
||||
color: '#828282',
|
||||
fontSize: 12,
|
||||
paddingTop: '4px',
|
||||
paddingBottom: '4px',
|
||||
}}
|
||||
>
|
||||
{exampleList[example].code[lang]}
|
||||
</SyntaxHighlighter>
|
||||
</div>
|
||||
</div>
|
||||
<div className="col-span-12 hidden text-center lg:col-span-3 lg:block">{<Buttons />}</div>
|
||||
</div>
|
||||
</div>
|
||||
)
|
||||
}
|
||||
|
||||
export default CodeExamples
|
||||
@@ -1,55 +0,0 @@
|
||||
import { Badge } from 'ui'
|
||||
import APISection from '../Sections/APISection'
|
||||
import SectionContainer from '../Layouts/SectionContainer'
|
||||
import FeatureColumn from '../FeatureColumn'
|
||||
|
||||
import CodeExamples from 'data/home/api-examples'
|
||||
import DeveloperFeatures from 'data/DeveloperFeatures.json'
|
||||
import TextLink from '../TextLink'
|
||||
|
||||
const MadeForDevelopers = () => {
|
||||
return (
|
||||
<SectionContainer>
|
||||
<APISection
|
||||
autoHeight={true}
|
||||
size="large"
|
||||
title={'Instant APIs that do the hard work for you'}
|
||||
text={[
|
||||
<p className="lg:text-lg" key={'madefordeveloper-para-1'}>
|
||||
We introspect your database to provide APIs instantly. Stop building repetitive CRUD
|
||||
endpoints and focus on your product.
|
||||
</p>,
|
||||
]}
|
||||
// @ts-ignore
|
||||
content={CodeExamples}
|
||||
footer={[
|
||||
<dl className="grid grid-cols-12 gap-y-4 md:gap-8" key={'madefordeveloper-footer'}>
|
||||
{DeveloperFeatures.map((feature: any, i: number) => {
|
||||
return (
|
||||
<div className="col-span-12 md:col-span-6 lg:col-span-6" key={i}>
|
||||
<div className="lg:mt-5">
|
||||
<dt>
|
||||
<FeatureColumn title={feature.name} text={feature.description} />
|
||||
{feature.badge && (
|
||||
<div className="mb-4 block">
|
||||
<Badge dot>{feature.badge}</Badge>
|
||||
</div>
|
||||
)}
|
||||
{feature.badge ? (
|
||||
<TextLink url={feature.url} label="Get notified" />
|
||||
) : (
|
||||
<TextLink url={feature.url} label="Explore more" />
|
||||
)}
|
||||
</dt>
|
||||
</div>
|
||||
</div>
|
||||
)
|
||||
})}
|
||||
</dl>,
|
||||
]}
|
||||
/>
|
||||
</SectionContainer>
|
||||
)
|
||||
}
|
||||
|
||||
export default MadeForDevelopers
|
||||
@@ -80,7 +80,7 @@ const Panel = ({
|
||||
<Component
|
||||
ref={outerRef}
|
||||
className={cn(
|
||||
'relative rounded-xl p-px bg-surface-75 bg-gradient-to-b from-border to-border/50 dark:to-surface-100 transition-all shadow-md flex items-center justify-center',
|
||||
'group/panel relative rounded-xl p-px bg-surface-75 bg-gradient-to-b from-border to-border/50 dark:to-surface-100 transition-all hover:shadow-md flex items-center justify-center',
|
||||
!trackCursor && hasActiveOnHover
|
||||
? activeColor === 'brand'
|
||||
? 'hover:bg-none hover:!bg-brand'
|
||||
@@ -93,7 +93,7 @@ const Panel = ({
|
||||
>
|
||||
<div
|
||||
className={cn(
|
||||
'relative z-10 w-full h-full rounded-xl bg-surface-75 overflow-hidden text-foreground-light',
|
||||
'relative z-10 w-full h-full rounded-[11px] bg-surface-75 overflow-hidden text-foreground-light',
|
||||
innerClassName
|
||||
)}
|
||||
style={innerStyle}
|
||||
|
||||
@@ -4,7 +4,7 @@ import React from 'react'
|
||||
const AuthVisual = () => {
|
||||
return (
|
||||
<figure
|
||||
className="group absolute inset-0 z-0 xl:-bottom-10"
|
||||
className="group absolute inset-0 z-0 -top-16 xl:top-0 xl:bottom-0"
|
||||
role="img"
|
||||
aria-label="Supabase Authentication provides Row Level Security which enables you to define custom Policies to restrict access to your database"
|
||||
>
|
||||
@@ -15,7 +15,7 @@ const AuthVisual = () => {
|
||||
sizes="100%"
|
||||
priority
|
||||
quality={100}
|
||||
className="absolute inset-0 object-cover object-center xl:object-bottom"
|
||||
className="hidden dark:block absolute inset-0 object-cover object-center xl:object-bottom"
|
||||
/>
|
||||
<Image
|
||||
src="/images/index/products/auth-active.svg"
|
||||
@@ -23,7 +23,25 @@ const AuthVisual = () => {
|
||||
fill
|
||||
sizes="100%"
|
||||
quality={100}
|
||||
className="absolute inset-0 object-cover object-center xl:object-bottom opacity-0 group-hover:opacity-100 transition-opacity"
|
||||
className="hidden dark:block absolute inset-0 object-cover object-center xl:object-bottom opacity-0 group-hover:opacity-100 transition-opacity"
|
||||
aria-hidden
|
||||
/>
|
||||
<Image
|
||||
src="/images/index/products/auth-light.svg"
|
||||
alt="Supabase Authentication user db rows"
|
||||
fill
|
||||
sizes="100%"
|
||||
priority
|
||||
quality={100}
|
||||
className="dark:hidden absolute inset-0 object-cover object-center xl:object-bottom"
|
||||
/>
|
||||
<Image
|
||||
src="/images/index/products/auth-active-light.svg"
|
||||
alt="Supabase Authentication user db rows"
|
||||
fill
|
||||
sizes="100%"
|
||||
quality={100}
|
||||
className="dark:hidden absolute inset-0 object-cover object-center xl:object-bottom opacity-0 group-hover:opacity-100 transition-opacity"
|
||||
aria-hidden
|
||||
/>
|
||||
</figure>
|
||||
|
||||
51
apps/www/components/Products/DataAPIsVisual.tsx
Normal file
@@ -0,0 +1,51 @@
|
||||
import React from 'react'
|
||||
import Image from 'next/image'
|
||||
import { range } from 'lodash'
|
||||
|
||||
const DataAPIsVisual = () => (
|
||||
<figure className="absolute inset-0 overflow-hidden">
|
||||
<div className="absolute z-0 inset-0 flex flex-nowrap">
|
||||
{range(0, 3).map((_, idx1: number) => (
|
||||
<div
|
||||
key={`row-${idx1}`}
|
||||
className="relative h-full !aspect-[330/430] -right-10 -left-10 items-end pb-2 z-10 flex pause animate-[marquee-reverse_30000ms_linear_both_infinite] motion-safe:group-hover:run will-change-transform"
|
||||
>
|
||||
<Image
|
||||
src="/images/index/products/data-apis-lines-dark.svg"
|
||||
alt="Supabase restful DataAPIs"
|
||||
fill
|
||||
sizes="100%"
|
||||
quality={100}
|
||||
className="hidden dark:block !h-full !aspect-[330/430]"
|
||||
/>
|
||||
<Image
|
||||
src="/images/index/products/data-apis-lines-light.svg"
|
||||
alt="Supabase restful DataAPIs"
|
||||
fill
|
||||
sizes="100%"
|
||||
quality={100}
|
||||
className="dark:block !h-full !aspect-[330/430]"
|
||||
/>
|
||||
</div>
|
||||
))}
|
||||
<Image
|
||||
src="/images/index/products/data-apis-dark.svg"
|
||||
alt="Supabase restful DataAPIs"
|
||||
fill
|
||||
sizes="100%"
|
||||
quality={100}
|
||||
className="hidden dark:block absolute h-full aspect-[330/430] inset-0 z-10 object-contain xl:object-cover 2xl:object-contain object-center bottom-0"
|
||||
/>
|
||||
<Image
|
||||
src="/images/index/products/data-apis-light.svg"
|
||||
alt="Supabase restful DataAPIs"
|
||||
fill
|
||||
sizes="100%"
|
||||
quality={100}
|
||||
className="dark:hidden absolute h-full aspect-[330/430] inset-0 z-10 object-contain xl:object-cover 2xl:object-contain object-center bottom-0"
|
||||
/>
|
||||
</div>
|
||||
</figure>
|
||||
)
|
||||
|
||||
export default DataAPIsVisual
|
||||
@@ -54,15 +54,24 @@ const DatabaseVisual = () => {
|
||||
role="img"
|
||||
aria-label="Supabase Postgres database visual composition"
|
||||
>
|
||||
<span className="absolute w-full lg:w-auto h-full lg:aspect-square flex items-end lg:items-center justify-center lg:justify-end right-0 left-0 lg:left-auto top-24 md:top-24 lg:top-0 lg:bottom-0 my-auto">
|
||||
<span className="absolute w-full md:w-auto h-full md:aspect-square flex items-end md:items-center justify-center md:justify-end right-0 left-0 md:left-auto xl:-right-12 2xl:right-0 top-12 md:top-0 md:bottom-0 my-auto">
|
||||
<Image
|
||||
src="/images/index/products/database.png"
|
||||
src="/images/index/products/database-dark.png"
|
||||
alt="Supabase Postgres database"
|
||||
fill
|
||||
priority
|
||||
quality={100}
|
||||
sizes="100%"
|
||||
className="absolute antialiased inset-0 object-contain object-center z-0 w-full lg:w-auto h-full transition-opacity group-hover:opacity-80"
|
||||
className="hidden dark:block absolute antialiased inset-0 object-contain object-center z-0 w-full md:w-auto h-full transition-opacity group-hover:opacity-80"
|
||||
/>
|
||||
<Image
|
||||
src="/images/index/products/database-light.png"
|
||||
alt="Supabase Postgres database"
|
||||
fill
|
||||
priority
|
||||
quality={100}
|
||||
sizes="100%"
|
||||
className="dark:hidden absolute antialiased inset-0 object-contain object-center z-0 w-full md:w-auto h-full transition-opacity group-hover:opacity-80"
|
||||
/>
|
||||
<svg
|
||||
ref={ref}
|
||||
|
||||
@@ -1,149 +1,111 @@
|
||||
import React from 'react'
|
||||
import { motion } from 'framer-motion'
|
||||
import React, { useEffect, useRef, useState } from 'react'
|
||||
import Image from 'next/image'
|
||||
import { detectBrowser, isBrowser } from 'common'
|
||||
import Typed from 'typed.js'
|
||||
import type { TypedOptions } from 'typed.js'
|
||||
import { useBreakpoint } from 'common'
|
||||
|
||||
const FunctionsVisual = () => {
|
||||
const isSafari = isBrowser && detectBrowser() === 'Safari'
|
||||
const initial = { x1: [0, 0], x2: [0, 0], y1: [0, 0], y2: [0, 0] }
|
||||
const gradientVariant1 = {
|
||||
initial,
|
||||
hover: {
|
||||
x1: [30, 200, 450],
|
||||
x2: [0, 50, 350],
|
||||
y1: [40, 0, 0],
|
||||
y2: [0, 0, 0],
|
||||
},
|
||||
}
|
||||
const gradientVariant2 = {
|
||||
initial,
|
||||
hover: {
|
||||
x1: [400, 50],
|
||||
x2: [300, -100],
|
||||
y1: [0, 0],
|
||||
y2: [0, 0],
|
||||
},
|
||||
const typerRef = useRef<HTMLSpanElement>(null)
|
||||
const isMobile = useBreakpoint('md')
|
||||
const [typed, setTyped] = useState<Typed | null>(null)
|
||||
const [isPlaying, setIsPlaying] = useState(false)
|
||||
const firstString = 'deploy'
|
||||
const strings = [firstString, 'serve']
|
||||
const disableAnimation = isPlaying || isMobile
|
||||
|
||||
let hoverTimeoutRef: any
|
||||
|
||||
const handleMouseEnter = () => {
|
||||
// Delay the animation to trigger animation only if hover is intentional
|
||||
hoverTimeoutRef = setTimeout(() => {
|
||||
triggerAnimation()
|
||||
}, 200)
|
||||
}
|
||||
|
||||
const LinearGradient = isSafari ? 'linearGradient' : motion.linearGradient
|
||||
const motionConfig1 = isSafari
|
||||
? {}
|
||||
: {
|
||||
variants: gradientVariant1,
|
||||
transition: {
|
||||
duration: 0.75,
|
||||
ease: 'linear',
|
||||
},
|
||||
}
|
||||
const motionConfig2 = isSafari
|
||||
? {}
|
||||
: {
|
||||
variants: gradientVariant2,
|
||||
transition: {
|
||||
duration: 0.75,
|
||||
ease: 'easeOut',
|
||||
delay: 0.25,
|
||||
},
|
||||
}
|
||||
const handleMouseLeave = () => {
|
||||
clearTimeout(hoverTimeoutRef)
|
||||
}
|
||||
|
||||
const onComplete = () => {
|
||||
setIsPlaying(false)
|
||||
}
|
||||
const onBegin = () => {
|
||||
setIsPlaying(true)
|
||||
}
|
||||
|
||||
const options: TypedOptions = {
|
||||
strings,
|
||||
typeSpeed: 40,
|
||||
backSpeed: 30,
|
||||
backDelay: 100,
|
||||
showCursor: false,
|
||||
loop: false,
|
||||
fadeOutDelay: 100,
|
||||
onBegin,
|
||||
onComplete,
|
||||
}
|
||||
|
||||
const triggerAnimation = () => {
|
||||
// Disable triggering the animation on mobile and if it's already playing
|
||||
if (disableAnimation) return
|
||||
|
||||
typed?.destroy()
|
||||
setTyped(new Typed(typerRef.current, options))
|
||||
typed?.reset()
|
||||
typed?.start()
|
||||
}
|
||||
|
||||
useEffect(() => {
|
||||
return () => {
|
||||
typed?.destroy()
|
||||
hoverTimeoutRef && clearTimeout(hoverTimeoutRef)
|
||||
}
|
||||
}, [])
|
||||
|
||||
return (
|
||||
<figure
|
||||
className="absolute inset-0 z-0"
|
||||
className="absolute inset-0 z-20"
|
||||
role="img"
|
||||
aria-label="Supabase Edge Functions visual composition"
|
||||
onMouseOver={handleMouseEnter}
|
||||
onMouseOut={handleMouseLeave}
|
||||
>
|
||||
<Image
|
||||
src="/images/index/products/edge-functions.png"
|
||||
src="/images/index/products/edge-functions-dark.svg"
|
||||
alt="Supabase Edge Functions globe"
|
||||
fill
|
||||
sizes="100%"
|
||||
quality={100}
|
||||
priority
|
||||
className="absolute inset-0 object-cover object-center"
|
||||
className="hidden dark:block absolute inset-0 object-cover object-center"
|
||||
/>
|
||||
<svg
|
||||
viewBox="0 0 289 430"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
fill="none"
|
||||
className="absolute w-[calc(100%+8px)] aspect-[1/1.44] inset-y-0 -inset-x-2 z-10 m-auto opacity-0 group-hover:opacity-100 transition-opacity"
|
||||
<Image
|
||||
src="/images/index/products/edge-functions-light.svg"
|
||||
alt="Supabase Edge Functions globe"
|
||||
fill
|
||||
sizes="100%"
|
||||
quality={100}
|
||||
priority
|
||||
className="dark:hidden absolute inset-0 object-cover object-center"
|
||||
/>
|
||||
<div
|
||||
className="
|
||||
absolute
|
||||
inset-0
|
||||
top-[48%] xl:top-[45%]
|
||||
w-full max-w-[200px] h-fit
|
||||
mx-auto px-2.5 py-1.5
|
||||
flex items-center justify-start
|
||||
rounded-full bg-surface-100 border border-strong
|
||||
text-xs text-foreground-lighter text-left
|
||||
"
|
||||
>
|
||||
<g clipPath="url(#clip0_444_4697)">
|
||||
{/* animated line bottom */}
|
||||
<g filter="url(#filter0_f_444_4697)">
|
||||
<path
|
||||
d="M462.953 432.967C455.894 423.713 447.268 414.516 437.138 405.444C418.384 388.658 395.412 373.157 368.855 359.372C341.364 345.102 311.219 333.302 279.251 324.302C247.283 315.302 215.41 309.639 184.514 307.472C154.664 305.377 126.978 306.617 102.223 311.153C77.4525 315.692 56.8624 323.305 41.0193 333.781C24.5938 344.646 14.0196 358.124 9.59228 373.851C2.83761 397.848 11.1094 425.026 33.5152 452.463C44.2949 465.66 58.0947 478.584 74.5322 490.879C91.1154 503.28 110.072 514.809 130.89 525.145L131.149 524.624C89.3866 503.882 55.7825 478.803 33.9689 452.094C11.691 424.819 3.45077 397.815 10.1533 374.011C18.8422 343.145 51.5773 321.027 102.325 311.728C153.144 302.415 215.919 307.081 279.089 324.865C342.258 342.649 398.246 371.421 436.743 405.879C475.185 440.288 491.571 476.235 482.882 507.101C476.303 530.473 455.771 549.003 423.514 560.688L423.71 561.236C456.153 549.485 476.808 530.819 483.441 507.257C487.868 491.53 485.883 474.515 477.535 456.678C473.835 448.765 468.957 440.843 462.946 432.963L462.953 432.967Z"
|
||||
stroke="url(#paint0_linear_444_4697)"
|
||||
strokeWidth="1.48"
|
||||
strokeLinejoin="bevel"
|
||||
/>
|
||||
</g>
|
||||
{/* animated line top */}
|
||||
<g filter="url(#filter1_f_444_4697)">
|
||||
<path
|
||||
d="M432.417 493.767C435.614 506.985 437.501 519.452 438.065 531.078L438.061 531.071C438.541 540.97 438.064 550.261 436.623 558.876C433.38 578.301 425.363 593.44 412.795 603.88C393.967 619.521 366.368 623.177 332.984 614.451L333.134 613.888C366.327 622.564 393.747 618.95 412.424 603.434C437.088 582.944 443.985 544.045 431.846 493.902C419.688 443.686 389.902 388.232 347.967 337.752C306.033 287.273 256.983 247.82 209.848 226.662C162.78 205.533 123.275 205.179 98.6104 225.669C82.4897 239.06 73.9031 260.43 73.4076 288L72.8153 288.5C73.2177 260.504 81.8831 238.808 98.2388 225.22C110.806 214.779 127.16 209.677 146.851 210.047C165.841 210.407 187.116 215.818 210.091 226.131C233.05 236.438 256.554 251.122 279.948 269.78C304.162 289.091 327.199 311.835 348.421 337.381C369.642 362.926 387.774 389.745 402.319 417.091C416.37 443.508 426.495 469.305 432.417 493.767Z"
|
||||
stroke="url(#paint1_linear_444_4697)"
|
||||
strokeWidth="1.48"
|
||||
strokeLinejoin="bevel"
|
||||
/>
|
||||
</g>
|
||||
</g>
|
||||
<defs>
|
||||
<filter
|
||||
id="filter0_f_444_4697"
|
||||
x="3.68233"
|
||||
y="302.862"
|
||||
width="485.675"
|
||||
height="261.952"
|
||||
filterUnits="userSpaceOnUse"
|
||||
colorInterpolationFilters="sRGB"
|
||||
>
|
||||
<feFlood floodOpacity="0" result="BackgroundImageFix" />
|
||||
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape" />
|
||||
<feGaussianBlur stdDeviation="0.44088" result="effect1_foregroundBlur_444_4697" />
|
||||
</filter>
|
||||
<filter
|
||||
id="filter1_f_444_4697"
|
||||
x="69.1937"
|
||||
y="206.407"
|
||||
width="372.67"
|
||||
height="416.295"
|
||||
filterUnits="userSpaceOnUse"
|
||||
colorInterpolationFilters="sRGB"
|
||||
>
|
||||
<feFlood floodOpacity="0" result="BackgroundImageFix" />
|
||||
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape" />
|
||||
<feGaussianBlur stdDeviation="0.44088" result="effect1_foregroundBlur_444_4697" />
|
||||
</filter>
|
||||
<LinearGradient
|
||||
id="paint0_linear_444_4697"
|
||||
x1="0"
|
||||
y1="0"
|
||||
x2="348"
|
||||
y2="300"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
{...motionConfig1}
|
||||
>
|
||||
<stop offset="0" stopColor="hsl(var(--border-strong))" stopOpacity="0" />
|
||||
<stop offset="0.2" stopColor="hsl(var(--brand-default))" />
|
||||
<stop offset="0.8" stopColor="hsl(var(--brand-default))" stopOpacity="0.0" />
|
||||
<stop offset="1" stopColor="hsl(var(--border-strong))" stopOpacity="0" />
|
||||
</LinearGradient>
|
||||
<LinearGradient
|
||||
id="paint1_linear_444_4697"
|
||||
x1="0"
|
||||
y1="0"
|
||||
x2="348"
|
||||
y2="0"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
{...motionConfig2}
|
||||
>
|
||||
<stop offset="0" stopColor="hsl(var(--border-strong))" stopOpacity="0" />
|
||||
<stop offset="0.1" stopColor="hsl(var(--brand-default))" stopOpacity="0.0" />
|
||||
<stop offset="0.9" stopColor="hsl(var(--brand-default))" />
|
||||
<stop offset="1" stopColor="hsl(var(--border-strong))" stopOpacity="0" />
|
||||
</LinearGradient>
|
||||
</defs>
|
||||
</svg>
|
||||
<span className="mr-2">$</span>
|
||||
supabase
|
||||
<span className="ml-1 text-brand inline-block">
|
||||
functions <span ref={typerRef}>{firstString}</span>
|
||||
</span>
|
||||
</div>
|
||||
</figure>
|
||||
)
|
||||
}
|
||||
|
||||
@@ -14,6 +14,7 @@ const ProductCard = ({
|
||||
url,
|
||||
onClick,
|
||||
alignLeft = false,
|
||||
isDatabase,
|
||||
}: {
|
||||
title: string
|
||||
subtitle: string | React.ReactNode
|
||||
@@ -24,6 +25,7 @@ const ProductCard = ({
|
||||
className?: string
|
||||
onClick?: any
|
||||
alignLeft?: boolean
|
||||
isDatabase?: boolean
|
||||
}) => (
|
||||
<Link
|
||||
href={url}
|
||||
@@ -37,30 +39,33 @@ const ProductCard = ({
|
||||
hasShimmer={isBrowser && detectBrowser() !== 'Safari'}
|
||||
hasActiveOnHover
|
||||
hasMotion={title.includes('Edge Functions')}
|
||||
outerClassName="relative w-full h-full shadow-lg"
|
||||
outerClassName="relative w-full h-full"
|
||||
innerClassName={cn(
|
||||
`relative overflow-hidden flex-1 flex flex-col items-center gap-5 lg:items-start justify-between
|
||||
bg-surface-75 w-full rounded-xl h-full`
|
||||
'relative overflow-hidden flex-1 flex flex-col items-center gap-5 lg:items-start justify-between',
|
||||
'bg-surface-75 w-full h-full text-foreground-lighter [&_strong]:!font-normal [&_strong]:!text-foreground'
|
||||
)}
|
||||
>
|
||||
<div
|
||||
className={cn(
|
||||
'relative z-10 flex flex-col lg:h-full gap-1 text-foreground mx-auto items-center text-center h-full px-6 py-8',
|
||||
alignLeft && 'lg:mx-0 lg:pl-8 lg:items-start lg:text-left lg:max-w-[260px]'
|
||||
'relative z-10 flex flex-col lg:h-full gap-4 mx-auto items-center text-center h-full px-4 py-6',
|
||||
alignLeft && !isDatabase && 'lg:mx-0 lg:pl-6 lg:items-start lg:text-left',
|
||||
alignLeft &&
|
||||
isDatabase &&
|
||||
'md:ml-4 md:mt-2 md:justify-start md:max-w-[260px] md:text-left md:items-start'
|
||||
)}
|
||||
>
|
||||
<div className="flex items-center justify-center h-10 w-10 bg-surface-200 border rounded-lg mb-3">
|
||||
<div className="flex items-center gap-2 text-foreground">
|
||||
{icon && (
|
||||
<svg
|
||||
width="25"
|
||||
height="25"
|
||||
width="18"
|
||||
height="18"
|
||||
viewBox="0 0 25 25"
|
||||
fill="none"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
>
|
||||
<path
|
||||
d={icon}
|
||||
stroke="hsl(var(--foreground-lighter))"
|
||||
stroke="currentColor"
|
||||
strokeMiterlimit="10"
|
||||
strokeLinejoin="round"
|
||||
strokeLinecap="round"
|
||||
@@ -68,11 +73,15 @@ const ProductCard = ({
|
||||
/>
|
||||
</svg>
|
||||
)}
|
||||
<h2 className="">{title}</h2>
|
||||
</div>
|
||||
<h2 className="text-xl">{title}</h2>
|
||||
<div className="flex-1 flex flex-col justify-between gap-2">
|
||||
<p className="text-sm text-foreground-lighter">{subtitle}</p>
|
||||
{highlights && <span className="hidden lg:block">{highlights}</span>}
|
||||
<p className="text-sm [&_strong]:!text-foreground">{subtitle}</p>
|
||||
{highlights && (
|
||||
<span className={cn('hidden lg:block text-foreground', isDatabase && 'md:block')}>
|
||||
{highlights}
|
||||
</span>
|
||||
)}
|
||||
</div>
|
||||
</div>
|
||||
{image && image}
|
||||
|
||||
@@ -1,34 +1,155 @@
|
||||
import React, { useRef, useState } from 'react'
|
||||
import Image from 'next/image'
|
||||
import React from 'react'
|
||||
import { isBrowser, useReducedMotion } from 'common'
|
||||
|
||||
const RealtimeVisual = () => {
|
||||
const cardRef = useRef<HTMLDivElement | null>(null)
|
||||
const [svgTransformSelf, setSvgTransformSelf] = useState<string>('translate(0px, 0px)')
|
||||
const [svgTransform, setSvgTransform] = useState<string>('translate(0px, 0px)')
|
||||
const [svgTransform2, setSvgTransform2] = useState<string>('translate(0px, 0px)')
|
||||
const reduceMotion = isBrowser && useReducedMotion()
|
||||
|
||||
const handleMouseMove = (event: React.MouseEvent<HTMLDivElement>) => {
|
||||
if (cardRef.current) {
|
||||
const cardRect = cardRef.current.getBoundingClientRect()
|
||||
const mouseX = event.clientX - cardRect.left // Mouse X relative to card
|
||||
const mouseY = event.clientY - cardRect.top // Mouse Y relative to card
|
||||
const cardWidth = cardRect.width
|
||||
const cardHeight = cardRect.height
|
||||
|
||||
const svgX = (mouseX / cardRect.width) * 100 - 50 // Calculate SVG X position
|
||||
const svgY = (mouseY / cardRect.height) * 100 - 50 // Calculate SVG Y position
|
||||
|
||||
// Set the transform to move the SVG in the opposite direction
|
||||
setSvgTransform(
|
||||
`translate(${mouseX > cardWidth / 4 + 40 ? svgX * 3 : svgX * 1.2}px, ${mouseY > cardHeight / 2 + 30 ? -svgY * 1.5 : -svgY * 2.2}px)`
|
||||
)
|
||||
setSvgTransform2(
|
||||
`translate(${mouseX > cardWidth / 2 + 40 ? -svgX * 3 : svgX * 1.6}px, ${mouseY > cardHeight / 2 - 100 ? svgY * 1.2 : svgY * 2.8}px)`
|
||||
)
|
||||
setSvgTransformSelf(`translate(${mouseX + 12}px, ${mouseY + 4}px)`)
|
||||
}
|
||||
}
|
||||
|
||||
const handleMouseLeave = () => {
|
||||
setSvgTransform('translate(0px, 0px)')
|
||||
setSvgTransform2('translate(0px, 0px)')
|
||||
}
|
||||
|
||||
return (
|
||||
<figure
|
||||
className="absolute inset-0 xl:-bottom-2 2xl:bottom-0 z-0 overflow-hidden"
|
||||
ref={cardRef}
|
||||
className="absolute inset-0 xl:-bottom-2 2xl:bottom-0 z-0 w-full overflow-hidden pointer-events-auto"
|
||||
role="img"
|
||||
aria-label="Supabase Realtime multiplayer app demo"
|
||||
onMouseMove={reduceMotion ? undefined : handleMouseMove}
|
||||
onMouseLeave={handleMouseLeave} // Reset on mouse leave
|
||||
>
|
||||
<Image
|
||||
src="/images/index/products/realtime-user-cursor.svg"
|
||||
width={20}
|
||||
height={20}
|
||||
alt="user cursor"
|
||||
className="absolute w-6 h-6 z-10 left-14 bottom-[100px] lg:bottom-[90px] xl:bottom-[120px] 2xl:bottom-[100px] transition translate-x-8 translate-y-2 group-hover:translate-x-0 group-hover:translate-y-0 !duration-300 will-change-transform"
|
||||
/>
|
||||
<Image
|
||||
src="/images/index/products/realtime-user-cursor.svg"
|
||||
width={20}
|
||||
height={20}
|
||||
alt="user cursor"
|
||||
className="absolute w-6 h-6 z-10 right-[40%] bottom-3 xl:bottom-10 2xl:bottom-3 transition translate-x-80 group-hover:translate-x-0 !duration-700 will-change-transform"
|
||||
/>
|
||||
<Image
|
||||
src="/images/index/products/realtime-bg.svg"
|
||||
src="/images/index/products/realtime-dark.svg"
|
||||
alt="Supabase Realtime"
|
||||
fill
|
||||
sizes="100%"
|
||||
quality={100}
|
||||
className="absolute object-cover xl:object-center inset-0"
|
||||
className="hidden dark:block absolute object-cover xl:object-center inset-0"
|
||||
/>
|
||||
<Image
|
||||
src="/images/index/products/realtime-light.svg"
|
||||
alt="Supabase Realtime"
|
||||
fill
|
||||
sizes="100%"
|
||||
quality={100}
|
||||
className="dark:hidden absolute object-cover xl:object-center inset-0"
|
||||
/>
|
||||
{/* User 1 */}
|
||||
<div
|
||||
className="absolute will-change-transform"
|
||||
style={{
|
||||
position: 'absolute',
|
||||
top: '60%',
|
||||
left: '30%',
|
||||
transform: `${svgTransform} translate(-50%, -50%)`, // Center the SVG
|
||||
transition: 'transform 0.75s ease-out', // Smooth transition
|
||||
}}
|
||||
>
|
||||
<svg
|
||||
width="30"
|
||||
height="38"
|
||||
viewBox="0 0 30 38"
|
||||
fill="none"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
>
|
||||
<path
|
||||
d="M3.58385 1.69742C2.57836 0.865603 1.05859 1.58076 1.05859 2.88572V35.6296C1.05859 37.1049 2.93111 37.7381 3.8265 36.5656L12.5863 25.0943C12.6889 24.96 12.8483 24.8812 13.0173 24.8812H27.3245C28.7697 24.8812 29.4211 23.0719 28.3076 22.1507L3.58385 1.69742Z"
|
||||
fill="hsl(var(--background-surface-200))"
|
||||
stroke="hsl(var(--foreground-lighter))"
|
||||
stroke-linejoin="round"
|
||||
/>
|
||||
</svg>
|
||||
|
||||
<div className="!w-[66.70px] !h-[33.35px] absolute left-full flex items-center justify-center gap-1 -top-6 border border-foreground-lighter/70 rounded-full bg-surface-100">
|
||||
<div className="w-1.5 h-1.5 rounded-full bg-foreground-lighter animate-[pulse_600ms_cubic-bezier(0.4,0,0.6,1)_infinite] pause group-hover:run" />
|
||||
<div className="w-1.5 h-1.5 rounded-full bg-foreground-lighter animate-[pulse_600ms_cubic-bezier(0.4,0,0.6,1)_200ms_infinite] pause group-hover:run" />
|
||||
<div className="w-1.5 h-1.5 rounded-full bg-foreground-lighter animate-[pulse_600ms_cubic-bezier(0.4,0,0.6,1)_400ms_infinite] pause group-hover:run" />
|
||||
</div>
|
||||
</div>
|
||||
{/* User 2 */}
|
||||
<div
|
||||
className="absolute will-change-transform scale-[80%]"
|
||||
style={{
|
||||
position: 'absolute',
|
||||
top: '80%',
|
||||
left: '65%',
|
||||
transform: `${svgTransform2} translate(-50%, -50%)`, // Center the SVG
|
||||
transition: 'transform 1s ease-out', // Smooth transition
|
||||
}}
|
||||
>
|
||||
<svg
|
||||
width="20"
|
||||
height="28"
|
||||
viewBox="0 0 30 38"
|
||||
fill="none"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
>
|
||||
<path
|
||||
d="M3.58385 1.69742C2.57836 0.865603 1.05859 1.58076 1.05859 2.88572V35.6296C1.05859 37.1049 2.93111 37.7381 3.8265 36.5656L12.5863 25.0943C12.6889 24.96 12.8483 24.8812 13.0173 24.8812H27.3245C28.7697 24.8812 29.4211 23.0719 28.3076 22.1507L3.58385 1.69742Z"
|
||||
fill="hsl(var(--background-surface-200))"
|
||||
stroke="hsl(var(--foreground-lighter))"
|
||||
stroke-linejoin="round"
|
||||
/>
|
||||
</svg>
|
||||
|
||||
<div className="!w-[55px] !h-[28px] absolute left-full flex items-center justify-center gap-1 -top-6 border border-foreground-muted rounded-full bg-surface-100 opacity-0 group-hover:opacity-100 transition-opacity">
|
||||
<div className="w-1.5 h-1.5 rounded-full bg-foreground-lighter animate-[pulse_600ms_cubic-bezier(0.4,0,0.6,1)_infinite] pause group-hover:run" />
|
||||
<div className="w-1.5 h-1.5 rounded-full bg-foreground-lighter animate-[pulse_600ms_cubic-bezier(0.4,0,0.6,1)_200ms_infinite] pause group-hover:run" />
|
||||
<div className="w-1.5 h-1.5 rounded-full bg-foreground-lighter animate-[pulse_600ms_cubic-bezier(0.4,0,0.6,1)_400ms_infinite] pause group-hover:run" />
|
||||
</div>
|
||||
</div>
|
||||
{/* Self */}
|
||||
<div
|
||||
className="absolute will-change-transform w-1 h-1 opacity-0 motion-safe:group-hover:opacity-100 delay-0 duration-75 group-hover:duration-300 transition-opacity"
|
||||
style={{
|
||||
position: 'absolute',
|
||||
top: '0',
|
||||
left: '0',
|
||||
transform: `${svgTransformSelf} translate(-50%, -50%)`, // Center the SVG
|
||||
// transition: 'transform 0.1s ease-out', // Smooth transition
|
||||
}}
|
||||
>
|
||||
<div className="w-auto h-auto px-2.5 py-1.5 absolute left-full flex items-center justify-center gap-1 -top-6 border border-brand rounded-full bg-brand-300">
|
||||
<div className="w-1.5 h-1.5 rounded-full bg-brand animate-[pulse_600ms_cubic-bezier(0.4,0,0.6,1)_infinite] pause group-hover:run" />
|
||||
<div className="w-1.5 h-1.5 rounded-full bg-brand animate-[pulse_600ms_cubic-bezier(0.4,0,0.6,1)_200ms_infinite] pause group-hover:run" />
|
||||
<div className="w-1.5 h-1.5 rounded-full bg-brand animate-[pulse_600ms_cubic-bezier(0.4,0,0.6,1)_400ms_infinite] pause group-hover:run" />
|
||||
</div>
|
||||
</div>
|
||||
{/* Gradient to hide animation under text to maintain readability */}
|
||||
<div
|
||||
className="
|
||||
absolute pointer-events-none
|
||||
w-full h-full max-h-[400px] lg:max-h-none
|
||||
inset-0 top-auto
|
||||
bg-[linear-gradient(to_top,transparent_0%,transparent_50%,hsl(var(--background-surface-75))_85%)]
|
||||
"
|
||||
/>
|
||||
</figure>
|
||||
)
|
||||
|
||||
@@ -3,9 +3,9 @@ import { File, Image, Video } from 'lucide-react'
|
||||
|
||||
const StorageVisual = () => {
|
||||
const cols = [
|
||||
<Image className="w-6 h-6 md:w-6 md:h-6 text-muted" />,
|
||||
<File className="w-6 h-6 md:w-6 md:h-6 text-muted" />,
|
||||
<Video className="w-6 h-6 md:w-6 md:h-6 text-muted" />,
|
||||
<Image className="w-6 h-6 md:w-6 md:h-6" />,
|
||||
<File className="w-6 h-6 md:w-6 md:h-6" />,
|
||||
<Video className="w-6 h-6 md:w-6 md:h-6" />,
|
||||
]
|
||||
|
||||
return (
|
||||
@@ -17,14 +17,14 @@ const StorageVisual = () => {
|
||||
{range(0, 2).map((_, idx1: number) => (
|
||||
<div
|
||||
key={`row-${idx1}`}
|
||||
className="relative h-full left-0 w-auto items-end pb-2 z-10 flex pause animate-marquee group-hover:run will-change-transform transition-transform"
|
||||
className="relative h-full left-0 w-auto items-end pb-4 z-10 flex pause animate-marquee motion-safe:group-hover:run will-change-transform transition-transform"
|
||||
>
|
||||
{range(0, 10).map((_, idx2: number) => (
|
||||
<div key={`col-${idx2}`} className="flex flex-col ml-2 gap-2 md:gap-2">
|
||||
{cols.map((col: any, idx3: number) => (
|
||||
<div
|
||||
key={`icon-${idx3}`}
|
||||
className="w-[60px] h-[60px] md:min-w-[62px] md:w-[62px] md:h-[62px] flex items-center justify-center rounded-lg border bg hover:border-brand"
|
||||
className="w-[60px] h-[60px] md:min-w-[62px] md:w-[62px] md:h-[62px] flex items-center justify-center rounded-lg border bg hover:border-foreground-lighter text-muted hover:text-foreground-light hover:bg-surface-200"
|
||||
>
|
||||
{col}
|
||||
</div>
|
||||
|
||||
@@ -49,19 +49,35 @@ const VectorVisual = () => {
|
||||
|
||||
return (
|
||||
<figure
|
||||
className="absolute inset-0 z-0"
|
||||
className="
|
||||
absolute inset-0
|
||||
z-0 flex items-end
|
||||
top-auto
|
||||
aspect-[390/430]
|
||||
w-full md:w-[calc(100%+4rem)] 2xl:w-full
|
||||
md:-mx-8 2xl:mx-0
|
||||
-bottom-0 sm:-bottom-28 md:bottom-0 lg:-bottom-28 xl:bottom-0
|
||||
"
|
||||
ref={containerRef}
|
||||
role="img"
|
||||
aria-label="Supabase Vector uses pgvector to store, index, and access embeddings"
|
||||
>
|
||||
<span className="absolute w-full lg:w-auto h-full lg:aspect-square flex items-end lg:items-center justify-center lg:justify-end right-0 left-0 lg:left-auto top-24 md:top-24 lg:top-0 lg:bottom-0 my-auto lg:scale-110">
|
||||
<span className="absolute w-full h-full lg:!aspect-[390/430] flex items-end justify-center inset-0 top-16 md:top-20 lg:top-0 bottom-auto mx-auto">
|
||||
<Image
|
||||
src={`/images/index/products/vector.svg`}
|
||||
src={`/images/index/products/vector-dark.svg`}
|
||||
alt="Supabase Vector graph"
|
||||
fill
|
||||
sizes="100%"
|
||||
quality={100}
|
||||
className="absolute inset-0 z-0 object-contain object-center"
|
||||
className="hidden dark:block absolute inset-0 z-0 object-contain object-center"
|
||||
/>
|
||||
<Image
|
||||
src={`/images/index/products/vector-light.svg`}
|
||||
alt="Supabase Vector graph"
|
||||
fill
|
||||
sizes="100%"
|
||||
quality={100}
|
||||
className="dark:hidden absolute inset-0 z-0 object-contain object-center"
|
||||
/>
|
||||
<svg
|
||||
ref={ref}
|
||||
|
||||
@@ -1,84 +1,73 @@
|
||||
import Link from 'next/link'
|
||||
import { useRouter } from 'next/router'
|
||||
import { useState } from 'react'
|
||||
import { Button } from 'ui'
|
||||
import { cn } from 'ui'
|
||||
import { TweetCard } from 'ui-patterns/TweetCard'
|
||||
import Tweets from '../../data/tweets/Tweets.json'
|
||||
import { MessageCircle } from 'lucide-react'
|
||||
import { range } from 'lodash'
|
||||
|
||||
function TwitterSocialProof() {
|
||||
// base path for images
|
||||
import Tweets from '~/data/tweets/Tweets.json'
|
||||
import { useBreakpoint } from 'common'
|
||||
import React from 'react'
|
||||
|
||||
interface Props {
|
||||
className?: string
|
||||
}
|
||||
|
||||
const TwitterSocialProof: React.FC<Props> = ({ className }) => {
|
||||
const { basePath } = useRouter()
|
||||
|
||||
const [tweets, setTweets] = useState(Tweets.slice(0, 10))
|
||||
const [showButton, setShowButton] = useState(true)
|
||||
|
||||
const handleShowMore = () => {
|
||||
setTweets((prevTweets) => [
|
||||
...prevTweets,
|
||||
...Tweets.slice(prevTweets.length, prevTweets.length + 10),
|
||||
])
|
||||
|
||||
if (tweets.length >= Tweets.length) {
|
||||
setShowButton(false)
|
||||
}
|
||||
}
|
||||
const isSm = useBreakpoint()
|
||||
const isMd = useBreakpoint(1024)
|
||||
const tweets = Tweets.slice(0, 18)
|
||||
|
||||
return (
|
||||
<>
|
||||
<div className="grid grid-cols-12">
|
||||
<div className="col-span-12 text-center">
|
||||
<h3 className="h2">Join the community</h3>
|
||||
<p className="p">
|
||||
Supported by a network of early advocates, contributors, and champions.
|
||||
</p>
|
||||
<div className="my-8 flex justify-center gap-2">
|
||||
<Button asChild size="small" iconRight={<MessageCircle size={14} />} type="default">
|
||||
<div
|
||||
className={cn(
|
||||
'group overflow-hidden relative transition-all max-h-[500px] w-auto flex flex-nowrap',
|
||||
className
|
||||
)}
|
||||
>
|
||||
{range(0, 3).map((_, idx1: number) => (
|
||||
<div
|
||||
key={`tweets-range-${idx1}`}
|
||||
className={cn(
|
||||
'columns-1 sm:columns-2 md:columns-2 lg:columns-3 xl:columns-5',
|
||||
'gap-4 h-fit pr-4',
|
||||
'w-screen min-w-[900px] max-w-[900px]',
|
||||
'xl:min-w-[1600px] max-w-[1600px]',
|
||||
'animate-[marquee_40000ms_linear_both_infinite] group-hover:pause',
|
||||
'motion-reduce:animate-none motion-reduce:will-change-none',
|
||||
'will-change-transform transition-transform'
|
||||
)}
|
||||
>
|
||||
{tweets.slice(0, isSm ? 9 : isMd ? 12 : 18).map((tweet: any, i: number) => (
|
||||
<Link
|
||||
href={'https://github.com/supabase/supabase/discussions'}
|
||||
key={tweet.text}
|
||||
href={tweet.url}
|
||||
target="_blank"
|
||||
tabIndex={-1}
|
||||
className={cn(
|
||||
'min-w-[200px]',
|
||||
'mb-4 z-0 break-inside-avoid-column block group/tweet-card',
|
||||
i > 12 && 'hidden md:block'
|
||||
)}
|
||||
>
|
||||
GitHub discussions
|
||||
</Link>
|
||||
</Button>
|
||||
<Button asChild type="default" size="small" iconRight={<MessageCircle size={14} />}>
|
||||
<Link href={'https://discord.supabase.com/'} target="_blank" tabIndex={-1}>
|
||||
Discord
|
||||
</Link>
|
||||
</Button>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div className="mt-6">
|
||||
<div
|
||||
className={`columns-1 sm:columns-2 lg:columns-3 xl:columns-4 gap-4 overflow-hidden relative transition-all`}
|
||||
>
|
||||
{showButton && (
|
||||
<div
|
||||
className={`absolute bottom-0 left-0 z-10 w-full h-[400px] bg-gradient-to-t from-background via-background`}
|
||||
/>
|
||||
)}
|
||||
{tweets.map((tweet: any, i: number) => (
|
||||
<div className="mb-4 z-0 break-inside-avoid-column" key={i}>
|
||||
<Link href={tweet.url} target="_blank">
|
||||
<TweetCard
|
||||
handle={`@${tweet.handle}`}
|
||||
quote={tweet.text}
|
||||
img_url={`${basePath}${tweet.img_url}`}
|
||||
/>
|
||||
</Link>
|
||||
</div>
|
||||
))}
|
||||
{showButton && (
|
||||
<div className="absolute flex justify-center bottom-0 left-0 right-0 z-20 mb-10">
|
||||
<Button type="default" size="small" onClick={() => handleShowMore()}>
|
||||
Show More
|
||||
</Button>
|
||||
</div>
|
||||
)}
|
||||
</div>
|
||||
))}
|
||||
</div>
|
||||
))}
|
||||
</div>
|
||||
<div
|
||||
className="
|
||||
absolute pointer-events-none
|
||||
w-full h-full max-h-[400px] lg:max-h-none
|
||||
inset-0 top-auto
|
||||
lg:bg-[radial-gradient(50%_100%_at_50%_0,transparent_0%,transparent_50%,hsl(var(--background-default))_100%)]
|
||||
"
|
||||
/>
|
||||
</>
|
||||
)
|
||||
}
|
||||
|
||||
71
apps/www/components/Sections/TwitterSocialProofMobile.tsx
Normal file
@@ -0,0 +1,71 @@
|
||||
import 'swiper/css'
|
||||
|
||||
import { useRouter } from 'next/router'
|
||||
import React, { FC } from 'react'
|
||||
import { Swiper, SwiperSlide } from 'swiper/react'
|
||||
import { cn } from 'ui'
|
||||
import { TweetCard } from 'ui-patterns'
|
||||
import content from '~/data/home/content'
|
||||
import Link from 'next/link'
|
||||
|
||||
interface Tweet {
|
||||
text: string
|
||||
url: string
|
||||
handle: string
|
||||
img_url: string
|
||||
}
|
||||
|
||||
interface Props {
|
||||
tweets: Tweet[]
|
||||
className?: string
|
||||
}
|
||||
|
||||
const TwitterSocialProofMobile: FC<Props> = ({ tweets, className }: any) => {
|
||||
const { basePath } = useRouter()
|
||||
|
||||
return (
|
||||
<div className={className}>
|
||||
<Swiper
|
||||
style={{ zIndex: 0, marginRight: '1px' }}
|
||||
initialSlide={0}
|
||||
spaceBetween={12}
|
||||
slidesPerView={1.1}
|
||||
speed={300}
|
||||
watchOverflow
|
||||
threshold={2}
|
||||
updateOnWindowResize
|
||||
className="h-[400px] !px-6 w-full overflow-visible"
|
||||
breakpoints={{
|
||||
320: {
|
||||
slidesPerView: 1.1,
|
||||
},
|
||||
540: {
|
||||
slidesPerView: 1.6,
|
||||
},
|
||||
720: {
|
||||
slidesPerView: 2.5,
|
||||
},
|
||||
}}
|
||||
>
|
||||
{tweets.map((tweet: any, i: number) => (
|
||||
<SwiperSlide key={`${content}-${i}`}>
|
||||
<Link
|
||||
key={tweet.text}
|
||||
href={tweet.url}
|
||||
target="_blank"
|
||||
className={cn('mb-4 z-0 break-inside-avoid-column block group')}
|
||||
>
|
||||
<TweetCard
|
||||
handle={`@${tweet.handle}`}
|
||||
quote={tweet.text}
|
||||
img_url={`${basePath}${tweet.img_url}`}
|
||||
/>
|
||||
</Link>
|
||||
</SwiperSlide>
|
||||
))}
|
||||
</Swiper>
|
||||
</div>
|
||||
)
|
||||
}
|
||||
|
||||
export default TwitterSocialProofMobile
|
||||
115
apps/www/components/TabsWithHighlights.tsx
Normal file
@@ -0,0 +1,115 @@
|
||||
import React, { useRef, useState } from 'react'
|
||||
import Link from 'next/link'
|
||||
import { useTheme } from 'next-themes'
|
||||
import { Check } from 'lucide-react'
|
||||
import { AnimatePresence, motion, useInView } from 'framer-motion'
|
||||
import { Badge, cn } from 'ui'
|
||||
import BrowserFrame from './BrowserFrame'
|
||||
|
||||
export type Tab = {
|
||||
label: string
|
||||
panel: React.FC<{ isDark: boolean }>
|
||||
highlights: { label: string; link?: string }[]
|
||||
}
|
||||
|
||||
interface Props {
|
||||
tabs: Tab[]
|
||||
}
|
||||
|
||||
const TabsWithHighlights = (props: Props) => {
|
||||
const { resolvedTheme } = useTheme()
|
||||
const [activeTabIdx, setActiveTabIdx] = useState<number>(0)
|
||||
const sectionRef = useRef(null)
|
||||
const isInView = useInView(sectionRef, { once: true })
|
||||
|
||||
const Panel: any = props.tabs[activeTabIdx]?.panel ?? null
|
||||
const highlights = props.tabs[activeTabIdx]?.highlights ?? [null]
|
||||
|
||||
const handleTabClick = (tabIndex: number) => {
|
||||
setActiveTabIdx(tabIndex)
|
||||
}
|
||||
|
||||
return (
|
||||
<div className="relative flex flex-col gap-8 lg:gap-12 items-center">
|
||||
{/* Threshold element used to load video 500px before reaching the video component */}
|
||||
<div ref={sectionRef} className="absolute -top-[500px] not-sr-only" />
|
||||
<div className="relative w-full col-span-full flex justify-center gap-2" role="tablist">
|
||||
{props.tabs.map((tab, index) => (
|
||||
<Tab
|
||||
key={index}
|
||||
isActive={index === activeTabIdx}
|
||||
label={tab.label}
|
||||
onClick={() => handleTabClick(index)}
|
||||
/>
|
||||
))}
|
||||
</div>
|
||||
<AnimatePresence mode="wait">
|
||||
<motion.ul
|
||||
key={props.tabs[activeTabIdx]?.label}
|
||||
initial={{ opacity: 0 }}
|
||||
animate={{ opacity: 1, transition: { duration: 0.1, delay: 0.2 } }}
|
||||
exit={{ opacity: 0, transition: { duration: 0.05 } }}
|
||||
className="position order-last lg:order-2 w-ful flex flex-wrap items-center gap-x-8 gap-y-4 lg:gap-8 justify-center text-center mx-auto z-30"
|
||||
>
|
||||
{highlights?.map((highlight) => (
|
||||
<li key={highlight.label}>
|
||||
<Link
|
||||
href={highlight.link ?? '#'}
|
||||
className="group cursor-pointer flex items-center gap-2 text-sm whitespace-nowrap text-foreground-light hover:text-foreground transition-colors hover:underline"
|
||||
>
|
||||
<Check className="stroke-2 w-4" />
|
||||
<span>{highlight.label}</span>
|
||||
</Link>
|
||||
</li>
|
||||
))}
|
||||
</motion.ul>
|
||||
</AnimatePresence>
|
||||
<BrowserFrame
|
||||
className="overflow-hidden lg:order-last bg-default w-full max-w-6xl mx-auto"
|
||||
contentClassName="aspect-video border overflow-hidden rounded-lg"
|
||||
>
|
||||
{isInView && (
|
||||
<AnimatePresence mode="wait">
|
||||
<motion.div
|
||||
key={props.tabs[activeTabIdx]?.label}
|
||||
initial={{ opacity: 0 }}
|
||||
animate={{ opacity: 1, transition: { duration: 0.1, delay: 0.2 } }}
|
||||
exit={{ opacity: 0, transition: { duration: 0.05 } }}
|
||||
className="relative w-full max-w-full h-full"
|
||||
>
|
||||
<Panel
|
||||
key={resolvedTheme?.includes('dark')}
|
||||
isDark={resolvedTheme?.includes('dark')}
|
||||
/>
|
||||
</motion.div>
|
||||
</AnimatePresence>
|
||||
)}
|
||||
</BrowserFrame>
|
||||
</div>
|
||||
)
|
||||
}
|
||||
|
||||
interface TabProps {
|
||||
label: string
|
||||
isActive: boolean
|
||||
onClick: VoidFunction
|
||||
}
|
||||
|
||||
const Tab = ({ label, isActive, onClick }: TabProps) => (
|
||||
<button onClick={onClick} aria-selected={isActive} role="tab">
|
||||
<Badge
|
||||
size="large"
|
||||
className={cn(
|
||||
// `text-left py-1.5 px-3 lg:py-2 lg:px-8 border rounded-md bg-alternative hover:border-foreground text-lg opacity-80 transition-all`,
|
||||
'py-1.5 px-3 lg:py-2 lg:px-8',
|
||||
'hover:border-foreground-lighter hover:text-foreground',
|
||||
`opacity-80`,
|
||||
isActive ? 'opacity-100 !border-foreground' : ''
|
||||
)}
|
||||
>
|
||||
{label}
|
||||
</Badge>
|
||||
</button>
|
||||
)
|
||||
|
||||
export default TabsWithHighlights
|
||||
@@ -1,17 +1,42 @@
|
||||
import Link from 'next/link'
|
||||
import { MessageCircle } from 'lucide-react'
|
||||
import { Button } from 'ui'
|
||||
import SectionContainer from './Layouts/SectionContainer'
|
||||
import TwitterSocialProof from './Sections/TwitterSocialProof'
|
||||
import TwitterSocialProofMobile from './Sections/TwitterSocialProofMobile'
|
||||
|
||||
import Tweets from '~/data/tweets/Tweets.json'
|
||||
|
||||
const TwitterSocialSection = () => {
|
||||
const tweets = Tweets.slice(0, 18)
|
||||
|
||||
return (
|
||||
<div className="relative">
|
||||
<div className="section-container pb-0">
|
||||
<div className="overflow-x-hidden">
|
||||
<SectionContainer className="mb-0 pb-8">
|
||||
<TwitterSocialProof />
|
||||
</SectionContainer>
|
||||
<>
|
||||
<SectionContainer className="w-full text-center !pb-0">
|
||||
<h3 className="h2">Join the community</h3>
|
||||
<p className="p">Discover what our community has to say about their Supabase experience.</p>
|
||||
<div className="my-8 flex justify-center gap-2">
|
||||
<Button asChild size="small" iconRight={<MessageCircle size={14} />} type="default">
|
||||
<Link
|
||||
href={'https://github.com/supabase/supabase/discussions'}
|
||||
target="_blank"
|
||||
tabIndex={-1}
|
||||
>
|
||||
GitHub discussions
|
||||
</Link>
|
||||
</Button>
|
||||
<Button asChild type="default" size="small" iconRight={<MessageCircle size={14} />}>
|
||||
<Link href={'https://discord.supabase.com/'} target="_blank" tabIndex={-1}>
|
||||
Discord
|
||||
</Link>
|
||||
</Button>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</SectionContainer>
|
||||
<SectionContainer className="relative w-full !px-0 lg:!px-16 xl:!px-0 !pb-0 mb-16 md:mb-12 lg:mb-12 !pt-6 max-w-[1400px]">
|
||||
<TwitterSocialProofMobile className="lg:hidden -mb-24" tweets={tweets} />
|
||||
<TwitterSocialProof className="hidden lg:flex" />
|
||||
</SectionContainer>
|
||||
</>
|
||||
)
|
||||
}
|
||||
|
||||
|
||||
@@ -5,14 +5,16 @@ const SectionHeader = (props: any) => {
|
||||
<span className="text-foreground-lighter block font-mono text-xs uppercase tracking-widest">
|
||||
{props.subtitle}
|
||||
</span>
|
||||
<h3 className="h2">
|
||||
<h3 className="h2 lg:max-w-md">
|
||||
<span>{props.title}</span>
|
||||
{props.title_alt && (
|
||||
<span className="text-foreground-light inline">{props.title_alt}</span>
|
||||
)}
|
||||
</h3>
|
||||
</div>
|
||||
{props.paragraph && <p className="p max-w-3xl text-lg sm:mt-4">{props.paragraph}</p>}
|
||||
{props.paragraph && (
|
||||
<p className="text-foreground-lighter max-w-3xl text-lg sm:mt-4">{props.paragraph}</p>
|
||||
)}
|
||||
</div>
|
||||
)
|
||||
}
|
||||
|
||||
56
apps/www/components/VideoWithHighlights.tsx
Normal file
@@ -0,0 +1,56 @@
|
||||
import Image from 'next/image'
|
||||
import { useTheme } from 'next-themes'
|
||||
|
||||
type VideoType = {
|
||||
sources: {
|
||||
src: string
|
||||
type?: string
|
||||
}[]
|
||||
poster: string
|
||||
title: string
|
||||
}
|
||||
|
||||
interface Props {
|
||||
video: VideoType
|
||||
highlights?: { label: string; link?: string }[]
|
||||
}
|
||||
|
||||
const VideoWithHighlights = (props: Props) => {
|
||||
const { resolvedTheme } = useTheme()
|
||||
|
||||
return (
|
||||
<div className="relative h-full w-full">
|
||||
<video
|
||||
className="relative z-10 block w-full h-full reduce-motion:hidden"
|
||||
height="100%"
|
||||
width="100%"
|
||||
loop
|
||||
muted
|
||||
autoPlay
|
||||
controls={false}
|
||||
playsInline
|
||||
poster={
|
||||
props.video.poster ??
|
||||
`/images/index/dashboard/supabase-table-editor${resolvedTheme?.includes('dark') ? '' : '-light'}.png`
|
||||
}
|
||||
>
|
||||
{props.video.sources.map((source, i) => (
|
||||
<source
|
||||
key={`${source.src}${i === 0 ? '.webm' : '.mp4'}`}
|
||||
src={`${source.src}${i === 0 ? '.webm' : '.mp4'}`}
|
||||
type={source.type ?? i === 0 ? 'video/webm' : 'video/mp4'}
|
||||
/>
|
||||
))}
|
||||
</video>
|
||||
<Image
|
||||
src={props.video.poster}
|
||||
alt={props.video.title}
|
||||
width={1920}
|
||||
height={1080}
|
||||
className="reduce-motion:block relative z-0 overflow-hidden"
|
||||
/>
|
||||
</div>
|
||||
)
|
||||
}
|
||||
|
||||
export default VideoWithHighlights
|
||||
@@ -1,100 +1,127 @@
|
||||
import Image from 'next/image'
|
||||
import { useRouter } from 'next/router'
|
||||
import { cn } from 'ui'
|
||||
import { range } from 'lodash'
|
||||
|
||||
export default function Logos() {
|
||||
const { basePath } = useRouter()
|
||||
|
||||
const logos = [
|
||||
{
|
||||
image: `${basePath}/images/logos/publicity/mozilla.svg`,
|
||||
alt: 'mozilla',
|
||||
name: 'mozilla',
|
||||
},
|
||||
{
|
||||
image: `${basePath}/images/logos/publicity/1password.svg`,
|
||||
alt: '1password',
|
||||
name: '1password',
|
||||
},
|
||||
{
|
||||
image: `${basePath}/images/logos/publicity/pwc.svg`,
|
||||
alt: 'pwc',
|
||||
name: 'pwc',
|
||||
},
|
||||
{
|
||||
image: `${basePath}/images/logos/publicity/pika.svg`,
|
||||
alt: 'pika',
|
||||
name: 'pika',
|
||||
},
|
||||
{
|
||||
image: `${basePath}/images/logos/publicity/humata.svg`,
|
||||
alt: 'humata',
|
||||
name: 'humata',
|
||||
},
|
||||
{
|
||||
image: `${basePath}/images/logos/publicity/krea.svg`,
|
||||
alt: 'krea',
|
||||
name: 'krea',
|
||||
},
|
||||
{
|
||||
image: `${basePath}/images/logos/publicity/udio.svg`,
|
||||
alt: 'udio',
|
||||
name: 'udio',
|
||||
},
|
||||
{
|
||||
image: `${basePath}/images/logos/publicity/langchain.svg`,
|
||||
alt: 'langchain',
|
||||
name: 'langchain',
|
||||
},
|
||||
{
|
||||
image: `${basePath}/images/logos/publicity/resend.svg`,
|
||||
alt: 'resend',
|
||||
name: 'resend',
|
||||
},
|
||||
{
|
||||
image: `${basePath}/images/logos/publicity/loops.svg`,
|
||||
alt: 'loops',
|
||||
name: 'loops',
|
||||
},
|
||||
{
|
||||
image: `${basePath}/images/logos/publicity/mobbin.svg`,
|
||||
alt: 'mobbin',
|
||||
name: 'mobbin',
|
||||
},
|
||||
{
|
||||
image: `${basePath}/images/logos/publicity/gopuff.svg`,
|
||||
alt: 'gopuff',
|
||||
name: 'gopuff',
|
||||
},
|
||||
{
|
||||
image: `${basePath}/images/logos/publicity/chatbase.svg`,
|
||||
alt: 'chatbase',
|
||||
name: 'chatbase',
|
||||
},
|
||||
{
|
||||
image: `${basePath}/images/logos/publicity/betashares.svg`,
|
||||
alt: 'betashares',
|
||||
name: 'betashares',
|
||||
},
|
||||
]
|
||||
const Logos: React.FC = () => {
|
||||
const gap = 'gap-4 lg:gap-8'
|
||||
|
||||
return (
|
||||
<div className="py-12 pb:14 lg:pb-24">
|
||||
<div className="max-w-xl md:max-w-3xl lg:max-w-5xl mx-auto px-5 lg:px-12">
|
||||
<div className="flex flex-wrap justify-center gap-x-5 gap-y-5 lg:gap-x-8 lg:gap-y-7 overflow-hidden">
|
||||
{logos.map((logo) => (
|
||||
<div>
|
||||
<Image
|
||||
src={logo.image}
|
||||
alt={logo.alt}
|
||||
priority
|
||||
width={32}
|
||||
height={32}
|
||||
className={'w-16 lg:w-24 max-h-4 lg:max-h-5'}
|
||||
/>
|
||||
</div>
|
||||
<div className="pb-14 md:pb-24" suppressHydrationWarning>
|
||||
<div className="max-w-xl md:max-w-3xl lg:max-w-5xl mx-auto animadura px-5 lg:px-12">
|
||||
<div
|
||||
className={cn(
|
||||
'relative w-full mx-auto max-w-4xl opacity-90 dark:opacity-70',
|
||||
'overflow-hidden',
|
||||
'flex flex-nowrap justify-center',
|
||||
"before:content[''] before:absolute before:inset-0 before:w-full before:bg-[linear-gradient(to_right,hsl(var(--background-default))_0%,transparent_10%,transparent_90%,hsl(var(--background-default))_100%)] before:z-10",
|
||||
gap
|
||||
)}
|
||||
>
|
||||
{range(0, 4).map((_, i) => (
|
||||
<LogosRow
|
||||
key={`logos-group-${i}`}
|
||||
className={cn(
|
||||
gap,
|
||||
'flex flex-nowrap w-fit',
|
||||
'animate-[marquee_90000ms_linear_both_infinite] will-change-transform',
|
||||
'motion-reduce:animate-none motion-reduce:will-change-none'
|
||||
)}
|
||||
/>
|
||||
))}
|
||||
</div>
|
||||
</div>
|
||||
<p className="w-full text-center text-sm text-foreground-lighter mt-6 lg:mt-8">
|
||||
Trusted by fast-growing companies worldwide
|
||||
</p>
|
||||
</div>
|
||||
)
|
||||
}
|
||||
|
||||
const logos = [
|
||||
{
|
||||
image: `/images/logos/publicity/mozilla.svg`,
|
||||
alt: 'mozilla',
|
||||
name: 'mozilla',
|
||||
},
|
||||
{
|
||||
image: `/images/logos/publicity/1password.svg`,
|
||||
alt: '1password',
|
||||
name: '1password',
|
||||
},
|
||||
{
|
||||
image: `/images/logos/publicity/pwc.svg`,
|
||||
alt: 'pwc',
|
||||
name: 'pwc',
|
||||
},
|
||||
{
|
||||
image: `/images/logos/publicity/pika.svg`,
|
||||
alt: 'pika',
|
||||
name: 'pika',
|
||||
},
|
||||
{
|
||||
image: `/images/logos/publicity/humata.svg`,
|
||||
alt: 'humata',
|
||||
name: 'humata',
|
||||
},
|
||||
{
|
||||
image: `/images/logos/publicity/krea.svg`,
|
||||
alt: 'krea',
|
||||
name: 'krea',
|
||||
},
|
||||
{
|
||||
image: `/images/logos/publicity/udio.svg`,
|
||||
alt: 'udio',
|
||||
name: 'udio',
|
||||
},
|
||||
{
|
||||
image: `/images/logos/publicity/langchain.svg`,
|
||||
alt: 'langchain',
|
||||
name: 'langchain',
|
||||
},
|
||||
{
|
||||
image: `/images/logos/publicity/resend.svg`,
|
||||
alt: 'resend',
|
||||
name: 'resend',
|
||||
},
|
||||
{
|
||||
image: `/images/logos/publicity/loops.svg`,
|
||||
alt: 'loops',
|
||||
name: 'loops',
|
||||
},
|
||||
{
|
||||
image: `/images/logos/publicity/mobbin.svg`,
|
||||
alt: 'mobbin',
|
||||
name: 'mobbin',
|
||||
},
|
||||
{
|
||||
image: `/images/logos/publicity/gopuff.svg`,
|
||||
alt: 'gopuff',
|
||||
name: 'gopuff',
|
||||
},
|
||||
{
|
||||
image: `/images/logos/publicity/chatbase.svg`,
|
||||
alt: 'chatbase',
|
||||
name: 'chatbase',
|
||||
},
|
||||
{
|
||||
image: `/images/logos/publicity/betashares.svg`,
|
||||
alt: 'betashares',
|
||||
name: 'betashares',
|
||||
},
|
||||
]
|
||||
|
||||
const LogosRow: React.FC<{ className?: string }> = ({ className }) => (
|
||||
<div className={cn(className)} suppressHydrationWarning>
|
||||
{logos.map((logo) => (
|
||||
<div key={`logos-group-${logo.name}`} className="h-12 lg:h-12 w-max !inline-block">
|
||||
<img
|
||||
src={logo.image}
|
||||
alt={logo.alt}
|
||||
className={'h-12 lg:h-12 !min-h-12 lg:!min-h-12 w-auto block'}
|
||||
draggable={false}
|
||||
/>
|
||||
</div>
|
||||
))}
|
||||
</div>
|
||||
)
|
||||
|
||||
export default Logos
|
||||
|
||||
@@ -1,4 +1,73 @@
|
||||
export const data = [
|
||||
export type CustomerStoryType = {
|
||||
type: 'Customer Story'
|
||||
title: string
|
||||
description: string
|
||||
organization: string
|
||||
imgUrl: string
|
||||
logo: string
|
||||
logo_inverse?: string
|
||||
url: string
|
||||
ctaText?: string
|
||||
path?: string
|
||||
postMeta?: {
|
||||
name: string
|
||||
avatarUrl: string
|
||||
publishDate: string
|
||||
readLength: number
|
||||
}
|
||||
}
|
||||
|
||||
export const data: CustomerStoryType[] = [
|
||||
{
|
||||
type: 'Customer Story',
|
||||
title:
|
||||
"Maergo's Express Delivery: How Supabase Helped Achieve Scalability, Speed, and Cost Saving",
|
||||
description:
|
||||
'Discover how Maergo, a nationwide expedited parcel delivery service, reduced its codebase by 90%, decreased deployment times to just seconds, and achieved unprecedented scalability with Supabase.',
|
||||
organization: 'Maergo',
|
||||
imgUrl: 'images/customers/logos/maergo.png',
|
||||
logo: '/images/customers/logos/maergo.png',
|
||||
logo_inverse: '/images/customers/logos/light/maergo.png',
|
||||
url: '/customers/maergo',
|
||||
ctaText: 'View story',
|
||||
},
|
||||
{
|
||||
type: 'Customer Story',
|
||||
title: 'Streamlining Success: How Tinloof Scaled Seamlessly with Supabase',
|
||||
description:
|
||||
'Discover Tinloof, how a full-stack development agency, managed and scaled backend services using Supabase, without having to dedicate resources to infrastructure management.',
|
||||
organization: 'Tinloof',
|
||||
imgUrl: 'images/customers/logos/tinloof.png',
|
||||
logo: '/images/customers/logos/tinloof.png',
|
||||
logo_inverse: '/images/customers/logos/light/tinloof.png',
|
||||
url: '/customers/tinloof',
|
||||
ctaText: 'View story',
|
||||
},
|
||||
{
|
||||
type: 'Customer Story',
|
||||
title: 'HappyTeams unlocks better performance and reduces cost with Supabase.',
|
||||
description:
|
||||
'How a bootstrapped startup migrated from Heroku to Supabase in 30 minutes and never looked back.',
|
||||
organization: 'HappyTeams',
|
||||
imgUrl: 'images/customers/logos/happyteams.png',
|
||||
logo: '/images/customers/logos/happyteams.png',
|
||||
logo_inverse: '/images/customers/logos/light/happyteams.png',
|
||||
url: '/customers/happyteams',
|
||||
ctaText: 'View story',
|
||||
},
|
||||
{
|
||||
type: 'Customer Story',
|
||||
title:
|
||||
'How Mobbin migrated 200,000 users from Firebase for a better authentication experience.',
|
||||
description:
|
||||
'Mobbin helps over 200,000 creators globally search and view the latest design patterns from well-known apps.',
|
||||
organization: 'Mobbin',
|
||||
imgUrl: 'images/customers/logos/shotgun.png',
|
||||
logo: '/images/customers/logos/mobbin.png',
|
||||
logo_inverse: '/images/customers/logos/light/mobbin.png',
|
||||
url: '/customers/mobbin',
|
||||
ctaText: 'View story',
|
||||
},
|
||||
{
|
||||
type: 'Customer Story',
|
||||
title: 'Supabase migration drives shotgun to an 83% reduction in data infrastructure costs',
|
||||
|
||||
@@ -1,12 +1,27 @@
|
||||
import { products } from 'shared-data'
|
||||
import { PRODUCT_NAMES, PRODUCT_SHORTNAMES } from 'shared-data/products'
|
||||
|
||||
const solutions = {
|
||||
export type SolutionsType = {
|
||||
[key: string]: {
|
||||
name: string
|
||||
icon: string
|
||||
description: string | JSX.Element
|
||||
description_short: string
|
||||
label: string
|
||||
url: string
|
||||
}
|
||||
}
|
||||
|
||||
const solutions: SolutionsType = {
|
||||
[PRODUCT_SHORTNAMES.DATABASE]: {
|
||||
name: PRODUCT_NAMES.DATABASE,
|
||||
icon: products.database.icon[24],
|
||||
description:
|
||||
"Every project is a full Postgres database, the world's most trusted relational database.",
|
||||
description: (
|
||||
<>
|
||||
Every project is <strong>a full Postgres database</strong>, the world's most trusted
|
||||
relational database.
|
||||
</>
|
||||
),
|
||||
description_short: 'Fully portable Postgres database',
|
||||
label: '',
|
||||
url: '/database',
|
||||
@@ -14,7 +29,11 @@ const solutions = {
|
||||
[PRODUCT_SHORTNAMES.AUTHENTICATION]: {
|
||||
name: PRODUCT_NAMES.AUTHENTICATION,
|
||||
icon: products.authentication.icon[24],
|
||||
description: 'Add user sign ups and logins, securing your data with Row Level Security.',
|
||||
description: (
|
||||
<>
|
||||
<strong>Add user sign ups and logins</strong>, securing your data with Row Level Security.
|
||||
</>
|
||||
),
|
||||
description_short: 'User Management out of the box',
|
||||
label: '',
|
||||
url: '/auth',
|
||||
@@ -22,7 +41,11 @@ const solutions = {
|
||||
[PRODUCT_SHORTNAMES.STORAGE]: {
|
||||
name: PRODUCT_NAMES.STORAGE,
|
||||
icon: products.storage.icon[24],
|
||||
description: 'Store, organize, and serve large files. Any media, including videos and images.',
|
||||
description: (
|
||||
<>
|
||||
<strong>Store, organize, and serve</strong> large files, from videos to images.
|
||||
</>
|
||||
),
|
||||
description_short: 'Serverless storage for any media',
|
||||
label: '',
|
||||
url: '/storage',
|
||||
@@ -30,7 +53,11 @@ const solutions = {
|
||||
[PRODUCT_SHORTNAMES.FUNCTIONS]: {
|
||||
name: PRODUCT_NAMES.FUNCTIONS,
|
||||
icon: products.functions.icon[24],
|
||||
description: 'Write custom code without deploying or scaling servers.',
|
||||
description: (
|
||||
<>
|
||||
Easily write custom code <strong>without deploying or scaling servers.</strong>
|
||||
</>
|
||||
),
|
||||
description_short: 'Deploy code globally on the edge',
|
||||
label: '',
|
||||
url: '/edge-functions',
|
||||
@@ -38,8 +65,11 @@ const solutions = {
|
||||
[PRODUCT_SHORTNAMES.REALTIME]: {
|
||||
name: PRODUCT_NAMES.REALTIME,
|
||||
icon: products.realtime.icon[24],
|
||||
description:
|
||||
'Create multiplayer experiences by sharing, broadcasting, and listening to changes from other clients or the Database.',
|
||||
description: (
|
||||
<>
|
||||
<strong>Build multiplayer experiences</strong> with real-time data synchronization.
|
||||
</>
|
||||
),
|
||||
description_short: 'Synchronize and broadcast events',
|
||||
label: '',
|
||||
url: '/realtime',
|
||||
@@ -47,7 +77,12 @@ const solutions = {
|
||||
[PRODUCT_SHORTNAMES.VECTOR]: {
|
||||
name: PRODUCT_NAMES.VECTOR,
|
||||
icon: products.vector.icon[24],
|
||||
description: 'Integrate your favorite ML-models to store, index and search vector embeddings.',
|
||||
description: (
|
||||
<>
|
||||
Integrate your favorite ML-models to{' '}
|
||||
<strong>store, index and search vector embeddings</strong>.
|
||||
</>
|
||||
),
|
||||
description_short: 'AI toolkit to manage embeddings',
|
||||
label: '',
|
||||
url: '/vector',
|
||||
@@ -1,5 +1,5 @@
|
||||
import solutions from '../Solutions'
|
||||
// import { frameworks } from '../frameworks'
|
||||
import solutions from '~/data/Solutions'
|
||||
import VideoWithHighlights from '~/components/VideoWithHighlights'
|
||||
|
||||
export default {
|
||||
heroSection: {
|
||||
@@ -31,6 +31,132 @@ export default {
|
||||
},
|
||||
},
|
||||
productsSection: {
|
||||
products: { ...solutions },
|
||||
products: {
|
||||
...solutions,
|
||||
'data-api': {
|
||||
name: 'Data APIs',
|
||||
icon: 'M4.13477 12.8129C4.13477 14.1481 4.43245 15.4138 4.96506 16.5471M12.925 4.02271C11.5644 4.02271 10.276 4.33184 9.12614 4.88371M21.7152 12.8129C21.7152 11.4644 21.4115 10.1867 20.8688 9.0447M12.925 21.6032C14.2829 21.6032 15.5689 21.2952 16.717 20.7454M16.717 20.7454C17.2587 21.5257 18.1612 22.0366 19.1831 22.0366C20.84 22.0366 22.1831 20.6935 22.1831 19.0366C22.1831 17.3798 20.84 16.0366 19.1831 16.0366C17.5263 16.0366 16.1831 17.3798 16.1831 19.0366C16.1831 19.6716 16.3804 20.2605 16.717 20.7454ZM4.96506 16.5471C4.16552 17.086 3.63965 17.9999 3.63965 19.0366C3.63965 20.6935 4.98279 22.0366 6.63965 22.0366C8.2965 22.0366 9.63965 20.6935 9.63965 19.0366C9.63965 17.3798 8.2965 16.0366 6.63965 16.0366C6.01951 16.0366 5.44333 16.2248 4.96506 16.5471ZM9.12614 4.88371C8.58687 4.08666 7.67444 3.56274 6.63965 3.56274C4.98279 3.56274 3.63965 4.90589 3.63965 6.56274C3.63965 8.2196 4.98279 9.56274 6.63965 9.56274C8.2965 9.56274 9.63965 8.2196 9.63965 6.56274C9.63965 5.94069 9.45032 5.36285 9.12614 4.88371ZM20.8688 9.0447C21.6621 8.50486 22.1831 7.59464 22.1831 6.56274C22.1831 4.90589 20.84 3.56274 19.1831 3.56274C17.5263 3.56274 16.1831 4.90589 16.1831 6.56274C16.1831 8.2196 17.5263 9.56274 19.1831 9.56274C19.8081 9.56274 20.3884 9.37165 20.8688 9.0447Z',
|
||||
description: (
|
||||
<>
|
||||
Instant ready-to-use <strong>Restful APIs</strong>.
|
||||
</>
|
||||
),
|
||||
description_short: 'Instant ready-to-use Restful APIs.',
|
||||
label: '',
|
||||
url: 'https://supabase.com/docs/guides/api',
|
||||
},
|
||||
},
|
||||
},
|
||||
dashboardFeatures: {
|
||||
title: (
|
||||
<>
|
||||
<span className="text-foreground">Stay productive and manage your app</span>
|
||||
<br className="hidden md:block" />
|
||||
without leaving the dashboard
|
||||
</>
|
||||
),
|
||||
tabs: [
|
||||
{
|
||||
label: 'Table Editor',
|
||||
panel: ({ isDark }: { isDark: boolean }) => (
|
||||
<VideoWithHighlights
|
||||
video={{
|
||||
title: 'Supabase dashboard table editor',
|
||||
sources: [
|
||||
{
|
||||
src: `https://xguihxuzqibwxjnimxev.supabase.co/storage/v1/object/public/videos/marketing/website/supabase-table-editor${isDark ? '' : '-light'}`,
|
||||
type: 'video/mp4',
|
||||
},
|
||||
],
|
||||
poster: `/images/index/dashboard/supabase-table-editor${isDark ? '' : '-light'}.png`,
|
||||
}}
|
||||
/>
|
||||
),
|
||||
highlights: [
|
||||
{
|
||||
label: 'Full CRUD',
|
||||
link: '/docs/guides/database/tables?queryGroups=database-method&database-method=sql&queryGroups=language&language=js',
|
||||
},
|
||||
{
|
||||
label: 'Materialized Views',
|
||||
link: '/docs/guides/database/tables?queryGroups=database-method&database-method=sql&queryGroups=language&language=js#materialized-views',
|
||||
},
|
||||
{
|
||||
label: 'Foreign Tables',
|
||||
link: '/docs/guides/database/tables?queryGroups=database-method&database-method=sql&queryGroups=language&language=js#joining-tables-with-foreign-keys',
|
||||
},
|
||||
{ label: 'Partitioned Tables', link: '/docs/guides/database/partitions' },
|
||||
{ label: 'Easy as a spreadsheet', link: '/docs/guides/database/overview#table-view' },
|
||||
],
|
||||
},
|
||||
{
|
||||
label: 'SQL Editor',
|
||||
panel: ({ isDark }: { isDark: boolean }) => (
|
||||
<VideoWithHighlights
|
||||
video={{
|
||||
title: 'Supabase dashboard SQL editor',
|
||||
sources: [
|
||||
{
|
||||
src: `https://xguihxuzqibwxjnimxev.supabase.co/storage/v1/object/public/videos/marketing/website/supabase-sql-editor${isDark ? '' : '-light'}`,
|
||||
type: 'video/mp4',
|
||||
},
|
||||
],
|
||||
poster: `/images/index/dashboard/supabase-sql-editor${isDark ? '' : '-light'}.png`,
|
||||
}}
|
||||
/>
|
||||
),
|
||||
highlights: [
|
||||
{ label: 'AI SQL Editor', link: '/docs/guides/database/overview#the-sql-editor' },
|
||||
{
|
||||
label: 'Row Level Security',
|
||||
link: '/docs/guides/database/postgres/row-level-security',
|
||||
},
|
||||
{
|
||||
label: 'Save time using Templates',
|
||||
link: '/docs/guides/database/overview#the-sql-editor',
|
||||
},
|
||||
{
|
||||
label: 'Save and reuse Queries',
|
||||
link: '/docs/guides/database/overview#the-sql-editor',
|
||||
},
|
||||
],
|
||||
},
|
||||
{
|
||||
label: 'RLS Policies',
|
||||
panel: ({ isDark }: { isDark: boolean }) => (
|
||||
<VideoWithHighlights
|
||||
video={{
|
||||
title: 'Supabase dashboard Row Level Security',
|
||||
sources: [
|
||||
{
|
||||
src: `https://xguihxuzqibwxjnimxev.supabase.co/storage/v1/object/public/videos/marketing/website/supabase-rls${isDark ? '' : '-light'}`,
|
||||
type: 'video/mp4',
|
||||
},
|
||||
],
|
||||
poster: `/images/index/dashboard/supabase-rls${isDark ? '' : '-light'}.png`,
|
||||
}}
|
||||
/>
|
||||
),
|
||||
highlights: [
|
||||
{ label: 'Email Logins', link: '/docs/guides/auth/auth-email-passwordless' },
|
||||
{
|
||||
label: 'Magic Links',
|
||||
link: '/docs/guides/auth/auth-email-passwordless?queryGroups=language&language=js#with-magic-link',
|
||||
},
|
||||
{
|
||||
label: '20+ Third-party Logins',
|
||||
link: '/docs/guides/auth/social-login#set-up-a-social-provider-with-supabase-auth',
|
||||
},
|
||||
{
|
||||
label: 'Custom Access Policies via RLS',
|
||||
link: '/docs/guides/database/postgres/row-level-security',
|
||||
},
|
||||
{
|
||||
label: 'Password Recovery',
|
||||
link: '/docs/guides/auth/passwords?queryGroups=language&language=js#resetting-a-password',
|
||||
},
|
||||
],
|
||||
},
|
||||
],
|
||||
},
|
||||
}
|
||||
|
||||
@@ -41,12 +41,6 @@
|
||||
"handle": "KenTheRogers",
|
||||
"img_url": "/images/twitter-profiles/9l9Td-Fz_400x400.jpg"
|
||||
},
|
||||
{
|
||||
"text": "Over the course of a few weeks, we migrated 125.000 users (email/pw, Gmail, Facebook, Apple logins) from Auth0 to @supabase and have now completed the migration. I'm just glad the migration is done 😅 Went well, besides a few edge cases (duplicate emails/linked accounts)",
|
||||
"url": "https://twitter.com/kevcodez/status/1518548401587204096",
|
||||
"handle": "kevcodez",
|
||||
"img_url": "/images/twitter-profiles/t6lpcRcn_400x400.jpg"
|
||||
},
|
||||
{
|
||||
"text": "Using @supabase I'm really pleased on the power of postgres (and sql in general). Despite being a bit dubious about the whole backend as a service thing I have to say I really don't miss anything. The whole experience feel very robust and secure.",
|
||||
"url": "https://twitter.com/paoloricciuti/status/1497691838597066752",
|
||||
|
||||
@@ -2,6 +2,8 @@ export const DEFAULT_EASE = [0.24, 0.25, 0.05, 1]
|
||||
export const DEFAULT_DURATION = 0.4
|
||||
export const DEFAULT_DELAY = 0
|
||||
export const DEFAULT_TRANSITION = { ease: DEFAULT_EASE, duration: DEFAULT_DURATION }
|
||||
export const EASE_IN = [1, 0.05, 0, 0]
|
||||
export const EASE_OUT = [0, 0, 0.05, 1]
|
||||
|
||||
interface AnimationProps {
|
||||
delay?: number
|
||||
|
||||
@@ -8,8 +8,7 @@ export function useForceDeepDark() {
|
||||
const { resolvedTheme, theme } = useTheme()
|
||||
|
||||
const isDarkTheme = resolvedTheme?.includes('dark')
|
||||
const forceDarkMode = router.pathname === '/' || useDarkLaunchWeeks()
|
||||
const isGaSection = router.pathname.includes('/ga-week') || router.pathname === '/ga'
|
||||
const forceDarkMode = useDarkLaunchWeeks()
|
||||
|
||||
useEffect(() => {
|
||||
const handleDocumentLoad = () => {
|
||||
|
||||
@@ -69,10 +69,10 @@ export default function App({ Component, pageProps }: AppProps) {
|
||||
}, [router.isReady, consentValue])
|
||||
|
||||
const site_title = `${APP_NAME} | The Open Source Firebase Alternative`
|
||||
const { basePath, pathname } = useRouter()
|
||||
const { basePath } = useRouter()
|
||||
|
||||
const isDarkLaunchWeek = useDarkLaunchWeeks()
|
||||
const forceDarkMode = pathname === '/' || isDarkLaunchWeek
|
||||
const forceDarkMode = isDarkLaunchWeek
|
||||
|
||||
let applicationName = 'Supabase'
|
||||
let faviconRoute = DEFAULT_FAVICON_ROUTE
|
||||
|
||||
@@ -2,14 +2,13 @@ import dynamic from 'next/dynamic'
|
||||
import content from '~/data/home/content'
|
||||
import Layout from '~/components/Layouts/Default'
|
||||
import Hero from '~/components/Hero/Hero'
|
||||
import HeroFrameworks from '~/components/Hero/HeroFrameworks'
|
||||
import Logos from '~/components/logos'
|
||||
|
||||
const Products = dynamic(() => import('~/components/Products/index'))
|
||||
const Logos = dynamic(() => import('~/components/logos'))
|
||||
const BuiltExamples = dynamic(() => import('components/BuiltWithSupabase/index'))
|
||||
const MadeForDevelopers = dynamic(() => import('components/MadeForDevelopers/index'))
|
||||
const AdminAccess = dynamic(() => import('components/AdminAccess/index'))
|
||||
const HeroFrameworks = dynamic(() => import('~/components/Hero/HeroFrameworks'))
|
||||
const CustomerStories = dynamic(() => import('components/CustomerStories'))
|
||||
const BuiltWithSupabase = dynamic(() => import('components/BuiltWithSupabase'))
|
||||
const DashboardFeatures = dynamic(() => import('~/components/DashboardFeatures'))
|
||||
const TwitterSocialSection = dynamic(() => import('~/components/TwitterSocialSection'))
|
||||
const CTABanner = dynamic(() => import('components/CTABanner/index'))
|
||||
const ReactTooltip = dynamic(() => import('react-tooltip'), { ssr: false })
|
||||
@@ -20,13 +19,12 @@ const Index = () => {
|
||||
<Hero />
|
||||
<Logos />
|
||||
<Products {...content.productsSection} />
|
||||
<HeroFrameworks className="mt-4 lg:mt-6" />
|
||||
<TwitterSocialSection />
|
||||
<BuiltExamples />
|
||||
<MadeForDevelopers />
|
||||
<AdminAccess />
|
||||
<HeroFrameworks />
|
||||
<CustomerStories />
|
||||
<CTABanner />
|
||||
<BuiltWithSupabase />
|
||||
<DashboardFeatures {...content.dashboardFeatures} />
|
||||
<TwitterSocialSection />
|
||||
<CTABanner className="border-none" />
|
||||
<ReactTooltip
|
||||
effect="solid"
|
||||
place="bottom"
|
||||
|
||||
@@ -14,13 +14,6 @@
|
||||
<description>Discover how Maergo, a nationwide expedited parcel delivery service, reduced its codebase by 90%, decreased deployment times to just seconds, and achieved unprecedented scalability with Supabase.</description>
|
||||
<pubDate>Tue, 11 Jun 2024 22:00:00 GMT</pubDate>
|
||||
</item>
|
||||
<item>
|
||||
<guid>https://supabase.com/customers/voypost</guid>
|
||||
<title>Voypost uses Supabase’s strong relational model to overcome NoSQL challenges</title>
|
||||
<link>https://supabase.com/customers/voypost</link>
|
||||
<description>Learn how Voypost leveraged Supabase to avoid NoSQL workarounds, enhance scalability, and deliver a superior user experience for Inkly, an intelligent contract negotiation platform.</description>
|
||||
<pubDate>Mon, 03 Jun 2024 22:00:00 GMT</pubDate>
|
||||
</item>
|
||||
<item>
|
||||
<guid>https://supabase.com/customers/tinloof</guid>
|
||||
<title>Streamlining Success: How Tinloof Scaled Seamlessly with Supabase</title>
|
||||
@@ -28,6 +21,13 @@
|
||||
<description>Discover Tinloof, how a full-stack development agency, managed and scaled backend services using Supabase, without having to dedicate resources to infrastructure management.</description>
|
||||
<pubDate>Mon, 03 Jun 2024 22:00:00 GMT</pubDate>
|
||||
</item>
|
||||
<item>
|
||||
<guid>https://supabase.com/customers/voypost</guid>
|
||||
<title>Voypost uses Supabase’s strong relational model to overcome NoSQL challenges</title>
|
||||
<link>https://supabase.com/customers/voypost</link>
|
||||
<description>Learn how Voypost leveraged Supabase to avoid NoSQL workarounds, enhance scalability, and deliver a superior user experience for Inkly, an intelligent contract negotiation platform.</description>
|
||||
<pubDate>Mon, 03 Jun 2024 22:00:00 GMT</pubDate>
|
||||
</item>
|
||||
<item>
|
||||
<guid>https://supabase.com/customers/shotgun</guid>
|
||||
<title>Supabase migration delivers an 83% reduction in data infrastructure costs for Shotgun</title>
|
||||
@@ -99,17 +99,10 @@
|
||||
<pubDate>Wed, 15 Feb 2023 23:00:00 GMT</pubDate>
|
||||
</item>
|
||||
<item>
|
||||
<guid>https://supabase.com/customers/xendit</guid>
|
||||
<title>Xendit use Supabase and create a full solution shipped to production in less than one week.</title>
|
||||
<link>https://supabase.com/customers/xendit</link>
|
||||
<description>As a payment processor, Xendit are responsible for verifying that all transactions are legal.</description>
|
||||
<pubDate>Mon, 13 Feb 2023 23:00:00 GMT</pubDate>
|
||||
</item>
|
||||
<item>
|
||||
<guid>https://supabase.com/customers/replenysh</guid>
|
||||
<title>Replenysh uses Supabase to implement OTP in less than 24 hours.</title>
|
||||
<link>https://supabase.com/customers/replenysh</link>
|
||||
<description>With Supabase, Replenysh gets a slick auth experience, reduces DevOps overhead, and continues to scale with Postgres.</description>
|
||||
<guid>https://supabase.com/customers/epsilon3</guid>
|
||||
<title>Epsilon3 digitize paper-based procedures in the space industry using telemetry data, simplifying testing and operations.</title>
|
||||
<link>https://supabase.com/customers/epsilon3</link>
|
||||
<description>Epsilon3 uses Supabase to help teams execute secure and reliable operations in an industry where project spend runs into the billions.</description>
|
||||
<pubDate>Mon, 13 Feb 2023 23:00:00 GMT</pubDate>
|
||||
</item>
|
||||
<item>
|
||||
@@ -120,10 +113,17 @@
|
||||
<pubDate>Mon, 13 Feb 2023 23:00:00 GMT</pubDate>
|
||||
</item>
|
||||
<item>
|
||||
<guid>https://supabase.com/customers/epsilon3</guid>
|
||||
<title>Epsilon3 digitize paper-based procedures in the space industry using telemetry data, simplifying testing and operations.</title>
|
||||
<link>https://supabase.com/customers/epsilon3</link>
|
||||
<description>Epsilon3 uses Supabase to help teams execute secure and reliable operations in an industry where project spend runs into the billions.</description>
|
||||
<guid>https://supabase.com/customers/replenysh</guid>
|
||||
<title>Replenysh uses Supabase to implement OTP in less than 24 hours.</title>
|
||||
<link>https://supabase.com/customers/replenysh</link>
|
||||
<description>With Supabase, Replenysh gets a slick auth experience, reduces DevOps overhead, and continues to scale with Postgres.</description>
|
||||
<pubDate>Mon, 13 Feb 2023 23:00:00 GMT</pubDate>
|
||||
</item>
|
||||
<item>
|
||||
<guid>https://supabase.com/customers/xendit</guid>
|
||||
<title>Xendit use Supabase and create a full solution shipped to production in less than one week.</title>
|
||||
<link>https://supabase.com/customers/xendit</link>
|
||||
<description>As a payment processor, Xendit are responsible for verifying that all transactions are legal.</description>
|
||||
<pubDate>Mon, 13 Feb 2023 23:00:00 GMT</pubDate>
|
||||
</item>
|
||||
|
||||
|
||||
BIN
apps/www/public/images/customers/logos/1password.png
Normal file
|
After Width: | Height: | Size: 7.8 KiB |
|
Before Width: | Height: | Size: 7.4 KiB After Width: | Height: | Size: 7.6 KiB |
|
Before Width: | Height: | Size: 4.5 KiB After Width: | Height: | Size: 5.0 KiB |
BIN
apps/www/public/images/customers/logos/light/1password.png
Normal file
|
After Width: | Height: | Size: 8.4 KiB |
|
Before Width: | Height: | Size: 8.1 KiB After Width: | Height: | Size: 8.4 KiB |
|
Before Width: | Height: | Size: 4.7 KiB After Width: | Height: | Size: 5.5 KiB |
|
Before Width: | Height: | Size: 6.6 KiB After Width: | Height: | Size: 7.3 KiB |
|
Before Width: | Height: | Size: 6.2 KiB After Width: | Height: | Size: 7.3 KiB |
BIN
apps/www/public/images/index/dashboard/supabase-rls-light.png
Normal file
|
After Width: | Height: | Size: 65 KiB |
BIN
apps/www/public/images/index/dashboard/supabase-rls.png
Normal file
|
After Width: | Height: | Size: 49 KiB |
|
After Width: | Height: | Size: 157 KiB |
BIN
apps/www/public/images/index/dashboard/supabase-sql-editor.png
Normal file
|
After Width: | Height: | Size: 134 KiB |
|
After Width: | Height: | Size: 131 KiB |
BIN
apps/www/public/images/index/dashboard/supabase-table-editor.png
Normal file
|
After Width: | Height: | Size: 127 KiB |
33
apps/www/public/images/index/products/auth-active-light.svg
Normal file
|
After Width: | Height: | Size: 68 KiB |
|
Before Width: | Height: | Size: 73 KiB After Width: | Height: | Size: 68 KiB |
47
apps/www/public/images/index/products/auth-light.svg
Normal file
|
After Width: | Height: | Size: 69 KiB |
|
Before Width: | Height: | Size: 104 KiB After Width: | Height: | Size: 69 KiB |
50
apps/www/public/images/index/products/data-apis-dark.svg
Normal file
@@ -0,0 +1,50 @@
|
||||
<svg width="330" height="430" viewBox="0 0 330 430" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<rect x="23.5" y="377.5" width="82" height="31" rx="5.5" fill="#1C1C1C"/>
|
||||
<rect x="23.5" y="377.5" width="82" height="31" rx="5.5" stroke="#343434"/>
|
||||
<path d="M37 387H34.3333C33.9797 387 33.6406 387.14 33.3905 387.391C33.1405 387.641 33 387.98 33 388.333V391M37 387H43.6667C44.0203 387 44.3594 387.14 44.6095 387.391C44.8595 387.641 45 387.98 45 388.333V391M37 387V399M33 391V397.667C33 398.02 33.1405 398.359 33.3905 398.609C33.6406 398.86 33.9797 399 34.3333 399H37M33 391H45M45 391V397.667C45 398.02 44.8595 398.359 44.6095 398.609C44.3594 398.86 44.0203 399 43.6667 399H37" stroke="#707070" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path d="M58.432 396.672C59.392 396.672 60.232 395.952 60.232 394.608C60.232 393.276 59.392 392.556 58.432 392.556C57.472 392.556 56.632 393.276 56.632 394.608C56.632 395.952 57.472 396.672 58.432 396.672ZM58.432 391.548C60.16 391.548 61.384 392.856 61.384 394.608C61.384 396.372 60.16 397.68 58.432 397.68C56.704 397.68 55.48 396.372 55.48 394.608C55.48 392.856 56.704 391.548 58.432 391.548ZM65.2512 392.592C64.3392 392.592 63.4992 393.264 63.4992 394.608C63.4992 395.928 64.3272 396.636 65.2632 396.636C66.3432 396.636 66.7392 395.904 66.8712 395.448L67.8672 395.88C67.5912 396.708 66.7632 397.68 65.2632 397.68C63.5832 397.68 62.3472 396.36 62.3472 394.608C62.3472 392.808 63.6072 391.548 65.2512 391.548C66.7872 391.548 67.5792 392.508 67.8192 393.384L66.7992 393.816C66.6552 393.252 66.2352 392.592 65.2512 392.592ZM69.8639 394.02H73.0199C72.9959 393.192 72.4559 392.544 71.4359 392.544C70.4879 392.544 69.9119 393.276 69.8639 394.02ZM73.1879 395.52L74.1599 395.856C73.8359 396.876 72.9119 397.68 71.5679 397.68C70.0199 397.68 68.6639 396.552 68.6639 394.596C68.6639 392.784 69.9719 391.548 71.4239 391.548C73.1999 391.548 74.1959 392.772 74.1959 394.572C74.1959 394.716 74.1839 394.86 74.1719 394.932H69.8279C69.8519 395.964 70.5959 396.684 71.5679 396.684C72.5039 396.684 72.9719 396.168 73.1879 395.52ZM75.2758 395.952C75.2758 394.92 76.0318 394.344 77.0278 394.2L78.5878 393.972C78.9358 393.924 79.0318 393.744 79.0318 393.54C79.0318 392.976 78.6598 392.508 77.7838 392.508C76.9918 392.508 76.5478 393 76.4758 393.672L75.3958 393.42C75.5158 392.316 76.5118 391.548 77.7598 391.548C79.4878 391.548 80.1598 392.532 80.1598 393.66V396.552C80.1598 397.056 80.2078 397.356 80.2318 397.5H79.1278C79.1038 397.356 79.0678 397.14 79.0678 396.72C78.8158 397.128 78.2398 397.68 77.2078 397.68C76.0318 397.68 75.2758 396.864 75.2758 395.952ZM77.3638 396.732C78.2878 396.732 79.0318 396.288 79.0318 395.028V394.764L77.2678 395.028C76.7878 395.1 76.4278 395.376 76.4278 395.892C76.4278 396.324 76.7878 396.732 77.3638 396.732ZM83.045 394.164V397.5H81.917V391.728H83.021V392.556C83.441 391.836 84.125 391.56 84.797 391.56C86.177 391.56 86.861 392.556 86.861 393.84V397.5H85.733V394.032C85.733 393.228 85.397 392.58 84.389 392.58C83.501 392.58 83.045 393.288 83.045 394.164ZM88.1153 396L89.1353 395.64C89.2073 396.24 89.6633 396.72 90.4793 396.72C91.1153 396.72 91.4633 396.36 91.4633 395.952C91.4633 395.592 91.1993 395.316 90.7193 395.208L89.7353 394.992C88.8353 394.8 88.2953 394.188 88.2953 393.372C88.2953 392.388 89.2193 391.548 90.3473 391.548C91.9313 391.548 92.4233 392.58 92.5433 393.096L91.5473 393.468C91.4993 393.168 91.2593 392.508 90.3473 392.508C89.7713 392.508 89.3873 392.88 89.3873 393.276C89.3873 393.624 89.6033 393.876 90.0473 393.972L90.9833 394.176C92.0273 394.404 92.5793 395.04 92.5793 395.892C92.5793 396.708 91.8953 397.68 90.4673 397.68C88.8833 397.68 88.2113 396.66 88.1153 396Z" fill="#7E7E7E"/>
|
||||
<rect x="128.5" y="377.5" width="101" height="31" rx="15.5" fill="#282828"/>
|
||||
<rect x="128.5" y="377.5" width="101" height="31" rx="15.5" stroke="#3E3E3E"/>
|
||||
<path d="M144.84 396.732C144.84 396.264 145.2 395.892 145.668 395.892C146.136 395.892 146.508 396.264 146.508 396.732C146.508 397.2 146.136 397.56 145.668 397.56C145.2 397.56 144.84 397.2 144.84 396.732ZM148.192 396.732C148.192 396.264 148.552 395.892 149.02 395.892C149.488 395.892 149.86 396.264 149.86 396.732C149.86 397.2 149.488 397.56 149.02 397.56C148.552 397.56 148.192 397.2 148.192 396.732ZM151.543 396.732C151.543 396.264 151.903 395.892 152.371 395.892C152.839 395.892 153.211 396.264 153.211 396.732C153.211 397.2 152.839 397.56 152.371 397.56C151.903 397.56 151.543 397.2 151.543 396.732ZM159.263 388.992L155.147 397.5H154.055L158.171 388.992H159.263ZM165.045 391.728L162.741 397.5H161.601L159.261 391.728H160.533L162.177 396.18L163.833 391.728H165.045ZM168.5 397.5H167.348V392.016H165.464V391.188C166.544 391.164 167.288 390.564 167.468 389.724H168.5V397.5ZM174.603 388.992L170.487 397.5H169.395L173.511 388.992H174.603Z" fill="#7E7E7E"/>
|
||||
<path d="M178.432 396.672C179.392 396.672 180.232 395.952 180.232 394.608C180.232 393.276 179.392 392.556 178.432 392.556C177.472 392.556 176.632 393.276 176.632 394.608C176.632 395.952 177.472 396.672 178.432 396.672ZM178.432 391.548C180.16 391.548 181.384 392.856 181.384 394.608C181.384 396.372 180.16 397.68 178.432 397.68C176.704 397.68 175.48 396.372 175.48 394.608C175.48 392.856 176.704 391.548 178.432 391.548ZM185.251 392.592C184.339 392.592 183.499 393.264 183.499 394.608C183.499 395.928 184.327 396.636 185.263 396.636C186.343 396.636 186.739 395.904 186.871 395.448L187.867 395.88C187.591 396.708 186.763 397.68 185.263 397.68C183.583 397.68 182.347 396.36 182.347 394.608C182.347 392.808 183.607 391.548 185.251 391.548C186.787 391.548 187.579 392.508 187.819 393.384L186.799 393.816C186.655 393.252 186.235 392.592 185.251 392.592ZM189.864 394.02H193.02C192.996 393.192 192.456 392.544 191.436 392.544C190.488 392.544 189.912 393.276 189.864 394.02ZM193.188 395.52L194.16 395.856C193.836 396.876 192.912 397.68 191.568 397.68C190.02 397.68 188.664 396.552 188.664 394.596C188.664 392.784 189.972 391.548 191.424 391.548C193.2 391.548 194.196 392.772 194.196 394.572C194.196 394.716 194.184 394.86 194.172 394.932H189.828C189.852 395.964 190.596 396.684 191.568 396.684C192.504 396.684 192.972 396.168 193.188 395.52ZM195.276 395.952C195.276 394.92 196.032 394.344 197.028 394.2L198.588 393.972C198.936 393.924 199.032 393.744 199.032 393.54C199.032 392.976 198.66 392.508 197.784 392.508C196.992 392.508 196.548 393 196.476 393.672L195.396 393.42C195.516 392.316 196.512 391.548 197.76 391.548C199.488 391.548 200.16 392.532 200.16 393.66V396.552C200.16 397.056 200.208 397.356 200.232 397.5H199.128C199.104 397.356 199.068 397.14 199.068 396.72C198.816 397.128 198.24 397.68 197.208 397.68C196.032 397.68 195.276 396.864 195.276 395.952ZM197.364 396.732C198.288 396.732 199.032 396.288 199.032 395.028V394.764L197.268 395.028C196.788 395.1 196.428 395.376 196.428 395.892C196.428 396.324 196.788 396.732 197.364 396.732ZM203.045 394.164V397.5H201.917V391.728H203.021V392.556C203.441 391.836 204.125 391.56 204.797 391.56C206.177 391.56 206.861 392.556 206.861 393.84V397.5H205.733V394.032C205.733 393.228 205.397 392.58 204.389 392.58C203.501 392.58 203.045 393.288 203.045 394.164ZM208.115 396L209.135 395.64C209.207 396.24 209.663 396.72 210.479 396.72C211.115 396.72 211.463 396.36 211.463 395.952C211.463 395.592 211.199 395.316 210.719 395.208L209.735 394.992C208.835 394.8 208.295 394.188 208.295 393.372C208.295 392.388 209.219 391.548 210.347 391.548C211.931 391.548 212.423 392.58 212.543 393.096L211.547 393.468C211.499 393.168 211.259 392.508 210.347 392.508C209.771 392.508 209.387 392.88 209.387 393.276C209.387 393.624 209.603 393.876 210.047 393.972L210.983 394.176C212.027 394.404 212.579 395.04 212.579 395.892C212.579 396.708 211.895 397.68 210.467 397.68C208.883 397.68 208.211 396.66 208.115 396Z" fill="#EDEDED"/>
|
||||
<rect x="23.5" y="334.5" width="123" height="31" rx="5.5" fill="#1C1C1C"/>
|
||||
<rect x="23.5" y="334.5" width="123" height="31" rx="5.5" stroke="#343434"/>
|
||||
<path d="M37 344H34.3333C33.9797 344 33.6406 344.14 33.3905 344.391C33.1405 344.641 33 344.98 33 345.333V348M37 344H43.6667C44.0203 344 44.3594 344.14 44.6095 344.391C44.8595 344.641 45 344.98 45 345.333V348M37 344V356M33 348V354.667C33 355.02 33.1405 355.359 33.3905 355.609C33.6406 355.86 33.9797 356 34.3333 356H37M33 348H45M45 348V354.667C45 355.02 44.8595 355.359 44.6095 355.609C44.3594 355.86 44.0203 356 43.6667 356H37" stroke="#707070" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path d="M58.384 349.592C57.472 349.592 56.632 350.264 56.632 351.608C56.632 352.928 57.46 353.636 58.396 353.636C59.476 353.636 59.872 352.904 60.004 352.448L61 352.88C60.724 353.708 59.896 354.68 58.396 354.68C56.716 354.68 55.48 353.36 55.48 351.608C55.48 349.808 56.74 348.548 58.384 348.548C59.92 348.548 60.712 349.508 60.952 350.384L59.932 350.816C59.788 350.252 59.368 349.592 58.384 349.592ZM64.7367 353.672C65.6967 353.672 66.5367 352.952 66.5367 351.608C66.5367 350.276 65.6967 349.556 64.7367 349.556C63.7767 349.556 62.9367 350.276 62.9367 351.608C62.9367 352.952 63.7767 353.672 64.7367 353.672ZM64.7367 348.548C66.4647 348.548 67.6887 349.856 67.6887 351.608C67.6887 353.372 66.4647 354.68 64.7367 354.68C63.0087 354.68 61.7847 353.372 61.7847 351.608C61.7847 349.856 63.0087 348.548 64.7367 348.548ZM72.8773 353.804C72.5653 354.404 71.8453 354.68 71.1733 354.68C69.8293 354.68 69.0133 353.672 69.0133 352.364V348.728H70.1413V352.196C70.1413 352.988 70.5013 353.684 71.4493 353.684C72.3613 353.684 72.8173 353.084 72.8173 352.208V348.728H73.9453V353.432C73.9453 353.888 73.9813 354.296 74.0053 354.5H72.9253C72.9013 354.368 72.8773 354.044 72.8773 353.804ZM76.9982 351.164V354.5H75.8702V348.728H76.9742V349.556C77.3942 348.836 78.0782 348.56 78.7502 348.56C80.1302 348.56 80.8142 349.556 80.8142 350.84V354.5H79.6862V351.032C79.6862 350.228 79.3502 349.58 78.3422 349.58C77.4542 349.58 76.9982 350.288 76.9982 351.164ZM84.1204 346.904V348.728H85.3684V349.748H84.1204V352.748C84.1204 353.276 84.3364 353.54 84.9244 353.54C85.0684 353.54 85.2724 353.516 85.3684 353.492V354.452C85.2724 354.488 84.9844 354.56 84.6004 354.56C83.6164 354.56 82.9924 353.96 82.9924 352.916V349.748H81.8884V348.728H82.2004C82.8244 348.728 83.0884 348.344 83.0884 347.84V346.904H84.1204ZM89.9609 348.668V349.868C89.7929 349.844 89.6249 349.832 89.4689 349.832C88.5209 349.832 87.8849 350.336 87.8849 351.608V354.5H86.7569V348.728H87.8609V349.736C88.2809 348.848 89.0009 348.632 89.5889 348.632C89.7449 348.632 89.9009 348.656 89.9609 348.668ZM92.7789 356.912H91.5429L92.9829 353.864L90.4989 348.728H91.7949L93.5949 352.712L95.3229 348.728H96.5349L92.7789 356.912ZM102.387 355.448H96.2425V354.5H102.387V355.448ZM105.716 349.592C104.804 349.592 103.964 350.264 103.964 351.608C103.964 352.928 104.792 353.636 105.728 353.636C106.808 353.636 107.204 352.904 107.336 352.448L108.332 352.88C108.056 353.708 107.228 354.68 105.728 354.68C104.048 354.68 102.812 353.36 102.812 351.608C102.812 349.808 104.072 348.548 105.716 348.548C107.252 348.548 108.044 349.508 108.284 350.384L107.264 350.816C107.12 350.252 106.7 349.592 105.716 349.592ZM112.069 353.672C113.029 353.672 113.869 352.952 113.869 351.608C113.869 350.276 113.029 349.556 112.069 349.556C111.109 349.556 110.269 350.276 110.269 351.608C110.269 352.952 111.109 353.672 112.069 353.672ZM112.069 348.548C113.797 348.548 115.021 349.856 115.021 351.608C115.021 353.372 113.797 354.68 112.069 354.68C110.341 354.68 109.117 353.372 109.117 351.608C109.117 349.856 110.341 348.548 112.069 348.548ZM117.136 351.596C117.136 352.784 117.748 353.66 118.828 353.66C119.86 353.66 120.496 352.76 120.496 351.572C120.496 350.384 119.872 349.568 118.84 349.568C117.808 349.568 117.136 350.408 117.136 351.596ZM120.508 353.72V353.624C120.232 354.176 119.62 354.656 118.72 354.656C117.028 354.656 115.984 353.312 115.984 351.596C115.984 349.964 117.088 348.572 118.72 348.572C119.74 348.572 120.292 349.076 120.484 349.544V345.812H121.6V353.432C121.6 353.984 121.648 354.404 121.66 354.5H120.568C120.544 354.368 120.508 354.068 120.508 353.72ZM124.251 351.02H127.407C127.383 350.192 126.843 349.544 125.823 349.544C124.875 349.544 124.299 350.276 124.251 351.02ZM127.575 352.52L128.547 352.856C128.223 353.876 127.299 354.68 125.955 354.68C124.407 354.68 123.051 353.552 123.051 351.596C123.051 349.784 124.359 348.548 125.811 348.548C127.587 348.548 128.583 349.772 128.583 351.572C128.583 351.716 128.571 351.86 128.559 351.932H124.215C124.239 352.964 124.983 353.684 125.955 353.684C126.891 353.684 127.359 353.168 127.575 352.52ZM129.483 353L130.503 352.64C130.575 353.24 131.031 353.72 131.847 353.72C132.483 353.72 132.831 353.36 132.831 352.952C132.831 352.592 132.567 352.316 132.087 352.208L131.103 351.992C130.203 351.8 129.663 351.188 129.663 350.372C129.663 349.388 130.587 348.548 131.715 348.548C133.299 348.548 133.791 349.58 133.911 350.096L132.915 350.468C132.867 350.168 132.627 349.508 131.715 349.508C131.139 349.508 130.755 349.88 130.755 350.276C130.755 350.624 130.971 350.876 131.415 350.972L132.351 351.176C133.395 351.404 133.947 352.04 133.947 352.892C133.947 353.708 133.263 354.68 131.835 354.68C130.251 354.68 129.579 353.66 129.483 353Z" fill="#7E7E7E"/>
|
||||
<rect x="169.5" y="334.5" width="142" height="31" rx="15.5" fill="#282828"/>
|
||||
<rect x="169.5" y="334.5" width="142" height="31" rx="15.5" stroke="#3E3E3E"/>
|
||||
<path d="M185.84 353.732C185.84 353.264 186.2 352.892 186.668 352.892C187.136 352.892 187.508 353.264 187.508 353.732C187.508 354.2 187.136 354.56 186.668 354.56C186.2 354.56 185.84 354.2 185.84 353.732ZM189.192 353.732C189.192 353.264 189.552 352.892 190.02 352.892C190.488 352.892 190.86 353.264 190.86 353.732C190.86 354.2 190.488 354.56 190.02 354.56C189.552 354.56 189.192 354.2 189.192 353.732ZM192.543 353.732C192.543 353.264 192.903 352.892 193.371 352.892C193.839 352.892 194.211 353.264 194.211 353.732C194.211 354.2 193.839 354.56 193.371 354.56C192.903 354.56 192.543 354.2 192.543 353.732ZM200.263 345.992L196.147 354.5H195.055L199.171 345.992H200.263ZM206.045 348.728L203.741 354.5H202.601L200.261 348.728H201.533L203.177 353.18L204.833 348.728H206.045ZM209.5 354.5H208.348V349.016H206.464V348.188C207.544 348.164 208.288 347.564 208.468 346.724H209.5V354.5ZM215.603 345.992L211.487 354.5H210.395L214.511 345.992H215.603Z" fill="#7E7E7E"/>
|
||||
<path d="M219.384 349.592C218.472 349.592 217.632 350.264 217.632 351.608C217.632 352.928 218.46 353.636 219.396 353.636C220.476 353.636 220.872 352.904 221.004 352.448L222 352.88C221.724 353.708 220.896 354.68 219.396 354.68C217.716 354.68 216.48 353.36 216.48 351.608C216.48 349.808 217.74 348.548 219.384 348.548C220.92 348.548 221.712 349.508 221.952 350.384L220.932 350.816C220.788 350.252 220.368 349.592 219.384 349.592ZM225.737 353.672C226.697 353.672 227.537 352.952 227.537 351.608C227.537 350.276 226.697 349.556 225.737 349.556C224.777 349.556 223.937 350.276 223.937 351.608C223.937 352.952 224.777 353.672 225.737 353.672ZM225.737 348.548C227.465 348.548 228.689 349.856 228.689 351.608C228.689 353.372 227.465 354.68 225.737 354.68C224.009 354.68 222.785 353.372 222.785 351.608C222.785 349.856 224.009 348.548 225.737 348.548ZM233.877 353.804C233.565 354.404 232.845 354.68 232.173 354.68C230.829 354.68 230.013 353.672 230.013 352.364V348.728H231.141V352.196C231.141 352.988 231.501 353.684 232.449 353.684C233.361 353.684 233.817 353.084 233.817 352.208V348.728H234.945V353.432C234.945 353.888 234.981 354.296 235.005 354.5H233.925C233.901 354.368 233.877 354.044 233.877 353.804ZM237.998 351.164V354.5H236.87V348.728H237.974V349.556C238.394 348.836 239.078 348.56 239.75 348.56C241.13 348.56 241.814 349.556 241.814 350.84V354.5H240.686V351.032C240.686 350.228 240.35 349.58 239.342 349.58C238.454 349.58 237.998 350.288 237.998 351.164ZM245.12 346.904V348.728H246.368V349.748H245.12V352.748C245.12 353.276 245.336 353.54 245.924 353.54C246.068 353.54 246.272 353.516 246.368 353.492V354.452C246.272 354.488 245.984 354.56 245.6 354.56C244.616 354.56 243.992 353.96 243.992 352.916V349.748H242.888V348.728H243.2C243.824 348.728 244.088 348.344 244.088 347.84V346.904H245.12ZM250.961 348.668V349.868C250.793 349.844 250.625 349.832 250.469 349.832C249.521 349.832 248.885 350.336 248.885 351.608V354.5H247.757V348.728H248.861V349.736C249.281 348.848 250.001 348.632 250.589 348.632C250.745 348.632 250.901 348.656 250.961 348.668ZM253.779 356.912H252.543L253.983 353.864L251.499 348.728H252.795L254.595 352.712L256.323 348.728H257.535L253.779 356.912ZM263.387 355.448H257.243V354.5H263.387V355.448ZM266.716 349.592C265.804 349.592 264.964 350.264 264.964 351.608C264.964 352.928 265.792 353.636 266.728 353.636C267.808 353.636 268.204 352.904 268.336 352.448L269.332 352.88C269.056 353.708 268.228 354.68 266.728 354.68C265.048 354.68 263.812 353.36 263.812 351.608C263.812 349.808 265.072 348.548 266.716 348.548C268.252 348.548 269.044 349.508 269.284 350.384L268.264 350.816C268.12 350.252 267.7 349.592 266.716 349.592ZM273.069 353.672C274.029 353.672 274.869 352.952 274.869 351.608C274.869 350.276 274.029 349.556 273.069 349.556C272.109 349.556 271.269 350.276 271.269 351.608C271.269 352.952 272.109 353.672 273.069 353.672ZM273.069 348.548C274.797 348.548 276.021 349.856 276.021 351.608C276.021 353.372 274.797 354.68 273.069 354.68C271.341 354.68 270.117 353.372 270.117 351.608C270.117 349.856 271.341 348.548 273.069 348.548ZM278.136 351.596C278.136 352.784 278.748 353.66 279.828 353.66C280.86 353.66 281.496 352.76 281.496 351.572C281.496 350.384 280.872 349.568 279.84 349.568C278.808 349.568 278.136 350.408 278.136 351.596ZM281.508 353.72V353.624C281.232 354.176 280.62 354.656 279.72 354.656C278.028 354.656 276.984 353.312 276.984 351.596C276.984 349.964 278.088 348.572 279.72 348.572C280.74 348.572 281.292 349.076 281.484 349.544V345.812H282.6V353.432C282.6 353.984 282.648 354.404 282.66 354.5H281.568C281.544 354.368 281.508 354.068 281.508 353.72ZM285.251 351.02H288.407C288.383 350.192 287.843 349.544 286.823 349.544C285.875 349.544 285.299 350.276 285.251 351.02ZM288.575 352.52L289.547 352.856C289.223 353.876 288.299 354.68 286.955 354.68C285.407 354.68 284.051 353.552 284.051 351.596C284.051 349.784 285.359 348.548 286.811 348.548C288.587 348.548 289.583 349.772 289.583 351.572C289.583 351.716 289.571 351.86 289.559 351.932H285.215C285.239 352.964 285.983 353.684 286.955 353.684C287.891 353.684 288.359 353.168 288.575 352.52ZM290.483 353L291.503 352.64C291.575 353.24 292.031 353.72 292.847 353.72C293.483 353.72 293.831 353.36 293.831 352.952C293.831 352.592 293.567 352.316 293.087 352.208L292.103 351.992C291.203 351.8 290.663 351.188 290.663 350.372C290.663 349.388 291.587 348.548 292.715 348.548C294.299 348.548 294.791 349.58 294.911 350.096L293.915 350.468C293.867 350.168 293.627 349.508 292.715 349.508C292.139 349.508 291.755 349.88 291.755 350.276C291.755 350.624 291.971 350.876 292.415 350.972L293.351 351.176C294.395 351.404 294.947 352.04 294.947 352.892C294.947 353.708 294.263 354.68 292.835 354.68C291.251 354.68 290.579 353.66 290.483 353Z" fill="#EDEDED"/>
|
||||
<rect x="23.5" y="291.5" width="76" height="31" rx="5.5" fill="#1C1C1C"/>
|
||||
<rect x="23.5" y="291.5" width="76" height="31" rx="5.5" stroke="#343434"/>
|
||||
<path d="M37 301H34.3333C33.9797 301 33.6406 301.14 33.3905 301.391C33.1405 301.641 33 301.98 33 302.333V305M37 301H43.6667C44.0203 301 44.3594 301.14 44.6095 301.391C44.8595 301.641 45 301.98 45 302.333V305M37 301V313M33 305V311.667C33 312.02 33.1405 312.359 33.3905 312.609C33.6406 312.86 33.9797 313 34.3333 313H37M33 305H45M45 305V311.667C45 312.02 44.8595 312.359 44.6095 312.609C44.3594 312.86 44.0203 313 43.6667 313H37" stroke="#707070" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path d="M55.42 310L56.44 309.64C56.512 310.24 56.968 310.72 57.784 310.72C58.42 310.72 58.768 310.36 58.768 309.952C58.768 309.592 58.504 309.316 58.024 309.208L57.04 308.992C56.14 308.8 55.6 308.188 55.6 307.372C55.6 306.388 56.524 305.548 57.652 305.548C59.236 305.548 59.728 306.58 59.848 307.096L58.852 307.468C58.804 307.168 58.564 306.508 57.652 306.508C57.076 306.508 56.692 306.88 56.692 307.276C56.692 307.624 56.908 307.876 57.352 307.972L58.288 308.176C59.332 308.404 59.884 309.04 59.884 309.892C59.884 310.708 59.2 311.68 57.772 311.68C56.188 311.68 55.516 310.66 55.42 310ZM62.8978 303.904V305.728H64.1458V306.748H62.8978V309.748C62.8978 310.276 63.1138 310.54 63.7018 310.54C63.8458 310.54 64.0498 310.516 64.1458 310.492V311.452C64.0498 311.488 63.7618 311.56 63.3778 311.56C62.3938 311.56 61.7698 310.96 61.7698 309.916V306.748H60.6658V305.728H60.9778C61.6018 305.728 61.8658 305.344 61.8658 304.84V303.904H62.8978ZM65.2914 309.952C65.2914 308.92 66.0474 308.344 67.0434 308.2L68.6034 307.972C68.9514 307.924 69.0474 307.744 69.0474 307.54C69.0474 306.976 68.6754 306.508 67.7994 306.508C67.0074 306.508 66.5634 307 66.4914 307.672L65.4114 307.42C65.5314 306.316 66.5274 305.548 67.7754 305.548C69.5034 305.548 70.1754 306.532 70.1754 307.66V310.552C70.1754 311.056 70.2234 311.356 70.2474 311.5H69.1434C69.1194 311.356 69.0834 311.14 69.0834 310.72C68.8314 311.128 68.2554 311.68 67.2234 311.68C66.0474 311.68 65.2914 310.864 65.2914 309.952ZM67.3794 310.732C68.3034 310.732 69.0474 310.288 69.0474 309.028V308.764L67.2834 309.028C66.8034 309.1 66.4434 309.376 66.4434 309.892C66.4434 310.324 66.8034 310.732 67.3794 310.732ZM73.4447 303.904V305.728H74.6927V306.748H73.4447V309.748C73.4447 310.276 73.6607 310.54 74.2487 310.54C74.3927 310.54 74.5967 310.516 74.6927 310.492V311.452C74.5967 311.488 74.3087 311.56 73.9247 311.56C72.9407 311.56 72.3167 310.96 72.3167 309.916V306.748H71.2127V305.728H71.5247C72.1487 305.728 72.4127 305.344 72.4127 304.84V303.904H73.4447ZM76.8717 308.02H80.0277C80.0037 307.192 79.4637 306.544 78.4437 306.544C77.4957 306.544 76.9197 307.276 76.8717 308.02ZM80.1957 309.52L81.1677 309.856C80.8437 310.876 79.9197 311.68 78.5757 311.68C77.0277 311.68 75.6717 310.552 75.6717 308.596C75.6717 306.784 76.9797 305.548 78.4317 305.548C80.2077 305.548 81.2037 306.772 81.2037 308.572C81.2037 308.716 81.1917 308.86 81.1797 308.932H76.8357C76.8597 309.964 77.6037 310.684 78.5757 310.684C79.5117 310.684 79.9797 310.168 80.1957 309.52ZM82.1036 310L83.1236 309.64C83.1956 310.24 83.6516 310.72 84.4676 310.72C85.1036 310.72 85.4516 310.36 85.4516 309.952C85.4516 309.592 85.1876 309.316 84.7076 309.208L83.7236 308.992C82.8236 308.8 82.2836 308.188 82.2836 307.372C82.2836 306.388 83.2076 305.548 84.3356 305.548C85.9196 305.548 86.4116 306.58 86.5316 307.096L85.5356 307.468C85.4876 307.168 85.2476 306.508 84.3356 306.508C83.7596 306.508 83.3756 306.88 83.3756 307.276C83.3756 307.624 83.5916 307.876 84.0356 307.972L84.9716 308.176C86.0156 308.404 86.5676 309.04 86.5676 309.892C86.5676 310.708 85.8836 311.68 84.4556 311.68C82.8716 311.68 82.1996 310.66 82.1036 310Z" fill="#7E7E7E"/>
|
||||
<rect x="122.5" y="291.5" width="95" height="31" rx="15.5" fill="#282828"/>
|
||||
<rect x="122.5" y="291.5" width="95" height="31" rx="15.5" stroke="#3E3E3E"/>
|
||||
<path d="M138.84 310.732C138.84 310.264 139.2 309.892 139.668 309.892C140.136 309.892 140.508 310.264 140.508 310.732C140.508 311.2 140.136 311.56 139.668 311.56C139.2 311.56 138.84 311.2 138.84 310.732ZM142.192 310.732C142.192 310.264 142.552 309.892 143.02 309.892C143.488 309.892 143.86 310.264 143.86 310.732C143.86 311.2 143.488 311.56 143.02 311.56C142.552 311.56 142.192 311.2 142.192 310.732ZM145.543 310.732C145.543 310.264 145.903 309.892 146.371 309.892C146.839 309.892 147.211 310.264 147.211 310.732C147.211 311.2 146.839 311.56 146.371 311.56C145.903 311.56 145.543 311.2 145.543 310.732ZM153.263 302.992L149.147 311.5H148.055L152.171 302.992H153.263ZM159.045 305.728L156.741 311.5H155.601L153.261 305.728H154.533L156.177 310.18L157.833 305.728H159.045ZM162.5 311.5H161.348V306.016H159.464V305.188C160.544 305.164 161.288 304.564 161.468 303.724H162.5V311.5ZM168.603 302.992L164.487 311.5H163.395L167.511 302.992H168.603Z" fill="#7E7E7E"/>
|
||||
<path d="M169.42 310L170.44 309.64C170.512 310.24 170.968 310.72 171.784 310.72C172.42 310.72 172.768 310.36 172.768 309.952C172.768 309.592 172.504 309.316 172.024 309.208L171.04 308.992C170.14 308.8 169.6 308.188 169.6 307.372C169.6 306.388 170.524 305.548 171.652 305.548C173.236 305.548 173.728 306.58 173.848 307.096L172.852 307.468C172.804 307.168 172.564 306.508 171.652 306.508C171.076 306.508 170.692 306.88 170.692 307.276C170.692 307.624 170.908 307.876 171.352 307.972L172.288 308.176C173.332 308.404 173.884 309.04 173.884 309.892C173.884 310.708 173.2 311.68 171.772 311.68C170.188 311.68 169.516 310.66 169.42 310ZM176.898 303.904V305.728H178.146V306.748H176.898V309.748C176.898 310.276 177.114 310.54 177.702 310.54C177.846 310.54 178.05 310.516 178.146 310.492V311.452C178.05 311.488 177.762 311.56 177.378 311.56C176.394 311.56 175.77 310.96 175.77 309.916V306.748H174.666V305.728H174.978C175.602 305.728 175.866 305.344 175.866 304.84V303.904H176.898ZM179.291 309.952C179.291 308.92 180.047 308.344 181.043 308.2L182.603 307.972C182.951 307.924 183.047 307.744 183.047 307.54C183.047 306.976 182.675 306.508 181.799 306.508C181.007 306.508 180.563 307 180.491 307.672L179.411 307.42C179.531 306.316 180.527 305.548 181.775 305.548C183.503 305.548 184.175 306.532 184.175 307.66V310.552C184.175 311.056 184.223 311.356 184.247 311.5H183.143C183.119 311.356 183.083 311.14 183.083 310.72C182.831 311.128 182.255 311.68 181.223 311.68C180.047 311.68 179.291 310.864 179.291 309.952ZM181.379 310.732C182.303 310.732 183.047 310.288 183.047 309.028V308.764L181.283 309.028C180.803 309.1 180.443 309.376 180.443 309.892C180.443 310.324 180.803 310.732 181.379 310.732ZM187.445 303.904V305.728H188.693V306.748H187.445V309.748C187.445 310.276 187.661 310.54 188.249 310.54C188.393 310.54 188.597 310.516 188.693 310.492V311.452C188.597 311.488 188.309 311.56 187.925 311.56C186.941 311.56 186.317 310.96 186.317 309.916V306.748H185.213V305.728H185.525C186.149 305.728 186.413 305.344 186.413 304.84V303.904H187.445ZM190.872 308.02H194.028C194.004 307.192 193.464 306.544 192.444 306.544C191.496 306.544 190.92 307.276 190.872 308.02ZM194.196 309.52L195.168 309.856C194.844 310.876 193.92 311.68 192.576 311.68C191.028 311.68 189.672 310.552 189.672 308.596C189.672 306.784 190.98 305.548 192.432 305.548C194.208 305.548 195.204 306.772 195.204 308.572C195.204 308.716 195.192 308.86 195.18 308.932H190.836C190.86 309.964 191.604 310.684 192.576 310.684C193.512 310.684 193.98 310.168 194.196 309.52ZM196.104 310L197.124 309.64C197.196 310.24 197.652 310.72 198.468 310.72C199.104 310.72 199.452 310.36 199.452 309.952C199.452 309.592 199.188 309.316 198.708 309.208L197.724 308.992C196.824 308.8 196.284 308.188 196.284 307.372C196.284 306.388 197.208 305.548 198.336 305.548C199.92 305.548 200.412 306.58 200.532 307.096L199.536 307.468C199.488 307.168 199.248 306.508 198.336 306.508C197.76 306.508 197.376 306.88 197.376 307.276C197.376 307.624 197.592 307.876 198.036 307.972L198.972 308.176C200.016 308.404 200.568 309.04 200.568 309.892C200.568 310.708 199.884 311.68 198.456 311.68C196.872 311.68 196.2 310.66 196.104 310Z" fill="#EDEDED"/>
|
||||
<rect x="23.5" y="248.5" width="72" height="31" rx="5.5" fill="#1C1C1C"/>
|
||||
<rect x="23.5" y="248.5" width="72" height="31" rx="5.5" stroke="#343434"/>
|
||||
<path d="M37 258H34.3333C33.9797 258 33.6406 258.14 33.3905 258.391C33.1405 258.641 33 258.98 33 259.333V262M37 258H43.6667C44.0203 258 44.3594 258.14 44.6095 258.391C44.8595 258.641 45 258.98 45 259.333V262M37 258V270M33 262V268.667C33 269.02 33.1405 269.359 33.3905 269.609C33.6406 269.86 33.9797 270 34.3333 270H37M33 262H45M45 262V268.667C45 269.02 44.8595 269.359 44.6095 269.609C44.3594 269.86 44.0203 270 43.6667 270H37" stroke="#707070" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path d="M58.384 263.592C57.472 263.592 56.632 264.264 56.632 265.608C56.632 266.928 57.46 267.636 58.396 267.636C59.476 267.636 59.872 266.904 60.004 266.448L61 266.88C60.724 267.708 59.896 268.68 58.396 268.68C56.716 268.68 55.48 267.36 55.48 265.608C55.48 263.808 56.74 262.548 58.384 262.548C59.92 262.548 60.712 263.508 60.952 264.384L59.932 264.816C59.788 264.252 59.368 263.592 58.384 263.592ZM63.4393 268.5H62.3233V262.728H63.4393V268.5ZM62.0713 260.544C62.0713 260.088 62.4313 259.728 62.8753 259.728C63.3313 259.728 63.6913 260.088 63.6913 260.544C63.6913 260.988 63.3313 261.348 62.8753 261.348C62.4313 261.348 62.0713 260.988 62.0713 260.544ZM66.8704 260.904V262.728H68.1184V263.748H66.8704V266.748C66.8704 267.276 67.0864 267.54 67.6744 267.54C67.8184 267.54 68.0224 267.516 68.1184 267.492V268.452C68.0224 268.488 67.7344 268.56 67.3504 268.56C66.3664 268.56 65.7424 267.96 65.7424 266.916V263.748H64.6384V262.728H64.9504C65.5744 262.728 65.8384 262.344 65.8384 261.84V260.904H66.8704ZM70.7401 268.5H69.6241V262.728H70.7401V268.5ZM69.3721 260.544C69.3721 260.088 69.7321 259.728 70.1761 259.728C70.6321 259.728 70.9921 260.088 70.9921 260.544C70.9921 260.988 70.6321 261.348 70.1761 261.348C69.7321 261.348 69.3721 260.988 69.3721 260.544ZM73.3912 265.02H76.5472C76.5232 264.192 75.9832 263.544 74.9632 263.544C74.0152 263.544 73.4392 264.276 73.3912 265.02ZM76.7152 266.52L77.6872 266.856C77.3632 267.876 76.4392 268.68 75.0952 268.68C73.5472 268.68 72.1912 267.552 72.1912 265.596C72.1912 263.784 73.4992 262.548 74.9512 262.548C76.7272 262.548 77.7232 263.772 77.7232 265.572C77.7232 265.716 77.7112 265.86 77.6992 265.932H73.3552C73.3792 266.964 74.1232 267.684 75.0952 267.684C76.0312 267.684 76.4992 267.168 76.7152 266.52ZM78.6231 267L79.6431 266.64C79.7151 267.24 80.1711 267.72 80.9871 267.72C81.6231 267.72 81.9711 267.36 81.9711 266.952C81.9711 266.592 81.7071 266.316 81.2271 266.208L80.2431 265.992C79.3431 265.8 78.8031 265.188 78.8031 264.372C78.8031 263.388 79.7271 262.548 80.8551 262.548C82.4391 262.548 82.9311 263.58 83.0511 264.096L82.0551 264.468C82.0071 264.168 81.7671 263.508 80.8551 263.508C80.2791 263.508 79.8951 263.88 79.8951 264.276C79.8951 264.624 80.1111 264.876 80.5551 264.972L81.4911 265.176C82.5351 265.404 83.0871 266.04 83.0871 266.892C83.0871 267.708 82.4031 268.68 80.9751 268.68C79.3911 268.68 78.7191 267.66 78.6231 267Z" fill="#7E7E7E"/>
|
||||
<rect x="118.5" y="248.5" width="91" height="31" rx="15.5" fill="#282828"/>
|
||||
<rect x="118.5" y="248.5" width="91" height="31" rx="15.5" stroke="#3E3E3E"/>
|
||||
<path d="M134.84 267.732C134.84 267.264 135.2 266.892 135.668 266.892C136.136 266.892 136.508 267.264 136.508 267.732C136.508 268.2 136.136 268.56 135.668 268.56C135.2 268.56 134.84 268.2 134.84 267.732ZM138.192 267.732C138.192 267.264 138.552 266.892 139.02 266.892C139.488 266.892 139.86 267.264 139.86 267.732C139.86 268.2 139.488 268.56 139.02 268.56C138.552 268.56 138.192 268.2 138.192 267.732ZM141.543 267.732C141.543 267.264 141.903 266.892 142.371 266.892C142.839 266.892 143.211 267.264 143.211 267.732C143.211 268.2 142.839 268.56 142.371 268.56C141.903 268.56 141.543 268.2 141.543 267.732ZM149.263 259.992L145.147 268.5H144.055L148.171 259.992H149.263ZM155.045 262.728L152.741 268.5H151.601L149.261 262.728H150.533L152.177 267.18L153.833 262.728H155.045ZM158.5 268.5H157.348V263.016H155.464V262.188C156.544 262.164 157.288 261.564 157.468 260.724H158.5V268.5ZM164.603 259.992L160.487 268.5H159.395L163.511 259.992H164.603Z" fill="#7E7E7E"/>
|
||||
<path d="M168.384 263.592C167.472 263.592 166.632 264.264 166.632 265.608C166.632 266.928 167.46 267.636 168.396 267.636C169.476 267.636 169.872 266.904 170.004 266.448L171 266.88C170.724 267.708 169.896 268.68 168.396 268.68C166.716 268.68 165.48 267.36 165.48 265.608C165.48 263.808 166.74 262.548 168.384 262.548C169.92 262.548 170.712 263.508 170.952 264.384L169.932 264.816C169.788 264.252 169.368 263.592 168.384 263.592ZM173.439 268.5H172.323V262.728H173.439V268.5ZM172.071 260.544C172.071 260.088 172.431 259.728 172.875 259.728C173.331 259.728 173.691 260.088 173.691 260.544C173.691 260.988 173.331 261.348 172.875 261.348C172.431 261.348 172.071 260.988 172.071 260.544ZM176.87 260.904V262.728H178.118V263.748H176.87V266.748C176.87 267.276 177.086 267.54 177.674 267.54C177.818 267.54 178.022 267.516 178.118 267.492V268.452C178.022 268.488 177.734 268.56 177.35 268.56C176.366 268.56 175.742 267.96 175.742 266.916V263.748H174.638V262.728H174.95C175.574 262.728 175.838 262.344 175.838 261.84V260.904H176.87ZM180.74 268.5H179.624V262.728H180.74V268.5ZM179.372 260.544C179.372 260.088 179.732 259.728 180.176 259.728C180.632 259.728 180.992 260.088 180.992 260.544C180.992 260.988 180.632 261.348 180.176 261.348C179.732 261.348 179.372 260.988 179.372 260.544ZM183.391 265.02H186.547C186.523 264.192 185.983 263.544 184.963 263.544C184.015 263.544 183.439 264.276 183.391 265.02ZM186.715 266.52L187.687 266.856C187.363 267.876 186.439 268.68 185.095 268.68C183.547 268.68 182.191 267.552 182.191 265.596C182.191 263.784 183.499 262.548 184.951 262.548C186.727 262.548 187.723 263.772 187.723 265.572C187.723 265.716 187.711 265.86 187.699 265.932H183.355C183.379 266.964 184.123 267.684 185.095 267.684C186.031 267.684 186.499 267.168 186.715 266.52ZM188.623 267L189.643 266.64C189.715 267.24 190.171 267.72 190.987 267.72C191.623 267.72 191.971 267.36 191.971 266.952C191.971 266.592 191.707 266.316 191.227 266.208L190.243 265.992C189.343 265.8 188.803 265.188 188.803 264.372C188.803 263.388 189.727 262.548 190.855 262.548C192.439 262.548 192.931 263.58 193.051 264.096L192.055 264.468C192.007 264.168 191.767 263.508 190.855 263.508C190.279 263.508 189.895 263.88 189.895 264.276C189.895 264.624 190.111 264.876 190.555 264.972L191.491 265.176C192.535 265.404 193.087 266.04 193.087 266.892C193.087 267.708 192.403 268.68 190.975 268.68C189.391 268.68 188.719 267.66 188.623 267Z" fill="#EDEDED"/>
|
||||
<rect x="23.5" y="205.5" width="100" height="31" rx="5.5" fill="#1C1C1C"/>
|
||||
<rect x="23.5" y="205.5" width="100" height="31" rx="5.5" stroke="#343434"/>
|
||||
<path d="M37 215H34.3333C33.9797 215 33.6406 215.14 33.3905 215.391C33.1405 215.641 33 215.98 33 216.333V219M37 215H43.6667C44.0203 215 44.3594 215.14 44.6095 215.391C44.8595 215.641 45 215.98 45 216.333V219M37 215V227M33 219V225.667C33 226.02 33.1405 226.359 33.3905 226.609C33.6406 226.86 33.9797 227 34.3333 227H37M33 219H45M45 219V225.667C45 226.02 44.8595 226.359 44.6095 226.609C44.3594 226.86 44.0203 227 43.6667 227H37" stroke="#707070" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path d="M58.384 220.592C57.472 220.592 56.632 221.264 56.632 222.608C56.632 223.928 57.46 224.636 58.396 224.636C59.476 224.636 59.872 223.904 60.004 223.448L61 223.88C60.724 224.708 59.896 225.68 58.396 225.68C56.716 225.68 55.48 224.36 55.48 222.608C55.48 220.808 56.74 219.548 58.384 219.548C59.92 219.548 60.712 220.508 60.952 221.384L59.932 221.816C59.788 221.252 59.368 220.592 58.384 220.592ZM64.7367 224.672C65.6967 224.672 66.5367 223.952 66.5367 222.608C66.5367 221.276 65.6967 220.556 64.7367 220.556C63.7767 220.556 62.9367 221.276 62.9367 222.608C62.9367 223.952 63.7767 224.672 64.7367 224.672ZM64.7367 219.548C66.4647 219.548 67.6887 220.856 67.6887 222.608C67.6887 224.372 66.4647 225.68 64.7367 225.68C63.0087 225.68 61.7847 224.372 61.7847 222.608C61.7847 220.856 63.0087 219.548 64.7367 219.548ZM70.2599 222.164V225.5H69.1319V219.728H70.2359V220.556C70.6559 219.836 71.3399 219.56 72.0119 219.56C73.3919 219.56 74.0759 220.556 74.0759 221.84V225.5H72.9479V222.032C72.9479 221.228 72.6119 220.58 71.6039 220.58C70.7159 220.58 70.2599 221.288 70.2599 222.164ZM77.3822 217.904V219.728H78.6302V220.748H77.3822V223.748C77.3822 224.276 77.5982 224.54 78.1862 224.54C78.3302 224.54 78.5342 224.516 78.6302 224.492V225.452C78.5342 225.488 78.2462 225.56 77.8622 225.56C76.8782 225.56 76.2542 224.96 76.2542 223.916V220.748H75.1502V219.728H75.4622C76.0862 219.728 76.3502 219.344 76.3502 218.84V217.904H77.3822ZM81.2518 225.5H80.1358V219.728H81.2518V225.5ZM79.8838 217.544C79.8838 217.088 80.2438 216.728 80.6878 216.728C81.1438 216.728 81.5038 217.088 81.5038 217.544C81.5038 217.988 81.1438 218.348 80.6878 218.348C80.2438 218.348 79.8838 217.988 79.8838 217.544ZM84.2989 222.164V225.5H83.1709V219.728H84.2749V220.556C84.6949 219.836 85.3789 219.56 86.0509 219.56C87.4309 219.56 88.1149 220.556 88.1149 221.84V225.5H86.9869V222.032C86.9869 221.228 86.6509 220.58 85.6429 220.58C84.7549 220.58 84.2989 221.288 84.2989 222.164ZM90.6412 222.02H93.7972C93.7732 221.192 93.2332 220.544 92.2132 220.544C91.2652 220.544 90.6892 221.276 90.6412 222.02ZM93.9652 223.52L94.9372 223.856C94.6132 224.876 93.6892 225.68 92.3452 225.68C90.7972 225.68 89.4412 224.552 89.4412 222.596C89.4412 220.784 90.7492 219.548 92.2012 219.548C93.9772 219.548 94.9732 220.772 94.9732 222.572C94.9732 222.716 94.9612 222.86 94.9492 222.932H90.6052C90.6292 223.964 91.3732 224.684 92.3452 224.684C93.2812 224.684 93.7492 224.168 93.9652 223.52ZM97.5411 222.164V225.5H96.4131V219.728H97.5171V220.556C97.9371 219.836 98.6211 219.56 99.2931 219.56C100.673 219.56 101.357 220.556 101.357 221.84V225.5H100.229V222.032C100.229 221.228 99.8931 220.58 98.8851 220.58C97.9971 220.58 97.5411 221.288 97.5411 222.164ZM104.663 217.904V219.728H105.911V220.748H104.663V223.748C104.663 224.276 104.879 224.54 105.467 224.54C105.611 224.54 105.815 224.516 105.911 224.492V225.452C105.815 225.488 105.527 225.56 105.143 225.56C104.159 225.56 103.535 224.96 103.535 223.916V220.748H102.431V219.728H102.743C103.367 219.728 103.631 219.344 103.631 218.84V217.904H104.663ZM106.936 224L107.956 223.64C108.028 224.24 108.484 224.72 109.3 224.72C109.936 224.72 110.284 224.36 110.284 223.952C110.284 223.592 110.02 223.316 109.54 223.208L108.556 222.992C107.656 222.8 107.116 222.188 107.116 221.372C107.116 220.388 108.04 219.548 109.168 219.548C110.752 219.548 111.244 220.58 111.364 221.096L110.368 221.468C110.32 221.168 110.08 220.508 109.168 220.508C108.592 220.508 108.208 220.88 108.208 221.276C108.208 221.624 108.424 221.876 108.868 221.972L109.804 222.176C110.848 222.404 111.4 223.04 111.4 223.892C111.4 224.708 110.716 225.68 109.288 225.68C107.704 225.68 107.032 224.66 106.936 224Z" fill="#7E7E7E"/>
|
||||
<rect x="146.5" y="205.5" width="119" height="31" rx="15.5" fill="#282828"/>
|
||||
<rect x="146.5" y="205.5" width="119" height="31" rx="15.5" stroke="#3E3E3E"/>
|
||||
<path d="M162.84 224.732C162.84 224.264 163.2 223.892 163.668 223.892C164.136 223.892 164.508 224.264 164.508 224.732C164.508 225.2 164.136 225.56 163.668 225.56C163.2 225.56 162.84 225.2 162.84 224.732ZM166.192 224.732C166.192 224.264 166.552 223.892 167.02 223.892C167.488 223.892 167.86 224.264 167.86 224.732C167.86 225.2 167.488 225.56 167.02 225.56C166.552 225.56 166.192 225.2 166.192 224.732ZM169.543 224.732C169.543 224.264 169.903 223.892 170.371 223.892C170.839 223.892 171.211 224.264 171.211 224.732C171.211 225.2 170.839 225.56 170.371 225.56C169.903 225.56 169.543 225.2 169.543 224.732ZM177.263 216.992L173.147 225.5H172.055L176.171 216.992H177.263ZM183.045 219.728L180.741 225.5H179.601L177.261 219.728H178.533L180.177 224.18L181.833 219.728H183.045ZM186.5 225.5H185.348V220.016H183.464V219.188C184.544 219.164 185.288 218.564 185.468 217.724H186.5V225.5ZM192.603 216.992L188.487 225.5H187.395L191.511 216.992H192.603Z" fill="#7E7E7E"/>
|
||||
<path d="M196.384 220.592C195.472 220.592 194.632 221.264 194.632 222.608C194.632 223.928 195.46 224.636 196.396 224.636C197.476 224.636 197.872 223.904 198.004 223.448L199 223.88C198.724 224.708 197.896 225.68 196.396 225.68C194.716 225.68 193.48 224.36 193.48 222.608C193.48 220.808 194.74 219.548 196.384 219.548C197.92 219.548 198.712 220.508 198.952 221.384L197.932 221.816C197.788 221.252 197.368 220.592 196.384 220.592ZM202.737 224.672C203.697 224.672 204.537 223.952 204.537 222.608C204.537 221.276 203.697 220.556 202.737 220.556C201.777 220.556 200.937 221.276 200.937 222.608C200.937 223.952 201.777 224.672 202.737 224.672ZM202.737 219.548C204.465 219.548 205.689 220.856 205.689 222.608C205.689 224.372 204.465 225.68 202.737 225.68C201.009 225.68 199.785 224.372 199.785 222.608C199.785 220.856 201.009 219.548 202.737 219.548ZM208.26 222.164V225.5H207.132V219.728H208.236V220.556C208.656 219.836 209.34 219.56 210.012 219.56C211.392 219.56 212.076 220.556 212.076 221.84V225.5H210.948V222.032C210.948 221.228 210.612 220.58 209.604 220.58C208.716 220.58 208.26 221.288 208.26 222.164ZM215.382 217.904V219.728H216.63V220.748H215.382V223.748C215.382 224.276 215.598 224.54 216.186 224.54C216.33 224.54 216.534 224.516 216.63 224.492V225.452C216.534 225.488 216.246 225.56 215.862 225.56C214.878 225.56 214.254 224.96 214.254 223.916V220.748H213.15V219.728H213.462C214.086 219.728 214.35 219.344 214.35 218.84V217.904H215.382ZM219.252 225.5H218.136V219.728H219.252V225.5ZM217.884 217.544C217.884 217.088 218.244 216.728 218.688 216.728C219.144 216.728 219.504 217.088 219.504 217.544C219.504 217.988 219.144 218.348 218.688 218.348C218.244 218.348 217.884 217.988 217.884 217.544ZM222.299 222.164V225.5H221.171V219.728H222.275V220.556C222.695 219.836 223.379 219.56 224.051 219.56C225.431 219.56 226.115 220.556 226.115 221.84V225.5H224.987V222.032C224.987 221.228 224.651 220.58 223.643 220.58C222.755 220.58 222.299 221.288 222.299 222.164ZM228.641 222.02H231.797C231.773 221.192 231.233 220.544 230.213 220.544C229.265 220.544 228.689 221.276 228.641 222.02ZM231.965 223.52L232.937 223.856C232.613 224.876 231.689 225.68 230.345 225.68C228.797 225.68 227.441 224.552 227.441 222.596C227.441 220.784 228.749 219.548 230.201 219.548C231.977 219.548 232.973 220.772 232.973 222.572C232.973 222.716 232.961 222.86 232.949 222.932H228.605C228.629 223.964 229.373 224.684 230.345 224.684C231.281 224.684 231.749 224.168 231.965 223.52ZM235.541 222.164V225.5H234.413V219.728H235.517V220.556C235.937 219.836 236.621 219.56 237.293 219.56C238.673 219.56 239.357 220.556 239.357 221.84V225.5H238.229V222.032C238.229 221.228 237.893 220.58 236.885 220.58C235.997 220.58 235.541 221.288 235.541 222.164ZM242.663 217.904V219.728H243.911V220.748H242.663V223.748C242.663 224.276 242.879 224.54 243.467 224.54C243.611 224.54 243.815 224.516 243.911 224.492V225.452C243.815 225.488 243.527 225.56 243.143 225.56C242.159 225.56 241.535 224.96 241.535 223.916V220.748H240.431V219.728H240.743C241.367 219.728 241.631 219.344 241.631 218.84V217.904H242.663ZM244.936 224L245.956 223.64C246.028 224.24 246.484 224.72 247.3 224.72C247.936 224.72 248.284 224.36 248.284 223.952C248.284 223.592 248.02 223.316 247.54 223.208L246.556 222.992C245.656 222.8 245.116 222.188 245.116 221.372C245.116 220.388 246.04 219.548 247.168 219.548C248.752 219.548 249.244 220.58 249.364 221.096L248.368 221.468C248.32 221.168 248.08 220.508 247.168 220.508C246.592 220.508 246.208 220.88 246.208 221.276C246.208 221.624 246.424 221.876 246.868 221.972L247.804 222.176C248.848 222.404 249.4 223.04 249.4 223.892C249.4 224.708 248.716 225.68 247.288 225.68C245.704 225.68 245.032 224.66 244.936 224Z" fill="#EDEDED"/>
|
||||
<rect x="23.5" y="162.5" width="94" height="31" rx="5.5" fill="#1C1C1C"/>
|
||||
<rect x="23.5" y="162.5" width="94" height="31" rx="5.5" stroke="#343434"/>
|
||||
<path d="M37 172H34.3333C33.9797 172 33.6406 172.14 33.3905 172.391C33.1405 172.641 33 172.98 33 173.333V176M37 172H43.6667C44.0203 172 44.3594 172.14 44.6095 172.391C44.8595 172.641 45 172.98 45 173.333V176M37 172V184M33 176V182.667C33 183.02 33.1405 183.359 33.3905 183.609C33.6406 183.86 33.9797 184 34.3333 184H37M33 176H45M45 176V182.667C45 183.02 44.8595 183.359 44.6095 183.609C44.3594 183.86 44.0203 184 43.6667 184H37" stroke="#707070" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path d="M58.384 177.592C57.472 177.592 56.632 178.264 56.632 179.608C56.632 180.928 57.46 181.636 58.396 181.636C59.476 181.636 59.872 180.904 60.004 180.448L61 180.88C60.724 181.708 59.896 182.68 58.396 182.68C56.716 182.68 55.48 181.36 55.48 179.608C55.48 177.808 56.74 176.548 58.384 176.548C59.92 176.548 60.712 177.508 60.952 178.384L59.932 178.816C59.788 178.252 59.368 177.592 58.384 177.592ZM64.7367 181.672C65.6967 181.672 66.5367 180.952 66.5367 179.608C66.5367 178.276 65.6967 177.556 64.7367 177.556C63.7767 177.556 62.9367 178.276 62.9367 179.608C62.9367 180.952 63.7767 181.672 64.7367 181.672ZM64.7367 176.548C66.4647 176.548 67.6887 177.856 67.6887 179.608C67.6887 181.372 66.4647 182.68 64.7367 182.68C63.0087 182.68 61.7847 181.372 61.7847 179.608C61.7847 177.856 63.0087 176.548 64.7367 176.548ZM72.8773 181.804C72.5653 182.404 71.8453 182.68 71.1733 182.68C69.8293 182.68 69.0133 181.672 69.0133 180.364V176.728H70.1413V180.196C70.1413 180.988 70.5013 181.684 71.4493 181.684C72.3613 181.684 72.8173 181.084 72.8173 180.208V176.728H73.9453V181.432C73.9453 181.888 73.9813 182.296 74.0053 182.5H72.9253C72.9013 182.368 72.8773 182.044 72.8773 181.804ZM76.9982 179.164V182.5H75.8702V176.728H76.9742V177.556C77.3942 176.836 78.0782 176.56 78.7502 176.56C80.1302 176.56 80.8142 177.556 80.8142 178.84V182.5H79.6862V179.032C79.6862 178.228 79.3502 177.58 78.3422 177.58C77.4542 177.58 76.9982 178.288 76.9982 179.164ZM84.1204 174.904V176.728H85.3684V177.748H84.1204V180.748C84.1204 181.276 84.3364 181.54 84.9244 181.54C85.0684 181.54 85.2724 181.516 85.3684 181.492V182.452C85.2724 182.488 84.9844 182.56 84.6004 182.56C83.6164 182.56 82.9924 181.96 82.9924 180.916V177.748H81.8884V176.728H82.2004C82.8244 176.728 83.0884 176.344 83.0884 175.84V174.904H84.1204ZM89.9609 176.668V177.868C89.7929 177.844 89.6249 177.832 89.4689 177.832C88.5209 177.832 87.8849 178.336 87.8849 179.608V182.5H86.7569V176.728H87.8609V177.736C88.2809 176.848 89.0009 176.632 89.5889 176.632C89.7449 176.632 89.9009 176.656 89.9609 176.668ZM92.2791 182.5H91.1631V176.728H92.2791V182.5ZM90.9111 174.544C90.9111 174.088 91.2711 173.728 91.7151 173.728C92.1711 173.728 92.5311 174.088 92.5311 174.544C92.5311 174.988 92.1711 175.348 91.7151 175.348C91.2711 175.348 90.9111 174.988 90.9111 174.544ZM94.9303 179.02H98.0863C98.0623 178.192 97.5223 177.544 96.5023 177.544C95.5543 177.544 94.9783 178.276 94.9303 179.02ZM98.2543 180.52L99.2263 180.856C98.9023 181.876 97.9783 182.68 96.6343 182.68C95.0863 182.68 93.7303 181.552 93.7303 179.596C93.7303 177.784 95.0383 176.548 96.4903 176.548C98.2663 176.548 99.2623 177.772 99.2623 179.572C99.2623 179.716 99.2503 179.86 99.2383 179.932H94.8943C94.9183 180.964 95.6623 181.684 96.6343 181.684C97.5703 181.684 98.0383 181.168 98.2543 180.52ZM100.162 181L101.182 180.64C101.254 181.24 101.71 181.72 102.526 181.72C103.162 181.72 103.51 181.36 103.51 180.952C103.51 180.592 103.246 180.316 102.766 180.208L101.782 179.992C100.882 179.8 100.342 179.188 100.342 178.372C100.342 177.388 101.266 176.548 102.394 176.548C103.978 176.548 104.47 177.58 104.59 178.096L103.594 178.468C103.546 178.168 103.306 177.508 102.394 177.508C101.818 177.508 101.434 177.88 101.434 178.276C101.434 178.624 101.65 178.876 102.094 178.972L103.03 179.176C104.074 179.404 104.626 180.04 104.626 180.892C104.626 181.708 103.942 182.68 102.514 182.68C100.93 182.68 100.258 181.66 100.162 181Z" fill="#7E7E7E"/>
|
||||
<rect x="140.5" y="162.5" width="113" height="31" rx="15.5" fill="#282828"/>
|
||||
<rect x="140.5" y="162.5" width="113" height="31" rx="15.5" stroke="#3E3E3E"/>
|
||||
<path d="M156.84 181.732C156.84 181.264 157.2 180.892 157.668 180.892C158.136 180.892 158.508 181.264 158.508 181.732C158.508 182.2 158.136 182.56 157.668 182.56C157.2 182.56 156.84 182.2 156.84 181.732ZM160.192 181.732C160.192 181.264 160.552 180.892 161.02 180.892C161.488 180.892 161.86 181.264 161.86 181.732C161.86 182.2 161.488 182.56 161.02 182.56C160.552 182.56 160.192 182.2 160.192 181.732ZM163.543 181.732C163.543 181.264 163.903 180.892 164.371 180.892C164.839 180.892 165.211 181.264 165.211 181.732C165.211 182.2 164.839 182.56 164.371 182.56C163.903 182.56 163.543 182.2 163.543 181.732ZM171.263 173.992L167.147 182.5H166.055L170.171 173.992H171.263ZM177.045 176.728L174.741 182.5H173.601L171.261 176.728H172.533L174.177 181.18L175.833 176.728H177.045ZM180.5 182.5H179.348V177.016H177.464V176.188C178.544 176.164 179.288 175.564 179.468 174.724H180.5V182.5ZM186.603 173.992L182.487 182.5H181.395L185.511 173.992H186.603Z" fill="#7E7E7E"/>
|
||||
<path d="M190.384 177.592C189.472 177.592 188.632 178.264 188.632 179.608C188.632 180.928 189.46 181.636 190.396 181.636C191.476 181.636 191.872 180.904 192.004 180.448L193 180.88C192.724 181.708 191.896 182.68 190.396 182.68C188.716 182.68 187.48 181.36 187.48 179.608C187.48 177.808 188.74 176.548 190.384 176.548C191.92 176.548 192.712 177.508 192.952 178.384L191.932 178.816C191.788 178.252 191.368 177.592 190.384 177.592ZM196.737 181.672C197.697 181.672 198.537 180.952 198.537 179.608C198.537 178.276 197.697 177.556 196.737 177.556C195.777 177.556 194.937 178.276 194.937 179.608C194.937 180.952 195.777 181.672 196.737 181.672ZM196.737 176.548C198.465 176.548 199.689 177.856 199.689 179.608C199.689 181.372 198.465 182.68 196.737 182.68C195.009 182.68 193.785 181.372 193.785 179.608C193.785 177.856 195.009 176.548 196.737 176.548ZM204.877 181.804C204.565 182.404 203.845 182.68 203.173 182.68C201.829 182.68 201.013 181.672 201.013 180.364V176.728H202.141V180.196C202.141 180.988 202.501 181.684 203.449 181.684C204.361 181.684 204.817 181.084 204.817 180.208V176.728H205.945V181.432C205.945 181.888 205.981 182.296 206.005 182.5H204.925C204.901 182.368 204.877 182.044 204.877 181.804ZM208.998 179.164V182.5H207.87V176.728H208.974V177.556C209.394 176.836 210.078 176.56 210.75 176.56C212.13 176.56 212.814 177.556 212.814 178.84V182.5H211.686V179.032C211.686 178.228 211.35 177.58 210.342 177.58C209.454 177.58 208.998 178.288 208.998 179.164ZM216.12 174.904V176.728H217.368V177.748H216.12V180.748C216.12 181.276 216.336 181.54 216.924 181.54C217.068 181.54 217.272 181.516 217.368 181.492V182.452C217.272 182.488 216.984 182.56 216.6 182.56C215.616 182.56 214.992 181.96 214.992 180.916V177.748H213.888V176.728H214.2C214.824 176.728 215.088 176.344 215.088 175.84V174.904H216.12ZM221.961 176.668V177.868C221.793 177.844 221.625 177.832 221.469 177.832C220.521 177.832 219.885 178.336 219.885 179.608V182.5H218.757V176.728H219.861V177.736C220.281 176.848 221.001 176.632 221.589 176.632C221.745 176.632 221.901 176.656 221.961 176.668ZM224.279 182.5H223.163V176.728H224.279V182.5ZM222.911 174.544C222.911 174.088 223.271 173.728 223.715 173.728C224.171 173.728 224.531 174.088 224.531 174.544C224.531 174.988 224.171 175.348 223.715 175.348C223.271 175.348 222.911 174.988 222.911 174.544ZM226.93 179.02H230.086C230.062 178.192 229.522 177.544 228.502 177.544C227.554 177.544 226.978 178.276 226.93 179.02ZM230.254 180.52L231.226 180.856C230.902 181.876 229.978 182.68 228.634 182.68C227.086 182.68 225.73 181.552 225.73 179.596C225.73 177.784 227.038 176.548 228.49 176.548C230.266 176.548 231.262 177.772 231.262 179.572C231.262 179.716 231.25 179.86 231.238 179.932H226.894C226.918 180.964 227.662 181.684 228.634 181.684C229.57 181.684 230.038 181.168 230.254 180.52ZM232.162 181L233.182 180.64C233.254 181.24 233.71 181.72 234.526 181.72C235.162 181.72 235.51 181.36 235.51 180.952C235.51 180.592 235.246 180.316 234.766 180.208L233.782 179.992C232.882 179.8 232.342 179.188 232.342 178.372C232.342 177.388 233.266 176.548 234.394 176.548C235.978 176.548 236.47 177.58 236.59 178.096L235.594 178.468C235.546 178.168 235.306 177.508 234.394 177.508C233.818 177.508 233.434 177.88 233.434 178.276C233.434 178.624 233.65 178.876 234.094 178.972L235.03 179.176C236.074 179.404 236.626 180.04 236.626 180.892C236.626 181.708 235.942 182.68 234.514 182.68C232.93 182.68 232.258 181.66 232.162 181Z" fill="#EDEDED"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 50 KiB |
50
apps/www/public/images/index/products/data-apis-light.svg
Normal file
@@ -0,0 +1,50 @@
|
||||
<svg width="330" height="430" viewBox="0 0 330 430" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<rect x="23.5" y="377.5" width="82" height="31" rx="5.5" fill="white"/>
|
||||
<rect x="23.5" y="377.5" width="82" height="31" rx="5.5" stroke="#DFDFDF"/>
|
||||
<path d="M37 387H34.3333C33.9797 387 33.6406 387.14 33.3905 387.391C33.1405 387.641 33 387.98 33 388.333V391M37 387H43.6667C44.0203 387 44.3594 387.14 44.6095 387.391C44.8595 387.641 45 387.98 45 388.333V391M37 387V399M33 391V397.667C33 398.02 33.1405 398.359 33.3905 398.609C33.6406 398.86 33.9797 399 34.3333 399H37M33 391H45M45 391V397.667C45 398.02 44.8595 398.359 44.6095 398.609C44.3594 398.86 44.0203 399 43.6667 399H37" stroke="#B2B2B2" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path d="M58.432 396.672C59.392 396.672 60.232 395.952 60.232 394.608C60.232 393.276 59.392 392.556 58.432 392.556C57.472 392.556 56.632 393.276 56.632 394.608C56.632 395.952 57.472 396.672 58.432 396.672ZM58.432 391.548C60.16 391.548 61.384 392.856 61.384 394.608C61.384 396.372 60.16 397.68 58.432 397.68C56.704 397.68 55.48 396.372 55.48 394.608C55.48 392.856 56.704 391.548 58.432 391.548ZM65.2512 392.592C64.3392 392.592 63.4992 393.264 63.4992 394.608C63.4992 395.928 64.3272 396.636 65.2632 396.636C66.3432 396.636 66.7392 395.904 66.8712 395.448L67.8672 395.88C67.5912 396.708 66.7632 397.68 65.2632 397.68C63.5832 397.68 62.3472 396.36 62.3472 394.608C62.3472 392.808 63.6072 391.548 65.2512 391.548C66.7872 391.548 67.5792 392.508 67.8192 393.384L66.7992 393.816C66.6552 393.252 66.2352 392.592 65.2512 392.592ZM69.8639 394.02H73.0199C72.9959 393.192 72.4559 392.544 71.4359 392.544C70.4879 392.544 69.9119 393.276 69.8639 394.02ZM73.1879 395.52L74.1599 395.856C73.8359 396.876 72.9119 397.68 71.5679 397.68C70.0199 397.68 68.6639 396.552 68.6639 394.596C68.6639 392.784 69.9719 391.548 71.4239 391.548C73.1999 391.548 74.1959 392.772 74.1959 394.572C74.1959 394.716 74.1839 394.86 74.1719 394.932H69.8279C69.8519 395.964 70.5959 396.684 71.5679 396.684C72.5039 396.684 72.9719 396.168 73.1879 395.52ZM75.2758 395.952C75.2758 394.92 76.0318 394.344 77.0278 394.2L78.5878 393.972C78.9358 393.924 79.0318 393.744 79.0318 393.54C79.0318 392.976 78.6598 392.508 77.7838 392.508C76.9918 392.508 76.5478 393 76.4758 393.672L75.3958 393.42C75.5158 392.316 76.5118 391.548 77.7598 391.548C79.4878 391.548 80.1598 392.532 80.1598 393.66V396.552C80.1598 397.056 80.2078 397.356 80.2318 397.5H79.1278C79.1038 397.356 79.0678 397.14 79.0678 396.72C78.8158 397.128 78.2398 397.68 77.2078 397.68C76.0318 397.68 75.2758 396.864 75.2758 395.952ZM77.3638 396.732C78.2878 396.732 79.0318 396.288 79.0318 395.028V394.764L77.2678 395.028C76.7878 395.1 76.4278 395.376 76.4278 395.892C76.4278 396.324 76.7878 396.732 77.3638 396.732ZM83.045 394.164V397.5H81.917V391.728H83.021V392.556C83.441 391.836 84.125 391.56 84.797 391.56C86.177 391.56 86.861 392.556 86.861 393.84V397.5H85.733V394.032C85.733 393.228 85.397 392.58 84.389 392.58C83.501 392.58 83.045 393.288 83.045 394.164ZM88.1153 396L89.1353 395.64C89.2073 396.24 89.6633 396.72 90.4793 396.72C91.1153 396.72 91.4633 396.36 91.4633 395.952C91.4633 395.592 91.1993 395.316 90.7193 395.208L89.7353 394.992C88.8353 394.8 88.2953 394.188 88.2953 393.372C88.2953 392.388 89.2193 391.548 90.3473 391.548C91.9313 391.548 92.4233 392.58 92.5433 393.096L91.5473 393.468C91.4993 393.168 91.2593 392.508 90.3473 392.508C89.7713 392.508 89.3873 392.88 89.3873 393.276C89.3873 393.624 89.6033 393.876 90.0473 393.972L90.9833 394.176C92.0273 394.404 92.5793 395.04 92.5793 395.892C92.5793 396.708 91.8953 397.68 90.4673 397.68C88.8833 397.68 88.2113 396.66 88.1153 396Z" fill="#707070"/>
|
||||
<rect x="128.5" y="377.5" width="101" height="31" rx="15.5" fill="#F3F3F3"/>
|
||||
<rect x="128.5" y="377.5" width="101" height="31" rx="15.5" stroke="#D4D4D4"/>
|
||||
<path d="M144.84 396.732C144.84 396.264 145.2 395.892 145.668 395.892C146.136 395.892 146.508 396.264 146.508 396.732C146.508 397.2 146.136 397.56 145.668 397.56C145.2 397.56 144.84 397.2 144.84 396.732ZM148.192 396.732C148.192 396.264 148.552 395.892 149.02 395.892C149.488 395.892 149.86 396.264 149.86 396.732C149.86 397.2 149.488 397.56 149.02 397.56C148.552 397.56 148.192 397.2 148.192 396.732ZM151.543 396.732C151.543 396.264 151.903 395.892 152.371 395.892C152.839 395.892 153.211 396.264 153.211 396.732C153.211 397.2 152.839 397.56 152.371 397.56C151.903 397.56 151.543 397.2 151.543 396.732ZM159.263 388.992L155.147 397.5H154.055L158.171 388.992H159.263ZM165.045 391.728L162.741 397.5H161.601L159.261 391.728H160.533L162.177 396.18L163.833 391.728H165.045ZM168.5 397.5H167.348V392.016H165.464V391.188C166.544 391.164 167.288 390.564 167.468 389.724H168.5V397.5ZM174.603 388.992L170.487 397.5H169.395L173.511 388.992H174.603Z" fill="#707070"/>
|
||||
<path d="M178.432 396.672C179.392 396.672 180.232 395.952 180.232 394.608C180.232 393.276 179.392 392.556 178.432 392.556C177.472 392.556 176.632 393.276 176.632 394.608C176.632 395.952 177.472 396.672 178.432 396.672ZM178.432 391.548C180.16 391.548 181.384 392.856 181.384 394.608C181.384 396.372 180.16 397.68 178.432 397.68C176.704 397.68 175.48 396.372 175.48 394.608C175.48 392.856 176.704 391.548 178.432 391.548ZM185.251 392.592C184.339 392.592 183.499 393.264 183.499 394.608C183.499 395.928 184.327 396.636 185.263 396.636C186.343 396.636 186.739 395.904 186.871 395.448L187.867 395.88C187.591 396.708 186.763 397.68 185.263 397.68C183.583 397.68 182.347 396.36 182.347 394.608C182.347 392.808 183.607 391.548 185.251 391.548C186.787 391.548 187.579 392.508 187.819 393.384L186.799 393.816C186.655 393.252 186.235 392.592 185.251 392.592ZM189.864 394.02H193.02C192.996 393.192 192.456 392.544 191.436 392.544C190.488 392.544 189.912 393.276 189.864 394.02ZM193.188 395.52L194.16 395.856C193.836 396.876 192.912 397.68 191.568 397.68C190.02 397.68 188.664 396.552 188.664 394.596C188.664 392.784 189.972 391.548 191.424 391.548C193.2 391.548 194.196 392.772 194.196 394.572C194.196 394.716 194.184 394.86 194.172 394.932H189.828C189.852 395.964 190.596 396.684 191.568 396.684C192.504 396.684 192.972 396.168 193.188 395.52ZM195.276 395.952C195.276 394.92 196.032 394.344 197.028 394.2L198.588 393.972C198.936 393.924 199.032 393.744 199.032 393.54C199.032 392.976 198.66 392.508 197.784 392.508C196.992 392.508 196.548 393 196.476 393.672L195.396 393.42C195.516 392.316 196.512 391.548 197.76 391.548C199.488 391.548 200.16 392.532 200.16 393.66V396.552C200.16 397.056 200.208 397.356 200.232 397.5H199.128C199.104 397.356 199.068 397.14 199.068 396.72C198.816 397.128 198.24 397.68 197.208 397.68C196.032 397.68 195.276 396.864 195.276 395.952ZM197.364 396.732C198.288 396.732 199.032 396.288 199.032 395.028V394.764L197.268 395.028C196.788 395.1 196.428 395.376 196.428 395.892C196.428 396.324 196.788 396.732 197.364 396.732ZM203.045 394.164V397.5H201.917V391.728H203.021V392.556C203.441 391.836 204.125 391.56 204.797 391.56C206.177 391.56 206.861 392.556 206.861 393.84V397.5H205.733V394.032C205.733 393.228 205.397 392.58 204.389 392.58C203.501 392.58 203.045 393.288 203.045 394.164ZM208.115 396L209.135 395.64C209.207 396.24 209.663 396.72 210.479 396.72C211.115 396.72 211.463 396.36 211.463 395.952C211.463 395.592 211.199 395.316 210.719 395.208L209.735 394.992C208.835 394.8 208.295 394.188 208.295 393.372C208.295 392.388 209.219 391.548 210.347 391.548C211.931 391.548 212.423 392.58 212.543 393.096L211.547 393.468C211.499 393.168 211.259 392.508 210.347 392.508C209.771 392.508 209.387 392.88 209.387 393.276C209.387 393.624 209.603 393.876 210.047 393.972L210.983 394.176C212.027 394.404 212.579 395.04 212.579 395.892C212.579 396.708 211.895 397.68 210.467 397.68C208.883 397.68 208.211 396.66 208.115 396Z" fill="#171717"/>
|
||||
<rect x="23.5" y="334.5" width="123" height="31" rx="5.5" fill="white"/>
|
||||
<rect x="23.5" y="334.5" width="123" height="31" rx="5.5" stroke="#DFDFDF"/>
|
||||
<path d="M37 344H34.3333C33.9797 344 33.6406 344.14 33.3905 344.391C33.1405 344.641 33 344.98 33 345.333V348M37 344H43.6667C44.0203 344 44.3594 344.14 44.6095 344.391C44.8595 344.641 45 344.98 45 345.333V348M37 344V356M33 348V354.667C33 355.02 33.1405 355.359 33.3905 355.609C33.6406 355.86 33.9797 356 34.3333 356H37M33 348H45M45 348V354.667C45 355.02 44.8595 355.359 44.6095 355.609C44.3594 355.86 44.0203 356 43.6667 356H37" stroke="#B2B2B2" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path d="M58.384 349.592C57.472 349.592 56.632 350.264 56.632 351.608C56.632 352.928 57.46 353.636 58.396 353.636C59.476 353.636 59.872 352.904 60.004 352.448L61 352.88C60.724 353.708 59.896 354.68 58.396 354.68C56.716 354.68 55.48 353.36 55.48 351.608C55.48 349.808 56.74 348.548 58.384 348.548C59.92 348.548 60.712 349.508 60.952 350.384L59.932 350.816C59.788 350.252 59.368 349.592 58.384 349.592ZM64.7367 353.672C65.6967 353.672 66.5367 352.952 66.5367 351.608C66.5367 350.276 65.6967 349.556 64.7367 349.556C63.7767 349.556 62.9367 350.276 62.9367 351.608C62.9367 352.952 63.7767 353.672 64.7367 353.672ZM64.7367 348.548C66.4647 348.548 67.6887 349.856 67.6887 351.608C67.6887 353.372 66.4647 354.68 64.7367 354.68C63.0087 354.68 61.7847 353.372 61.7847 351.608C61.7847 349.856 63.0087 348.548 64.7367 348.548ZM72.8773 353.804C72.5653 354.404 71.8453 354.68 71.1733 354.68C69.8293 354.68 69.0133 353.672 69.0133 352.364V348.728H70.1413V352.196C70.1413 352.988 70.5013 353.684 71.4493 353.684C72.3613 353.684 72.8173 353.084 72.8173 352.208V348.728H73.9453V353.432C73.9453 353.888 73.9813 354.296 74.0053 354.5H72.9253C72.9013 354.368 72.8773 354.044 72.8773 353.804ZM76.9982 351.164V354.5H75.8702V348.728H76.9742V349.556C77.3942 348.836 78.0782 348.56 78.7502 348.56C80.1302 348.56 80.8142 349.556 80.8142 350.84V354.5H79.6862V351.032C79.6862 350.228 79.3502 349.58 78.3422 349.58C77.4542 349.58 76.9982 350.288 76.9982 351.164ZM84.1204 346.904V348.728H85.3684V349.748H84.1204V352.748C84.1204 353.276 84.3364 353.54 84.9244 353.54C85.0684 353.54 85.2724 353.516 85.3684 353.492V354.452C85.2724 354.488 84.9844 354.56 84.6004 354.56C83.6164 354.56 82.9924 353.96 82.9924 352.916V349.748H81.8884V348.728H82.2004C82.8244 348.728 83.0884 348.344 83.0884 347.84V346.904H84.1204ZM89.9609 348.668V349.868C89.7929 349.844 89.6249 349.832 89.4689 349.832C88.5209 349.832 87.8849 350.336 87.8849 351.608V354.5H86.7569V348.728H87.8609V349.736C88.2809 348.848 89.0009 348.632 89.5889 348.632C89.7449 348.632 89.9009 348.656 89.9609 348.668ZM92.7789 356.912H91.5429L92.9829 353.864L90.4989 348.728H91.7949L93.5949 352.712L95.3229 348.728H96.5349L92.7789 356.912ZM102.387 355.448H96.2425V354.5H102.387V355.448ZM105.716 349.592C104.804 349.592 103.964 350.264 103.964 351.608C103.964 352.928 104.792 353.636 105.728 353.636C106.808 353.636 107.204 352.904 107.336 352.448L108.332 352.88C108.056 353.708 107.228 354.68 105.728 354.68C104.048 354.68 102.812 353.36 102.812 351.608C102.812 349.808 104.072 348.548 105.716 348.548C107.252 348.548 108.044 349.508 108.284 350.384L107.264 350.816C107.12 350.252 106.7 349.592 105.716 349.592ZM112.069 353.672C113.029 353.672 113.869 352.952 113.869 351.608C113.869 350.276 113.029 349.556 112.069 349.556C111.109 349.556 110.269 350.276 110.269 351.608C110.269 352.952 111.109 353.672 112.069 353.672ZM112.069 348.548C113.797 348.548 115.021 349.856 115.021 351.608C115.021 353.372 113.797 354.68 112.069 354.68C110.341 354.68 109.117 353.372 109.117 351.608C109.117 349.856 110.341 348.548 112.069 348.548ZM117.136 351.596C117.136 352.784 117.748 353.66 118.828 353.66C119.86 353.66 120.496 352.76 120.496 351.572C120.496 350.384 119.872 349.568 118.84 349.568C117.808 349.568 117.136 350.408 117.136 351.596ZM120.508 353.72V353.624C120.232 354.176 119.62 354.656 118.72 354.656C117.028 354.656 115.984 353.312 115.984 351.596C115.984 349.964 117.088 348.572 118.72 348.572C119.74 348.572 120.292 349.076 120.484 349.544V345.812H121.6V353.432C121.6 353.984 121.648 354.404 121.66 354.5H120.568C120.544 354.368 120.508 354.068 120.508 353.72ZM124.251 351.02H127.407C127.383 350.192 126.843 349.544 125.823 349.544C124.875 349.544 124.299 350.276 124.251 351.02ZM127.575 352.52L128.547 352.856C128.223 353.876 127.299 354.68 125.955 354.68C124.407 354.68 123.051 353.552 123.051 351.596C123.051 349.784 124.359 348.548 125.811 348.548C127.587 348.548 128.583 349.772 128.583 351.572C128.583 351.716 128.571 351.86 128.559 351.932H124.215C124.239 352.964 124.983 353.684 125.955 353.684C126.891 353.684 127.359 353.168 127.575 352.52ZM129.483 353L130.503 352.64C130.575 353.24 131.031 353.72 131.847 353.72C132.483 353.72 132.831 353.36 132.831 352.952C132.831 352.592 132.567 352.316 132.087 352.208L131.103 351.992C130.203 351.8 129.663 351.188 129.663 350.372C129.663 349.388 130.587 348.548 131.715 348.548C133.299 348.548 133.791 349.58 133.911 350.096L132.915 350.468C132.867 350.168 132.627 349.508 131.715 349.508C131.139 349.508 130.755 349.88 130.755 350.276C130.755 350.624 130.971 350.876 131.415 350.972L132.351 351.176C133.395 351.404 133.947 352.04 133.947 352.892C133.947 353.708 133.263 354.68 131.835 354.68C130.251 354.68 129.579 353.66 129.483 353Z" fill="#707070"/>
|
||||
<rect x="169.5" y="334.5" width="142" height="31" rx="15.5" fill="#F3F3F3"/>
|
||||
<rect x="169.5" y="334.5" width="142" height="31" rx="15.5" stroke="#D4D4D4"/>
|
||||
<path d="M185.84 353.732C185.84 353.264 186.2 352.892 186.668 352.892C187.136 352.892 187.508 353.264 187.508 353.732C187.508 354.2 187.136 354.56 186.668 354.56C186.2 354.56 185.84 354.2 185.84 353.732ZM189.192 353.732C189.192 353.264 189.552 352.892 190.02 352.892C190.488 352.892 190.86 353.264 190.86 353.732C190.86 354.2 190.488 354.56 190.02 354.56C189.552 354.56 189.192 354.2 189.192 353.732ZM192.543 353.732C192.543 353.264 192.903 352.892 193.371 352.892C193.839 352.892 194.211 353.264 194.211 353.732C194.211 354.2 193.839 354.56 193.371 354.56C192.903 354.56 192.543 354.2 192.543 353.732ZM200.263 345.992L196.147 354.5H195.055L199.171 345.992H200.263ZM206.045 348.728L203.741 354.5H202.601L200.261 348.728H201.533L203.177 353.18L204.833 348.728H206.045ZM209.5 354.5H208.348V349.016H206.464V348.188C207.544 348.164 208.288 347.564 208.468 346.724H209.5V354.5ZM215.603 345.992L211.487 354.5H210.395L214.511 345.992H215.603Z" fill="#707070"/>
|
||||
<path d="M219.384 349.592C218.472 349.592 217.632 350.264 217.632 351.608C217.632 352.928 218.46 353.636 219.396 353.636C220.476 353.636 220.872 352.904 221.004 352.448L222 352.88C221.724 353.708 220.896 354.68 219.396 354.68C217.716 354.68 216.48 353.36 216.48 351.608C216.48 349.808 217.74 348.548 219.384 348.548C220.92 348.548 221.712 349.508 221.952 350.384L220.932 350.816C220.788 350.252 220.368 349.592 219.384 349.592ZM225.737 353.672C226.697 353.672 227.537 352.952 227.537 351.608C227.537 350.276 226.697 349.556 225.737 349.556C224.777 349.556 223.937 350.276 223.937 351.608C223.937 352.952 224.777 353.672 225.737 353.672ZM225.737 348.548C227.465 348.548 228.689 349.856 228.689 351.608C228.689 353.372 227.465 354.68 225.737 354.68C224.009 354.68 222.785 353.372 222.785 351.608C222.785 349.856 224.009 348.548 225.737 348.548ZM233.877 353.804C233.565 354.404 232.845 354.68 232.173 354.68C230.829 354.68 230.013 353.672 230.013 352.364V348.728H231.141V352.196C231.141 352.988 231.501 353.684 232.449 353.684C233.361 353.684 233.817 353.084 233.817 352.208V348.728H234.945V353.432C234.945 353.888 234.981 354.296 235.005 354.5H233.925C233.901 354.368 233.877 354.044 233.877 353.804ZM237.998 351.164V354.5H236.87V348.728H237.974V349.556C238.394 348.836 239.078 348.56 239.75 348.56C241.13 348.56 241.814 349.556 241.814 350.84V354.5H240.686V351.032C240.686 350.228 240.35 349.58 239.342 349.58C238.454 349.58 237.998 350.288 237.998 351.164ZM245.12 346.904V348.728H246.368V349.748H245.12V352.748C245.12 353.276 245.336 353.54 245.924 353.54C246.068 353.54 246.272 353.516 246.368 353.492V354.452C246.272 354.488 245.984 354.56 245.6 354.56C244.616 354.56 243.992 353.96 243.992 352.916V349.748H242.888V348.728H243.2C243.824 348.728 244.088 348.344 244.088 347.84V346.904H245.12ZM250.961 348.668V349.868C250.793 349.844 250.625 349.832 250.469 349.832C249.521 349.832 248.885 350.336 248.885 351.608V354.5H247.757V348.728H248.861V349.736C249.281 348.848 250.001 348.632 250.589 348.632C250.745 348.632 250.901 348.656 250.961 348.668ZM253.779 356.912H252.543L253.983 353.864L251.499 348.728H252.795L254.595 352.712L256.323 348.728H257.535L253.779 356.912ZM263.387 355.448H257.243V354.5H263.387V355.448ZM266.716 349.592C265.804 349.592 264.964 350.264 264.964 351.608C264.964 352.928 265.792 353.636 266.728 353.636C267.808 353.636 268.204 352.904 268.336 352.448L269.332 352.88C269.056 353.708 268.228 354.68 266.728 354.68C265.048 354.68 263.812 353.36 263.812 351.608C263.812 349.808 265.072 348.548 266.716 348.548C268.252 348.548 269.044 349.508 269.284 350.384L268.264 350.816C268.12 350.252 267.7 349.592 266.716 349.592ZM273.069 353.672C274.029 353.672 274.869 352.952 274.869 351.608C274.869 350.276 274.029 349.556 273.069 349.556C272.109 349.556 271.269 350.276 271.269 351.608C271.269 352.952 272.109 353.672 273.069 353.672ZM273.069 348.548C274.797 348.548 276.021 349.856 276.021 351.608C276.021 353.372 274.797 354.68 273.069 354.68C271.341 354.68 270.117 353.372 270.117 351.608C270.117 349.856 271.341 348.548 273.069 348.548ZM278.136 351.596C278.136 352.784 278.748 353.66 279.828 353.66C280.86 353.66 281.496 352.76 281.496 351.572C281.496 350.384 280.872 349.568 279.84 349.568C278.808 349.568 278.136 350.408 278.136 351.596ZM281.508 353.72V353.624C281.232 354.176 280.62 354.656 279.72 354.656C278.028 354.656 276.984 353.312 276.984 351.596C276.984 349.964 278.088 348.572 279.72 348.572C280.74 348.572 281.292 349.076 281.484 349.544V345.812H282.6V353.432C282.6 353.984 282.648 354.404 282.66 354.5H281.568C281.544 354.368 281.508 354.068 281.508 353.72ZM285.251 351.02H288.407C288.383 350.192 287.843 349.544 286.823 349.544C285.875 349.544 285.299 350.276 285.251 351.02ZM288.575 352.52L289.547 352.856C289.223 353.876 288.299 354.68 286.955 354.68C285.407 354.68 284.051 353.552 284.051 351.596C284.051 349.784 285.359 348.548 286.811 348.548C288.587 348.548 289.583 349.772 289.583 351.572C289.583 351.716 289.571 351.86 289.559 351.932H285.215C285.239 352.964 285.983 353.684 286.955 353.684C287.891 353.684 288.359 353.168 288.575 352.52ZM290.483 353L291.503 352.64C291.575 353.24 292.031 353.72 292.847 353.72C293.483 353.72 293.831 353.36 293.831 352.952C293.831 352.592 293.567 352.316 293.087 352.208L292.103 351.992C291.203 351.8 290.663 351.188 290.663 350.372C290.663 349.388 291.587 348.548 292.715 348.548C294.299 348.548 294.791 349.58 294.911 350.096L293.915 350.468C293.867 350.168 293.627 349.508 292.715 349.508C292.139 349.508 291.755 349.88 291.755 350.276C291.755 350.624 291.971 350.876 292.415 350.972L293.351 351.176C294.395 351.404 294.947 352.04 294.947 352.892C294.947 353.708 294.263 354.68 292.835 354.68C291.251 354.68 290.579 353.66 290.483 353Z" fill="#171717"/>
|
||||
<rect x="23.5" y="291.5" width="76" height="31" rx="5.5" fill="white"/>
|
||||
<rect x="23.5" y="291.5" width="76" height="31" rx="5.5" stroke="#DFDFDF"/>
|
||||
<path d="M37 301H34.3333C33.9797 301 33.6406 301.14 33.3905 301.391C33.1405 301.641 33 301.98 33 302.333V305M37 301H43.6667C44.0203 301 44.3594 301.14 44.6095 301.391C44.8595 301.641 45 301.98 45 302.333V305M37 301V313M33 305V311.667C33 312.02 33.1405 312.359 33.3905 312.609C33.6406 312.86 33.9797 313 34.3333 313H37M33 305H45M45 305V311.667C45 312.02 44.8595 312.359 44.6095 312.609C44.3594 312.86 44.0203 313 43.6667 313H37" stroke="#B2B2B2" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path d="M55.42 310L56.44 309.64C56.512 310.24 56.968 310.72 57.784 310.72C58.42 310.72 58.768 310.36 58.768 309.952C58.768 309.592 58.504 309.316 58.024 309.208L57.04 308.992C56.14 308.8 55.6 308.188 55.6 307.372C55.6 306.388 56.524 305.548 57.652 305.548C59.236 305.548 59.728 306.58 59.848 307.096L58.852 307.468C58.804 307.168 58.564 306.508 57.652 306.508C57.076 306.508 56.692 306.88 56.692 307.276C56.692 307.624 56.908 307.876 57.352 307.972L58.288 308.176C59.332 308.404 59.884 309.04 59.884 309.892C59.884 310.708 59.2 311.68 57.772 311.68C56.188 311.68 55.516 310.66 55.42 310ZM62.8978 303.904V305.728H64.1458V306.748H62.8978V309.748C62.8978 310.276 63.1138 310.54 63.7018 310.54C63.8458 310.54 64.0498 310.516 64.1458 310.492V311.452C64.0498 311.488 63.7618 311.56 63.3778 311.56C62.3938 311.56 61.7698 310.96 61.7698 309.916V306.748H60.6658V305.728H60.9778C61.6018 305.728 61.8658 305.344 61.8658 304.84V303.904H62.8978ZM65.2914 309.952C65.2914 308.92 66.0474 308.344 67.0434 308.2L68.6034 307.972C68.9514 307.924 69.0474 307.744 69.0474 307.54C69.0474 306.976 68.6754 306.508 67.7994 306.508C67.0074 306.508 66.5634 307 66.4914 307.672L65.4114 307.42C65.5314 306.316 66.5274 305.548 67.7754 305.548C69.5034 305.548 70.1754 306.532 70.1754 307.66V310.552C70.1754 311.056 70.2234 311.356 70.2474 311.5H69.1434C69.1194 311.356 69.0834 311.14 69.0834 310.72C68.8314 311.128 68.2554 311.68 67.2234 311.68C66.0474 311.68 65.2914 310.864 65.2914 309.952ZM67.3794 310.732C68.3034 310.732 69.0474 310.288 69.0474 309.028V308.764L67.2834 309.028C66.8034 309.1 66.4434 309.376 66.4434 309.892C66.4434 310.324 66.8034 310.732 67.3794 310.732ZM73.4447 303.904V305.728H74.6927V306.748H73.4447V309.748C73.4447 310.276 73.6607 310.54 74.2487 310.54C74.3927 310.54 74.5967 310.516 74.6927 310.492V311.452C74.5967 311.488 74.3087 311.56 73.9247 311.56C72.9407 311.56 72.3167 310.96 72.3167 309.916V306.748H71.2127V305.728H71.5247C72.1487 305.728 72.4127 305.344 72.4127 304.84V303.904H73.4447ZM76.8717 308.02H80.0277C80.0037 307.192 79.4637 306.544 78.4437 306.544C77.4957 306.544 76.9197 307.276 76.8717 308.02ZM80.1957 309.52L81.1677 309.856C80.8437 310.876 79.9197 311.68 78.5757 311.68C77.0277 311.68 75.6717 310.552 75.6717 308.596C75.6717 306.784 76.9797 305.548 78.4317 305.548C80.2077 305.548 81.2037 306.772 81.2037 308.572C81.2037 308.716 81.1917 308.86 81.1797 308.932H76.8357C76.8597 309.964 77.6037 310.684 78.5757 310.684C79.5117 310.684 79.9797 310.168 80.1957 309.52ZM82.1036 310L83.1236 309.64C83.1956 310.24 83.6516 310.72 84.4676 310.72C85.1036 310.72 85.4516 310.36 85.4516 309.952C85.4516 309.592 85.1876 309.316 84.7076 309.208L83.7236 308.992C82.8236 308.8 82.2836 308.188 82.2836 307.372C82.2836 306.388 83.2076 305.548 84.3356 305.548C85.9196 305.548 86.4116 306.58 86.5316 307.096L85.5356 307.468C85.4876 307.168 85.2476 306.508 84.3356 306.508C83.7596 306.508 83.3756 306.88 83.3756 307.276C83.3756 307.624 83.5916 307.876 84.0356 307.972L84.9716 308.176C86.0156 308.404 86.5676 309.04 86.5676 309.892C86.5676 310.708 85.8836 311.68 84.4556 311.68C82.8716 311.68 82.1996 310.66 82.1036 310Z" fill="#707070"/>
|
||||
<rect x="122.5" y="291.5" width="95" height="31" rx="15.5" fill="#F3F3F3"/>
|
||||
<rect x="122.5" y="291.5" width="95" height="31" rx="15.5" stroke="#D4D4D4"/>
|
||||
<path d="M138.84 310.732C138.84 310.264 139.2 309.892 139.668 309.892C140.136 309.892 140.508 310.264 140.508 310.732C140.508 311.2 140.136 311.56 139.668 311.56C139.2 311.56 138.84 311.2 138.84 310.732ZM142.192 310.732C142.192 310.264 142.552 309.892 143.02 309.892C143.488 309.892 143.86 310.264 143.86 310.732C143.86 311.2 143.488 311.56 143.02 311.56C142.552 311.56 142.192 311.2 142.192 310.732ZM145.543 310.732C145.543 310.264 145.903 309.892 146.371 309.892C146.839 309.892 147.211 310.264 147.211 310.732C147.211 311.2 146.839 311.56 146.371 311.56C145.903 311.56 145.543 311.2 145.543 310.732ZM153.263 302.992L149.147 311.5H148.055L152.171 302.992H153.263ZM159.045 305.728L156.741 311.5H155.601L153.261 305.728H154.533L156.177 310.18L157.833 305.728H159.045ZM162.5 311.5H161.348V306.016H159.464V305.188C160.544 305.164 161.288 304.564 161.468 303.724H162.5V311.5ZM168.603 302.992L164.487 311.5H163.395L167.511 302.992H168.603Z" fill="#707070"/>
|
||||
<path d="M169.42 310L170.44 309.64C170.512 310.24 170.968 310.72 171.784 310.72C172.42 310.72 172.768 310.36 172.768 309.952C172.768 309.592 172.504 309.316 172.024 309.208L171.04 308.992C170.14 308.8 169.6 308.188 169.6 307.372C169.6 306.388 170.524 305.548 171.652 305.548C173.236 305.548 173.728 306.58 173.848 307.096L172.852 307.468C172.804 307.168 172.564 306.508 171.652 306.508C171.076 306.508 170.692 306.88 170.692 307.276C170.692 307.624 170.908 307.876 171.352 307.972L172.288 308.176C173.332 308.404 173.884 309.04 173.884 309.892C173.884 310.708 173.2 311.68 171.772 311.68C170.188 311.68 169.516 310.66 169.42 310ZM176.898 303.904V305.728H178.146V306.748H176.898V309.748C176.898 310.276 177.114 310.54 177.702 310.54C177.846 310.54 178.05 310.516 178.146 310.492V311.452C178.05 311.488 177.762 311.56 177.378 311.56C176.394 311.56 175.77 310.96 175.77 309.916V306.748H174.666V305.728H174.978C175.602 305.728 175.866 305.344 175.866 304.84V303.904H176.898ZM179.291 309.952C179.291 308.92 180.047 308.344 181.043 308.2L182.603 307.972C182.951 307.924 183.047 307.744 183.047 307.54C183.047 306.976 182.675 306.508 181.799 306.508C181.007 306.508 180.563 307 180.491 307.672L179.411 307.42C179.531 306.316 180.527 305.548 181.775 305.548C183.503 305.548 184.175 306.532 184.175 307.66V310.552C184.175 311.056 184.223 311.356 184.247 311.5H183.143C183.119 311.356 183.083 311.14 183.083 310.72C182.831 311.128 182.255 311.68 181.223 311.68C180.047 311.68 179.291 310.864 179.291 309.952ZM181.379 310.732C182.303 310.732 183.047 310.288 183.047 309.028V308.764L181.283 309.028C180.803 309.1 180.443 309.376 180.443 309.892C180.443 310.324 180.803 310.732 181.379 310.732ZM187.445 303.904V305.728H188.693V306.748H187.445V309.748C187.445 310.276 187.661 310.54 188.249 310.54C188.393 310.54 188.597 310.516 188.693 310.492V311.452C188.597 311.488 188.309 311.56 187.925 311.56C186.941 311.56 186.317 310.96 186.317 309.916V306.748H185.213V305.728H185.525C186.149 305.728 186.413 305.344 186.413 304.84V303.904H187.445ZM190.872 308.02H194.028C194.004 307.192 193.464 306.544 192.444 306.544C191.496 306.544 190.92 307.276 190.872 308.02ZM194.196 309.52L195.168 309.856C194.844 310.876 193.92 311.68 192.576 311.68C191.028 311.68 189.672 310.552 189.672 308.596C189.672 306.784 190.98 305.548 192.432 305.548C194.208 305.548 195.204 306.772 195.204 308.572C195.204 308.716 195.192 308.86 195.18 308.932H190.836C190.86 309.964 191.604 310.684 192.576 310.684C193.512 310.684 193.98 310.168 194.196 309.52ZM196.104 310L197.124 309.64C197.196 310.24 197.652 310.72 198.468 310.72C199.104 310.72 199.452 310.36 199.452 309.952C199.452 309.592 199.188 309.316 198.708 309.208L197.724 308.992C196.824 308.8 196.284 308.188 196.284 307.372C196.284 306.388 197.208 305.548 198.336 305.548C199.92 305.548 200.412 306.58 200.532 307.096L199.536 307.468C199.488 307.168 199.248 306.508 198.336 306.508C197.76 306.508 197.376 306.88 197.376 307.276C197.376 307.624 197.592 307.876 198.036 307.972L198.972 308.176C200.016 308.404 200.568 309.04 200.568 309.892C200.568 310.708 199.884 311.68 198.456 311.68C196.872 311.68 196.2 310.66 196.104 310Z" fill="#171717"/>
|
||||
<rect x="23.5" y="248.5" width="72" height="31" rx="5.5" fill="white"/>
|
||||
<rect x="23.5" y="248.5" width="72" height="31" rx="5.5" stroke="#DFDFDF"/>
|
||||
<path d="M37 258H34.3333C33.9797 258 33.6406 258.14 33.3905 258.391C33.1405 258.641 33 258.98 33 259.333V262M37 258H43.6667C44.0203 258 44.3594 258.14 44.6095 258.391C44.8595 258.641 45 258.98 45 259.333V262M37 258V270M33 262V268.667C33 269.02 33.1405 269.359 33.3905 269.609C33.6406 269.86 33.9797 270 34.3333 270H37M33 262H45M45 262V268.667C45 269.02 44.8595 269.359 44.6095 269.609C44.3594 269.86 44.0203 270 43.6667 270H37" stroke="#B2B2B2" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path d="M58.384 263.592C57.472 263.592 56.632 264.264 56.632 265.608C56.632 266.928 57.46 267.636 58.396 267.636C59.476 267.636 59.872 266.904 60.004 266.448L61 266.88C60.724 267.708 59.896 268.68 58.396 268.68C56.716 268.68 55.48 267.36 55.48 265.608C55.48 263.808 56.74 262.548 58.384 262.548C59.92 262.548 60.712 263.508 60.952 264.384L59.932 264.816C59.788 264.252 59.368 263.592 58.384 263.592ZM63.4393 268.5H62.3233V262.728H63.4393V268.5ZM62.0713 260.544C62.0713 260.088 62.4313 259.728 62.8753 259.728C63.3313 259.728 63.6913 260.088 63.6913 260.544C63.6913 260.988 63.3313 261.348 62.8753 261.348C62.4313 261.348 62.0713 260.988 62.0713 260.544ZM66.8704 260.904V262.728H68.1184V263.748H66.8704V266.748C66.8704 267.276 67.0864 267.54 67.6744 267.54C67.8184 267.54 68.0224 267.516 68.1184 267.492V268.452C68.0224 268.488 67.7344 268.56 67.3504 268.56C66.3664 268.56 65.7424 267.96 65.7424 266.916V263.748H64.6384V262.728H64.9504C65.5744 262.728 65.8384 262.344 65.8384 261.84V260.904H66.8704ZM70.7401 268.5H69.6241V262.728H70.7401V268.5ZM69.3721 260.544C69.3721 260.088 69.7321 259.728 70.1761 259.728C70.6321 259.728 70.9921 260.088 70.9921 260.544C70.9921 260.988 70.6321 261.348 70.1761 261.348C69.7321 261.348 69.3721 260.988 69.3721 260.544ZM73.3912 265.02H76.5472C76.5232 264.192 75.9832 263.544 74.9632 263.544C74.0152 263.544 73.4392 264.276 73.3912 265.02ZM76.7152 266.52L77.6872 266.856C77.3632 267.876 76.4392 268.68 75.0952 268.68C73.5472 268.68 72.1912 267.552 72.1912 265.596C72.1912 263.784 73.4992 262.548 74.9512 262.548C76.7272 262.548 77.7232 263.772 77.7232 265.572C77.7232 265.716 77.7112 265.86 77.6992 265.932H73.3552C73.3792 266.964 74.1232 267.684 75.0952 267.684C76.0312 267.684 76.4992 267.168 76.7152 266.52ZM78.6231 267L79.6431 266.64C79.7151 267.24 80.1711 267.72 80.9871 267.72C81.6231 267.72 81.9711 267.36 81.9711 266.952C81.9711 266.592 81.7071 266.316 81.2271 266.208L80.2431 265.992C79.3431 265.8 78.8031 265.188 78.8031 264.372C78.8031 263.388 79.7271 262.548 80.8551 262.548C82.4391 262.548 82.9311 263.58 83.0511 264.096L82.0551 264.468C82.0071 264.168 81.7671 263.508 80.8551 263.508C80.2791 263.508 79.8951 263.88 79.8951 264.276C79.8951 264.624 80.1111 264.876 80.5551 264.972L81.4911 265.176C82.5351 265.404 83.0871 266.04 83.0871 266.892C83.0871 267.708 82.4031 268.68 80.9751 268.68C79.3911 268.68 78.7191 267.66 78.6231 267Z" fill="#707070"/>
|
||||
<rect x="118.5" y="248.5" width="91" height="31" rx="15.5" fill="#F3F3F3"/>
|
||||
<rect x="118.5" y="248.5" width="91" height="31" rx="15.5" stroke="#D4D4D4"/>
|
||||
<path d="M134.84 267.732C134.84 267.264 135.2 266.892 135.668 266.892C136.136 266.892 136.508 267.264 136.508 267.732C136.508 268.2 136.136 268.56 135.668 268.56C135.2 268.56 134.84 268.2 134.84 267.732ZM138.192 267.732C138.192 267.264 138.552 266.892 139.02 266.892C139.488 266.892 139.86 267.264 139.86 267.732C139.86 268.2 139.488 268.56 139.02 268.56C138.552 268.56 138.192 268.2 138.192 267.732ZM141.543 267.732C141.543 267.264 141.903 266.892 142.371 266.892C142.839 266.892 143.211 267.264 143.211 267.732C143.211 268.2 142.839 268.56 142.371 268.56C141.903 268.56 141.543 268.2 141.543 267.732ZM149.263 259.992L145.147 268.5H144.055L148.171 259.992H149.263ZM155.045 262.728L152.741 268.5H151.601L149.261 262.728H150.533L152.177 267.18L153.833 262.728H155.045ZM158.5 268.5H157.348V263.016H155.464V262.188C156.544 262.164 157.288 261.564 157.468 260.724H158.5V268.5ZM164.603 259.992L160.487 268.5H159.395L163.511 259.992H164.603Z" fill="#707070"/>
|
||||
<path d="M168.384 263.592C167.472 263.592 166.632 264.264 166.632 265.608C166.632 266.928 167.46 267.636 168.396 267.636C169.476 267.636 169.872 266.904 170.004 266.448L171 266.88C170.724 267.708 169.896 268.68 168.396 268.68C166.716 268.68 165.48 267.36 165.48 265.608C165.48 263.808 166.74 262.548 168.384 262.548C169.92 262.548 170.712 263.508 170.952 264.384L169.932 264.816C169.788 264.252 169.368 263.592 168.384 263.592ZM173.439 268.5H172.323V262.728H173.439V268.5ZM172.071 260.544C172.071 260.088 172.431 259.728 172.875 259.728C173.331 259.728 173.691 260.088 173.691 260.544C173.691 260.988 173.331 261.348 172.875 261.348C172.431 261.348 172.071 260.988 172.071 260.544ZM176.87 260.904V262.728H178.118V263.748H176.87V266.748C176.87 267.276 177.086 267.54 177.674 267.54C177.818 267.54 178.022 267.516 178.118 267.492V268.452C178.022 268.488 177.734 268.56 177.35 268.56C176.366 268.56 175.742 267.96 175.742 266.916V263.748H174.638V262.728H174.95C175.574 262.728 175.838 262.344 175.838 261.84V260.904H176.87ZM180.74 268.5H179.624V262.728H180.74V268.5ZM179.372 260.544C179.372 260.088 179.732 259.728 180.176 259.728C180.632 259.728 180.992 260.088 180.992 260.544C180.992 260.988 180.632 261.348 180.176 261.348C179.732 261.348 179.372 260.988 179.372 260.544ZM183.391 265.02H186.547C186.523 264.192 185.983 263.544 184.963 263.544C184.015 263.544 183.439 264.276 183.391 265.02ZM186.715 266.52L187.687 266.856C187.363 267.876 186.439 268.68 185.095 268.68C183.547 268.68 182.191 267.552 182.191 265.596C182.191 263.784 183.499 262.548 184.951 262.548C186.727 262.548 187.723 263.772 187.723 265.572C187.723 265.716 187.711 265.86 187.699 265.932H183.355C183.379 266.964 184.123 267.684 185.095 267.684C186.031 267.684 186.499 267.168 186.715 266.52ZM188.623 267L189.643 266.64C189.715 267.24 190.171 267.72 190.987 267.72C191.623 267.72 191.971 267.36 191.971 266.952C191.971 266.592 191.707 266.316 191.227 266.208L190.243 265.992C189.343 265.8 188.803 265.188 188.803 264.372C188.803 263.388 189.727 262.548 190.855 262.548C192.439 262.548 192.931 263.58 193.051 264.096L192.055 264.468C192.007 264.168 191.767 263.508 190.855 263.508C190.279 263.508 189.895 263.88 189.895 264.276C189.895 264.624 190.111 264.876 190.555 264.972L191.491 265.176C192.535 265.404 193.087 266.04 193.087 266.892C193.087 267.708 192.403 268.68 190.975 268.68C189.391 268.68 188.719 267.66 188.623 267Z" fill="#171717"/>
|
||||
<rect x="23.5" y="205.5" width="100" height="31" rx="5.5" fill="white"/>
|
||||
<rect x="23.5" y="205.5" width="100" height="31" rx="5.5" stroke="#DFDFDF"/>
|
||||
<path d="M37 215H34.3333C33.9797 215 33.6406 215.14 33.3905 215.391C33.1405 215.641 33 215.98 33 216.333V219M37 215H43.6667C44.0203 215 44.3594 215.14 44.6095 215.391C44.8595 215.641 45 215.98 45 216.333V219M37 215V227M33 219V225.667C33 226.02 33.1405 226.359 33.3905 226.609C33.6406 226.86 33.9797 227 34.3333 227H37M33 219H45M45 219V225.667C45 226.02 44.8595 226.359 44.6095 226.609C44.3594 226.86 44.0203 227 43.6667 227H37" stroke="#B2B2B2" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path d="M58.384 220.592C57.472 220.592 56.632 221.264 56.632 222.608C56.632 223.928 57.46 224.636 58.396 224.636C59.476 224.636 59.872 223.904 60.004 223.448L61 223.88C60.724 224.708 59.896 225.68 58.396 225.68C56.716 225.68 55.48 224.36 55.48 222.608C55.48 220.808 56.74 219.548 58.384 219.548C59.92 219.548 60.712 220.508 60.952 221.384L59.932 221.816C59.788 221.252 59.368 220.592 58.384 220.592ZM64.7367 224.672C65.6967 224.672 66.5367 223.952 66.5367 222.608C66.5367 221.276 65.6967 220.556 64.7367 220.556C63.7767 220.556 62.9367 221.276 62.9367 222.608C62.9367 223.952 63.7767 224.672 64.7367 224.672ZM64.7367 219.548C66.4647 219.548 67.6887 220.856 67.6887 222.608C67.6887 224.372 66.4647 225.68 64.7367 225.68C63.0087 225.68 61.7847 224.372 61.7847 222.608C61.7847 220.856 63.0087 219.548 64.7367 219.548ZM70.2599 222.164V225.5H69.1319V219.728H70.2359V220.556C70.6559 219.836 71.3399 219.56 72.0119 219.56C73.3919 219.56 74.0759 220.556 74.0759 221.84V225.5H72.9479V222.032C72.9479 221.228 72.6119 220.58 71.6039 220.58C70.7159 220.58 70.2599 221.288 70.2599 222.164ZM77.3822 217.904V219.728H78.6302V220.748H77.3822V223.748C77.3822 224.276 77.5982 224.54 78.1862 224.54C78.3302 224.54 78.5342 224.516 78.6302 224.492V225.452C78.5342 225.488 78.2462 225.56 77.8622 225.56C76.8782 225.56 76.2542 224.96 76.2542 223.916V220.748H75.1502V219.728H75.4622C76.0862 219.728 76.3502 219.344 76.3502 218.84V217.904H77.3822ZM81.2518 225.5H80.1358V219.728H81.2518V225.5ZM79.8838 217.544C79.8838 217.088 80.2438 216.728 80.6878 216.728C81.1438 216.728 81.5038 217.088 81.5038 217.544C81.5038 217.988 81.1438 218.348 80.6878 218.348C80.2438 218.348 79.8838 217.988 79.8838 217.544ZM84.2989 222.164V225.5H83.1709V219.728H84.2749V220.556C84.6949 219.836 85.3789 219.56 86.0509 219.56C87.4309 219.56 88.1149 220.556 88.1149 221.84V225.5H86.9869V222.032C86.9869 221.228 86.6509 220.58 85.6429 220.58C84.7549 220.58 84.2989 221.288 84.2989 222.164ZM90.6412 222.02H93.7972C93.7732 221.192 93.2332 220.544 92.2132 220.544C91.2652 220.544 90.6892 221.276 90.6412 222.02ZM93.9652 223.52L94.9372 223.856C94.6132 224.876 93.6892 225.68 92.3452 225.68C90.7972 225.68 89.4412 224.552 89.4412 222.596C89.4412 220.784 90.7492 219.548 92.2012 219.548C93.9772 219.548 94.9732 220.772 94.9732 222.572C94.9732 222.716 94.9612 222.86 94.9492 222.932H90.6052C90.6292 223.964 91.3732 224.684 92.3452 224.684C93.2812 224.684 93.7492 224.168 93.9652 223.52ZM97.5411 222.164V225.5H96.4131V219.728H97.5171V220.556C97.9371 219.836 98.6211 219.56 99.2931 219.56C100.673 219.56 101.357 220.556 101.357 221.84V225.5H100.229V222.032C100.229 221.228 99.8931 220.58 98.8851 220.58C97.9971 220.58 97.5411 221.288 97.5411 222.164ZM104.663 217.904V219.728H105.911V220.748H104.663V223.748C104.663 224.276 104.879 224.54 105.467 224.54C105.611 224.54 105.815 224.516 105.911 224.492V225.452C105.815 225.488 105.527 225.56 105.143 225.56C104.159 225.56 103.535 224.96 103.535 223.916V220.748H102.431V219.728H102.743C103.367 219.728 103.631 219.344 103.631 218.84V217.904H104.663ZM106.936 224L107.956 223.64C108.028 224.24 108.484 224.72 109.3 224.72C109.936 224.72 110.284 224.36 110.284 223.952C110.284 223.592 110.02 223.316 109.54 223.208L108.556 222.992C107.656 222.8 107.116 222.188 107.116 221.372C107.116 220.388 108.04 219.548 109.168 219.548C110.752 219.548 111.244 220.58 111.364 221.096L110.368 221.468C110.32 221.168 110.08 220.508 109.168 220.508C108.592 220.508 108.208 220.88 108.208 221.276C108.208 221.624 108.424 221.876 108.868 221.972L109.804 222.176C110.848 222.404 111.4 223.04 111.4 223.892C111.4 224.708 110.716 225.68 109.288 225.68C107.704 225.68 107.032 224.66 106.936 224Z" fill="#707070"/>
|
||||
<rect x="146.5" y="205.5" width="119" height="31" rx="15.5" fill="#F3F3F3"/>
|
||||
<rect x="146.5" y="205.5" width="119" height="31" rx="15.5" stroke="#D4D4D4"/>
|
||||
<path d="M162.84 224.732C162.84 224.264 163.2 223.892 163.668 223.892C164.136 223.892 164.508 224.264 164.508 224.732C164.508 225.2 164.136 225.56 163.668 225.56C163.2 225.56 162.84 225.2 162.84 224.732ZM166.192 224.732C166.192 224.264 166.552 223.892 167.02 223.892C167.488 223.892 167.86 224.264 167.86 224.732C167.86 225.2 167.488 225.56 167.02 225.56C166.552 225.56 166.192 225.2 166.192 224.732ZM169.543 224.732C169.543 224.264 169.903 223.892 170.371 223.892C170.839 223.892 171.211 224.264 171.211 224.732C171.211 225.2 170.839 225.56 170.371 225.56C169.903 225.56 169.543 225.2 169.543 224.732ZM177.263 216.992L173.147 225.5H172.055L176.171 216.992H177.263ZM183.045 219.728L180.741 225.5H179.601L177.261 219.728H178.533L180.177 224.18L181.833 219.728H183.045ZM186.5 225.5H185.348V220.016H183.464V219.188C184.544 219.164 185.288 218.564 185.468 217.724H186.5V225.5ZM192.603 216.992L188.487 225.5H187.395L191.511 216.992H192.603Z" fill="#707070"/>
|
||||
<path d="M196.384 220.592C195.472 220.592 194.632 221.264 194.632 222.608C194.632 223.928 195.46 224.636 196.396 224.636C197.476 224.636 197.872 223.904 198.004 223.448L199 223.88C198.724 224.708 197.896 225.68 196.396 225.68C194.716 225.68 193.48 224.36 193.48 222.608C193.48 220.808 194.74 219.548 196.384 219.548C197.92 219.548 198.712 220.508 198.952 221.384L197.932 221.816C197.788 221.252 197.368 220.592 196.384 220.592ZM202.737 224.672C203.697 224.672 204.537 223.952 204.537 222.608C204.537 221.276 203.697 220.556 202.737 220.556C201.777 220.556 200.937 221.276 200.937 222.608C200.937 223.952 201.777 224.672 202.737 224.672ZM202.737 219.548C204.465 219.548 205.689 220.856 205.689 222.608C205.689 224.372 204.465 225.68 202.737 225.68C201.009 225.68 199.785 224.372 199.785 222.608C199.785 220.856 201.009 219.548 202.737 219.548ZM208.26 222.164V225.5H207.132V219.728H208.236V220.556C208.656 219.836 209.34 219.56 210.012 219.56C211.392 219.56 212.076 220.556 212.076 221.84V225.5H210.948V222.032C210.948 221.228 210.612 220.58 209.604 220.58C208.716 220.58 208.26 221.288 208.26 222.164ZM215.382 217.904V219.728H216.63V220.748H215.382V223.748C215.382 224.276 215.598 224.54 216.186 224.54C216.33 224.54 216.534 224.516 216.63 224.492V225.452C216.534 225.488 216.246 225.56 215.862 225.56C214.878 225.56 214.254 224.96 214.254 223.916V220.748H213.15V219.728H213.462C214.086 219.728 214.35 219.344 214.35 218.84V217.904H215.382ZM219.252 225.5H218.136V219.728H219.252V225.5ZM217.884 217.544C217.884 217.088 218.244 216.728 218.688 216.728C219.144 216.728 219.504 217.088 219.504 217.544C219.504 217.988 219.144 218.348 218.688 218.348C218.244 218.348 217.884 217.988 217.884 217.544ZM222.299 222.164V225.5H221.171V219.728H222.275V220.556C222.695 219.836 223.379 219.56 224.051 219.56C225.431 219.56 226.115 220.556 226.115 221.84V225.5H224.987V222.032C224.987 221.228 224.651 220.58 223.643 220.58C222.755 220.58 222.299 221.288 222.299 222.164ZM228.641 222.02H231.797C231.773 221.192 231.233 220.544 230.213 220.544C229.265 220.544 228.689 221.276 228.641 222.02ZM231.965 223.52L232.937 223.856C232.613 224.876 231.689 225.68 230.345 225.68C228.797 225.68 227.441 224.552 227.441 222.596C227.441 220.784 228.749 219.548 230.201 219.548C231.977 219.548 232.973 220.772 232.973 222.572C232.973 222.716 232.961 222.86 232.949 222.932H228.605C228.629 223.964 229.373 224.684 230.345 224.684C231.281 224.684 231.749 224.168 231.965 223.52ZM235.541 222.164V225.5H234.413V219.728H235.517V220.556C235.937 219.836 236.621 219.56 237.293 219.56C238.673 219.56 239.357 220.556 239.357 221.84V225.5H238.229V222.032C238.229 221.228 237.893 220.58 236.885 220.58C235.997 220.58 235.541 221.288 235.541 222.164ZM242.663 217.904V219.728H243.911V220.748H242.663V223.748C242.663 224.276 242.879 224.54 243.467 224.54C243.611 224.54 243.815 224.516 243.911 224.492V225.452C243.815 225.488 243.527 225.56 243.143 225.56C242.159 225.56 241.535 224.96 241.535 223.916V220.748H240.431V219.728H240.743C241.367 219.728 241.631 219.344 241.631 218.84V217.904H242.663ZM244.936 224L245.956 223.64C246.028 224.24 246.484 224.72 247.3 224.72C247.936 224.72 248.284 224.36 248.284 223.952C248.284 223.592 248.02 223.316 247.54 223.208L246.556 222.992C245.656 222.8 245.116 222.188 245.116 221.372C245.116 220.388 246.04 219.548 247.168 219.548C248.752 219.548 249.244 220.58 249.364 221.096L248.368 221.468C248.32 221.168 248.08 220.508 247.168 220.508C246.592 220.508 246.208 220.88 246.208 221.276C246.208 221.624 246.424 221.876 246.868 221.972L247.804 222.176C248.848 222.404 249.4 223.04 249.4 223.892C249.4 224.708 248.716 225.68 247.288 225.68C245.704 225.68 245.032 224.66 244.936 224Z" fill="#171717"/>
|
||||
<rect x="23.5" y="162.5" width="94" height="31" rx="5.5" fill="white"/>
|
||||
<rect x="23.5" y="162.5" width="94" height="31" rx="5.5" stroke="#DFDFDF"/>
|
||||
<path d="M37 172H34.3333C33.9797 172 33.6406 172.14 33.3905 172.391C33.1405 172.641 33 172.98 33 173.333V176M37 172H43.6667C44.0203 172 44.3594 172.14 44.6095 172.391C44.8595 172.641 45 172.98 45 173.333V176M37 172V184M33 176V182.667C33 183.02 33.1405 183.359 33.3905 183.609C33.6406 183.86 33.9797 184 34.3333 184H37M33 176H45M45 176V182.667C45 183.02 44.8595 183.359 44.6095 183.609C44.3594 183.86 44.0203 184 43.6667 184H37" stroke="#B2B2B2" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path d="M58.384 177.592C57.472 177.592 56.632 178.264 56.632 179.608C56.632 180.928 57.46 181.636 58.396 181.636C59.476 181.636 59.872 180.904 60.004 180.448L61 180.88C60.724 181.708 59.896 182.68 58.396 182.68C56.716 182.68 55.48 181.36 55.48 179.608C55.48 177.808 56.74 176.548 58.384 176.548C59.92 176.548 60.712 177.508 60.952 178.384L59.932 178.816C59.788 178.252 59.368 177.592 58.384 177.592ZM64.7367 181.672C65.6967 181.672 66.5367 180.952 66.5367 179.608C66.5367 178.276 65.6967 177.556 64.7367 177.556C63.7767 177.556 62.9367 178.276 62.9367 179.608C62.9367 180.952 63.7767 181.672 64.7367 181.672ZM64.7367 176.548C66.4647 176.548 67.6887 177.856 67.6887 179.608C67.6887 181.372 66.4647 182.68 64.7367 182.68C63.0087 182.68 61.7847 181.372 61.7847 179.608C61.7847 177.856 63.0087 176.548 64.7367 176.548ZM72.8773 181.804C72.5653 182.404 71.8453 182.68 71.1733 182.68C69.8293 182.68 69.0133 181.672 69.0133 180.364V176.728H70.1413V180.196C70.1413 180.988 70.5013 181.684 71.4493 181.684C72.3613 181.684 72.8173 181.084 72.8173 180.208V176.728H73.9453V181.432C73.9453 181.888 73.9813 182.296 74.0053 182.5H72.9253C72.9013 182.368 72.8773 182.044 72.8773 181.804ZM76.9982 179.164V182.5H75.8702V176.728H76.9742V177.556C77.3942 176.836 78.0782 176.56 78.7502 176.56C80.1302 176.56 80.8142 177.556 80.8142 178.84V182.5H79.6862V179.032C79.6862 178.228 79.3502 177.58 78.3422 177.58C77.4542 177.58 76.9982 178.288 76.9982 179.164ZM84.1204 174.904V176.728H85.3684V177.748H84.1204V180.748C84.1204 181.276 84.3364 181.54 84.9244 181.54C85.0684 181.54 85.2724 181.516 85.3684 181.492V182.452C85.2724 182.488 84.9844 182.56 84.6004 182.56C83.6164 182.56 82.9924 181.96 82.9924 180.916V177.748H81.8884V176.728H82.2004C82.8244 176.728 83.0884 176.344 83.0884 175.84V174.904H84.1204ZM89.9609 176.668V177.868C89.7929 177.844 89.6249 177.832 89.4689 177.832C88.5209 177.832 87.8849 178.336 87.8849 179.608V182.5H86.7569V176.728H87.8609V177.736C88.2809 176.848 89.0009 176.632 89.5889 176.632C89.7449 176.632 89.9009 176.656 89.9609 176.668ZM92.2791 182.5H91.1631V176.728H92.2791V182.5ZM90.9111 174.544C90.9111 174.088 91.2711 173.728 91.7151 173.728C92.1711 173.728 92.5311 174.088 92.5311 174.544C92.5311 174.988 92.1711 175.348 91.7151 175.348C91.2711 175.348 90.9111 174.988 90.9111 174.544ZM94.9303 179.02H98.0863C98.0623 178.192 97.5223 177.544 96.5023 177.544C95.5543 177.544 94.9783 178.276 94.9303 179.02ZM98.2543 180.52L99.2263 180.856C98.9023 181.876 97.9783 182.68 96.6343 182.68C95.0863 182.68 93.7303 181.552 93.7303 179.596C93.7303 177.784 95.0383 176.548 96.4903 176.548C98.2663 176.548 99.2623 177.772 99.2623 179.572C99.2623 179.716 99.2503 179.86 99.2383 179.932H94.8943C94.9183 180.964 95.6623 181.684 96.6343 181.684C97.5703 181.684 98.0383 181.168 98.2543 180.52ZM100.162 181L101.182 180.64C101.254 181.24 101.71 181.72 102.526 181.72C103.162 181.72 103.51 181.36 103.51 180.952C103.51 180.592 103.246 180.316 102.766 180.208L101.782 179.992C100.882 179.8 100.342 179.188 100.342 178.372C100.342 177.388 101.266 176.548 102.394 176.548C103.978 176.548 104.47 177.58 104.59 178.096L103.594 178.468C103.546 178.168 103.306 177.508 102.394 177.508C101.818 177.508 101.434 177.88 101.434 178.276C101.434 178.624 101.65 178.876 102.094 178.972L103.03 179.176C104.074 179.404 104.626 180.04 104.626 180.892C104.626 181.708 103.942 182.68 102.514 182.68C100.93 182.68 100.258 181.66 100.162 181Z" fill="#707070"/>
|
||||
<rect x="140.5" y="162.5" width="113" height="31" rx="15.5" fill="#F3F3F3"/>
|
||||
<rect x="140.5" y="162.5" width="113" height="31" rx="15.5" stroke="#D4D4D4"/>
|
||||
<path d="M156.84 181.732C156.84 181.264 157.2 180.892 157.668 180.892C158.136 180.892 158.508 181.264 158.508 181.732C158.508 182.2 158.136 182.56 157.668 182.56C157.2 182.56 156.84 182.2 156.84 181.732ZM160.192 181.732C160.192 181.264 160.552 180.892 161.02 180.892C161.488 180.892 161.86 181.264 161.86 181.732C161.86 182.2 161.488 182.56 161.02 182.56C160.552 182.56 160.192 182.2 160.192 181.732ZM163.543 181.732C163.543 181.264 163.903 180.892 164.371 180.892C164.839 180.892 165.211 181.264 165.211 181.732C165.211 182.2 164.839 182.56 164.371 182.56C163.903 182.56 163.543 182.2 163.543 181.732ZM171.263 173.992L167.147 182.5H166.055L170.171 173.992H171.263ZM177.045 176.728L174.741 182.5H173.601L171.261 176.728H172.533L174.177 181.18L175.833 176.728H177.045ZM180.5 182.5H179.348V177.016H177.464V176.188C178.544 176.164 179.288 175.564 179.468 174.724H180.5V182.5ZM186.603 173.992L182.487 182.5H181.395L185.511 173.992H186.603Z" fill="#707070"/>
|
||||
<path d="M190.384 177.592C189.472 177.592 188.632 178.264 188.632 179.608C188.632 180.928 189.46 181.636 190.396 181.636C191.476 181.636 191.872 180.904 192.004 180.448L193 180.88C192.724 181.708 191.896 182.68 190.396 182.68C188.716 182.68 187.48 181.36 187.48 179.608C187.48 177.808 188.74 176.548 190.384 176.548C191.92 176.548 192.712 177.508 192.952 178.384L191.932 178.816C191.788 178.252 191.368 177.592 190.384 177.592ZM196.737 181.672C197.697 181.672 198.537 180.952 198.537 179.608C198.537 178.276 197.697 177.556 196.737 177.556C195.777 177.556 194.937 178.276 194.937 179.608C194.937 180.952 195.777 181.672 196.737 181.672ZM196.737 176.548C198.465 176.548 199.689 177.856 199.689 179.608C199.689 181.372 198.465 182.68 196.737 182.68C195.009 182.68 193.785 181.372 193.785 179.608C193.785 177.856 195.009 176.548 196.737 176.548ZM204.877 181.804C204.565 182.404 203.845 182.68 203.173 182.68C201.829 182.68 201.013 181.672 201.013 180.364V176.728H202.141V180.196C202.141 180.988 202.501 181.684 203.449 181.684C204.361 181.684 204.817 181.084 204.817 180.208V176.728H205.945V181.432C205.945 181.888 205.981 182.296 206.005 182.5H204.925C204.901 182.368 204.877 182.044 204.877 181.804ZM208.998 179.164V182.5H207.87V176.728H208.974V177.556C209.394 176.836 210.078 176.56 210.75 176.56C212.13 176.56 212.814 177.556 212.814 178.84V182.5H211.686V179.032C211.686 178.228 211.35 177.58 210.342 177.58C209.454 177.58 208.998 178.288 208.998 179.164ZM216.12 174.904V176.728H217.368V177.748H216.12V180.748C216.12 181.276 216.336 181.54 216.924 181.54C217.068 181.54 217.272 181.516 217.368 181.492V182.452C217.272 182.488 216.984 182.56 216.6 182.56C215.616 182.56 214.992 181.96 214.992 180.916V177.748H213.888V176.728H214.2C214.824 176.728 215.088 176.344 215.088 175.84V174.904H216.12ZM221.961 176.668V177.868C221.793 177.844 221.625 177.832 221.469 177.832C220.521 177.832 219.885 178.336 219.885 179.608V182.5H218.757V176.728H219.861V177.736C220.281 176.848 221.001 176.632 221.589 176.632C221.745 176.632 221.901 176.656 221.961 176.668ZM224.279 182.5H223.163V176.728H224.279V182.5ZM222.911 174.544C222.911 174.088 223.271 173.728 223.715 173.728C224.171 173.728 224.531 174.088 224.531 174.544C224.531 174.988 224.171 175.348 223.715 175.348C223.271 175.348 222.911 174.988 222.911 174.544ZM226.93 179.02H230.086C230.062 178.192 229.522 177.544 228.502 177.544C227.554 177.544 226.978 178.276 226.93 179.02ZM230.254 180.52L231.226 180.856C230.902 181.876 229.978 182.68 228.634 182.68C227.086 182.68 225.73 181.552 225.73 179.596C225.73 177.784 227.038 176.548 228.49 176.548C230.266 176.548 231.262 177.772 231.262 179.572C231.262 179.716 231.25 179.86 231.238 179.932H226.894C226.918 180.964 227.662 181.684 228.634 181.684C229.57 181.684 230.038 181.168 230.254 180.52ZM232.162 181L233.182 180.64C233.254 181.24 233.71 181.72 234.526 181.72C235.162 181.72 235.51 181.36 235.51 180.952C235.51 180.592 235.246 180.316 234.766 180.208L233.782 179.992C232.882 179.8 232.342 179.188 232.342 178.372C232.342 177.388 233.266 176.548 234.394 176.548C235.978 176.548 236.47 177.58 236.59 178.096L235.594 178.468C235.546 178.168 235.306 177.508 234.394 177.508C233.818 177.508 233.434 177.88 233.434 178.276C233.434 178.624 233.65 178.876 234.094 178.972L235.03 179.176C236.074 179.404 236.626 180.04 236.626 180.892C236.626 181.708 235.942 182.68 234.514 182.68C232.93 182.68 232.258 181.66 232.162 181Z" fill="#171717"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 50 KiB |
@@ -0,0 +1,8 @@
|
||||
<svg width="330" height="430" viewBox="0 0 330 430" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M3 393L328.486 393" stroke="#707070" stroke-linecap="round" stroke-linejoin="round" stroke-dasharray="1 4"/>
|
||||
<path d="M3 350L328.486 350" stroke="#707070" stroke-linecap="round" stroke-linejoin="round" stroke-dasharray="1 4"/>
|
||||
<path d="M3 307L328.486 307" stroke="#707070" stroke-linecap="round" stroke-linejoin="round" stroke-dasharray="1 4"/>
|
||||
<path d="M3 264L328.486 264" stroke="#707070" stroke-linecap="round" stroke-linejoin="round" stroke-dasharray="1 4"/>
|
||||
<path d="M3 221L328.486 221" stroke="#707070" stroke-linecap="round" stroke-linejoin="round" stroke-dasharray="1 4"/>
|
||||
<path d="M3 178L328.486 178" stroke="#707070" stroke-linecap="round" stroke-linejoin="round" stroke-dasharray="1 4"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 815 B |
@@ -0,0 +1,8 @@
|
||||
<svg width="330" height="430" viewBox="0 0 330 430" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M3 393L328.486 393" stroke="#B2B2B2" stroke-linecap="round" stroke-linejoin="round" stroke-dasharray="1 4"/>
|
||||
<path d="M3 350L328.486 350" stroke="#B2B2B2" stroke-linecap="round" stroke-linejoin="round" stroke-dasharray="1 4"/>
|
||||
<path d="M3 307L328.486 307" stroke="#B2B2B2" stroke-linecap="round" stroke-linejoin="round" stroke-dasharray="1 4"/>
|
||||
<path d="M3 264L328.486 264" stroke="#B2B2B2" stroke-linecap="round" stroke-linejoin="round" stroke-dasharray="1 4"/>
|
||||
<path d="M3 221L328.486 221" stroke="#B2B2B2" stroke-linecap="round" stroke-linejoin="round" stroke-dasharray="1 4"/>
|
||||
<path d="M3 178L328.486 178" stroke="#B2B2B2" stroke-linecap="round" stroke-linejoin="round" stroke-dasharray="1 4"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 815 B |
BIN
apps/www/public/images/index/products/database-dark.png
Normal file
|
After Width: | Height: | Size: 43 KiB |
BIN
apps/www/public/images/index/products/database-light.png
Normal file
|
After Width: | Height: | Size: 48 KiB |
|
Before Width: | Height: | Size: 70 KiB |
|
After Width: | Height: | Size: 13 KiB |
|
After Width: | Height: | Size: 13 KiB |
|
Before Width: | Height: | Size: 44 KiB |
@@ -1,45 +0,0 @@
|
||||
<svg width="298" height="431" viewBox="0 0 298 431" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<g clip-path="url(#clip0_410_1821)">
|
||||
<g filter="url(#filter0_b_410_1821)">
|
||||
<rect x="13.2891" y="205.863" width="307.934" height="248.203" rx="12" fill="#121212"/>
|
||||
<rect x="13.5391" y="206.113" width="307.434" height="247.703" rx="11.75" stroke="#2E2E2E" stroke-width="0.5"/>
|
||||
</g>
|
||||
<g opacity="0.1">
|
||||
<path d="M20.4951 219.772C20.4951 216.162 23.4223 213.234 27.0331 213.234H285.495C289.106 213.234 292.033 216.162 292.033 219.772V329.498C292.033 333.109 289.106 336.036 285.495 336.036H27.0331C23.4223 336.036 20.4951 333.109 20.4951 329.498V219.772Z" fill="#707070"/>
|
||||
<path d="M20.4951 351.774C20.4951 348.164 23.4223 345.236 27.0331 345.236H85.4712C89.082 345.236 92.0091 348.164 92.0091 351.774V406.525C92.0091 410.135 89.082 413.063 85.4712 413.063H27.0331C23.4223 413.063 20.4951 410.135 20.4951 406.525V351.774Z" fill="#707070"/>
|
||||
<path d="M100.517 393.767C100.517 391.812 102.102 390.228 104.057 390.228H285.628C287.583 390.228 289.168 391.812 289.168 393.767C289.168 395.722 287.583 397.307 285.628 397.307H104.057C102.102 397.307 100.517 395.722 100.517 393.767Z" fill="#707070"/>
|
||||
<path d="M100.517 348.776C100.517 346.821 102.102 345.236 104.057 345.236H142.447C144.401 345.236 145.986 346.821 145.986 348.776C145.986 350.731 144.401 352.316 142.447 352.316H104.057C102.102 352.316 100.517 350.731 100.517 348.776Z" fill="#707070"/>
|
||||
<path d="M150.88 348.776C150.88 346.821 152.465 345.236 154.419 345.236H168.976C170.93 345.236 172.515 346.821 172.515 348.776C172.515 350.731 170.931 352.316 168.976 352.316H154.419C152.465 352.316 150.88 350.731 150.88 348.776Z" fill="#707070"/>
|
||||
<path d="M268.614 348.776C268.614 346.821 270.199 345.236 272.154 345.236H286.71C288.665 345.236 290.25 346.821 290.25 348.776C290.25 350.731 288.665 352.316 286.71 352.316H272.154C270.199 352.316 268.614 350.731 268.614 348.776Z" fill="#707070"/>
|
||||
<path d="M100.517 409.525C100.517 407.57 102.102 405.985 104.057 405.985H285.628C287.583 405.985 289.168 407.57 289.168 409.525C289.168 411.479 287.583 413.064 285.628 413.064H104.057C102.102 413.064 100.517 411.479 100.517 409.525Z" fill="#707070"/>
|
||||
</g>
|
||||
<path d="M47.4814 247.871C47.4814 234.733 58.133 224.082 71.2713 224.082C84.4085 224.082 95.0593 234.732 95.0593 247.869C95.0593 261.006 84.4094 271.656 71.2721 271.656H47.4814V247.871Z" fill="#707070"/>
|
||||
<mask id="mask0_410_1821" style="mask-type:alpha" maskUnits="userSpaceOnUse" x="49" y="226" width="44" height="44">
|
||||
<rect x="50.1038" y="226.705" width="42.3296" height="42.3296" rx="21.1648" fill="#D9D9D9" stroke="#232323" stroke-width="0.671898"/>
|
||||
</mask>
|
||||
<g mask="url(#mask0_410_1821)">
|
||||
<rect x="49.7679" y="226.369" width="43.0015" height="43.0012" rx="21.5006" fill="#3FCF8E"/>
|
||||
<path d="M60.8968 250.359V249.755L62.6081 249.446V250.282C62.6209 251.222 63.1485 251.646 63.869 251.646C64.6153 251.646 65.0785 251.119 65.0785 250.321V244.016H66.8541V250.321C66.8541 251.968 65.6575 253.332 63.8819 253.332C62.0805 253.332 60.8968 252.148 60.8968 250.359ZM77.4003 250.321L79.0473 244.016H80.8615L78.3396 253.139H76.5125L74.4281 246.641L72.3436 253.139H70.4908L67.956 244.016H69.8346L71.5073 250.295L73.5274 244.016H75.3673L77.4003 250.321Z" fill="#1C1C1C"/>
|
||||
</g>
|
||||
<rect x="81.1443" y="257.745" width="12.4995" height="12.4995" rx="6.24973" fill="#3FCF8E" stroke="#161616" stroke-width="1.74909"/>
|
||||
<path d="M148 329.969C148 316.83 158.652 306.18 171.79 306.18C184.927 306.18 195.578 316.83 195.578 329.967C195.578 343.104 184.928 353.754 171.791 353.754H148V329.969Z" fill="#707070"/>
|
||||
<mask id="mask1_410_1821" style="mask-type:alpha" maskUnits="userSpaceOnUse" x="150" y="308" width="44" height="44">
|
||||
<rect x="150.622" y="308.802" width="42.3296" height="42.3296" rx="21.1648" fill="#D9D9D9" stroke="#232323" stroke-width="0.671898"/>
|
||||
</mask>
|
||||
<g mask="url(#mask1_410_1821)">
|
||||
<rect x="150.286" y="308.466" width="43.0015" height="43.0012" rx="21.5006" fill="#3FCF8E"/>
|
||||
<path d="M168.917 327.799H166.035V335.236H164.246V327.799H161.364V326.114H168.917V327.799ZM180.344 335.236H178.594V328.842L175.97 335.236H174.49L171.865 328.893V335.236H170.167V326.114H172.508L175.249 332.702L177.925 326.114H180.344V335.236Z" fill="#1C1C1C"/>
|
||||
</g>
|
||||
</g>
|
||||
<defs>
|
||||
<filter id="filter0_b_410_1821" x="4.56562" y="197.14" width="325.38" height="265.65" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
||||
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
||||
<feGaussianBlur in="BackgroundImageFix" stdDeviation="4.36172"/>
|
||||
<feComposite in2="SourceAlpha" operator="in" result="effect1_backgroundBlur_410_1821"/>
|
||||
<feBlend mode="normal" in="SourceGraphic" in2="effect1_backgroundBlur_410_1821" result="shape"/>
|
||||
</filter>
|
||||
<clipPath id="clip0_410_1821">
|
||||
<rect width="298" height="430" fill="white" transform="translate(0 0.046875)"/>
|
||||
</clipPath>
|
||||
</defs>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 4.7 KiB |
@@ -0,0 +1,3 @@
|
||||
<svg width="17" height="20" viewBox="0 0 17 20" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M3.69322 1.31851C2.68774 0.4867 1.16797 1.20185 1.16797 2.5068V17.6884C1.16797 19.1637 3.04048 19.797 3.93588 18.6244L7.64357 13.7691C7.74615 13.6348 7.90549 13.556 8.0745 13.556H14.2021C15.6473 13.556 16.2987 11.7467 15.1851 10.8255L3.69322 1.31851Z" fill="#002918" stroke="#3ECF8E" stroke-linejoin="round"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 422 B |
@@ -0,0 +1,3 @@
|
||||
<svg width="17" height="20" viewBox="0 0 17 20" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M15.1851 10.8255L3.69322 1.31851C2.68774 0.4867 1.16797 1.20185 1.16797 2.5068V17.6884C1.16797 19.1637 3.04048 19.797 3.93588 18.6244L7.64357 13.7691C7.74615 13.6348 7.90549 13.556 8.0745 13.556H14.2021C15.6473 13.556 16.2987 11.7467 15.1851 10.8255Z" fill="#A9F1CA" stroke="#3FCF8E" stroke-linejoin="round"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 422 B |
@@ -1,17 +0,0 @@
|
||||
<svg width="38" height="38" viewBox="0 0 38 38" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<g filter="url(#filter0_d_410_1851)">
|
||||
<path d="M16.0052 29.2546L8.53538 9.62803C8.35311 9.15192 8.79719 8.67924 9.26115 8.84708L28.8769 15.9476C29.3773 16.1291 29.3972 16.8518 28.9067 17.0608L20.8404 20.4929C20.7012 20.5511 20.5885 20.6676 20.5288 20.8114L17.0723 29.2683C16.8702 29.7615 16.1941 29.7513 16.0052 29.2546Z" fill="#3FCF8E"/>
|
||||
</g>
|
||||
<defs>
|
||||
<filter id="filter0_d_410_1851" x="0.4935" y="0.8125" width="36.7701" height="36.8203" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
||||
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
||||
<feOffset/>
|
||||
<feGaussianBlur stdDeviation="4"/>
|
||||
<feComposite in2="hardAlpha" operator="out"/>
|
||||
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.25 0"/>
|
||||
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_410_1851"/>
|
||||
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_410_1851" result="shape"/>
|
||||
</filter>
|
||||
</defs>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 1.1 KiB |
10
apps/www/public/images/index/products/realtime-dark.svg
Normal file
@@ -0,0 +1,10 @@
|
||||
<svg width="330" height="431" viewBox="0 0 330 431" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<g clip-path="url(#clip0_401_8040)">
|
||||
<path d="M-16.542 -9.64038L-16.542 447.813M-2.54197 -9.64038L-2.54195 447.813M11.4581 -9.64038L11.4581 447.813M25.4581 -9.64038L25.4581 447.813M39.4581 -9.64038L39.4581 447.813M53.4581 -9.64038L53.4581 447.813M67.4581 -9.64038L67.4582 447.813M81.4582 -9.64038L81.4582 447.813M95.4582 -9.64038L95.4582 447.813M109.458 -9.64038L109.458 447.813M123.458 -9.64038L123.458 447.813M137.458 -9.64038L137.458 447.813M151.458 -9.64038L151.458 447.813M165.458 -9.64038L165.458 447.813M179.458 -9.64038L179.458 447.813M193.458 -9.64038L193.458 447.813M207.458 -9.64038L207.458 447.813M221.458 -9.64038L221.458 447.813M235.458 -9.64038L235.458 447.813M249.458 -9.64038L249.458 447.813M263.458 -9.64038L263.458 447.813M277.458 -9.64038L277.458 447.813M291.458 -9.64038L291.458 447.813M305.458 -9.64038L305.459 447.813M319.459 -9.64038L319.459 447.813M333.459 -9.64038L333.459 447.813M347.459 -9.64038L347.459 447.813M361.459 -9.64038L361.459 447.813M375.459 -9.64038L375.459 447.813M440.615 0.656494H-16.8379M440.615 14.6565H-16.8379M440.615 28.6565H-16.8379M440.615 42.6566H-16.8379M440.615 56.6566H-16.8379M440.615 70.6566H-16.8379M440.615 84.6566H-16.8379M440.615 98.6566H-16.8379M440.615 112.657H-16.8379M440.615 126.657H-16.8379M440.615 140.657H-16.8379M440.615 154.657H-16.8379M440.615 168.657H-16.8379M440.615 182.657H-16.8379M440.615 196.657H-16.8379M440.615 210.657H-16.8379M440.615 224.657H-16.8379M440.615 238.657H-16.8379M440.615 252.657H-16.8379M440.615 266.657H-16.8379M440.615 280.657H-16.8379M440.615 294.657H-16.8379M440.615 308.657H-16.8379M440.615 322.657H-16.8379M440.615 336.657H-16.8379M440.615 350.657H-16.8379M440.615 364.657H-16.8379M440.615 378.657H-16.8379M440.615 392.657H-16.8379M440.615 406.657H-16.8379M440.615 420.657H-16.8379M440.615 434.657H-16.8379" stroke="#282828" stroke-width="0.5"/>
|
||||
</g>
|
||||
<defs>
|
||||
<clipPath id="clip0_401_8040">
|
||||
<rect width="330" height="430" fill="white" transform="translate(0 0.906494)"/>
|
||||
</clipPath>
|
||||
</defs>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 2.0 KiB |
10
apps/www/public/images/index/products/realtime-light.svg
Normal file
@@ -0,0 +1,10 @@
|
||||
<svg width="330" height="430" viewBox="0 0 330 430" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<g clip-path="url(#clip0_401_8067)">
|
||||
<path d="M-16.542 -10.5469L-16.542 446.906M-2.54197 -10.5469L-2.54195 446.906M11.4581 -10.5469L11.4581 446.906M25.4581 -10.5469L25.4581 446.906M39.4581 -10.5469L39.4581 446.906M53.4581 -10.5469L53.4581 446.906M67.4581 -10.5469L67.4582 446.906M81.4582 -10.5469L81.4582 446.906M95.4582 -10.5469L95.4582 446.906M109.458 -10.5469L109.458 446.906M123.458 -10.5469L123.458 446.906M137.458 -10.5469L137.458 446.906M151.458 -10.5469L151.458 446.906M165.458 -10.5469L165.458 446.906M179.458 -10.5469L179.458 446.906M193.458 -10.5469L193.458 446.906M207.458 -10.5469L207.458 446.906M221.458 -10.5469L221.458 446.906M235.458 -10.5469L235.458 446.906M249.458 -10.5469L249.458 446.906M263.458 -10.5469L263.458 446.906M277.458 -10.5469L277.458 446.906M291.458 -10.5469L291.458 446.906M305.458 -10.5469L305.459 446.906M319.459 -10.5469L319.459 446.906M333.459 -10.5469L333.459 446.906M347.459 -10.5469L347.459 446.906M361.459 -10.5469L361.459 446.906M375.459 -10.5469L375.459 446.906M440.615 -0.25H-16.8379M440.615 13.75H-16.8379M440.615 27.75H-16.8379M440.615 41.7501H-16.8379M440.615 55.7501H-16.8379M440.615 69.7501H-16.8379M440.615 83.7501H-16.8379M440.615 97.7501H-16.8379M440.615 111.75H-16.8379M440.615 125.75H-16.8379M440.615 139.75H-16.8379M440.615 153.75H-16.8379M440.615 167.75H-16.8379M440.615 181.75H-16.8379M440.615 195.75H-16.8379M440.615 209.75H-16.8379M440.615 223.75H-16.8379M440.615 237.75H-16.8379M440.615 251.75H-16.8379M440.615 265.75H-16.8379M440.615 279.75H-16.8379M440.615 293.75H-16.8379M440.615 307.75H-16.8379M440.615 321.75H-16.8379M440.615 335.751H-16.8379M440.615 349.751H-16.8379M440.615 363.751H-16.8379M440.615 377.751H-16.8379M440.615 391.751H-16.8379M440.615 405.751H-16.8379M440.615 419.751H-16.8379M440.615 433.751H-16.8379" stroke="#F3F3F3" stroke-width="0.5"/>
|
||||
</g>
|
||||
<defs>
|
||||
<clipPath id="clip0_401_8067">
|
||||
<rect width="330" height="430" fill="white"/>
|
||||
</clipPath>
|
||||
</defs>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 2.0 KiB |
47
apps/www/public/images/index/products/vector-dark.svg
Normal file
@@ -0,0 +1,47 @@
|
||||
<svg width="390" height="430" viewBox="0 0 390 430" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<g clip-path="url(#clip0_392_3994)">
|
||||
<path d="M279.173 650.277L279.173 275.195" stroke="#2E2E2E" stroke-width="0.502235"/>
|
||||
<path d="M117.441 650.277L117.441 275.195" stroke="#2E2E2E" stroke-width="0.502235"/>
|
||||
<path d="M198.313 696.482L198.313 321.401" stroke="#2E2E2E" stroke-width="0.502235"/>
|
||||
<path opacity="0.8" d="M-227.715 468.123L196.012 219.457L619.285 470.366L-227.715 468.123Z" fill="#232323" stroke="#2E2E2E" stroke-width="1.23671"/>
|
||||
<ellipse cx="301.631" cy="222.602" rx="1.50671" ry="1.5067" fill="#707070"/>
|
||||
<ellipse cx="326.643" cy="108.326" rx="2.51118" ry="2.49456" fill="#A0A0A0"/>
|
||||
<ellipse cx="350.85" cy="222.602" rx="2.51118" ry="2.51117" fill="#707070"/>
|
||||
<ellipse cx="89.6874" cy="176.412" rx="1.50671" ry="1.58432" fill="#3FCF8E"/>
|
||||
<ellipse cx="251.621" cy="92.2916" rx="1.00447" ry="1.00447" fill="#A0A0A0"/>
|
||||
<ellipse cx="221.696" cy="103.573" rx="2.00894" ry="2.00894" fill="#2E2E2E"/>
|
||||
<ellipse cx="217.068" cy="249.2" rx="1.00447" ry="0.984361" fill="#3FCF8E"/>
|
||||
<ellipse cx="51.1448" cy="187.789" rx="4.01788" ry="4.01788" fill="#3E3E3E"/>
|
||||
<ellipse cx="326.102" cy="238.157" rx="2.21297" ry="2.21297" fill="#2E2E2E"/>
|
||||
<ellipse cx="93.2023" cy="215.212" rx="2.00894" ry="2.00894" fill="#2E2E2E"/>
|
||||
<ellipse cx="298.62" cy="213.562" rx="1.50671" ry="1.5067" fill="#2E2E2E"/>
|
||||
<ellipse cx="332.81" cy="267.771" rx="2.51118" ry="2.51117" fill="#3E3E3E"/>
|
||||
<ellipse cx="213.235" cy="199.429" rx="1.46477" ry="1.46477" fill="#3FCF8E"/>
|
||||
<ellipse cx="221.273" cy="266.826" rx="4.52012" ry="4.52011" fill="#707070"/>
|
||||
<ellipse cx="290.08" cy="367.749" rx="1.00447" ry="1.00447" fill="#3FCF8E"/>
|
||||
<ellipse cx="137.699" cy="139.772" rx="1.50671" ry="1.5067" fill="#3E3E3E"/>
|
||||
<ellipse cx="84.1627" cy="325.56" rx="1.00447" ry="1.00447" fill="#2E2E2E"/>
|
||||
<ellipse cx="229.31" cy="64.9007" rx="0.502531" ry="0.502531" fill="#707070"/>
|
||||
<ellipse cx="93.6634" cy="309.991" rx="2.55305" ry="2.51117" fill="#3FCF8E"/>
|
||||
<ellipse cx="228.305" cy="108.093" rx="2.51118" ry="2.51117" fill="#A0A0A0"/>
|
||||
<ellipse cx="29.9215" cy="256.252" rx="1.00447" ry="1.00447" fill="#3E3E3E"/>
|
||||
<ellipse cx="140.212" cy="96.6016" rx="1.00447" ry="1.00447" fill="#3FCF8E"/>
|
||||
<ellipse cx="262.959" cy="36.2713" rx="1.00447" ry="1.00594" fill="#3FCF8E"/>
|
||||
<path d="M195.998 125.21L276.455 171.663V267.035L195.988 313.197L115.117 266.395V171.411L195.998 125.21Z" fill="white" fill-opacity="0.03"/>
|
||||
<path d="M276.455 171.663L195.998 125.21L115.117 171.411M276.455 171.663V267.035L195.988 313.197M276.455 171.663L212.84 208.223L195.676 218.177M195.988 313.197L115.117 266.395V171.411M195.988 313.197L195.676 218.177M115.117 171.411L195.676 218.177" stroke="#7E7E7E" stroke-width="1.00447"/>
|
||||
<path d="M205.479 166.713L284.927 238.157" stroke="#7E7E7E" stroke-width="1.00447" stroke-dasharray="0.5 2.01"/>
|
||||
<path d="M216.45 151.371L260.8 116.631" stroke="#7E7E7E" stroke-width="1.00447" stroke-dasharray="0.5 2.01"/>
|
||||
<ellipse cx="205.482" cy="166.712" rx="2.51118" ry="2.51117" fill="#3FCF8E"/>
|
||||
<ellipse cx="289.076" cy="240.369" rx="4.14553" ry="4.14552" fill="#3FCF8E"/>
|
||||
<ellipse cx="140.212" cy="242.004" rx="2.51118" ry="2.51117" fill="#3FCF8E"/>
|
||||
<ellipse cx="216.001" cy="151.754" rx="2.19201" ry="2.19201" transform="rotate(18.0323 216.001 151.754)" fill="#3FCF8E"/>
|
||||
<ellipse cx="260.8" cy="116.631" rx="2.51118" ry="2.51117" transform="rotate(18.0323 260.8 116.631)" fill="#3FCF8E"/>
|
||||
<path d="M94.4092 309.076L175.95 243.008" stroke="#7E7E7E" stroke-width="1.00447" stroke-dasharray="0.5 2.01"/>
|
||||
<ellipse cx="175.95" cy="243.009" rx="3.51565" ry="3.51564" fill="#3FCF8E"/>
|
||||
</g>
|
||||
<defs>
|
||||
<clipPath id="clip0_392_3994">
|
||||
<rect width="390" height="430" fill="white"/>
|
||||
</clipPath>
|
||||
</defs>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 3.7 KiB |
47
apps/www/public/images/index/products/vector-light.svg
Normal file
@@ -0,0 +1,47 @@
|
||||
<svg width="390" height="430" viewBox="0 0 390 430" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<g clip-path="url(#clip0_392_4161)">
|
||||
<path d="M279.173 650.277L279.173 275.195" stroke="#EDEDED" stroke-width="0.502235"/>
|
||||
<path d="M117.441 650.277L117.441 275.195" stroke="#EDEDED" stroke-width="0.502235"/>
|
||||
<path d="M198.313 696.482L198.313 321.401" stroke="#EDEDED" stroke-width="0.502235"/>
|
||||
<path opacity="0.8" d="M-227.715 468.123L196.012 219.457L619.285 470.366L-227.715 468.123Z" fill="#FCFCFC" stroke="#EDEDED" stroke-width="1.23671"/>
|
||||
<ellipse cx="301.631" cy="222.602" rx="1.50671" ry="1.5067" fill="#B2B2B2"/>
|
||||
<ellipse cx="326.643" cy="108.326" rx="2.51118" ry="2.49456" fill="#525252"/>
|
||||
<ellipse cx="350.85" cy="222.602" rx="2.51118" ry="2.51117" fill="#B2B2B2"/>
|
||||
<ellipse cx="89.6874" cy="176.412" rx="1.50671" ry="1.58432" fill="#13C575"/>
|
||||
<ellipse cx="251.621" cy="92.2916" rx="1.00447" ry="1.00447" fill="#525252"/>
|
||||
<ellipse cx="221.696" cy="103.573" rx="2.00894" ry="2.00894" fill="#EDEDED"/>
|
||||
<ellipse cx="217.068" cy="249.2" rx="1.00447" ry="0.984361" fill="#13C575"/>
|
||||
<ellipse cx="51.1448" cy="187.789" rx="4.01788" ry="4.01788" fill="#E2E2E2"/>
|
||||
<ellipse cx="326.102" cy="238.157" rx="2.21297" ry="2.21297" fill="#EDEDED"/>
|
||||
<ellipse cx="93.2023" cy="215.212" rx="2.00894" ry="2.00894" fill="#EDEDED"/>
|
||||
<ellipse cx="298.62" cy="213.562" rx="1.50671" ry="1.5067" fill="#EDEDED"/>
|
||||
<ellipse cx="332.81" cy="267.771" rx="2.51118" ry="2.51117" fill="#E2E2E2"/>
|
||||
<ellipse cx="213.235" cy="199.429" rx="1.46477" ry="1.46477" fill="#13C575"/>
|
||||
<ellipse cx="221.273" cy="266.826" rx="4.52012" ry="4.52011" fill="#B2B2B2"/>
|
||||
<ellipse cx="290.08" cy="367.749" rx="1.00447" ry="1.00447" fill="#13C575"/>
|
||||
<ellipse cx="137.699" cy="139.772" rx="1.50671" ry="1.5067" fill="#E2E2E2"/>
|
||||
<ellipse cx="84.1627" cy="325.56" rx="1.00447" ry="1.00447" fill="#EDEDED"/>
|
||||
<ellipse cx="229.31" cy="64.9007" rx="0.502531" ry="0.502531" fill="#B2B2B2"/>
|
||||
<ellipse cx="93.6634" cy="309.991" rx="2.55305" ry="2.51117" fill="#13C575"/>
|
||||
<ellipse cx="228.305" cy="108.093" rx="2.51118" ry="2.51117" fill="#525252"/>
|
||||
<ellipse cx="29.9215" cy="256.252" rx="1.00447" ry="1.00447" fill="#E2E2E2"/>
|
||||
<ellipse cx="140.212" cy="96.6016" rx="1.00447" ry="1.00447" fill="#13C575"/>
|
||||
<ellipse cx="262.959" cy="36.2713" rx="1.00447" ry="1.00594" fill="#13C575"/>
|
||||
<path d="M195.998 125.21L276.455 171.663V267.035L195.988 313.197L115.117 266.395V171.411L195.998 125.21Z" fill="white" fill-opacity="0.03"/>
|
||||
<path d="M276.455 171.663L195.998 125.21L115.117 171.411M276.455 171.663V267.035L195.988 313.197M276.455 171.663L212.84 208.223L195.676 218.177M195.988 313.197L115.117 266.395V171.411M195.988 313.197L195.676 218.177M115.117 171.411L195.676 218.177" stroke="#707070" stroke-width="1.00447"/>
|
||||
<path d="M205.479 166.713L284.927 238.157" stroke="#707070" stroke-width="1.00447" stroke-dasharray="0.5 2.01"/>
|
||||
<path d="M216.45 151.371L260.8 116.631" stroke="#707070" stroke-width="1.00447" stroke-dasharray="0.5 2.01"/>
|
||||
<ellipse cx="205.482" cy="166.712" rx="2.51118" ry="2.51117" fill="#13C575"/>
|
||||
<ellipse cx="289.076" cy="240.369" rx="4.14553" ry="4.14552" fill="#13C575"/>
|
||||
<ellipse cx="140.212" cy="242.004" rx="2.51118" ry="2.51117" fill="#13C575"/>
|
||||
<ellipse cx="216.001" cy="151.754" rx="2.19201" ry="2.19201" transform="rotate(18.0323 216.001 151.754)" fill="#13C575"/>
|
||||
<ellipse cx="260.8" cy="116.631" rx="2.51118" ry="2.51117" transform="rotate(18.0323 260.8 116.631)" fill="#13C575"/>
|
||||
<path d="M94.4092 309.076L175.95 243.008" stroke="#707070" stroke-width="1.00447" stroke-dasharray="0.5 2.01"/>
|
||||
<ellipse cx="175.95" cy="243.009" rx="3.51565" ry="3.51564" fill="#13C575"/>
|
||||
</g>
|
||||
<defs>
|
||||
<clipPath id="clip0_392_4161">
|
||||
<rect width="390" height="430" fill="white"/>
|
||||
</clipPath>
|
||||
</defs>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 3.7 KiB |
@@ -1,12 +1,12 @@
|
||||
<svg width="137" height="27" viewBox="0 0 137 27" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M13.6032 26.1373C20.715 26.1373 26.4803 20.372 26.4803 13.2601C26.4803 6.14831 20.715 0.383026 13.6032 0.383026C6.49135 0.383026 0.726074 6.14831 0.726074 13.2601C0.726074 20.372 6.49135 26.1373 13.6032 26.1373ZM16.0684 6.39769V13.7932C16.0684 13.9913 15.9897 14.1814 15.8495 14.3215L14.961 15.21C14.9027 15.2684 14.9027 15.363 14.961 15.4213L15.8495 16.3099C15.9897 16.45 16.0684 16.64 16.0684 16.8382V20.3206C16.0684 20.7333 15.7339 21.0678 15.3212 21.0678H11.8851C11.4725 21.0678 11.138 20.7333 11.138 20.3206V12.9643C11.138 12.7662 11.2167 12.5761 11.3568 12.436L12.2258 11.567C12.2842 11.5087 12.2842 11.4141 12.2258 11.3557L11.3568 10.4867C11.2167 10.3466 11.138 10.1566 11.138 9.95842V6.39769C11.138 5.98505 11.4725 5.65054 11.8851 5.65054H15.3212C15.7339 5.65054 16.0684 5.98505 16.0684 6.39769Z" fill="#B4B4B4"/>
|
||||
<path d="M85.1065 9.42945C86.1665 9.42945 87.1465 9.40945 88.1265 9.44945C88.2265 9.44945 88.3864 9.70945 88.4264 9.86944C88.9464 12.3694 89.4665 14.8694 89.9865 17.3694C90.0464 17.6494 90.1064 17.9094 90.2064 18.3294C90.3064 18.0694 90.3664 17.9694 90.3864 17.8494C91.0264 15.2094 91.6664 12.5694 92.2864 9.90944C92.3664 9.52945 92.5064 9.38945 92.9064 9.40945C93.7264 9.42945 94.5264 9.42945 95.3464 9.40945C95.7064 9.38945 95.8264 9.52945 95.9064 9.86944C96.5864 12.5494 97.2864 15.2294 97.9664 17.9094C98.0064 18.0294 98.0464 18.1494 98.1464 18.4094C98.4464 16.9894 98.7064 15.7294 98.9864 14.4494C99.3064 12.9294 99.6264 11.3894 99.9264 9.86944C100.006 9.50945 100.166 9.38945 100.526 9.40945C101.406 9.42945 102.286 9.40945 103.226 9.40945C103.166 9.72945 103.126 9.98944 103.066 10.2294C102.206 13.7494 101.326 17.2694 100.466 20.7894C100.366 21.1894 100.206 21.3094 99.8064 21.3094C98.5664 21.2894 97.3064 21.2894 96.0464 21.2894C95.4264 18.6494 94.8064 16.0294 94.2064 13.4294C94.1664 13.4294 94.1464 13.4094 94.1064 13.4094C93.4864 16.0294 92.8664 18.6494 92.2264 21.2694C90.8264 21.2694 89.4664 21.2694 88.0665 21.2694C87.0465 17.3494 86.0865 13.4294 85.1065 9.42945Z" fill="#B4B4B4"/>
|
||||
<path d="M133.125 5.00948V10.6694C132.825 10.4294 132.545 10.1694 132.265 9.94945C130.345 8.46946 127.145 8.98945 125.645 11.0894C124.145 13.1894 123.985 15.4894 124.745 17.8894C125.305 19.6894 126.485 20.9894 128.365 21.4694C130.145 21.9294 132.145 21.4294 133.005 19.7694C133.025 19.7294 133.085 19.7094 133.225 19.5894V21.2894H136.385V5.00948H133.125ZM133.005 15.2894C133.025 16.3694 132.825 17.2694 132.145 18.0494C131.305 19.0094 129.205 19.0494 128.425 17.6894C127.565 16.1694 127.545 14.5894 128.405 13.0894C129.285 11.5494 131.525 11.5694 132.465 13.0894C132.905 13.7894 133.045 14.5694 133.005 15.2894Z" fill="#B4B4B4"/>
|
||||
<path d="M50.049 6.78947C49.089 6.08947 48.009 5.74947 46.829 5.74947C44.749 5.72947 42.669 5.72947 40.589 5.72947C40.469 5.72947 40.369 5.74947 40.229 5.76947V21.2894H43.649V20.7294C43.649 19.3894 43.669 18.0294 43.649 16.6894C43.649 16.3494 43.749 16.2294 44.109 16.2294C45.109 16.2294 46.109 16.2294 47.109 16.1494C50.129 15.9094 51.929 13.9894 52.009 10.9894C52.029 9.26945 51.449 7.82946 50.049 6.78947ZM46.069 13.2094C45.409 13.2094 44.749 13.1894 44.069 13.2094C43.749 13.2094 43.629 13.1094 43.629 12.7694C43.649 12.1494 43.629 11.5494 43.629 10.9294C43.629 10.3294 43.649 9.72944 43.629 9.12945C43.629 8.82945 43.709 8.66945 44.049 8.68945C44.889 8.72945 45.749 8.70945 46.589 8.74945C47.589 8.80945 48.289 9.46945 48.409 10.4694C48.649 12.1894 47.789 13.1894 46.069 13.2094Z" fill="#B4B4B4"/>
|
||||
<path d="M63.3149 21.2894C63.2549 18.4694 63.2549 15.6894 63.0949 12.9294C63.0149 11.6294 62.2549 10.5694 61.095 9.86945C59.275 8.76945 55.975 8.78946 54.155 10.5694C53.515 11.2094 53.015 11.9294 52.795 12.8494C53.635 13.0494 54.435 13.2094 55.195 13.4494C55.635 13.5694 55.935 13.5694 56.115 13.0494C56.195 12.8094 56.415 12.5694 56.615 12.3894C57.195 11.8694 57.875 11.7494 58.615 11.9694C59.295 12.1894 59.655 12.7094 59.795 13.3894C59.995 14.3094 59.815 14.5294 58.875 14.5294C58.035 14.5294 57.175 14.5094 56.335 14.5294C55.815 14.5494 55.295 14.5894 54.795 14.7094C52.335 15.2894 51.395 18.3694 53.095 20.2494C54.775 22.0894 58.055 22.0894 59.735 20.2094C59.835 20.1094 59.855 19.9494 59.915 19.8294C59.975 19.8894 60.055 19.9294 60.115 19.9894V21.3094H63.3149V21.2894ZM57.815 19.0094C57.475 19.0494 57.115 19.0494 56.775 19.0094C56.095 18.9094 55.675 18.4094 55.695 17.7894C55.715 17.1494 56.115 16.6694 56.835 16.6494C57.835 16.6094 58.815 16.6494 59.835 16.6494C60.035 17.7294 59.135 18.8294 57.815 19.0094Z" fill="#B4B4B4"/>
|
||||
<path d="M109.298 9.12945C105.878 9.06945 103.238 11.6894 103.178 15.1894C103.118 18.7094 105.638 21.4694 108.918 21.6094C112.398 21.7494 115.338 19.2894 115.358 15.4094C115.378 11.7494 112.738 9.12945 109.298 9.12945ZM111.298 17.5294C110.178 19.1894 107.918 19.0494 107.078 17.2294C106.818 16.6694 106.738 16.0094 106.558 15.3694C106.738 14.7294 106.818 14.0694 107.078 13.4894C107.438 12.6494 108.138 12.1294 109.058 12.0294C110.018 11.9494 110.758 12.3694 111.298 13.1694C112.078 14.3494 112.078 16.3694 111.298 17.5294Z" fill="#B4B4B4"/>
|
||||
<path d="M74.1144 12.6294C73.1744 12.8094 72.2344 12.9694 71.3145 13.1294C71.2345 13.1494 71.0745 12.9494 71.0145 12.8294C70.4545 11.7094 69.3145 11.2294 68.1145 11.6494C67.6745 11.8094 67.3545 12.0694 67.3145 12.5694C67.2545 13.0894 67.5545 13.4094 67.9945 13.5494C69.0745 13.8894 70.1745 14.1294 71.2345 14.4894C71.9345 14.7294 72.6744 15.0094 73.2344 15.4494C74.4544 16.4294 74.5944 18.2494 73.7144 19.5894C72.9944 20.6694 71.9745 21.2494 70.7145 21.4694C68.7945 21.8094 66.9345 21.6694 65.2745 20.5294C64.5145 20.0094 64.0745 19.2694 63.8945 18.3094C64.7945 18.0894 65.6545 17.8694 66.5145 17.6694C66.6145 17.6494 66.8345 17.7694 66.8745 17.8894C67.5545 19.2494 69.2745 19.3294 70.2345 19.0094C70.6745 18.8694 71.0145 18.5694 71.0145 18.0294C71.0345 17.4894 70.6545 17.2894 70.2545 17.1694C69.2745 16.8894 68.2745 16.6294 67.2945 16.3494C66.9345 16.2494 66.5745 16.1094 66.2145 15.9694C64.9945 15.4694 64.2145 14.6294 64.1345 13.2494C64.0545 11.9094 64.4945 10.8094 65.6345 10.0294C66.6345 9.32945 67.7745 9.14945 68.9545 9.12945C70.4145 9.12945 71.8145 9.36945 72.9144 10.4294C73.5144 11.0294 73.9144 11.7294 74.1144 12.6294Z" fill="#B4B4B4"/>
|
||||
<path d="M74.8147 18.2894C75.6947 18.0694 76.5346 17.8494 77.3746 17.6694C77.4946 17.6494 77.7346 17.7494 77.7946 17.8494C78.4346 19.1094 79.9546 19.3094 81.0546 19.0094C81.6146 18.8694 81.9346 18.4694 81.9546 18.0094C81.9746 17.4494 81.5746 17.2494 81.1546 17.1294C80.1746 16.8294 79.1746 16.5894 78.1746 16.3294C77.8146 16.2294 77.4546 16.0894 77.0946 15.9494C75.8946 15.4494 75.1347 14.6094 75.0347 13.2694C74.9547 11.9494 75.3746 10.8494 76.4746 10.0694C77.4746 9.34945 78.6346 9.14946 79.8346 9.14946C81.2946 9.14946 82.6746 9.38945 83.7946 10.4494C84.3946 11.0094 84.8146 11.7694 85.0146 12.6494C84.2746 12.7894 83.5146 12.8894 82.7946 13.0694C82.2946 13.1894 82.0346 13.1094 81.7746 12.5894C81.2546 11.5694 79.8546 11.2094 78.8146 11.7294C78.4546 11.9094 78.2346 12.2094 78.2346 12.6294C78.2346 13.0494 78.4546 13.3494 78.8146 13.4694C79.6546 13.7494 80.5346 13.9694 81.3746 14.2494C82.1146 14.4894 82.8946 14.6694 83.5746 15.0294C85.2546 15.9294 85.6946 17.9694 84.6346 19.5694C83.9346 20.6494 82.8946 21.2294 81.6546 21.4494C79.7346 21.7894 77.8746 21.6494 76.2146 20.5094C75.4547 20.0094 75.0147 19.2694 74.8147 18.2894Z" fill="#B4B4B4"/>
|
||||
<path d="M33.5091 21.2694C33.5091 17.3894 33.5091 13.5494 33.5091 9.64945C32.7491 9.64945 32.0091 9.64945 31.2291 9.64945C31.2291 8.68945 31.2291 7.80946 31.2291 6.90946C31.7091 6.82946 32.2091 6.76947 32.6891 6.64947C33.2891 6.50947 33.7891 6.20947 34.1691 5.70947C34.2491 5.60947 34.3691 5.48947 34.4691 5.48947C35.2891 5.46947 36.1291 5.48947 36.9891 5.48947C36.9891 10.7894 36.9891 16.0094 36.9891 21.2694C35.8291 21.2694 34.6891 21.2694 33.5091 21.2694Z" fill="#B4B4B4"/>
|
||||
<path d="M119.681 9.46945C119.681 10.1294 119.681 10.7494 119.681 11.3694C119.721 11.3694 119.741 11.3894 119.781 11.3894C119.921 11.1694 120.041 10.9294 120.181 10.7094C120.941 9.48945 122.441 8.86945 123.801 9.18945C124.161 9.26945 124.381 9.38945 124.261 9.86944C124.061 10.6294 123.921 11.3894 123.861 12.1694C123.821 12.6694 123.581 12.6294 123.221 12.6294C122.621 12.6094 122.001 12.6294 121.401 12.7294C120.641 12.8494 120.201 13.3694 120.081 14.1094C120.001 14.5694 119.981 15.0294 119.981 15.4894C119.961 17.2294 119.981 18.9894 119.981 20.7294C119.981 20.9094 119.981 21.0894 119.981 21.3094C118.841 21.3094 117.741 21.3094 116.601 21.3094C116.601 17.3694 116.601 13.4694 116.601 9.48945C117.581 9.46945 118.581 9.46945 119.681 9.46945Z" fill="#B4B4B4"/>
|
||||
<svg width="143" height="60" viewBox="0 0 143 60" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M22.4798 41.5894C28.8804 41.5894 34.0692 36.4007 34.0692 30C34.0692 23.5994 28.8804 18.4106 22.4798 18.4106C16.0791 18.4106 10.8904 23.5994 10.8904 30C10.8904 36.4007 16.0791 41.5894 22.4798 41.5894ZM24.6985 23.8238V30.4798C24.6985 30.6581 24.6276 30.8291 24.5015 30.9553L23.7018 31.7549C23.6493 31.8074 23.6493 31.8926 23.7018 31.9451L24.5015 32.7448C24.6276 32.8709 24.6985 33.0419 24.6985 33.2203V36.3545C24.6985 36.7259 24.3974 37.0269 24.026 37.0269H20.9335C20.5622 37.0269 20.2611 36.7259 20.2611 36.3545V29.7338C20.2611 29.5555 20.332 29.3844 20.4581 29.2583L21.2401 28.4762C21.2927 28.4237 21.2927 28.3386 21.2401 28.286L20.4581 27.504C20.332 27.3779 20.2611 27.2068 20.2611 27.0285V23.8238C20.2611 23.4525 20.5622 23.1514 20.9335 23.1514H24.026C24.3974 23.1514 24.6985 23.4525 24.6985 23.8238Z" fill="#7E7E7E"/>
|
||||
<path d="M86.8327 26.5524C87.7867 26.5524 88.6687 26.5344 89.5507 26.5704C89.6407 26.5704 89.7847 26.8044 89.8207 26.9484C90.2887 29.1984 90.7567 31.4484 91.2247 33.6984C91.2787 33.9504 91.3327 34.1844 91.4227 34.5624C91.5127 34.3284 91.5667 34.2384 91.5847 34.1304C92.1607 31.7544 92.7367 29.3784 93.2947 26.9844C93.3667 26.6424 93.4927 26.5164 93.8527 26.5344C94.5907 26.5524 95.3107 26.5524 96.0487 26.5344C96.3727 26.5164 96.4807 26.6424 96.5527 26.9484C97.1647 29.3604 97.7947 31.7724 98.4067 34.1844C98.4427 34.2924 98.4787 34.4004 98.5687 34.6344C98.8387 33.3564 99.0727 32.2224 99.3247 31.0704C99.6127 29.7024 99.9007 28.3164 100.171 26.9484C100.243 26.6244 100.387 26.5164 100.711 26.5344C101.503 26.5524 102.295 26.5344 103.141 26.5344C103.087 26.8224 103.051 27.0564 102.997 27.2724C102.223 30.4404 101.431 33.6084 100.657 36.7764C100.567 37.1364 100.423 37.2443 100.063 37.2443C98.9467 37.2263 97.8127 37.2263 96.6787 37.2263C96.1207 34.8504 95.5627 32.4924 95.0227 30.1524C94.9867 30.1524 94.9687 30.1344 94.9327 30.1344C94.3747 32.4924 93.8167 34.8504 93.2407 37.2083C91.9807 37.2083 90.7567 37.2083 89.4967 37.2083C88.5787 33.6804 87.7147 30.1524 86.8327 26.5524Z" fill="#7E7E7E"/>
|
||||
<path d="M130.049 22.5745V27.6684C129.779 27.4524 129.527 27.2184 129.275 27.0204C127.547 25.6884 124.667 26.1564 123.317 28.0464C121.967 29.9364 121.823 32.0064 122.507 34.1664C123.011 35.7864 124.073 36.9564 125.765 37.3884C127.367 37.8023 129.167 37.3524 129.941 35.8584C129.959 35.8224 130.013 35.8044 130.139 35.6964V37.2264H132.983V22.5745H130.049ZM129.941 31.8264C129.959 32.7984 129.779 33.6084 129.167 34.3104C128.411 35.1744 126.521 35.2104 125.819 33.9864C125.045 32.6184 125.027 31.1964 125.801 29.8464C126.593 28.4604 128.609 28.4784 129.455 29.8464C129.851 30.4764 129.977 31.1784 129.941 31.8264Z" fill="#7E7E7E"/>
|
||||
<path d="M55.281 24.1764C54.417 23.5464 53.445 23.2404 52.383 23.2404C50.511 23.2224 48.639 23.2224 46.7671 23.2224C46.659 23.2224 46.5691 23.2404 46.4431 23.2584V37.2263H49.521V36.7224C49.521 35.5164 49.539 34.2924 49.521 33.0864C49.521 32.7804 49.611 32.6724 49.935 32.6724C50.835 32.6724 51.735 32.6724 52.635 32.6004C55.353 32.3844 56.973 30.6564 57.045 27.9564C57.063 26.4084 56.541 25.1124 55.281 24.1764ZM51.699 29.9544C51.105 29.9544 50.511 29.9364 49.899 29.9544C49.611 29.9544 49.503 29.8644 49.503 29.5584C49.521 29.0004 49.503 28.4604 49.503 27.9024C49.503 27.3624 49.521 26.8224 49.503 26.2824C49.503 26.0124 49.575 25.8684 49.881 25.8864C50.637 25.9224 51.411 25.9044 52.167 25.9404C53.067 25.9944 53.697 26.5884 53.805 27.4884C54.021 29.0364 53.247 29.9364 51.699 29.9544Z" fill="#7E7E7E"/>
|
||||
<path d="M67.2204 37.2264C67.1664 34.6884 67.1664 32.1864 67.0224 29.7024C66.9504 28.5324 66.2664 27.5784 65.2224 26.9484C63.5844 25.9584 60.6144 25.9764 58.9764 27.5784C58.4004 28.1544 57.9504 28.8024 57.7524 29.6304C58.5084 29.8104 59.2284 29.9544 59.9124 30.1704C60.3084 30.2784 60.5784 30.2784 60.7404 29.8104C60.8124 29.5944 61.0104 29.3784 61.1904 29.2164C61.7124 28.7484 62.3244 28.6404 62.9904 28.8384C63.6024 29.0364 63.9264 29.5044 64.0524 30.1164C64.2324 30.9444 64.0704 31.1424 63.2244 31.1424C62.4684 31.1424 61.6944 31.1244 60.9384 31.1424C60.4704 31.1604 60.0024 31.1964 59.5524 31.3044C57.3384 31.8264 56.4924 34.5984 58.0224 36.2904C59.5344 37.9463 62.4864 37.9463 63.9984 36.2544C64.0884 36.1644 64.1064 36.0204 64.1604 35.9124C64.2144 35.9664 64.2864 36.0024 64.3404 36.0564V37.2444H67.2204V37.2264ZM62.2704 35.1744C61.9644 35.2104 61.6404 35.2104 61.3344 35.1744C60.7224 35.0844 60.3444 34.6344 60.3624 34.0764C60.3804 33.5004 60.7404 33.0684 61.3884 33.0504C62.2884 33.0144 63.1704 33.0504 64.0884 33.0504C64.2684 34.0224 63.4584 35.0124 62.2704 35.1744Z" fill="#7E7E7E"/>
|
||||
<path d="M108.605 26.2824C105.527 26.2284 103.151 28.5864 103.097 31.7364C103.043 34.9044 105.311 37.3883 108.263 37.5143C111.395 37.6403 114.041 35.4264 114.059 31.9344C114.077 28.6404 111.701 26.2824 108.605 26.2824ZM110.405 33.8424C109.397 35.3364 107.363 35.2104 106.607 33.5724C106.373 33.0684 106.301 32.4744 106.139 31.8984C106.301 31.3224 106.373 30.7284 106.607 30.2064C106.931 29.4504 107.561 28.9824 108.389 28.8924C109.253 28.8204 109.919 29.1984 110.405 29.9184C111.107 30.9804 111.107 32.7984 110.405 33.8424Z" fill="#7E7E7E"/>
|
||||
<path d="M76.9399 29.4324C76.0939 29.5944 75.2479 29.7384 74.4199 29.8824C74.3479 29.9004 74.2039 29.7204 74.1499 29.6124C73.6459 28.6044 72.6199 28.1724 71.5399 28.5504C71.144 28.6944 70.856 28.9284 70.82 29.3784C70.766 29.8464 71.0359 30.1344 71.4319 30.2604C72.4039 30.5664 73.3939 30.7824 74.3479 31.1064C74.9779 31.3224 75.6439 31.5744 76.1479 31.9704C77.2459 32.8524 77.3719 34.4904 76.5799 35.6964C75.9319 36.6684 75.0139 37.1903 73.8799 37.3883C72.1519 37.6943 70.478 37.5683 68.984 36.5424C68.3 36.0744 67.904 35.4084 67.742 34.5444C68.552 34.3464 69.326 34.1484 70.1 33.9684C70.19 33.9504 70.388 34.0584 70.424 34.1664C71.036 35.3904 72.5839 35.4624 73.4479 35.1744C73.8439 35.0484 74.1499 34.7784 74.1499 34.2924C74.1679 33.8064 73.8259 33.6264 73.4659 33.5184C72.5839 33.2664 71.6839 33.0324 70.802 32.7804C70.478 32.6904 70.154 32.5644 69.83 32.4384C68.732 31.9884 68.03 31.2324 67.958 29.9904C67.886 28.7844 68.282 27.7944 69.308 27.0924C70.208 26.4624 71.234 26.3004 72.2959 26.2824C73.6099 26.2824 74.8699 26.4984 75.8599 27.4524C76.3999 27.9924 76.7599 28.6224 76.9399 29.4324Z" fill="#7E7E7E"/>
|
||||
<path d="M77.5701 34.5264C78.3621 34.3284 79.1181 34.1304 79.8741 33.9684C79.9821 33.9504 80.1981 34.0404 80.2521 34.1304C80.8281 35.2644 82.1961 35.4444 83.1861 35.1744C83.6901 35.0484 83.9781 34.6884 83.9961 34.2744C84.0141 33.7704 83.6541 33.5904 83.2761 33.4824C82.3941 33.2124 81.4941 32.9964 80.5941 32.7624C80.2701 32.6724 79.9461 32.5464 79.6221 32.4204C78.5421 31.9704 77.8581 31.2144 77.7681 30.0084C77.6961 28.8204 78.0741 27.8304 79.0641 27.1284C79.9641 26.4804 81.0081 26.3004 82.0881 26.3004C83.4021 26.3004 84.6441 26.5164 85.6521 27.4704C86.192 27.9744 86.57 28.6584 86.75 29.4504C86.084 29.5764 85.4 29.6664 84.7521 29.8284C84.3021 29.9364 84.0681 29.8644 83.8341 29.3964C83.3661 28.4784 82.1061 28.1544 81.1701 28.6224C80.8461 28.7844 80.6481 29.0544 80.6481 29.4324C80.6481 29.8104 80.8461 30.0804 81.1701 30.1884C81.9261 30.4404 82.7181 30.6384 83.4741 30.8904C84.1401 31.1064 84.8421 31.2684 85.454 31.5924C86.966 32.4024 87.362 34.2384 86.408 35.6784C85.778 36.6504 84.8421 37.1724 83.7261 37.3704C81.9981 37.6764 80.3241 37.5504 78.8301 36.5244C78.1461 36.0744 77.7501 35.4084 77.5701 34.5264Z" fill="#7E7E7E"/>
|
||||
<path d="M40.3951 37.2083C40.3951 33.7164 40.3951 30.2604 40.3951 26.7504C39.7111 26.7504 39.0451 26.7504 38.3431 26.7504C38.3431 25.8864 38.3431 25.0944 38.3431 24.2844C38.7751 24.2124 39.2251 24.1584 39.6571 24.0504C40.1971 23.9244 40.6471 23.6544 40.9891 23.2044C41.0611 23.1144 41.1691 23.0064 41.2591 23.0064C41.9971 22.9884 42.7531 23.0064 43.5271 23.0064C43.5271 27.7764 43.5271 32.4744 43.5271 37.2083C42.4831 37.2083 41.4571 37.2083 40.3951 37.2083Z" fill="#7E7E7E"/>
|
||||
<path d="M117.95 26.5884C117.95 27.1824 117.95 27.7404 117.95 28.2984C117.986 28.2984 118.004 28.3164 118.04 28.3164C118.166 28.1184 118.274 27.9024 118.4 27.7044C119.084 26.6064 120.434 26.0484 121.658 26.3364C121.982 26.4084 122.18 26.5164 122.072 26.9484C121.892 27.6324 121.766 28.3164 121.712 29.0184C121.676 29.4684 121.46 29.4324 121.136 29.4324C120.596 29.4144 120.038 29.4324 119.498 29.5224C118.814 29.6304 118.418 30.0984 118.31 30.7644C118.238 31.1784 118.22 31.5924 118.22 32.0064C118.202 33.5724 118.22 35.1564 118.22 36.7224C118.22 36.8843 118.22 37.0463 118.22 37.2443C117.194 37.2443 116.204 37.2443 115.178 37.2443C115.178 33.6984 115.178 30.1884 115.178 26.6064C116.06 26.5884 116.96 26.5884 117.95 26.5884Z" fill="#7E7E7E"/>
|
||||
</svg>
|
||||
|
||||
|
Before Width: | Height: | Size: 8.5 KiB After Width: | Height: | Size: 8.5 KiB |
12
apps/www/public/images/logos/publicity/archive/1password.svg
Normal file
@@ -0,0 +1,12 @@
|
||||
<svg width="137" height="27" viewBox="0 0 137 27" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M13.6032 26.1373C20.715 26.1373 26.4803 20.372 26.4803 13.2601C26.4803 6.14831 20.715 0.383026 13.6032 0.383026C6.49135 0.383026 0.726074 6.14831 0.726074 13.2601C0.726074 20.372 6.49135 26.1373 13.6032 26.1373ZM16.0684 6.39769V13.7932C16.0684 13.9913 15.9897 14.1814 15.8495 14.3215L14.961 15.21C14.9027 15.2684 14.9027 15.363 14.961 15.4213L15.8495 16.3099C15.9897 16.45 16.0684 16.64 16.0684 16.8382V20.3206C16.0684 20.7333 15.7339 21.0678 15.3212 21.0678H11.8851C11.4725 21.0678 11.138 20.7333 11.138 20.3206V12.9643C11.138 12.7662 11.2167 12.5761 11.3568 12.436L12.2258 11.567C12.2842 11.5087 12.2842 11.4141 12.2258 11.3557L11.3568 10.4867C11.2167 10.3466 11.138 10.1566 11.138 9.95842V6.39769C11.138 5.98505 11.4725 5.65054 11.8851 5.65054H15.3212C15.7339 5.65054 16.0684 5.98505 16.0684 6.39769Z" fill="#B4B4B4"/>
|
||||
<path d="M85.1065 9.42945C86.1665 9.42945 87.1465 9.40945 88.1265 9.44945C88.2265 9.44945 88.3864 9.70945 88.4264 9.86944C88.9464 12.3694 89.4665 14.8694 89.9865 17.3694C90.0464 17.6494 90.1064 17.9094 90.2064 18.3294C90.3064 18.0694 90.3664 17.9694 90.3864 17.8494C91.0264 15.2094 91.6664 12.5694 92.2864 9.90944C92.3664 9.52945 92.5064 9.38945 92.9064 9.40945C93.7264 9.42945 94.5264 9.42945 95.3464 9.40945C95.7064 9.38945 95.8264 9.52945 95.9064 9.86944C96.5864 12.5494 97.2864 15.2294 97.9664 17.9094C98.0064 18.0294 98.0464 18.1494 98.1464 18.4094C98.4464 16.9894 98.7064 15.7294 98.9864 14.4494C99.3064 12.9294 99.6264 11.3894 99.9264 9.86944C100.006 9.50945 100.166 9.38945 100.526 9.40945C101.406 9.42945 102.286 9.40945 103.226 9.40945C103.166 9.72945 103.126 9.98944 103.066 10.2294C102.206 13.7494 101.326 17.2694 100.466 20.7894C100.366 21.1894 100.206 21.3094 99.8064 21.3094C98.5664 21.2894 97.3064 21.2894 96.0464 21.2894C95.4264 18.6494 94.8064 16.0294 94.2064 13.4294C94.1664 13.4294 94.1464 13.4094 94.1064 13.4094C93.4864 16.0294 92.8664 18.6494 92.2264 21.2694C90.8264 21.2694 89.4664 21.2694 88.0665 21.2694C87.0465 17.3494 86.0865 13.4294 85.1065 9.42945Z" fill="#B4B4B4"/>
|
||||
<path d="M133.125 5.00948V10.6694C132.825 10.4294 132.545 10.1694 132.265 9.94945C130.345 8.46946 127.145 8.98945 125.645 11.0894C124.145 13.1894 123.985 15.4894 124.745 17.8894C125.305 19.6894 126.485 20.9894 128.365 21.4694C130.145 21.9294 132.145 21.4294 133.005 19.7694C133.025 19.7294 133.085 19.7094 133.225 19.5894V21.2894H136.385V5.00948H133.125ZM133.005 15.2894C133.025 16.3694 132.825 17.2694 132.145 18.0494C131.305 19.0094 129.205 19.0494 128.425 17.6894C127.565 16.1694 127.545 14.5894 128.405 13.0894C129.285 11.5494 131.525 11.5694 132.465 13.0894C132.905 13.7894 133.045 14.5694 133.005 15.2894Z" fill="#B4B4B4"/>
|
||||
<path d="M50.049 6.78947C49.089 6.08947 48.009 5.74947 46.829 5.74947C44.749 5.72947 42.669 5.72947 40.589 5.72947C40.469 5.72947 40.369 5.74947 40.229 5.76947V21.2894H43.649V20.7294C43.649 19.3894 43.669 18.0294 43.649 16.6894C43.649 16.3494 43.749 16.2294 44.109 16.2294C45.109 16.2294 46.109 16.2294 47.109 16.1494C50.129 15.9094 51.929 13.9894 52.009 10.9894C52.029 9.26945 51.449 7.82946 50.049 6.78947ZM46.069 13.2094C45.409 13.2094 44.749 13.1894 44.069 13.2094C43.749 13.2094 43.629 13.1094 43.629 12.7694C43.649 12.1494 43.629 11.5494 43.629 10.9294C43.629 10.3294 43.649 9.72944 43.629 9.12945C43.629 8.82945 43.709 8.66945 44.049 8.68945C44.889 8.72945 45.749 8.70945 46.589 8.74945C47.589 8.80945 48.289 9.46945 48.409 10.4694C48.649 12.1894 47.789 13.1894 46.069 13.2094Z" fill="#B4B4B4"/>
|
||||
<path d="M63.3149 21.2894C63.2549 18.4694 63.2549 15.6894 63.0949 12.9294C63.0149 11.6294 62.2549 10.5694 61.095 9.86945C59.275 8.76945 55.975 8.78946 54.155 10.5694C53.515 11.2094 53.015 11.9294 52.795 12.8494C53.635 13.0494 54.435 13.2094 55.195 13.4494C55.635 13.5694 55.935 13.5694 56.115 13.0494C56.195 12.8094 56.415 12.5694 56.615 12.3894C57.195 11.8694 57.875 11.7494 58.615 11.9694C59.295 12.1894 59.655 12.7094 59.795 13.3894C59.995 14.3094 59.815 14.5294 58.875 14.5294C58.035 14.5294 57.175 14.5094 56.335 14.5294C55.815 14.5494 55.295 14.5894 54.795 14.7094C52.335 15.2894 51.395 18.3694 53.095 20.2494C54.775 22.0894 58.055 22.0894 59.735 20.2094C59.835 20.1094 59.855 19.9494 59.915 19.8294C59.975 19.8894 60.055 19.9294 60.115 19.9894V21.3094H63.3149V21.2894ZM57.815 19.0094C57.475 19.0494 57.115 19.0494 56.775 19.0094C56.095 18.9094 55.675 18.4094 55.695 17.7894C55.715 17.1494 56.115 16.6694 56.835 16.6494C57.835 16.6094 58.815 16.6494 59.835 16.6494C60.035 17.7294 59.135 18.8294 57.815 19.0094Z" fill="#B4B4B4"/>
|
||||
<path d="M109.298 9.12945C105.878 9.06945 103.238 11.6894 103.178 15.1894C103.118 18.7094 105.638 21.4694 108.918 21.6094C112.398 21.7494 115.338 19.2894 115.358 15.4094C115.378 11.7494 112.738 9.12945 109.298 9.12945ZM111.298 17.5294C110.178 19.1894 107.918 19.0494 107.078 17.2294C106.818 16.6694 106.738 16.0094 106.558 15.3694C106.738 14.7294 106.818 14.0694 107.078 13.4894C107.438 12.6494 108.138 12.1294 109.058 12.0294C110.018 11.9494 110.758 12.3694 111.298 13.1694C112.078 14.3494 112.078 16.3694 111.298 17.5294Z" fill="#B4B4B4"/>
|
||||
<path d="M74.1144 12.6294C73.1744 12.8094 72.2344 12.9694 71.3145 13.1294C71.2345 13.1494 71.0745 12.9494 71.0145 12.8294C70.4545 11.7094 69.3145 11.2294 68.1145 11.6494C67.6745 11.8094 67.3545 12.0694 67.3145 12.5694C67.2545 13.0894 67.5545 13.4094 67.9945 13.5494C69.0745 13.8894 70.1745 14.1294 71.2345 14.4894C71.9345 14.7294 72.6744 15.0094 73.2344 15.4494C74.4544 16.4294 74.5944 18.2494 73.7144 19.5894C72.9944 20.6694 71.9745 21.2494 70.7145 21.4694C68.7945 21.8094 66.9345 21.6694 65.2745 20.5294C64.5145 20.0094 64.0745 19.2694 63.8945 18.3094C64.7945 18.0894 65.6545 17.8694 66.5145 17.6694C66.6145 17.6494 66.8345 17.7694 66.8745 17.8894C67.5545 19.2494 69.2745 19.3294 70.2345 19.0094C70.6745 18.8694 71.0145 18.5694 71.0145 18.0294C71.0345 17.4894 70.6545 17.2894 70.2545 17.1694C69.2745 16.8894 68.2745 16.6294 67.2945 16.3494C66.9345 16.2494 66.5745 16.1094 66.2145 15.9694C64.9945 15.4694 64.2145 14.6294 64.1345 13.2494C64.0545 11.9094 64.4945 10.8094 65.6345 10.0294C66.6345 9.32945 67.7745 9.14945 68.9545 9.12945C70.4145 9.12945 71.8145 9.36945 72.9144 10.4294C73.5144 11.0294 73.9144 11.7294 74.1144 12.6294Z" fill="#B4B4B4"/>
|
||||
<path d="M74.8147 18.2894C75.6947 18.0694 76.5346 17.8494 77.3746 17.6694C77.4946 17.6494 77.7346 17.7494 77.7946 17.8494C78.4346 19.1094 79.9546 19.3094 81.0546 19.0094C81.6146 18.8694 81.9346 18.4694 81.9546 18.0094C81.9746 17.4494 81.5746 17.2494 81.1546 17.1294C80.1746 16.8294 79.1746 16.5894 78.1746 16.3294C77.8146 16.2294 77.4546 16.0894 77.0946 15.9494C75.8946 15.4494 75.1347 14.6094 75.0347 13.2694C74.9547 11.9494 75.3746 10.8494 76.4746 10.0694C77.4746 9.34945 78.6346 9.14946 79.8346 9.14946C81.2946 9.14946 82.6746 9.38945 83.7946 10.4494C84.3946 11.0094 84.8146 11.7694 85.0146 12.6494C84.2746 12.7894 83.5146 12.8894 82.7946 13.0694C82.2946 13.1894 82.0346 13.1094 81.7746 12.5894C81.2546 11.5694 79.8546 11.2094 78.8146 11.7294C78.4546 11.9094 78.2346 12.2094 78.2346 12.6294C78.2346 13.0494 78.4546 13.3494 78.8146 13.4694C79.6546 13.7494 80.5346 13.9694 81.3746 14.2494C82.1146 14.4894 82.8946 14.6694 83.5746 15.0294C85.2546 15.9294 85.6946 17.9694 84.6346 19.5694C83.9346 20.6494 82.8946 21.2294 81.6546 21.4494C79.7346 21.7894 77.8746 21.6494 76.2146 20.5094C75.4547 20.0094 75.0147 19.2694 74.8147 18.2894Z" fill="#B4B4B4"/>
|
||||
<path d="M33.5091 21.2694C33.5091 17.3894 33.5091 13.5494 33.5091 9.64945C32.7491 9.64945 32.0091 9.64945 31.2291 9.64945C31.2291 8.68945 31.2291 7.80946 31.2291 6.90946C31.7091 6.82946 32.2091 6.76947 32.6891 6.64947C33.2891 6.50947 33.7891 6.20947 34.1691 5.70947C34.2491 5.60947 34.3691 5.48947 34.4691 5.48947C35.2891 5.46947 36.1291 5.48947 36.9891 5.48947C36.9891 10.7894 36.9891 16.0094 36.9891 21.2694C35.8291 21.2694 34.6891 21.2694 33.5091 21.2694Z" fill="#B4B4B4"/>
|
||||
<path d="M119.681 9.46945C119.681 10.1294 119.681 10.7494 119.681 11.3694C119.721 11.3694 119.741 11.3894 119.781 11.3894C119.921 11.1694 120.041 10.9294 120.181 10.7094C120.941 9.48945 122.441 8.86945 123.801 9.18945C124.161 9.26945 124.381 9.38945 124.261 9.86944C124.061 10.6294 123.921 11.3894 123.861 12.1694C123.821 12.6694 123.581 12.6294 123.221 12.6294C122.621 12.6094 122.001 12.6294 121.401 12.7294C120.641 12.8494 120.201 13.3694 120.081 14.1094C120.001 14.5694 119.981 15.0294 119.981 15.4894C119.961 17.2294 119.981 18.9894 119.981 20.7294C119.981 20.9094 119.981 21.0894 119.981 21.3094C118.841 21.3094 117.741 21.3094 116.601 21.3094C116.601 17.3694 116.601 13.4694 116.601 9.48945C117.581 9.46945 118.581 9.46945 119.681 9.46945Z" fill="#B4B4B4"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 8.5 KiB |
@@ -0,0 +1,11 @@
|
||||
<svg width="171" height="36" viewBox="0 0 171 36" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<g clip-path="url(#clip0_117_159)">
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M34.8532 18.0184C34.8532 27.4482 27.2089 35.0925 17.7791 35.0925C8.3494 35.0925 0.705078 27.4482 0.705078 18.0184C0.705078 8.58867 8.3494 0.944351 17.7791 0.944351C27.2089 0.944351 34.8532 8.58867 34.8532 18.0184ZM13.942 11.1845C13.867 11.1411 13.7723 11.1963 13.7723 11.2831V24.7656C13.7724 24.7854 13.7776 24.8049 13.7875 24.8221C13.7974 24.8393 13.8117 24.8536 13.8288 24.8636C13.846 24.8736 13.8655 24.8789 13.8853 24.879C13.9052 24.8791 13.9247 24.874 13.942 24.8642L25.6179 18.123C25.6928 18.0796 25.6928 17.9691 25.6179 17.9257L13.942 11.1845ZM15.9793 10.1411C15.8748 10.1411 15.8373 10.2812 15.928 10.3344H15.9261L25.2924 15.7424C25.3851 15.7957 25.4877 15.6931 25.4345 15.6024L22.3853 10.2969C22.3301 10.2003 22.2275 10.1411 22.1171 10.1411H15.9793ZM11.8494 23.454C11.9026 23.5467 12.0426 23.5093 12.0426 23.4028V12.6282C12.0426 12.5217 11.9026 12.4862 11.8494 12.5769L8.81204 17.8606C8.75682 17.9573 8.75682 18.0756 8.81204 18.1703L11.8494 23.454ZM25.2826 20.3122C25.3753 20.2589 25.4778 20.3615 25.4246 20.4522L25.4226 20.4542L22.3833 25.7379C22.3281 25.8346 22.2255 25.8938 22.1151 25.8938H16.001C15.8965 25.8938 15.859 25.7537 15.9497 25.7005L25.2826 20.3122ZM28.523 17.5017C28.7065 17.8212 28.7065 18.2117 28.523 18.5312L23.5943 27.1028C23.4109 27.4242 23.0677 27.6215 22.6989 27.6215H12.8493C12.6677 27.6211 12.4893 27.573 12.3322 27.482C12.175 27.3909 12.0445 27.2602 11.9539 27.1028L7.02515 18.5312C6.84173 18.2117 6.84173 17.8212 7.02515 17.5017L11.9539 8.93014C12.1373 8.60866 12.4805 8.41143 12.8493 8.41143H22.6989C22.8805 8.41176 23.0589 8.45986 23.216 8.55091C23.3732 8.64195 23.5037 8.77274 23.5943 8.93014L28.523 17.5017Z" fill="#A0A0A0"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M44.1165 21.1129C44.1165 18.8566 45.7831 17.0638 48.1557 17.0638C50.5284 17.0638 52.195 18.8566 52.195 21.1129C52.195 23.3692 50.5008 25.1896 48.1557 25.1896C45.8107 25.1896 44.1165 23.3692 44.1165 21.1129ZM48.8618 27.9883C52.7038 27.9883 55.3309 24.945 55.3309 21.1129C55.3309 17.2807 52.7038 14.2651 48.8618 14.2651C46.998 14.2651 45.1618 15.1073 44.2013 16.6023V8.64016H41.0654V27.6609H44.0317V25.3237C44.935 27.0356 46.9132 27.9863 48.8618 27.9863V27.9883ZM59.4608 19.5627C59.9421 17.8231 61.2398 16.7364 63.1609 16.7364C65.0819 16.7364 66.4388 17.8231 66.8904 19.5627H59.4608ZM63.3877 28.0672C66.1567 28.0672 68.5866 26.8996 69.8015 24.2902V24.235C68.9535 24.2902 67.6833 23.7183 67.1745 23.0398L67.1468 23.0674C66.638 24.4263 65.283 25.4322 63.4468 25.4322C61.2438 25.4322 59.5772 24.0457 59.2932 21.7913H69.8863C70.3952 17.689 67.6833 14.1823 63.1904 14.1823C59.2064 14.1823 56.3249 17.2807 56.3249 21.1109C56.3249 24.9411 59.2636 28.0672 63.3877 28.0672ZM70.553 17.2807H72.3892V27.6609H75.5547V17.2807H77.5605V14.5629H75.5547V10.3758H72.3892V14.5629H70.553V17.2807ZM81.2704 21.1129C81.2704 18.8566 82.937 17.0638 85.3096 17.0638C87.6823 17.0638 89.3784 18.8842 89.3784 21.1129C89.3784 23.3416 87.7119 25.1896 85.3096 25.1896C82.9074 25.1896 81.2704 23.3692 81.2704 21.1129ZM84.6331 27.9606C86.4693 27.9606 88.4751 27.0633 89.3784 25.3789V27.6609H92.4296V14.5629H89.3784V16.8449C88.4751 15.1605 86.4693 14.2631 84.6331 14.2631C80.7635 14.2631 78.1344 17.3064 78.1344 21.1109C78.1344 24.9154 80.7615 27.9587 84.6331 27.9587V27.9606ZM99.6106 28.0691C102.719 28.0691 104.837 26.1678 104.837 23.6946C104.837 21.2214 102.859 20.1346 100.768 19.7264L99.4962 19.4818C98.3661 19.2372 97.518 18.9375 97.518 18.0696C97.518 17.3083 98.2517 16.6023 99.4114 16.6023C100.684 16.6023 101.672 17.2275 101.981 18.5588H102.009C102.545 17.9336 103.818 17.4444 104.664 17.5529L104.691 17.5253C104.182 15.6773 102.346 14.1566 99.4923 14.1566C96.6384 14.1566 94.463 16.0047 94.463 18.2333C94.463 20.2451 95.8199 21.4403 98.5594 22.0103L99.8867 22.2824C100.932 22.527 101.751 22.8524 101.751 23.805C101.751 24.7577 101.017 25.517 99.6323 25.517C97.9381 25.517 96.7232 24.4303 96.4964 23.0714L96.4688 23.0437C95.9323 23.669 94.6602 24.1305 93.8141 24.022L93.7865 24.0496C94.2953 26.4952 96.5556 28.0711 99.6067 28.0711L99.6106 28.0691ZM106.362 27.6609H109.498V20.2155C109.498 18.3142 110.855 17.0638 112.718 17.0638C114.582 17.0638 115.77 18.259 115.77 20.107V27.6609H118.905V18.9927C118.905 16.2216 116.702 14.2375 113.791 14.2375C112.068 14.2375 110.373 14.9988 109.498 16.547V8.64016H106.362V27.6609ZM123.544 21.1129C123.544 18.8566 125.211 17.0638 127.584 17.0638C129.956 17.0638 131.652 18.8842 131.652 21.1129C131.652 23.3416 129.986 25.1896 127.584 25.1896C125.181 25.1896 123.544 23.3692 123.544 21.1129ZM126.907 27.9606C128.743 27.9606 130.749 27.0633 131.652 25.3789V27.6609H134.703V14.5629H131.652V16.8449C130.749 15.1605 128.743 14.2631 126.907 14.2631C123.037 14.2631 120.408 17.3064 120.408 21.1109C120.408 24.9154 123.035 27.9587 126.907 27.9587V27.9606ZM137.167 18.1505V27.6609H140.303V21.8466C140.303 19.5646 141.009 17.4444 143.297 17.4444C143.975 17.4444 144.569 17.6081 144.878 17.8527H144.906C144.934 17.0105 145.669 15.7877 146.403 15.3262V15.271C145.894 14.701 144.991 14.3479 143.776 14.3479C142.052 14.3479 140.837 15.3814 140.216 16.7936V14.5649H137.165V18.1525L137.167 18.1505ZM148.665 19.5627C149.145 17.8231 150.444 16.7364 152.365 16.7364C154.286 16.7364 155.643 17.8231 156.095 19.5627H148.665ZM152.592 28.0672C155.361 28.0672 157.791 26.8996 159.006 24.2902V24.235C158.158 24.2902 156.888 23.7183 156.379 23.0398L156.351 23.0674C155.842 24.4263 154.487 25.4322 152.651 25.4322C150.448 25.4322 148.782 24.0457 148.498 21.7913H159.091C159.6 17.689 156.888 14.1823 152.395 14.1823C148.411 14.1823 145.529 17.2807 145.529 21.1109C145.529 24.9411 148.468 28.0672 152.592 28.0672ZM165.708 28.0691C168.816 28.0691 170.934 26.1678 170.934 23.6946C170.934 21.2214 168.956 20.1346 166.866 19.7264L165.593 19.4818C164.463 19.2372 163.615 18.9375 163.615 18.0696C163.615 17.3083 164.349 16.6023 165.509 16.6023C166.781 16.6023 167.769 17.2275 168.078 18.5588H168.106C168.643 17.9336 169.915 17.4444 170.761 17.5529L170.788 17.5253C170.28 15.6773 168.443 14.1566 165.589 14.1566C162.736 14.1566 160.56 16.0047 160.56 18.2333C160.56 20.2451 161.917 21.4403 164.657 22.0103L165.984 22.2824C167.029 22.527 167.848 22.8524 167.848 23.805C167.848 24.7577 167.114 25.517 165.729 25.517C164.035 25.517 162.82 24.4303 162.594 23.0714L162.566 23.0437C162.029 23.669 160.757 24.1305 159.911 24.022L159.884 24.0496C160.392 26.4952 162.653 28.0711 165.704 28.0711L165.708 28.0691Z" fill="#B4B4B4"/>
|
||||
</g>
|
||||
<defs>
|
||||
<clipPath id="clip0_117_159">
|
||||
<rect width="170.384" height="34.4676" fill="white" transform="translate(0.610352 0.780807)"/>
|
||||
</clipPath>
|
||||
</defs>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 6.6 KiB |
11
apps/www/public/images/logos/publicity/archive/chatbase.svg
Normal file
@@ -0,0 +1,11 @@
|
||||
<svg width="152" height="40" viewBox="0 0 152 40" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M10.9776 0.520279C4.91161 0.520279 -0.00585938 5.40031 -0.00585938 11.4201V28.6091C-0.00585938 34.6289 4.91161 39.5089 10.9776 39.5089H30.2652C36.3312 39.5089 41.2487 34.6289 41.2487 28.6091V11.4201C41.2487 5.40031 36.3312 0.520279 30.2652 0.520279H10.9776ZM20.5832 29.156C18.664 29.156 17.0203 28.76 15.6521 27.9774C14.2839 27.1948 13.2292 26.101 12.4976 24.7055C11.766 23.3101 11.3955 21.6883 11.3955 19.8496C11.3955 18.011 11.766 16.3798 12.5071 14.9749C13.2482 13.5794 14.3029 12.4856 15.6711 11.703C17.0393 10.9204 18.6735 10.5244 20.5832 10.5244C22.265 10.5244 23.7282 10.8261 24.9823 11.4296C26.2365 12.033 27.2151 12.8816 27.9182 13.9848C28.6213 15.088 29.0014 16.3798 29.0394 17.8601H23.6236C23.5096 16.9361 23.1961 16.2101 22.683 15.682C22.1699 15.154 21.4954 14.89 20.6687 14.89C19.9942 14.89 19.4051 15.0786 18.9015 15.4463C18.3979 15.8235 17.9989 16.3704 17.7233 17.0964C17.4478 17.8224 17.3053 18.7182 17.3053 19.7836C17.3053 20.8491 17.4478 21.7449 17.7233 22.4803C17.9989 23.2158 18.3979 23.7626 18.9015 24.1398C19.4051 24.5075 19.9942 24.6961 20.6687 24.6961C21.2103 24.6961 21.6854 24.583 22.0939 24.3567C22.512 24.1304 22.854 23.7909 23.1201 23.3478C23.3861 22.9046 23.5571 22.3672 23.6331 21.7354H29.0489C28.9919 23.2252 28.6213 24.5264 27.9277 25.639C27.2341 26.7516 26.265 27.6191 25.0298 28.232C23.7852 28.8448 22.3125 29.156 20.6022 29.156H20.5832Z" fill="#B4B4B4"/>
|
||||
<path d="M67.5295 16.9738H66.0378C65.9238 16.4269 65.7242 15.9178 65.4392 15.4463C65.1542 14.9749 64.7931 14.5694 64.356 14.2205C63.919 13.8717 63.4344 13.5982 62.8834 13.4002C62.3323 13.2022 61.7432 13.1079 61.1066 13.1079C60.0805 13.1079 59.1493 13.3719 58.3132 13.9C57.4771 14.428 56.8025 15.2011 56.299 16.2289C55.7954 17.2567 55.5484 18.5013 55.5484 19.9816C55.5484 21.462 55.7954 22.7254 56.299 23.7532C56.8025 24.7715 57.4771 25.5447 58.3132 26.0727C59.1589 26.6007 60.09 26.8647 61.1066 26.8647C61.7432 26.8647 62.3418 26.7705 62.8834 26.5725C63.4344 26.3744 63.919 26.1104 64.356 25.7616C64.7931 25.4127 65.1447 25.0072 65.4392 24.5358C65.7242 24.0644 65.9238 23.5552 66.0378 23.0083H67.5295C67.3965 23.7438 67.1494 24.4321 66.7884 25.0733C66.4273 25.705 65.9713 26.2613 65.4107 26.7422C64.8501 27.2231 64.2135 27.5908 63.4914 27.8548C62.7693 28.1188 61.9712 28.2508 61.1066 28.2508C59.7479 28.2508 58.5413 27.9114 57.4866 27.2325C56.432 26.5536 55.6054 25.6013 55.0068 24.3661C54.4082 23.1309 54.1137 21.6694 54.1137 19.9911C54.1137 18.3127 54.4082 16.8512 55.0068 15.616C55.6054 14.3808 56.432 13.4285 57.4866 12.7496C58.5413 12.0707 59.7479 11.7313 61.1066 11.7313C61.9712 11.7313 62.7693 11.8633 63.4914 12.1273C64.2135 12.3913 64.8501 12.7591 65.4107 13.2399C65.9618 13.7208 66.4273 14.2771 66.7884 14.9089C67.1494 15.5406 67.3965 16.2289 67.5295 16.9738Z" fill="#B4B4B4"/>
|
||||
<path d="M72.1277 20.4908V28.0245H70.7215V11.9482H72.1277V17.8601H72.2512C72.5363 17.2378 72.9733 16.7381 73.5719 16.3703C74.1705 16.0026 74.9306 15.814 75.8427 15.814C76.6693 15.814 77.3914 15.9838 78.009 16.3138C78.6361 16.6532 79.1207 17.1435 79.4627 17.7941C79.8142 18.4447 79.9853 19.2556 79.9853 20.2079V28.0151H78.5696V20.2928C78.5696 19.3027 78.294 18.5107 77.7335 17.945C77.1824 17.3698 76.4223 17.0869 75.4817 17.0869C74.8356 17.0869 74.256 17.2189 73.7524 17.4924C73.2489 17.7658 72.8498 18.1524 72.5553 18.671C72.2607 19.1802 72.1182 19.7836 72.1182 20.4908H72.1277Z" fill="#B4B4B4"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M85.1071 27.8737C85.7056 28.1565 86.3802 28.298 87.1118 28.298V28.2885C87.7864 28.2885 88.3755 28.1754 88.8791 27.9679C89.3826 27.7605 89.8007 27.4871 90.1332 27.1476C90.4658 26.8082 90.7128 26.4687 90.8838 26.1104H90.9694V28.0151H92.3755V19.8308C92.3755 19.0199 92.2425 18.3599 91.9765 17.8318C91.701 17.3038 91.3589 16.8889 90.9218 16.5966C90.4848 16.3043 90.0192 16.0969 89.5157 15.9743C89.0121 15.8518 88.5275 15.7952 88.062 15.7952C87.4444 15.7952 86.8363 15.88 86.2377 16.0592C85.6391 16.2383 85.0976 16.5212 84.613 16.9172C84.1284 17.3132 83.7484 17.8413 83.4728 18.5013L84.8125 18.9822C85.031 18.4636 85.4206 18.0204 85.9717 17.6338C86.5228 17.2472 87.2353 17.0587 88.1095 17.0587C89.0406 17.0587 89.7437 17.2944 90.2378 17.7658C90.7318 18.2373 90.9789 18.8879 90.9789 19.7082V19.9911C90.9789 20.2928 90.8553 20.5191 90.6083 20.6511C90.3613 20.7925 90.0002 20.8868 89.5252 20.9528C89.2537 20.9851 88.9513 21.0236 88.6142 21.0665C88.3614 21.0987 88.0891 21.1333 87.7959 21.1697C87.1118 21.2451 86.4847 21.3677 85.9147 21.5186C85.3446 21.6694 84.8505 21.8769 84.4325 22.1409C84.0144 22.4049 83.6914 22.7443 83.4633 23.1498C83.2353 23.5552 83.1213 24.0644 83.1213 24.6584C83.1213 25.4316 83.3018 26.0916 83.6629 26.629C84.0144 27.1759 84.499 27.5908 85.1071 27.8737ZM89.2496 26.5253C88.6985 26.8553 88.0525 27.0156 87.3019 27.0156L87.3114 27.0251C86.5133 27.0251 85.8482 26.8176 85.3256 26.4216C84.803 26.0256 84.537 25.4598 84.537 24.7244C84.537 24.2341 84.67 23.8381 84.9265 23.5269C85.1831 23.2158 85.5536 22.9706 86.0382 22.7915C86.5228 22.6123 87.1118 22.4803 87.7959 22.3954C88.0525 22.3577 88.3375 22.32 88.651 22.2823C88.9646 22.2446 89.2876 22.188 89.6012 22.1314C89.9147 22.0749 90.1997 21.9994 90.4468 21.924C90.6843 21.8486 90.8648 21.7637 90.9694 21.66V23.4043C90.9694 24.0644 90.8268 24.6678 90.5228 25.2147C90.2188 25.7616 89.8007 26.1953 89.2496 26.5253Z" fill="#B4B4B4"/>
|
||||
<path d="M100.898 15.9649V17.1812H98.3233V24.8752C98.3233 25.375 98.4088 25.771 98.5799 26.0539C98.7509 26.3367 98.9789 26.5442 99.264 26.6573C99.5395 26.7705 99.8435 26.8365 100.157 26.8365C100.338 26.8365 100.499 26.827 100.632 26.7988C100.676 26.7893 100.719 26.781 100.759 26.7729C100.84 26.7569 100.914 26.7422 100.984 26.7233L101.288 27.9868C101.155 28.0434 100.984 28.0905 100.784 28.1282C100.585 28.1754 100.338 28.1942 100.043 28.1942C99.53 28.1942 99.0264 28.0811 98.5514 27.8548C98.0763 27.6285 97.6772 27.2985 97.3732 26.8459C97.0692 26.4027 96.9171 25.8464 96.9171 25.1864V17.1812H95.1024V15.9649H96.9171V13.0796H98.3233V15.9649H100.898Z" fill="#B4B4B4"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M104.642 11.9482V28.0245L104.651 28.0151H106.019V25.7804H106.19C106.352 26.1387 106.589 26.5159 106.884 26.9025C107.178 27.2891 107.578 27.6096 108.072 27.8736C108.566 28.1377 109.174 28.2697 109.915 28.2697C110.903 28.2697 111.777 28.0151 112.528 27.4871C113.278 26.9685 113.867 26.233 114.285 25.2995C114.704 24.3661 114.913 23.2723 114.913 22.0277C114.913 20.7831 114.694 19.6988 114.276 18.7653C113.848 17.8318 113.259 17.1058 112.509 16.5872C111.758 16.0686 110.884 15.8046 109.886 15.8046C109.145 15.8046 108.528 15.9366 108.043 16.1912C107.559 16.4458 107.16 16.7758 106.865 17.1529C106.57 17.5301 106.342 17.9073 106.181 18.2656H106.057V11.9482H104.642ZM106.475 24.5829C106.181 23.8381 106.038 22.9706 106.038 21.9994C106.038 21.0377 106.181 20.1891 106.475 19.4442C106.77 18.6993 107.188 18.1241 107.739 17.6998C108.29 17.2755 108.946 17.0681 109.753 17.0681C110.561 17.0681 111.245 17.2849 111.806 17.7187C112.366 18.1618 112.794 18.7464 113.079 19.4913C113.364 20.2362 113.506 21.066 113.506 21.9994C113.506 22.9329 113.354 23.7815 113.069 24.5358C112.784 25.2901 112.357 25.8841 111.796 26.3273C111.236 26.7705 110.532 26.9873 109.744 26.9873C108.955 26.9873 108.29 26.7705 107.739 26.3462C107.188 25.9219 106.77 25.3373 106.475 24.5829Z" fill="#B4B4B4"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M121.411 28.298C120.68 28.298 120.005 28.1565 119.407 27.8737C118.799 27.5908 118.314 27.1759 117.962 26.629C117.601 26.0916 117.421 25.4316 117.421 24.6584C117.421 24.0644 117.535 23.5552 117.763 23.1498C117.991 22.7443 118.314 22.4049 118.732 22.1409C119.15 21.8769 119.644 21.6694 120.214 21.5186C120.784 21.3677 121.411 21.2451 122.096 21.1697C122.389 21.1333 122.661 21.0987 122.914 21.0665L122.916 21.0663L122.917 21.066C123.253 21.0233 123.554 20.985 123.825 20.9528C124.3 20.8868 124.661 20.7925 124.908 20.6511C125.155 20.5191 125.278 20.2928 125.278 19.9911V19.7082C125.278 18.8879 125.031 18.2373 124.537 17.7658C124.043 17.2944 123.34 17.0587 122.409 17.0587C121.535 17.0587 120.822 17.2472 120.271 17.6338C119.72 18.0204 119.331 18.4636 119.112 18.9822L117.772 18.5013C118.048 17.8413 118.428 17.3132 118.913 16.9172C119.397 16.5212 119.939 16.2383 120.537 16.0592C121.136 15.88 121.744 15.7952 122.362 15.7952C122.827 15.7952 123.312 15.8518 123.815 15.9743C124.319 16.0969 124.784 16.3043 125.221 16.5966C125.658 16.8889 126.001 17.3038 126.276 17.8318C126.542 18.3599 126.675 19.0199 126.675 19.8308V28.0151H125.269V26.1104H125.183C125.012 26.4687 124.765 26.8082 124.433 27.1476C124.1 27.4871 123.682 27.7605 123.179 27.9679C122.675 28.1754 122.086 28.2885 121.411 28.2885V28.298ZM121.601 27.0156C122.352 27.0156 122.998 26.8553 123.549 26.5253C124.1 26.1953 124.518 25.7616 124.822 25.2147C125.126 24.6678 125.269 24.0644 125.269 23.4043V21.66C125.164 21.7637 124.984 21.8486 124.746 21.924C124.499 21.9994 124.214 22.0749 123.901 22.1314C123.587 22.188 123.264 22.2446 122.951 22.2823C122.637 22.32 122.352 22.3577 122.096 22.3954C121.411 22.4803 120.822 22.6123 120.338 22.7915C119.853 22.9706 119.483 23.2158 119.226 23.5269C118.97 23.8381 118.837 24.2341 118.837 24.7244C118.837 25.4598 119.103 26.0256 119.625 26.4216C120.148 26.8176 120.813 27.0251 121.611 27.0251L121.601 27.0156Z" fill="#B4B4B4"/>
|
||||
<path d="M137.278 18.9727L138.57 18.6144H138.551C138.257 17.7375 137.772 17.0492 137.107 16.5495C136.442 16.0498 135.549 15.7952 134.437 15.7952C133.62 15.7952 132.889 15.946 132.252 16.2289C131.615 16.5118 131.112 16.9078 130.751 17.417C130.39 17.9167 130.209 18.5013 130.209 19.1707C130.209 19.9816 130.466 20.6511 130.969 21.198C131.473 21.7448 132.252 22.1409 133.307 22.3954L135.292 22.8669C135.957 23.0272 136.461 23.2723 136.784 23.6023C137.117 23.9324 137.278 24.3378 137.278 24.8281C137.278 25.4504 137.003 25.9784 136.442 26.3933C135.881 26.8082 135.131 27.0156 134.2 27.0156C133.364 27.0156 132.699 26.8365 132.185 26.4687C131.672 26.101 131.33 25.5636 131.159 24.847L129.81 25.177C130.029 26.1764 130.523 26.9402 131.292 27.4776C132.062 28.0151 133.041 28.2791 134.228 28.2791C135.121 28.2791 135.91 28.1282 136.585 27.8265C137.259 27.5248 137.791 27.1099 138.171 26.5819C138.551 26.0539 138.741 25.4504 138.741 24.7715C138.741 23.9701 138.494 23.3006 137.981 22.7632C137.478 22.2257 136.708 21.8391 135.691 21.594L133.858 21.1508C133.107 20.9622 132.547 20.7077 132.185 20.3871C131.824 20.0665 131.644 19.6422 131.644 19.1236C131.644 18.5107 131.91 18.011 132.433 17.6244C132.955 17.2378 133.63 17.0398 134.456 17.0398C134.998 17.0398 135.463 17.1247 135.834 17.2944C136.205 17.4641 136.499 17.6998 136.737 17.9921C136.974 18.2844 137.155 18.6144 137.278 18.9727Z" fill="#B4B4B4"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M146.751 28.2791C145.62 28.2791 144.632 28.0151 143.806 27.4871C142.979 26.959 142.343 26.233 141.886 25.2996C141.43 24.3661 141.212 23.2912 141.212 22.0654C141.212 20.8397 141.44 19.7742 141.886 18.8313C142.333 17.8884 142.96 17.1435 143.758 16.6061C144.556 16.0686 145.478 15.8046 146.533 15.8046C147.188 15.8046 147.825 15.9272 148.442 16.1629C149.06 16.3986 149.601 16.7664 150.096 17.2567C150.59 17.747 150.97 18.3599 151.255 19.1047C151.54 19.8496 151.682 20.7171 151.682 21.7354V22.4237H142.639C142.658 23.3138 142.828 24.088 143.141 24.7621C143.473 25.4787 143.948 26.0256 144.566 26.4216C145.183 26.8176 145.915 27.0062 146.761 27.0062C147.331 27.0062 147.844 26.9213 148.271 26.7422C148.708 26.563 149.069 26.3273 149.373 26.0256C149.668 25.7239 149.896 25.3938 150.048 25.0355L151.388 25.4693C151.207 25.9784 150.903 26.4499 150.485 26.8742C150.067 27.2985 149.544 27.6474 148.917 27.9114C148.29 28.166 147.578 28.298 146.761 28.298L146.751 28.2791ZM143.141 19.3216C142.855 19.8971 142.695 20.5214 142.65 21.1885H150.248C150.248 20.4154 150.086 19.7176 149.773 19.0953C149.459 18.473 149.022 17.9827 148.471 17.6244C147.92 17.2661 147.274 17.0869 146.542 17.0869C145.772 17.0869 145.098 17.2944 144.509 17.6998C143.92 18.1053 143.464 18.6427 143.141 19.3216Z" fill="#B4B4B4"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 12 KiB |
10
apps/www/public/images/logos/publicity/archive/gopuff.svg
Normal file
@@ -0,0 +1,10 @@
|
||||
<svg width="83" height="28" viewBox="0 0 83 28" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<g clip-path="url(#clip0_117_150)">
|
||||
<path d="M57.5049 7.28413V15.0856C57.5049 17.1048 56.8419 18.3062 55.2848 18.3062C53.7354 18.3062 53.0648 17.1048 53.0648 15.0856V7.28413H48.6471V15.3824C48.6471 19.6233 51.2993 21.3748 55.2774 21.3748C58.5628 21.3748 61.9077 19.6233 61.9077 15.3824V7.28413C61.9151 7.28413 57.5049 7.28413 57.5049 7.28413ZM23.8769 6.97293C19.3178 6.97293 16.2931 9.83158 16.2931 14.2752C16.2931 18.7333 19.4965 21.3748 23.6162 21.3748C27.4155 21.3748 31.1032 19.0733 31.1032 14.0363C31.1032 9.88224 28.2201 6.97293 23.8769 6.97293ZM23.7429 18.3279C21.8581 18.3279 20.8448 16.5477 20.8448 14.1811C20.8448 12.133 21.6494 10.0342 23.7577 10.0342C25.7542 10.0342 26.5588 12.133 26.5588 14.1666C26.5662 16.6561 25.4712 18.3279 23.7429 18.3279ZM13.1494 6.31436C11.6669 7.29861 11.2795 8.80392 11.2795 8.80392C10.4749 7.81968 8.81363 7.03807 6.86926 7.03807C3.62119 7.03807 0.224121 9.85329 0.224121 14.2969C0.224121 18.241 3.09225 21.2734 6.86926 21.2734C8.43369 21.2734 9.49156 20.8971 10.3334 20.0865V20.3832C10.3334 22.8873 8.73913 24.0091 6.64577 24.0091C4.5971 24.0091 3.15185 23.3505 2.25045 22.8512L1.37882 26.1078C2.55588 26.7013 4.88763 27.2802 6.7575 27.2802C8.85088 27.2802 10.9591 26.8894 12.5012 25.5939C14.1104 24.2189 14.6617 22.0406 14.6617 19.3991V13.2982C14.6914 11.1849 15.4663 9.70131 16.4197 8.65193C16.4197 8.6447 13.1494 6.31436 13.1494 6.31436ZM7.68128 18.3713C5.7965 18.3713 4.78333 16.5911 4.78333 14.2245C4.78333 12.1764 5.58791 10.0776 7.69618 10.0776C9.67779 10.0921 10.4824 12.1764 10.4824 14.21C10.4824 16.6996 9.40216 18.3713 7.68128 18.3713ZM39.8789 6.97293C35.1484 6.97293 32.5708 10.0198 32.5708 14.5285V26.9762H36.981V20.159C37.7706 20.955 39.0296 21.3964 40.7132 21.3964C43.8719 21.3964 47.1721 19.0371 47.1721 14.0146C47.1721 9.6 44.1773 6.97293 39.8789 6.97293ZM39.8639 18.3279C37.9792 18.3279 36.966 16.5477 36.966 14.1811C36.966 12.133 37.7706 10.0342 39.8789 10.0342C41.8754 10.0342 42.68 12.133 42.68 14.1666C42.6576 16.6561 41.5848 18.3279 39.8639 18.3279ZM82.5954 4.34587V1.06023C81.9847 0.886543 81.2248 0.763513 80.2638 0.763513C78.9749 0.763513 77.4477 1.12537 76.3377 2.13856C75.0787 3.28203 74.5498 5.113 74.5498 6.74859V7.26241H69.9906V6.56766C69.9236 3.2386 73.2759 4.20837 73.6632 4.3314V1.04576C73.0449 0.872069 72.2851 0.749039 71.324 0.749039C70.0353 0.749039 68.5081 1.11089 67.3981 2.12408C66.1391 3.26754 65.6102 5.0913 65.6102 6.73411V7.24795H63.7254V10.4106H65.6102V21.0635C65.6102 23.9873 63.5167 23.5675 62.5856 23.4229L62.1163 26.5855C62.5633 26.7591 63.2784 26.9328 64.001 26.9328C65.9975 26.9473 67.413 26.3538 68.3665 25.4493C69.5584 24.3058 70.013 22.6629 70.013 21.0346L70.0427 10.4178H74.5647V21.0708C74.6318 24.1537 72.151 23.5241 71.5402 23.4301L71.0709 26.5926C71.5178 26.7663 72.2329 26.94 72.9555 26.94C74.9521 26.9546 76.3676 26.3611 77.321 25.4564C78.513 24.313 78.96 22.6702 78.96 21.0419L78.9899 10.425H82.6104V7.28413H78.9376V6.58214C78.9825 3.21688 82.2081 4.23731 82.5954 4.34587Z" fill="#B4B4B4"/>
|
||||
</g>
|
||||
<defs>
|
||||
<clipPath id="clip0_117_150">
|
||||
<rect width="82.3863" height="26.5312" fill="white" transform="translate(0.224121 0.749039)"/>
|
||||
</clipPath>
|
||||
</defs>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 3.2 KiB |
11
apps/www/public/images/logos/publicity/archive/humata.svg
Normal file
@@ -0,0 +1,11 @@
|
||||
<svg width="114" height="19" viewBox="0 0 114 19" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M3.76891 3.19437C3.25351 3.19437 2.83571 3.61214 2.83571 4.12755V14.3927C2.83571 14.9081 3.25351 15.3259 3.76891 15.3259H7.03505V18.1255H3.76891C1.70736 18.1255 0.0361328 16.4542 0.0361328 14.3927V4.12755C0.0361328 2.06602 1.70736 0.394806 3.76891 0.394806H7.03505V3.19437H3.76891Z" fill="#B4B4B4"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M22.4327 15.3259C22.9481 15.3259 23.3659 14.9081 23.3659 14.3927V4.12758C23.3659 3.61217 22.9481 3.1944 22.4327 3.1944H19.1665V0.394836H22.4327C24.4942 0.394836 26.1655 2.06605 26.1655 4.12758V14.3927C26.1655 16.4543 24.4942 18.1255 22.4327 18.1255H19.1665V15.3259H22.4327Z" fill="#B4B4B4"/>
|
||||
<path d="M21.9655 9.21861C21.9655 8.09382 21.1399 7.14079 20.0262 6.98011C17.6409 6.59225 15.7709 4.71945 15.3858 2.33413C15.2196 1.22319 14.2665 0.397607 13.1417 0.394836H13.0586C11.9338 0.394836 10.9808 1.22042 10.8201 2.33413C10.4323 4.71945 8.55948 6.58948 6.17415 6.97457C5.06322 7.14079 4.23763 8.09382 4.23486 9.21861V9.30172C4.23486 10.4265 5.06045 11.3795 6.17415 11.5402C8.55948 11.9281 10.4295 13.8009 10.8146 16.1862C10.9808 17.2971 11.9338 18.1227 13.0586 18.1255H13.1417C14.2665 18.1255 15.2196 17.2999 15.3802 16.1862C15.7681 13.8009 17.6409 11.9308 20.0262 11.5458C21.1372 11.3795 21.9627 10.4265 21.9655 9.30172V9.21861ZM18.641 9.29341C18.641 9.31557 18.6105 9.33496 18.5801 9.3405C15.8041 9.79208 13.6266 11.9696 13.1722 14.7456C13.1722 14.7761 13.1501 14.801 13.1334 14.801H13.0642C13.042 14.801 13.0226 14.7705 13.0171 14.74C12.5655 11.9641 10.3907 9.78654 7.612 9.33219C7.58152 9.33219 7.55659 9.31003 7.55659 9.29341V9.22415C7.55659 9.20198 7.58706 9.18259 7.61754 9.17705C10.3935 8.72547 12.571 6.54793 13.0254 3.77197C13.0254 3.7415 13.0476 3.71656 13.0642 3.71656H13.1334C13.1556 3.71656 13.175 3.74704 13.1805 3.77751C13.6321 6.55347 15.8069 8.73101 18.5856 9.18536C18.6161 9.18536 18.641 9.20752 18.641 9.22415V9.29341Z" fill="#B4B4B4"/>
|
||||
<path d="M46.5058 0.394836H49.5545V17.858H46.5058V10.2208H38.3123V17.858H35.2637V0.394836H38.3123V7.49685H46.5058V0.394836Z" fill="#B4B4B4"/>
|
||||
<path d="M62.1053 5.08888V17.8579H59.2471V16.4959C58.5326 17.3472 57.4608 18.1255 55.8412 18.1255C53.2211 18.1255 51.6016 16.3013 51.6016 13.5529V5.08888H54.4596V12.9206C54.4596 14.4772 55.1266 15.4744 56.6747 15.4744C57.9609 15.4744 59.2471 14.5015 59.2471 12.6774V5.08888H62.1053Z" fill="#B4B4B4"/>
|
||||
<path d="M66.99 10.3669V17.8581H64.1318V5.08906H66.99V6.45111C67.6807 5.59982 68.7526 4.84593 70.4198 4.84593C71.9204 4.84593 73.0398 5.5269 73.7305 6.62143C74.4927 5.79441 75.6836 4.84593 77.6129 4.84593C80.1852 4.84593 81.8524 6.69435 81.8524 9.44271V17.8581H78.9943V10.294C78.9943 8.7131 78.4226 7.56991 76.8983 7.56991C75.6836 7.56991 74.4213 8.54277 74.4213 10.3669V17.8581H71.5631V10.294C71.5631 8.7131 70.9915 7.56991 69.4671 7.56991C68.2523 7.56991 66.99 8.54277 66.99 10.3669Z" fill="#B4B4B4"/>
|
||||
<path d="M87.3593 18.077C84.9776 18.077 83.1436 16.5934 83.1436 14.3071C83.1436 11.8749 84.9299 10.8048 87.3355 10.294L90.7891 9.56428V9.34542C90.7891 8.12931 90.1699 7.37532 88.6455 7.37532C87.2879 7.37532 86.5733 8.00775 86.2399 9.24812L83.5485 8.6158C84.1677 6.49976 86.0017 4.84593 88.7646 4.84593C91.7656 4.84593 93.5758 6.30516 93.5758 9.24812V14.7448C93.5758 15.4746 93.8854 15.6934 94.6715 15.5961V17.8581C92.5993 18.1014 91.5037 17.6878 91.0749 16.642C90.289 17.542 88.9789 18.077 87.3593 18.077ZM90.7891 13.3585V11.802L88.0977 12.3857C86.8829 12.6532 85.9779 13.0424 85.9779 14.1854C85.9779 15.1827 86.6925 15.7421 87.7881 15.7421C89.3124 15.7421 90.7891 14.9152 90.7891 13.3585Z" fill="#B4B4B4"/>
|
||||
<path d="M96.2495 14.6475V7.56977H94.5107V5.08892H96.2495V1.3434H99.06V5.08892H101.68V7.56977H99.06V14.1853C99.06 15.3285 99.703 15.45 100.727 15.45C101.204 15.45 101.466 15.4258 101.894 15.3771V17.8336C101.37 17.9309 100.656 18.0039 99.9175 18.0039C97.5357 18.0039 96.2495 17.2499 96.2495 14.6475Z" fill="#B4B4B4"/>
|
||||
<path d="M106.631 18.077C104.25 18.077 102.416 16.5934 102.416 14.3071C102.416 11.8749 104.202 10.8048 106.608 10.294L110.061 9.56428V9.34542C110.061 8.12931 109.442 7.37532 107.917 7.37532C106.56 7.37532 105.845 8.00775 105.512 9.24812L102.82 8.6158C103.44 6.49976 105.274 4.84593 108.036 4.84593C111.038 4.84593 112.848 6.30516 112.848 9.24812V14.7448C112.848 15.4746 113.158 15.6934 113.944 15.5961V17.8581C111.871 18.1014 110.775 17.6878 110.347 16.642C109.561 17.542 108.251 18.077 106.631 18.077ZM110.061 13.3585V11.802L107.37 12.3857C106.155 12.6532 105.25 13.0424 105.25 14.1854C105.25 15.1827 105.965 15.7421 107.06 15.7421C108.585 15.7421 110.061 14.9152 110.061 13.3585Z" fill="#B4B4B4"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 4.6 KiB |
10
apps/www/public/images/logos/publicity/archive/krea.svg
Normal file
@@ -0,0 +1,10 @@
|
||||
<svg width="97" height="28" viewBox="0 0 97 28" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M85.8689 5.30539H90.1677L96.4329 21.883H92.1798L91.1738 18.9334H84.7714L83.7881 21.883H79.6266L85.8689 5.30539ZM85.846 15.755H90.1219L87.9954 9.44408L85.846 15.755Z" fill="#B4B4B4"/>
|
||||
<path d="M65.8594 5.30539H78.5728V8.73525H69.7695V11.6392H78.0926V15.0919H69.7695V18.4303H78.5728V21.883H65.8594V5.30539Z" fill="#B4B4B4"/>
|
||||
<path d="M55.7138 15.6407H53.0614V21.883H49.1514V5.30539H55.5309C56.4455 5.30539 57.2611 5.35112 57.9775 5.44258C58.694 5.53405 59.3724 5.69411 60.0126 5.92276C60.6681 6.15142 61.2092 6.4563 61.6361 6.83739C62.0781 7.21849 62.4211 7.71391 62.665 8.32366C62.9242 8.91817 63.0537 9.61939 63.0537 10.4273C63.0537 12.6377 61.9714 14.162 59.8068 15.0005L63.8998 21.883H59.3038L55.7138 15.6407ZM53.0614 8.59805V12.348H55.6452C56.6971 12.348 57.505 12.2185 58.069 11.9593C58.633 11.6849 58.915 11.1895 58.915 10.473C58.915 9.75658 58.6254 9.26878 58.0461 9.00963C57.4821 8.73525 56.6818 8.59805 55.6452 8.59805H53.0614Z" fill="#B4B4B4"/>
|
||||
<path d="M36.532 11.8678L42.5457 5.30539H47.3246L41.1966 11.9136L47.6448 21.883H42.9344L38.4527 14.8861L36.532 16.9898V21.883H32.622V5.30539H36.532V11.8678Z" fill="#B4B4B4"/>
|
||||
<path d="M4.74183 0.960377C6.91171 0.807634 8.82616 2.3184 9.10552 4.40384C9.37074 6.38492 8.01488 8.30097 5.97762 8.74961C5.46701 8.86203 4.8995 8.83078 4.35913 8.89933C3.04415 9.06636 1.91815 9.61514 0.981166 10.5457L0.971444 10.5507L0.960457 10.5498L0.951792 10.5432L0.948277 10.5331C0.947933 10.5257 0.949838 10.5191 0.954016 10.5134C0.95994 10.505 0.96289 10.4958 0.96289 10.4857C0.95001 8.94923 0.946016 7.08896 0.950883 4.9049C0.955061 2.84114 2.58557 1.11161 4.74183 0.960377Z" fill="#B4B4B4"/>
|
||||
<path d="M4.97014 18.2129C2.20825 18.1912 0.228464 15.4737 1.18912 12.9276C1.71905 11.5221 3.02742 10.4973 4.57805 10.336C5.0495 10.2871 5.61597 10.2997 6.07072 10.215C8.40601 9.78097 10.2099 7.99497 10.5749 5.72102C10.6557 5.21641 10.6135 4.61503 10.7326 4.07969C11.2839 1.60207 14.1229 0.211782 16.5074 1.33188C17.7505 1.91663 18.5838 3.02059 18.79 4.3393C18.8325 4.60982 18.8462 4.94487 18.8312 5.34445C18.5608 12.5237 12.4293 18.2724 4.97014 18.2129Z" fill="#B4B4B4"/>
|
||||
<path d="M8.4486 19.3555C8.43607 19.3497 8.42759 19.3413 8.42304 19.3303L8.42193 19.3233L8.4239 19.3165L8.42845 19.3111C8.43041 19.3096 8.43263 19.3086 8.43509 19.308C11.2686 18.6595 13.7236 17.3547 15.7998 15.3937C15.837 15.3584 15.871 15.3611 15.9016 15.4018C16.2346 15.8403 16.5824 16.3117 16.8612 16.7618C18.0066 18.6109 18.6557 20.6136 18.8081 22.7702C18.8387 23.205 18.8483 23.5409 18.8368 23.7779C18.734 25.8734 16.9803 27.564 14.7696 27.5767C12.8123 27.5872 11.0915 26.2519 10.7197 24.3838C10.6321 23.9417 10.6591 23.3291 10.5845 22.8619C10.3541 21.4242 9.65158 20.2606 8.47687 19.3711C8.47159 19.3666 8.46225 19.3615 8.4486 19.3555Z" fill="#B4B4B4"/>
|
||||
<path d="M4.30792 27.5164C2.64557 27.227 1.30796 25.9361 1.01036 24.33C0.969635 24.1102 0.949282 23.7753 0.949282 23.3254C0.948926 21.554 0.948582 19.7825 0.948238 18.0107C0.948238 17.9932 0.95485 17.9904 0.968074 18.0021C2.05507 18.9685 3.19743 19.5588 4.68958 19.6571C4.68958 19.6571 4.82462 19.6618 5.09055 19.6701C7.03326 19.7322 8.67892 21.0055 9.05845 22.855C9.62023 25.5897 7.14448 28.0099 4.30792 27.5164Z" fill="#B4B4B4"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 3.2 KiB |
21
apps/www/public/images/logos/publicity/archive/langchain.svg
Normal file
@@ -0,0 +1,21 @@
|
||||
<svg width="179" height="31" viewBox="0 0 179 31" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<g clip-path="url(#clip0_114_298)">
|
||||
<path d="M45.8679 8.30516C45.078 8.30516 44.3352 8.61118 43.7792 9.1671L41.5325 11.4077C40.9265 12.0122 40.6151 12.8515 40.6789 13.7119C40.6834 13.7589 40.688 13.8059 40.6926 13.8543C40.773 14.5148 41.0632 15.1102 41.5325 15.5768C41.8561 15.8995 42.2131 16.1041 42.646 16.2465C42.6688 16.3767 42.6809 16.5085 42.6809 16.6403C42.6809 17.2342 42.4501 17.7917 42.0308 18.2098L41.8925 18.3477C41.1422 18.0916 40.5163 17.7175 39.9512 17.1539C39.2009 16.4055 38.7041 15.4602 38.5173 14.4225L38.4915 14.2785L38.3775 14.371C38.3001 14.433 38.2271 14.4997 38.1588 14.5678L35.9121 16.8085C34.7607 17.9568 34.7607 19.8278 35.9121 20.9761C36.4878 21.5502 37.2443 21.8381 38.0023 21.8381C38.7603 21.8381 39.5153 21.5502 40.091 20.9761L42.3377 18.7355C43.4891 17.5871 43.4891 15.7177 42.3377 14.5678C42.0308 14.2619 41.6647 14.0316 41.25 13.8831C41.2273 13.7483 41.2151 13.6135 41.2151 13.4817C41.2151 12.8363 41.4703 12.2243 41.9382 11.7577C42.6901 12.0137 43.3569 12.4288 43.9205 12.9908C44.6694 13.7377 45.1646 14.6815 45.3544 15.7223L45.3803 15.8661L45.4942 15.7738C45.5717 15.7117 45.6446 15.645 45.7145 15.5753L47.9612 13.3348C49.1126 12.1864 49.1141 10.3155 47.9612 9.1671C47.4037 8.61118 46.6623 8.30516 45.871 8.30516H45.8679Z" fill="#B4B4B4"/>
|
||||
<path d="M44.664 0.110809H15.2675C6.89155 0.110809 0.0771484 6.90681 0.0771484 15.2602C0.0771484 23.6135 6.89155 30.4096 15.2675 30.4096H44.664C53.04 30.4096 59.8544 23.6135 59.8544 15.2602C59.8544 6.90681 53.04 0.110809 44.664 0.110809ZM30.1648 23.862C29.6802 23.962 29.1348 23.9801 28.7642 23.5939C28.6275 23.9074 28.3085 23.7423 28.0624 23.7014C28.0396 23.765 28.0199 23.8211 27.9986 23.8847C27.1798 23.9393 26.5661 23.1061 26.1758 22.4774C25.401 22.0592 24.5215 21.8047 23.7301 21.3669C23.6845 22.088 23.8425 22.9818 23.1543 23.4469C23.1194 24.8331 25.2567 23.6106 25.4527 24.6437C25.3008 24.6604 25.1322 24.6194 25.0107 24.7361C24.4532 25.277 23.8137 24.3271 23.1711 24.7195C22.3083 25.1527 22.2217 25.5072 21.1538 25.5966C21.0946 25.5072 21.1189 25.4481 21.169 25.3936C21.4698 25.0452 21.4911 24.6346 22.0045 24.4861C21.4759 24.4028 21.0338 24.6937 20.5887 24.924C20.0099 25.1603 20.0146 24.3907 19.1244 24.9648C19.0256 24.8846 19.0727 24.8119 19.1289 24.7498C19.3552 24.4741 19.653 24.4331 19.9887 24.4483C18.3375 23.5302 17.5598 25.5708 16.7972 24.5559C16.5679 24.6165 16.4813 24.8224 16.3369 24.9679C16.2124 24.8316 16.3066 24.6664 16.3127 24.5058C16.1638 24.4362 15.9754 24.4028 16.0195 24.165C15.7278 24.0665 15.5243 24.2392 15.3071 24.4028C15.1111 24.2513 15.4392 24.0302 15.4999 23.8726C15.6746 23.5696 16.0726 23.8105 16.2746 23.5923C16.8489 23.2666 17.6494 23.7953 18.3056 23.706C18.8115 23.7696 19.4373 23.2515 19.1836 22.7348C18.6429 22.0456 18.7385 21.1442 18.7264 20.3201C18.6595 19.8398 17.5036 19.2278 17.1694 18.7097C16.7562 18.2431 16.4342 17.7023 16.1121 17.1706C14.9501 14.9269 15.3161 12.044 13.8518 9.96092C13.1895 10.326 12.3266 10.1533 11.7555 9.66398C11.4471 9.94425 11.4334 10.3109 11.4092 10.7003C10.6694 9.96248 10.7621 8.56867 11.353 7.7476C11.5945 7.42341 11.8831 7.15678 12.2052 6.92196C12.278 6.86895 12.3024 6.81744 12.3008 6.73563C12.8857 4.11176 16.8747 4.61775 18.1355 6.47658C19.05 7.62039 19.3264 9.13375 20.3639 10.1958C21.7599 11.7198 23.3503 13.062 24.6385 14.6845C25.8567 16.1676 26.7272 17.9068 27.4867 19.6596C27.7966 20.2413 27.7996 20.9548 28.2584 21.4517C28.4847 21.7517 29.5906 22.5683 29.3506 22.8576C29.4888 23.1575 30.5217 23.5711 30.1632 23.862H30.1648ZM49.5385 14.9118L47.2919 17.1523C46.6934 17.7492 45.9537 18.1946 45.1516 18.4385L45.1106 18.4506L45.0954 18.49C44.8341 19.1778 44.4376 19.7914 43.9151 20.311L41.6684 22.5516C40.6886 23.5287 39.3853 24.0665 37.9969 24.0665C36.6085 24.0665 35.3051 23.5287 34.3254 22.5516C32.3005 20.5322 32.3005 17.2477 34.3254 15.2283L36.572 12.9878C37.1736 12.3879 37.8936 11.9561 38.7093 11.7062L38.7504 11.694L38.7655 11.6546C39.0268 10.9668 39.4248 10.3518 39.9489 9.8276L42.1955 7.58704C43.1753 6.60989 44.4786 6.07209 45.867 6.07209C47.2555 6.07209 48.5588 6.60989 49.5385 7.58704C50.5184 8.56413 51.0576 9.864 51.0576 11.2487C51.0576 12.6333 50.5184 13.9346 49.5385 14.9103V14.9118Z" fill="#B4B4B4"/>
|
||||
<path d="M21.0261 21.1502C20.8286 21.9168 20.7648 23.2212 19.7653 23.2591C19.6833 23.7014 20.0722 23.868 20.4276 23.7256C20.7785 23.5651 20.9456 23.8529 21.0641 24.1392C21.6064 24.218 22.4085 23.9589 22.4388 23.3182C21.6292 22.8531 21.3785 21.9683 21.0276 21.1488L21.0261 21.1502Z" fill="#B4B4B4"/>
|
||||
<path d="M73.928 8.05154H71.2594V24.2393H82.7052V21.6607H73.928V8.05154Z" fill="#B4B4B4"/>
|
||||
<path d="M96.12 24.2393H98.7887V24.2105H98.8236L98.8289 24.0917C98.8296 24.0569 98.8393 23.7329 98.7901 23.2337V17.2091C98.7901 14.9425 100.443 13.9106 101.978 13.9106C103.63 13.9106 104.434 14.8009 104.434 16.6332V24.2393H107.103V16.278C107.103 13.2543 105.182 11.3753 102.09 11.3753C100.776 11.3753 99.6038 11.7484 98.683 12.4576L98.6584 11.5973H96.1237V24.2393H96.12Z" fill="#B4B4B4"/>
|
||||
<path d="M117.964 12.526C117.036 11.7724 115.844 11.3753 114.498 11.3753C110.9 11.3753 108.665 13.8566 108.665 17.8511C108.665 21.8455 110.9 24.3497 114.498 24.3497C115.768 24.3497 116.901 24.0041 117.793 23.3465C117.716 25.306 116.489 26.4699 114.477 26.4699C112.785 26.4699 111.828 25.9311 111.631 24.8692L111.606 24.7372L109.014 25.528L109.037 25.6347C109.474 27.7453 111.449 29.0052 114.322 29.0052C116.271 29.0052 117.799 28.4749 118.866 27.4274C119.942 26.3714 120.487 24.85 120.487 22.9062V11.5973H118.019L117.965 12.526H117.964ZM117.797 17.9627C117.797 20.3744 116.622 21.8155 114.653 21.8155C112.543 21.8155 111.333 20.3708 111.333 17.8523C111.333 15.3337 112.544 13.9106 114.653 13.9106C116.575 13.9106 117.777 15.3445 117.797 17.6519V17.9627Z" fill="#B4B4B4"/>
|
||||
<path d="M133.635 19.1061C133.082 20.8951 131.662 21.8814 129.637 21.8814C126.742 21.8814 124.942 19.6832 124.942 16.1448C124.942 12.6063 126.758 10.4081 129.682 10.4081C131.705 10.4081 132.871 11.2012 133.464 12.9783L133.741 13.8097L136.261 12.6267L136.024 11.9607C135.065 9.25739 132.849 7.82949 129.616 7.82949C127.419 7.82949 125.554 8.62264 124.222 10.1225C122.905 11.608 122.207 13.6898 122.207 16.146C122.207 21.1974 125.123 24.4624 129.637 24.4624C132.818 24.4624 135.282 22.7981 136.227 20.0096L136.469 19.2968L133.88 18.3129L133.634 19.1073L133.635 19.1061Z" fill="#B4B4B4"/>
|
||||
<path d="M143.601 11.3753C142.327 11.3753 141.193 11.7245 140.303 12.388V6.50016H137.634V24.2405H140.303V17.2104C140.303 14.9294 141.955 13.8903 143.491 13.8903C145.143 13.8903 145.947 14.7806 145.947 16.6128V24.2417H148.616V16.2576C148.616 13.2927 146.648 11.3777 143.603 11.3777L143.601 11.3753Z" fill="#B4B4B4"/>
|
||||
<path d="M164.214 6.1186C163.222 6.1186 162.502 6.83853 162.502 7.82964C162.502 8.82073 163.222 9.54071 164.214 9.54071C165.204 9.54071 165.924 8.82073 165.924 7.82964C165.924 6.83853 165.204 6.1186 164.214 6.1186Z" fill="#B4B4B4"/>
|
||||
<path d="M173.717 11.3753C172.403 11.3753 171.231 11.7484 170.31 12.4576L170.285 11.5973H167.751V24.2393H170.42V17.2091C170.42 14.9425 172.072 13.9106 173.608 13.9106C175.26 13.9106 176.064 14.8009 176.064 16.6332V24.2393H178.732V16.278C178.732 13.2543 176.811 11.3753 173.72 11.3753H173.717Z" fill="#B4B4B4"/>
|
||||
<path d="M165.51 11.5973H162.854V17.8643C162.117 17.2451 161.25 16.7772 160.27 16.4713V15.8341C160.27 13.042 158.437 11.3753 155.367 11.3753C152.872 11.3753 151.007 12.5464 150.247 14.5874L150.042 15.1381L152.181 16.7148L152.548 15.7585C153.032 14.4974 153.928 13.9095 155.367 13.9095C156.805 13.9095 157.601 14.6018 157.601 15.966V16.0369C157.516 16.0333 157.429 16.0309 157.343 16.0297C154.486 15.9841 152.402 16.6525 151.148 18.0131C149.865 19.4049 149.978 20.9684 149.995 21.1412L150.007 21.2612H150.019C150.218 23.2086 151.919 24.4589 154.391 24.4589C155.753 24.4589 157.011 24.0797 157.962 23.3874L157.973 24.2381H160.27V20.2832L160.22 20.2473C159.895 20.0097 159.329 19.7025 158.477 19.5945C158.209 19.561 157.954 19.5441 157.719 19.549H157.6V19.9125C157.6 20.7489 156.639 21.9259 154.501 21.9259C152.923 21.9259 152.687 21.2624 152.687 20.8664V20.8256C152.699 20.6481 152.774 20.2136 153.166 19.8093C153.664 19.2945 154.785 18.6923 157.299 18.7307C159.119 18.7594 160.516 19.2682 161.451 20.2436C162.598 21.4412 162.813 23.0802 162.853 23.7221V24.2393H165.508V11.5973H165.51Z" fill="#B4B4B4"/>
|
||||
<path d="M89.2202 11.3201C86.7257 11.3201 84.8602 12.4912 84.1002 14.5322L83.8955 15.083L86.0349 16.6596L86.4019 15.7033C86.8857 14.4422 87.782 13.8543 89.2202 13.8543C90.6591 13.8543 91.4549 14.5466 91.4549 15.9109V16.2313L88.7065 16.716C85.4848 17.2859 83.8508 18.6634 83.8508 20.8088C83.8508 22.9542 85.5749 24.4037 88.2435 24.4037C89.6058 24.4037 90.8631 24.0245 91.8144 23.3322L91.8256 24.1829H94.122V15.7789C94.122 12.9867 92.2901 11.3201 89.2202 11.3201ZM91.4549 18.7319V19.8585C91.4549 20.6948 90.4931 21.8719 88.3552 21.8719C86.7771 21.8719 86.5426 21.2084 86.5426 20.8124C86.5426 20.4609 86.5426 19.6377 89.3378 19.1194L91.4549 18.733V18.7319Z" fill="#B4B4B4"/>
|
||||
</g>
|
||||
<defs>
|
||||
<clipPath id="clip0_114_298">
|
||||
<rect width="178.655" height="30.5203" fill="white" transform="translate(0.0771484)"/>
|
||||
</clipPath>
|
||||
</defs>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 9.0 KiB |
4
apps/www/public/images/logos/publicity/archive/loops.svg
Normal file
@@ -0,0 +1,4 @@
|
||||
<svg width="118" height="28" viewBox="0 0 118 28" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M15.2616 0.604981H11.6565C8.58677 0.608607 5.64382 1.82986 3.47343 4.00076C1.30304 6.17166 0.0824899 9.1149 0.0795898 12.1847C0.0832148 15.2539 1.30409 18.1965 3.4744 20.3668C5.64471 22.5371 8.58724 23.758 11.6565 23.7616H15.2753C18.3451 23.7587 21.2883 22.5381 23.4592 20.3677C25.6301 18.1974 26.8514 15.2544 26.855 12.1847C26.8521 9.11205 25.6293 6.16633 23.4554 3.99495C21.2814 1.82358 18.3342 0.604253 15.2616 0.604981ZM1.51232 12.1847C1.51232 9.49643 2.58022 6.9183 4.48108 5.01743C6.38195 3.11657 8.96008 2.04867 11.6483 2.04867C12.2146 2.04867 12.78 2.09524 13.3385 2.18839C15.7032 2.57948 17.8514 3.79959 19.3984 5.63022C20.9454 7.46085 21.7902 9.78242 21.7815 12.1792C21.7788 13.7183 21.2321 15.2068 20.238 16.3819C19.244 17.5569 17.8666 18.3427 16.3492 18.6005C17.3599 17.8625 18.182 16.8963 18.7486 15.7804C19.3151 14.6645 19.6099 13.4306 19.6092 12.1792C19.6122 10.4136 19.0271 8.69735 17.9461 7.30138C16.8652 5.90541 15.35 4.9093 13.6399 4.47035C12.9894 4.30224 12.3202 4.21755 11.6483 4.21832C9.54047 4.22484 7.52108 5.06619 6.03215 6.5582C4.54322 8.05021 3.70605 10.0713 3.70389 12.1792C3.6985 14.1352 4.19014 16.0606 5.13267 17.7746C6.0752 19.4886 7.43773 20.935 9.09239 21.9782C6.92681 21.4095 5.01003 20.1408 3.64054 18.3694C2.27104 16.5981 1.52569 14.4237 1.52054 12.1847H1.51232ZM13.4536 5.93048C14.8102 6.32117 16.0028 7.14268 16.8514 8.27094C17.6999 9.3992 18.1583 10.7729 18.1572 12.1847C18.1577 13.5959 17.699 14.969 16.8505 16.0967C16.002 17.2244 14.8097 18.0455 13.4536 18.4361C12.0975 18.0455 10.9052 17.2244 10.0567 16.0967C9.20818 14.969 8.74953 13.5959 8.74996 12.1847C8.74894 10.7729 9.20731 9.3992 10.0558 8.27094C10.9044 7.14268 12.097 6.32117 13.4536 5.93048ZM15.2616 22.3152H15.2206C14.6698 22.3121 14.1202 22.2654 13.5769 22.1754C11.2708 21.793 9.16912 20.6215 7.63113 18.8611C6.09313 17.1008 5.21429 14.8609 5.14484 12.5243V12.1847C5.14656 10.6453 5.6929 9.15616 6.68713 7.98093C7.68137 6.80569 9.05937 6.02015 10.5772 5.76337C9.56594 6.501 8.74331 7.46713 8.17632 8.58302C7.60932 9.69891 7.31403 10.933 7.31449 12.1847C7.31197 13.9498 7.89737 15.6654 8.97829 17.0608C10.0592 18.4563 11.5741 19.4519 13.2838 19.8907C13.9338 20.06 14.6034 20.145 15.2753 20.1428C17.3856 20.1406 19.4087 19.3015 20.9011 17.8097C22.3935 16.3178 23.2333 14.2949 23.2362 12.1847C23.2423 10.2285 22.751 8.30285 21.8084 6.58873C20.8658 4.87461 19.5029 3.42827 17.8477 2.38563C20.0128 2.95499 21.9285 4.22512 23.2958 5.9978C24.6631 7.77047 25.405 9.94594 25.4058 12.1847C25.4051 13.516 25.1421 14.8341 24.6319 16.0637C24.1216 17.2933 23.3742 18.4104 22.4322 19.3512C21.4902 20.2919 20.3721 21.0378 19.1417 21.5464C17.9114 22.055 16.5929 22.3162 15.2616 22.3152Z" fill="#B4B4B4"/>
|
||||
<path d="M50.0335 21.7426H33.5448V19.8825C35.5774 19.5401 35.9774 18.8251 35.9774 18.1375V6.48659C35.9774 5.17165 35.5774 4.6265 33.5448 4.48405V2.62396H43.9081V4.48405C41.8754 4.6265 41.4755 5.17165 41.4755 6.48659V18.8141C41.4755 19.499 41.6755 19.9866 43.3931 19.9866H45.2532C46.3106 19.9866 47.5708 19.4716 48.4584 16.6664H50.3184L50.0335 21.7426ZM51.5211 14.7296C51.5211 10.0945 54.8714 6.65917 59.6216 6.65917C64.6321 6.65917 67.5222 10.0369 67.5222 14.1571C67.5222 18.7676 64.1171 22.1453 59.4518 22.1453C54.3564 22.1453 51.5211 18.8525 51.5211 14.7296ZM62.1419 15.7898C62.1419 11.2395 60.5667 8.51926 59.0217 8.51926C57.5616 8.51926 56.9616 10.352 56.9616 12.9846C56.9616 17.6225 58.5642 20.2852 60.0791 20.2852C61.5146 20.2852 62.1419 18.4799 62.1419 15.7898ZM69.2974 14.7296C69.2974 10.0945 72.6477 6.65917 77.3979 6.65917C82.4084 6.65917 85.2985 10.0369 85.2985 14.1571C85.2985 18.7676 81.8934 22.1453 77.2254 22.1453C72.1327 22.1453 69.2974 18.8525 69.2974 14.7296ZM79.9182 15.7898C79.9182 11.2395 78.3431 8.51926 76.798 8.51926C75.3379 8.51926 74.7352 10.352 74.7352 12.9846C74.7352 17.6225 76.3405 20.2852 77.8554 20.2852C79.2882 20.2852 79.9182 18.4799 79.9182 15.7898ZM102.968 13.9297C102.968 18.9374 99.9354 22.1481 95.555 22.1481C94.6714 22.1643 93.7939 21.9983 92.9772 21.6604V23.778C92.9772 24.8382 93.4073 25.2683 95.3551 25.5532V27.4242H85.9944V25.5641C87.4819 25.2217 87.6545 24.8492 87.6545 23.789V11.1875C87.6545 10.4424 87.397 10.0123 86.4518 9.58491L85.9944 9.38493V7.89467L91.8321 6.66465H92.9772V8.49735C93.339 7.92397 93.843 7.4539 94.4401 7.13278C95.0372 6.81166 95.7073 6.6504 96.3851 6.66465C100.935 6.65918 102.968 10.1657 102.968 13.9297ZM97.4727 14.9597C97.4727 11.9819 96.6508 9.40685 94.6675 9.40685C93.8073 9.40685 93.6648 9.34932 92.9772 9.86434V15.6172C92.9772 19.0251 93.5251 20.0277 95.0099 20.0277C96.3851 20.0277 97.4727 18.3375 97.4727 14.9597ZM116.802 8.34668L114.17 11.9545C112.909 9.43424 111.704 8.37681 110.277 8.37681C109.417 8.37681 108.302 8.89183 108.302 9.77941C108.302 12.7928 117.26 10.8368 117.09 17.48C117.002 19.8825 114.685 22.1371 110.677 22.1371C107.184 22.1371 104.267 20.3893 103.554 19.7592L106.647 16.5267C108.365 19.2168 109.767 20.4195 111.14 20.4195C111.855 20.4195 113.115 20.1044 113.145 18.7018C113.145 15.4665 104.299 18.0717 104.327 11.5792C104.327 8.51653 106.874 6.64822 110.94 6.64822C114.14 6.65917 116.202 7.77413 116.802 8.34668Z" fill="#B4B4B4"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 5.1 KiB |
@@ -0,0 +1,4 @@
|
||||
<svg width="150" height="22" viewBox="0 0 150 22" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M46.3572 10.3001H34.7903V21.7365H46.3572V10.3001ZM0.0922852 21.7365V11.6677L11.5959 0.292725H21.7788V10.3616L10.2752 21.7365H0.0922852Z" fill="#B4B4B4"/>
|
||||
<path d="M17.4414 21.7365V11.6677L28.945 0.292725H39.1279V10.3616L27.6243 21.7365H17.4414ZM70.4446 15.3579L64.5261 1.90588H59.7451V19.8553H63.3155L63.3233 7.75906L68.7232 19.8553H72.1649L77.5727 7.76198V19.8553H81.1431V1.90588H76.3601L70.4446 15.3579ZM89.7664 6.4081C83.8148 6.4081 82.5661 10.0886 82.5661 13.1746C82.5661 17.8893 84.9445 20.1799 89.8366 20.1799C94.7296 20.1799 97.0612 17.9088 97.0612 13.2379C97.0612 8.5671 94.6068 6.40517 89.7693 6.40517L89.7664 6.4081ZM86.2769 13.1112C86.2769 10.7524 86.8149 9.55449 89.7664 9.55449C92.5131 9.55449 93.3504 10.4259 93.3504 13.2877C93.3504 16.1484 92.5238 17.0403 89.8132 17.0403C87.1034 17.0403 86.2759 16.1241 86.2759 13.1132V13.1112H86.2769ZM106.43 6.43052H106.361C104.218 6.44026 102.544 7.9501 102.103 8.63533V1.90588H98.4862V19.8553H102.103V19.7335L102.122 18.0219C102.71 18.9703 104.283 20.1828 106.339 20.1828C110.836 20.1828 112.756 18.1651 112.756 13.4378C112.756 8.71038 110.805 6.43247 106.43 6.43247V6.43052ZM109.115 13.1746C109.115 16.7459 107.449 17.0354 105.436 17.0354C103.422 17.0354 101.803 16.7508 101.803 13.2604C101.803 10.6062 102.834 9.57203 105.482 9.57203C108.13 9.57203 109.115 10.4785 109.115 13.1726V13.1746ZM122.133 6.43052H122.063C119.92 6.44026 118.247 7.9501 117.806 8.63533V1.90588H114.189V19.8553H117.805V19.7335L117.825 18.0219C118.412 18.9673 119.985 20.1799 122.043 20.1799C126.539 20.1799 128.459 18.1622 128.459 13.4348C128.459 8.70843 126.507 6.43052 122.133 6.43052ZM124.817 13.1746C124.817 16.7459 123.151 17.0354 121.139 17.0354C119.125 17.0354 117.506 16.7508 117.506 13.2604C117.506 10.6062 118.537 9.57203 121.185 9.57203C123.833 9.57203 124.817 10.4785 124.817 13.1726V13.1746ZM133.607 6.71319H129.99V19.8553H133.607V6.71319ZM143.301 6.42564C141.293 6.42564 139.67 7.67133 139.149 8.63533V6.71319H135.533V19.8553H139.149V12.1969C139.149 10.4795 139.666 9.65975 142.598 9.65975C144.819 9.65975 145.607 10.345 145.607 12.2817V19.8533H149.224V13.0644C149.224 8.12555 147.729 6.45001 143.301 6.42272V6.42564ZM133.607 1.90588H129.99V5.31057H133.607V1.90588Z" fill="#B4B4B4"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 2.3 KiB |
@@ -0,0 +1,3 @@
|
||||
<svg width="104" height="23" viewBox="0 0 104 23" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M103.703 19.586C103.478 19.6496 103.288 19.6843 103.097 19.6843C102.422 19.6843 102.104 19.3953 102.104 18.5641V12.2875C102.104 8.99087 99.4771 7.3857 96.3708 7.3857C93.9975 7.3857 92.7221 7.67462 90.187 8.69616L89.6216 12.0221L92.9182 12.3741L93.3858 10.7459C94.0615 10.3938 94.7314 10.3302 95.5969 10.3302C97.9355 10.3302 97.9702 12.0914 97.9702 13.5637V14.0425C97.2313 13.9446 96.3997 13.9157 95.5969 13.9157C92.3003 13.9157 88.8708 14.747 88.8708 18.3036C88.8708 21.3117 91.2379 22.4377 93.3222 22.4377C95.6604 22.4377 97.1327 21.029 97.9644 19.5567C98.1547 21.3175 99.2113 22.4377 101.134 22.4377C102.029 22.4377 102.959 22.1839 103.726 21.762L103.703 19.586ZM94.835 19.4936C93.5876 19.4936 93.1373 18.7548 93.1373 17.8249C93.1373 16.2544 94.4193 15.8387 95.8916 15.8387C96.5615 15.8387 97.3003 15.937 97.9759 16.0294C97.8777 18.437 96.3072 19.4936 94.835 19.4936ZM89.2864 0.0821686L83.0391 22.1207H78.969L85.2159 0.0825815L89.2864 0.0821686ZM80.8974 0.0821686L74.6501 22.1207H70.5853L76.8327 0.0825815L80.8974 0.0821686ZM63.553 7.67503H67.8777V12.8595H63.553V7.67503ZM63.553 16.93H67.8777V22.1207H63.553V16.93ZM57.2599 16.7393L60.5276 17.0571L59.6327 22.1207H47.0114L46.5958 19.9439L54.5403 10.8156H50.0253L49.3847 13.056L46.4051 12.7324L46.9189 7.66925H59.6038L59.9274 9.84566L51.9132 18.9797H56.59L57.2599 16.7393ZM36.5611 7.38652C31.3704 7.38652 28.8073 10.8792 28.8073 15.1057C28.8073 19.7189 31.8843 22.4381 36.3357 22.4381C40.949 22.4381 44.2807 19.5225 44.2807 14.9096C44.2807 10.8734 41.746 7.38652 36.5611 7.38652ZM36.4629 19.2682C34.2229 19.2682 33.068 17.3457 33.068 14.8457C33.068 12.1207 34.3785 10.556 36.498 10.556C38.449 10.556 40.0195 11.8665 40.0195 14.7825C40.0195 17.5363 38.6108 19.2682 36.4629 19.2682ZM25.0888 18.9797H27.0114V22.1207H20.9548V13.9855C20.9548 11.4855 20.1235 10.5267 18.4895 10.5267C16.5033 10.5267 15.7009 11.9358 15.7009 13.9566V18.9797H17.6235V22.1207H11.5727V13.9855C11.5727 11.4855 10.741 10.5267 9.10734 10.5267C7.12121 10.5267 6.31842 11.9358 6.31842 13.9566V18.9797H9.07267V22.1207H0.267578V18.9797H2.19056V10.8098H0.267578V7.66884H6.31842V9.84566C7.18478 8.31025 8.69171 7.38033 10.7067 7.38033C12.7911 7.38033 14.7079 8.3734 15.4178 10.4867C16.2206 8.56409 17.8542 7.38033 20.1293 7.38033C22.7213 7.38033 25.0946 8.95083 25.0946 12.3746V18.9797H25.0888Z" fill="#B4B4B4"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 2.4 KiB |
3
apps/www/public/images/logos/publicity/archive/pika.svg
Normal file
@@ -0,0 +1,3 @@
|
||||
<svg width="69" height="22" viewBox="0 0 69 22" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M26.462 0.689957H23.2275V4.07596H26.462V0.689957ZM67.8984 17.9195V9.83187C67.8984 5.1042 64.9394 2.99512 58.3014 2.99512C52.7239 2.99512 49.395 5.50298 49.395 9.70357H52.6562C52.6562 7.1891 54.3974 6.06942 58.3014 6.06942C63.0177 6.06942 64.6911 7.11498 64.6911 10.0628C63.5387 10.2176 62.4449 10.355 61.3758 10.4879C53.3599 11.4901 48.5222 12.0958 48.5222 16.7343C48.5222 18.5536 49.2189 19.8435 50.6534 20.6758C51.9369 21.4207 54.2238 21.8303 57.0925 21.8303C60.9563 21.8303 64.1725 20.8911 65.0948 19.4948C65.0116 20.7649 65.0948 21.5536 65.0948 21.5602H68.036C68.0316 21.5472 67.8984 20.1005 67.8984 17.9195ZM64.6911 14.1111C64.6911 16.0827 63.992 17.4358 62.553 18.2441C61.2674 18.9674 59.3345 19.3052 56.4747 19.3052C54.7222 19.3052 51.7835 18.9674 51.7835 16.7081C51.7835 15.6057 52.5502 14.9325 54.429 14.3879C56.4545 13.7995 59.8579 13.3441 64.6935 12.8038V14.1111H64.6911ZM51.9459 16.669H51.865V16.7451H51.9459V16.669ZM11.9957 0.689957H0.384766V21.5602H3.61908V14.1351H11.9957C19.8198 14.1351 20.6656 9.43349 20.6656 7.4136C20.6632 5.39185 19.8173 0.689957 11.9957 0.689957ZM11.4115 11.037H3.61908V3.78831H11.4138C15.4647 3.78831 17.1921 4.87112 17.1921 7.41148C17.19 9.95197 15.4623 11.037 11.4115 11.037ZM48.1027 3.12157H43.6234L32.4614 11.7778V0.689957H29.2271V21.5602H32.4614V12.7493L43.727 21.5602H48.4184L36.3858 12.0348L48.1027 3.12157ZM26.462 5.53997H23.2275V21.5602H26.462V5.53997Z" fill="#B4B4B4"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1.5 KiB |
30
apps/www/public/images/logos/publicity/archive/pwc.svg
Normal file
@@ -0,0 +1,30 @@
|
||||
<svg width="104" height="31" viewBox="0 0 104 31" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<g clip-path="url(#clip0_114_234)">
|
||||
<mask id="mask0_114_234" style="mask-type:luminance" maskUnits="userSpaceOnUse" x="-3" y="0" width="107" height="62">
|
||||
<path d="M103.945 0.494385H-2.77539V61.0259H103.945V0.494385Z" fill="white"/>
|
||||
</mask>
|
||||
<g mask="url(#mask0_114_234)">
|
||||
<path d="M103.945 26.4862H74.6519V19.0611H103.945V26.4862Z" fill="#B4B4B4"/>
|
||||
<path d="M100.14 26.4861H74.6519V7.9156H100.14V26.4861Z" fill="#B4B4B4"/>
|
||||
<path d="M89.6098 26.4861H74.6519V0.494537H89.6098V26.4861Z" fill="#B4B4B4"/>
|
||||
<path d="M92.5524 26.486H74.6519V3.39471H92.5524V26.486Z" fill="#B4B4B4"/>
|
||||
<path d="M74.6475 3.39908V26.4836H89.6079V3.39908H74.6475Z" fill="#898989"/>
|
||||
<path d="M59.6519 26.4861H74.6513V30.1988H59.6519V26.4861Z" fill="#363636"/>
|
||||
<path d="M89.52 7.91159V19.1126H92.561V7.91159H89.52Z" fill="#898989"/>
|
||||
<path d="M74.6475 7.91159V26.4837H89.6079V7.91159H74.6475Z" fill="#4D4D4D"/>
|
||||
<path d="M84.0058 19.1852H74.6519V15.3397H84.0058V19.1852Z" fill="#383838"/>
|
||||
<path d="M74.6475 19.0664V26.4836H100.149V19.0664H74.6475Z" fill="#898989"/>
|
||||
<path d="M89.5923 19.0664V26.4836H92.561V19.0664H89.5923Z" fill="#4D4D4D"/>
|
||||
<path d="M74.6475 19.0664V26.4836H89.6079V19.0664H74.6475Z" fill="#383838"/>
|
||||
<path d="M74.6475 19.0664V26.4836H84.0149V19.0664H74.6475Z" fill="#363636"/>
|
||||
<path d="M61.8194 7.20978C59.2673 7.65912 57.9062 9.56866 57.9062 12.8824C57.9062 16.2521 59.7209 18.4988 62.3865 18.4988C63.6911 18.4988 64.8253 18.0495 67.2073 16.87C67.2073 19.6221 67.2073 19.6221 67.2073 19.6221C64.3149 20.9699 62.6135 21.307 60.345 21.307C57.7927 21.307 55.9779 20.6891 54.56 19.1727C53.0854 17.7125 52.2915 15.803 52.2915 13.6125C52.2915 8.83856 55.9212 5.52502 61.1956 5.52502C64.6552 5.52502 67.0938 7.1538 67.0938 9.45648C67.0938 10.9729 65.9596 12.0399 64.3149 12.0399C63.4641 12.0399 62.7835 11.7592 61.8194 11.2536" fill="#B4B4B4"/>
|
||||
<path d="M49.0585 13.6125C51.3838 10.7481 52.2346 9.56866 52.2346 8.16465C52.2346 6.76065 51.1003 5.52502 49.5123 5.52502C48.6049 5.52502 47.7541 6.03035 47.3571 6.47969C47.3571 12.3769 47.3571 12.3769 47.3571 12.3769C43.5573 17.4316 43.5573 17.4316 43.5573 17.4316C43.5573 5.97436 43.5573 5.97436 43.5573 5.97436C39.9276 5.97436 39.9276 5.97436 39.9276 5.97436C33.9157 15.803 33.9157 15.803 33.9157 15.803C33.9157 5.97436 33.9157 5.97436 33.9157 5.97436C31.8742 5.97436 31.8742 5.97436 31.8742 5.97436C26.3728 7.20979 26.3728 7.20978 26.3728 7.20978C26.3728 8.61399 26.3728 8.61399 26.3728 8.61399C29.3787 8.89475 29.3787 8.89475 29.3787 8.89475C29.3787 21.0823 29.3787 21.0823 29.3787 21.0823C33.1786 21.0823 33.1786 21.0823 33.1786 21.0823C38.9633 11.6468 38.9633 11.6468 38.9633 11.6468C38.9633 21.0823 38.9633 21.0823 38.9633 21.0823C43.217 21.0823 43.217 21.0823 43.217 21.0823" fill="#B4B4B4"/>
|
||||
<path d="M14.8599 19.1728C15.3136 19.1728 15.4271 19.1728 15.7106 19.1728C18.7732 19.1728 20.4747 17.3195 20.4747 13.6126C20.4747 10.5237 19.1135 8.83868 16.5613 8.83868C16.2211 8.83868 15.7106 8.89488 14.8599 9.06346V19.1728ZM14.8599 25.8001C17.3554 26.3618 17.3554 26.3618 17.3554 26.3618C17.3554 27.7659 17.3554 27.7658 17.3554 27.7658C7.54375 27.7658 7.54375 27.7658 7.54375 27.7658C7.54375 26.3618 7.54375 26.3618 7.54375 26.3618C9.81234 25.8001 9.81234 25.8001 9.81234 25.8001C9.81234 8.83868 9.81234 8.83868 9.81234 8.83868C7.31689 8.83868 7.31689 8.83868 7.31689 8.83868C7.31689 7.43468 7.31689 7.43468 7.31689 7.43468C13.2719 5.63733 13.2719 5.63733 13.2719 5.63733C14.8599 5.63733 14.8599 5.63733 14.8599 5.63733C14.8599 7.65925 14.8599 7.65925 14.8599 7.65925C17.6389 5.97449 18.6031 5.69352 20.0777 5.69352C23.3671 5.69352 25.8625 8.7265 25.8625 12.9387C25.8625 17.7688 22.5164 21.0824 17.4121 21.0824C16.8449 21.0824 15.8808 21.0262 14.8599 20.97" fill="#B4B4B4"/>
|
||||
</g>
|
||||
</g>
|
||||
<defs>
|
||||
<clipPath id="clip0_114_234">
|
||||
<rect width="103" height="30" fill="white" transform="translate(0.384766 0.260132)"/>
|
||||
</clipPath>
|
||||
</defs>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 3.9 KiB |
15
apps/www/public/images/logos/publicity/archive/resend.svg
Normal file
@@ -0,0 +1,15 @@
|
||||
<svg width="90" height="22" viewBox="0 0 90 22" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<g clip-path="url(#clip0_114_314)">
|
||||
<path d="M1.43701 20.5736V1.45569H9.90352C11.087 1.45569 12.1612 1.7288 13.1262 2.27503C14.0912 2.80305 14.8469 3.52224 15.3931 4.43262C15.9575 5.343 16.2398 6.38083 16.2398 7.54611C16.2398 8.69318 15.9575 9.74012 15.3931 10.6869C14.8469 11.6155 14.0912 12.3529 13.1262 12.8991C12.1612 13.4453 11.087 13.7185 9.90352 13.7185H5.39715V20.5736H1.43701ZM12.2796 20.5736L7.41819 11.9432L11.6241 11.2604L17.0318 20.6009L12.2796 20.5736ZM5.39715 10.3865H9.71234C10.2039 10.3865 10.6318 10.2772 10.996 10.0587C11.3783 9.82205 11.6696 9.50341 11.8699 9.10285C12.0702 8.68409 12.1704 8.2198 12.1704 7.70998C12.1704 7.16375 12.052 6.69036 11.8153 6.28979C11.5786 5.88923 11.2327 5.57969 10.7775 5.3612C10.3223 5.12451 9.79427 5.00616 9.19342 5.00616H5.39715V10.3865Z" fill="#B4B4B4"/>
|
||||
<path d="M24.9708 20.8467C23.4049 20.8467 22.0302 20.5281 20.8467 19.8908C19.6815 19.2535 18.7712 18.3795 18.1156 17.2689C17.4784 16.1583 17.1597 14.8837 17.1597 13.4453C17.1597 12.3165 17.3418 11.2877 17.7059 10.3591C18.0701 9.43056 18.5799 8.62944 19.2353 7.95575C19.8908 7.26387 20.6647 6.73585 21.5569 6.37169C22.4672 5.98934 23.4504 5.79816 24.5065 5.79816C25.4897 5.79816 26.4 5.98024 27.2377 6.34438C28.0752 6.70854 28.7944 7.21834 29.3953 7.87382C30.0143 8.51108 30.4877 9.2758 30.8155 10.168C31.1432 11.0419 31.2888 11.9887 31.2524 13.0083L31.2251 14.21H19.6178L18.9895 11.834H28.0297L27.5927 12.3256V11.7247C27.5563 11.2331 27.3924 10.7961 27.101 10.4138C26.828 10.0132 26.473 9.70367 26.036 9.48518C25.599 9.24849 25.1073 9.13014 24.561 9.13014C23.76 9.13014 23.0772 9.28491 22.5127 9.59443C21.9665 9.90396 21.5478 10.3591 21.2564 10.96C20.9651 11.5608 20.8194 12.2892 20.8194 13.1449C20.8194 14.0188 21.0015 14.7744 21.3657 15.4117C21.7481 16.049 22.276 16.5496 22.9498 16.9138C23.6416 17.2597 24.4518 17.4328 25.3804 17.4328C26.0177 17.4328 26.6004 17.3327 27.1284 17.1323C27.6564 16.932 28.2207 16.5861 28.8217 16.0945L30.6789 18.6891C30.1508 19.1625 29.5681 19.563 28.931 19.8908C28.2937 20.2003 27.6382 20.437 26.9644 20.6009C26.2908 20.7647 25.6263 20.8467 24.9708 20.8467Z" fill="#B4B4B4"/>
|
||||
<path d="M37.6138 20.8467C36.2664 20.8467 35.0647 20.6282 34.0087 20.1912C32.9709 19.7361 32.1334 19.1169 31.4961 18.334L33.9268 16.2584C34.473 16.8592 35.092 17.2962 35.784 17.5693C36.4759 17.8243 37.1677 17.9517 37.8596 17.9517C38.1327 17.9517 38.3785 17.9244 38.597 17.8697C38.8337 17.797 39.034 17.7059 39.1979 17.5966C39.3617 17.4692 39.4801 17.3235 39.5529 17.1596C39.644 16.9776 39.6895 16.7864 39.6895 16.5861C39.6895 16.1856 39.5256 15.876 39.1979 15.6575C39.0158 15.5483 38.7336 15.4299 38.3512 15.3025C37.9689 15.1568 37.4773 15.0021 36.8764 14.8382C35.9478 14.6015 35.1558 14.3284 34.5003 14.0188C33.863 13.6911 33.3533 13.327 32.9709 12.9264C32.6432 12.544 32.3882 12.1344 32.2062 11.6974C32.0423 11.2422 31.9604 10.7415 31.9604 10.1953C31.9604 9.53981 32.1061 8.94807 32.3974 8.42004C32.6886 7.87382 33.0893 7.40953 33.5991 7.02717C34.1271 6.64481 34.728 6.35349 35.4016 6.15321C36.0752 5.93472 36.7853 5.82547 37.5319 5.82547C38.2784 5.82547 39.0067 5.91651 39.7168 6.09858C40.4269 6.28067 41.0824 6.54467 41.6832 6.89061C42.3022 7.21835 42.8394 7.60981 43.2946 8.065L41.2189 10.3591C40.8912 10.0496 40.518 9.76741 40.0992 9.5125C39.6986 9.2576 39.2798 9.05731 38.8428 8.91165C38.4059 8.766 38.0143 8.69316 37.6684 8.69316C37.3589 8.69316 37.0767 8.72047 36.8218 8.77509C36.5851 8.82971 36.3848 8.92075 36.2209 9.0482C36.0571 9.15745 35.9297 9.29401 35.8386 9.45787C35.7658 9.62174 35.7293 9.80381 35.7293 10.0041C35.7293 10.2044 35.7748 10.3956 35.8659 10.5776C35.9751 10.7597 36.1209 10.9145 36.3029 11.0419C36.5032 11.1512 36.7945 11.2786 37.1768 11.4243C37.5774 11.57 38.1146 11.7338 38.7882 11.9159C39.6622 12.1526 40.3996 12.4166 41.0004 12.7079C41.6194 12.9992 42.111 13.3361 42.4752 13.7184C42.7848 14.0462 43.0123 14.4194 43.158 14.8382C43.3037 15.257 43.3765 15.7213 43.3765 16.2311C43.3765 17.1232 43.1216 17.9152 42.6118 18.6071C42.1202 19.2991 41.4374 19.8453 40.5634 20.2458C39.6895 20.6463 38.7063 20.8467 37.6138 20.8467Z" fill="#B4B4B4"/>
|
||||
<path d="M51.6313 20.8467C50.0655 20.8467 48.6909 20.5281 47.5073 19.8908C46.3421 19.2535 45.4317 18.3795 44.7762 17.2689C44.1389 16.1583 43.8203 14.8837 43.8203 13.4453C43.8203 12.3165 44.0023 11.2877 44.3665 10.3591C44.7307 9.43056 45.2405 8.62944 45.896 7.95575C46.5514 7.26387 47.3253 6.73585 48.2174 6.37169C49.1279 5.98934 50.1111 5.79816 51.1671 5.79816C52.1503 5.79816 53.0607 5.98024 53.8982 6.34438C54.7357 6.70854 55.4549 7.21834 56.0558 7.87382C56.6748 8.51108 57.1482 9.2758 57.476 10.168C57.8037 11.0419 57.9494 11.9887 57.9129 13.0083L57.8856 14.21H46.2783L45.6502 11.834H54.6902L54.2532 12.3256V11.7247C54.2168 11.2331 54.0529 10.7961 53.7616 10.4138C53.4885 10.0132 53.1335 9.70367 52.6965 9.48518C52.2595 9.24849 51.7679 9.13014 51.2217 9.13014C50.4205 9.13014 49.7377 9.28491 49.1733 9.59443C48.6271 9.90396 48.2083 10.3591 47.917 10.96C47.6257 11.5608 47.48 12.2892 47.48 13.1449C47.48 14.0188 47.6621 14.7744 48.0262 15.4117C48.4086 16.049 48.9367 16.5496 49.6103 16.9138C50.3022 17.2597 51.1124 17.4328 52.041 17.4328C52.6783 17.4328 53.2609 17.3327 53.7889 17.1323C54.317 16.932 54.8814 16.5861 55.4822 16.0945L57.3394 18.6891C56.8113 19.1625 56.2288 19.563 55.5915 19.8908C54.9542 20.2003 54.2987 20.437 53.6251 20.6009C52.9514 20.7647 52.2868 20.8467 51.6313 20.8467Z" fill="#B4B4B4"/>
|
||||
<path d="M59.4126 20.5736V6.12589H63.1269L63.2362 9.07551L62.4715 9.40325C62.6718 8.74778 63.0268 8.15604 63.5366 7.62802C64.0647 7.08179 64.6928 6.64481 65.4211 6.31707C66.1495 5.98934 66.9142 5.82547 67.7152 5.82547C68.8077 5.82547 69.7181 6.04396 70.4464 6.48094C71.1929 6.91792 71.7483 7.5825 72.1124 8.47467C72.4947 9.34863 72.6859 10.432 72.6859 11.7247V20.5736H68.8077V12.0251C68.8077 11.3697 68.7167 10.8234 68.5346 10.3865C68.3525 9.94948 68.0703 9.63085 67.6879 9.43056C67.3239 9.23027 66.8686 9.13925 66.3224 9.15745C65.8854 9.15745 65.4757 9.23029 65.0933 9.37594C64.7293 9.50339 64.4106 9.69458 64.1375 9.94948C63.8826 10.2044 63.6732 10.4957 63.5093 10.8234C63.3637 11.1512 63.2908 11.5062 63.2908 11.8886V20.5736H61.379C60.9603 20.5736 60.587 20.5736 60.2592 20.5736C59.9315 20.5736 59.6494 20.5736 59.4126 20.5736Z" fill="#B4B4B4"/>
|
||||
<path d="M80.6909 20.8467C79.4164 20.8467 78.2785 20.5281 77.277 19.8908C76.2938 19.2353 75.5109 18.3522 74.9282 17.2416C74.3638 16.1127 74.0815 14.8109 74.0815 13.3361C74.0815 11.8977 74.3638 10.6141 74.9282 9.48519C75.5109 8.33812 76.2938 7.44595 77.277 6.80868C78.2785 6.15321 79.4164 5.82548 80.6909 5.82548C81.3646 5.82548 82.011 5.93472 82.63 6.15321C83.2673 6.3535 83.8317 6.63572 84.3233 6.99986C84.8332 7.36402 85.2429 7.77369 85.5523 8.22887C85.8619 8.66585 86.0349 9.12105 86.0712 9.59444L85.088 9.78561V0.36322H88.9935V20.5736H85.3065L85.1426 17.2416L85.9073 17.3235C85.871 17.7787 85.7071 18.2156 85.4157 18.6345C85.1245 19.0533 84.733 19.4356 84.2413 19.7815C83.768 20.1093 83.2218 20.3732 82.6027 20.5736C82.0018 20.7556 81.3646 20.8467 80.6909 20.8467ZM81.5648 17.6239C82.2932 17.6239 82.9304 17.4419 83.4766 17.0777C84.0229 16.7135 84.4508 16.2129 84.7603 15.5756C85.0698 14.9383 85.2246 14.1919 85.2246 13.3361C85.2246 12.4985 85.0698 11.7611 84.7603 11.1239C84.4508 10.4866 84.0229 9.9859 83.4766 9.62175C82.9304 9.25761 82.2932 9.07552 81.5648 9.07552C80.8366 9.07552 80.1993 9.25761 79.6531 9.62175C79.1251 9.9859 78.7063 10.4866 78.3967 11.1239C78.1055 11.7611 77.9597 12.4985 77.9597 13.3361C77.9597 14.1919 78.1055 14.9383 78.3967 15.5756C78.7063 16.2129 79.1251 16.7135 79.6531 17.0777C80.1993 17.4419 80.8366 17.6239 81.5648 17.6239Z" fill="#B4B4B4"/>
|
||||
</g>
|
||||
<defs>
|
||||
<clipPath id="clip0_114_314">
|
||||
<rect width="88.7617" height="21.849" fill="white" transform="translate(0.317871 0.0900879)"/>
|
||||
</clipPath>
|
||||
</defs>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 7.7 KiB |
7
apps/www/public/images/logos/publicity/archive/udio.svg
Normal file
@@ -0,0 +1,7 @@
|
||||
<svg width="73" height="29" viewBox="0 0 73 29" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M34.4501 10.2516C33.1914 9.2669 31.4753 8.70197 29.6075 8.70197C24.3474 8.70197 20.5718 12.7858 20.5718 18.2714C20.5718 23.7573 24.3448 27.841 29.6075 27.841C31.5127 27.841 33.266 27.1969 34.5643 26.1384V27.4609H40.2823V0.000930786L34.4501 1.44126V10.2516ZM30.6373 22.6195C28.2346 22.6195 26.4812 20.8032 26.4812 18.2688C26.4812 15.7346 28.2346 13.9184 30.6745 13.9184C33.1144 13.9184 34.7906 15.695 34.7906 18.2688C34.7906 20.8428 33.1144 22.6195 30.6345 22.6195H30.6373Z" fill="#B4B4B4"/>
|
||||
<path d="M49.5788 8.50064L43.7466 9.94099V27.4582H49.5788V8.50064Z" fill="#B4B4B4"/>
|
||||
<path d="M46.6812 0.188339C44.8506 0.188339 43.5176 1.58747 43.5176 3.36674C43.5176 5.14603 44.8506 6.54516 46.6812 6.54516C48.5116 6.54516 49.8075 5.14603 49.8075 3.36674C49.8075 1.58747 48.5116 0.188339 46.6812 0.188339Z" fill="#B4B4B4"/>
|
||||
<path d="M61.9376 8.6624C56.1428 8.6624 51.7979 12.7859 51.7979 18.232C51.7979 23.678 56.1826 27.8781 61.9376 27.8781C67.6928 27.8781 72.0775 23.7176 72.0775 18.232C72.0775 12.7463 67.6928 8.6624 61.9376 8.6624ZM61.9376 22.6195C59.4605 22.6195 57.7445 20.8428 57.7445 18.2689C57.7445 15.695 59.4605 13.9184 61.9376 13.9184C64.4147 13.9184 66.1309 15.6581 66.1309 18.2294C66.1309 20.8006 64.4547 22.6167 61.9376 22.6167V22.6195Z" fill="#B4B4B4"/>
|
||||
<path d="M12.7441 19.668C12.7441 21.5978 11.6772 22.7328 9.92376 22.7328H6.26533V9.07681H0.433105V16.9436L6.26533 22.7328H0.433105L6.26533 28.5195V22.7328L11.3552 27.7829C15.6815 27.2207 18.5763 24.0819 18.5763 19.7076V9.07681H12.7441V19.668Z" fill="#B4B4B4"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1.6 KiB |
@@ -1,11 +1,11 @@
|
||||
<svg width="171" height="36" viewBox="0 0 171 36" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<g clip-path="url(#clip0_117_159)">
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M34.8532 18.0184C34.8532 27.4482 27.2089 35.0925 17.7791 35.0925C8.3494 35.0925 0.705078 27.4482 0.705078 18.0184C0.705078 8.58867 8.3494 0.944351 17.7791 0.944351C27.2089 0.944351 34.8532 8.58867 34.8532 18.0184ZM13.942 11.1845C13.867 11.1411 13.7723 11.1963 13.7723 11.2831V24.7656C13.7724 24.7854 13.7776 24.8049 13.7875 24.8221C13.7974 24.8393 13.8117 24.8536 13.8288 24.8636C13.846 24.8736 13.8655 24.8789 13.8853 24.879C13.9052 24.8791 13.9247 24.874 13.942 24.8642L25.6179 18.123C25.6928 18.0796 25.6928 17.9691 25.6179 17.9257L13.942 11.1845ZM15.9793 10.1411C15.8748 10.1411 15.8373 10.2812 15.928 10.3344H15.9261L25.2924 15.7424C25.3851 15.7957 25.4877 15.6931 25.4345 15.6024L22.3853 10.2969C22.3301 10.2003 22.2275 10.1411 22.1171 10.1411H15.9793ZM11.8494 23.454C11.9026 23.5467 12.0426 23.5093 12.0426 23.4028V12.6282C12.0426 12.5217 11.9026 12.4862 11.8494 12.5769L8.81204 17.8606C8.75682 17.9573 8.75682 18.0756 8.81204 18.1703L11.8494 23.454ZM25.2826 20.3122C25.3753 20.2589 25.4778 20.3615 25.4246 20.4522L25.4226 20.4542L22.3833 25.7379C22.3281 25.8346 22.2255 25.8938 22.1151 25.8938H16.001C15.8965 25.8938 15.859 25.7537 15.9497 25.7005L25.2826 20.3122ZM28.523 17.5017C28.7065 17.8212 28.7065 18.2117 28.523 18.5312L23.5943 27.1028C23.4109 27.4242 23.0677 27.6215 22.6989 27.6215H12.8493C12.6677 27.6211 12.4893 27.573 12.3322 27.482C12.175 27.3909 12.0445 27.2602 11.9539 27.1028L7.02515 18.5312C6.84173 18.2117 6.84173 17.8212 7.02515 17.5017L11.9539 8.93014C12.1373 8.60866 12.4805 8.41143 12.8493 8.41143H22.6989C22.8805 8.41176 23.0589 8.45986 23.216 8.55091C23.3732 8.64195 23.5037 8.77274 23.5943 8.93014L28.523 17.5017Z" fill="#A0A0A0"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M44.1165 21.1129C44.1165 18.8566 45.7831 17.0638 48.1557 17.0638C50.5284 17.0638 52.195 18.8566 52.195 21.1129C52.195 23.3692 50.5008 25.1896 48.1557 25.1896C45.8107 25.1896 44.1165 23.3692 44.1165 21.1129ZM48.8618 27.9883C52.7038 27.9883 55.3309 24.945 55.3309 21.1129C55.3309 17.2807 52.7038 14.2651 48.8618 14.2651C46.998 14.2651 45.1618 15.1073 44.2013 16.6023V8.64016H41.0654V27.6609H44.0317V25.3237C44.935 27.0356 46.9132 27.9863 48.8618 27.9863V27.9883ZM59.4608 19.5627C59.9421 17.8231 61.2398 16.7364 63.1609 16.7364C65.0819 16.7364 66.4388 17.8231 66.8904 19.5627H59.4608ZM63.3877 28.0672C66.1567 28.0672 68.5866 26.8996 69.8015 24.2902V24.235C68.9535 24.2902 67.6833 23.7183 67.1745 23.0398L67.1468 23.0674C66.638 24.4263 65.283 25.4322 63.4468 25.4322C61.2438 25.4322 59.5772 24.0457 59.2932 21.7913H69.8863C70.3952 17.689 67.6833 14.1823 63.1904 14.1823C59.2064 14.1823 56.3249 17.2807 56.3249 21.1109C56.3249 24.9411 59.2636 28.0672 63.3877 28.0672ZM70.553 17.2807H72.3892V27.6609H75.5547V17.2807H77.5605V14.5629H75.5547V10.3758H72.3892V14.5629H70.553V17.2807ZM81.2704 21.1129C81.2704 18.8566 82.937 17.0638 85.3096 17.0638C87.6823 17.0638 89.3784 18.8842 89.3784 21.1129C89.3784 23.3416 87.7119 25.1896 85.3096 25.1896C82.9074 25.1896 81.2704 23.3692 81.2704 21.1129ZM84.6331 27.9606C86.4693 27.9606 88.4751 27.0633 89.3784 25.3789V27.6609H92.4296V14.5629H89.3784V16.8449C88.4751 15.1605 86.4693 14.2631 84.6331 14.2631C80.7635 14.2631 78.1344 17.3064 78.1344 21.1109C78.1344 24.9154 80.7615 27.9587 84.6331 27.9587V27.9606ZM99.6106 28.0691C102.719 28.0691 104.837 26.1678 104.837 23.6946C104.837 21.2214 102.859 20.1346 100.768 19.7264L99.4962 19.4818C98.3661 19.2372 97.518 18.9375 97.518 18.0696C97.518 17.3083 98.2517 16.6023 99.4114 16.6023C100.684 16.6023 101.672 17.2275 101.981 18.5588H102.009C102.545 17.9336 103.818 17.4444 104.664 17.5529L104.691 17.5253C104.182 15.6773 102.346 14.1566 99.4923 14.1566C96.6384 14.1566 94.463 16.0047 94.463 18.2333C94.463 20.2451 95.8199 21.4403 98.5594 22.0103L99.8867 22.2824C100.932 22.527 101.751 22.8524 101.751 23.805C101.751 24.7577 101.017 25.517 99.6323 25.517C97.9381 25.517 96.7232 24.4303 96.4964 23.0714L96.4688 23.0437C95.9323 23.669 94.6602 24.1305 93.8141 24.022L93.7865 24.0496C94.2953 26.4952 96.5556 28.0711 99.6067 28.0711L99.6106 28.0691ZM106.362 27.6609H109.498V20.2155C109.498 18.3142 110.855 17.0638 112.718 17.0638C114.582 17.0638 115.77 18.259 115.77 20.107V27.6609H118.905V18.9927C118.905 16.2216 116.702 14.2375 113.791 14.2375C112.068 14.2375 110.373 14.9988 109.498 16.547V8.64016H106.362V27.6609ZM123.544 21.1129C123.544 18.8566 125.211 17.0638 127.584 17.0638C129.956 17.0638 131.652 18.8842 131.652 21.1129C131.652 23.3416 129.986 25.1896 127.584 25.1896C125.181 25.1896 123.544 23.3692 123.544 21.1129ZM126.907 27.9606C128.743 27.9606 130.749 27.0633 131.652 25.3789V27.6609H134.703V14.5629H131.652V16.8449C130.749 15.1605 128.743 14.2631 126.907 14.2631C123.037 14.2631 120.408 17.3064 120.408 21.1109C120.408 24.9154 123.035 27.9587 126.907 27.9587V27.9606ZM137.167 18.1505V27.6609H140.303V21.8466C140.303 19.5646 141.009 17.4444 143.297 17.4444C143.975 17.4444 144.569 17.6081 144.878 17.8527H144.906C144.934 17.0105 145.669 15.7877 146.403 15.3262V15.271C145.894 14.701 144.991 14.3479 143.776 14.3479C142.052 14.3479 140.837 15.3814 140.216 16.7936V14.5649H137.165V18.1525L137.167 18.1505ZM148.665 19.5627C149.145 17.8231 150.444 16.7364 152.365 16.7364C154.286 16.7364 155.643 17.8231 156.095 19.5627H148.665ZM152.592 28.0672C155.361 28.0672 157.791 26.8996 159.006 24.2902V24.235C158.158 24.2902 156.888 23.7183 156.379 23.0398L156.351 23.0674C155.842 24.4263 154.487 25.4322 152.651 25.4322C150.448 25.4322 148.782 24.0457 148.498 21.7913H159.091C159.6 17.689 156.888 14.1823 152.395 14.1823C148.411 14.1823 145.529 17.2807 145.529 21.1109C145.529 24.9411 148.468 28.0672 152.592 28.0672ZM165.708 28.0691C168.816 28.0691 170.934 26.1678 170.934 23.6946C170.934 21.2214 168.956 20.1346 166.866 19.7264L165.593 19.4818C164.463 19.2372 163.615 18.9375 163.615 18.0696C163.615 17.3083 164.349 16.6023 165.509 16.6023C166.781 16.6023 167.769 17.2275 168.078 18.5588H168.106C168.643 17.9336 169.915 17.4444 170.761 17.5529L170.788 17.5253C170.28 15.6773 168.443 14.1566 165.589 14.1566C162.736 14.1566 160.56 16.0047 160.56 18.2333C160.56 20.2451 161.917 21.4403 164.657 22.0103L165.984 22.2824C167.029 22.527 167.848 22.8524 167.848 23.805C167.848 24.7577 167.114 25.517 165.729 25.517C164.035 25.517 162.82 24.4303 162.594 23.0714L162.566 23.0437C162.029 23.669 160.757 24.1305 159.911 24.022L159.884 24.0496C160.392 26.4952 162.653 28.0711 165.704 28.0711L165.708 28.0691Z" fill="#B4B4B4"/>
|
||||
<svg width="149" height="60" viewBox="0 0 149 60" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<g clip-path="url(#clip0_2080_14366)">
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M36.3414 30.0029C36.3414 37.0941 30.5929 42.8426 23.5017 42.8426C16.4104 42.8426 10.6619 37.0941 10.6619 30.0029C10.6619 22.9117 16.4104 17.1631 23.5017 17.1631C30.5929 17.1631 36.3414 22.9117 36.3414 30.0029ZM20.6161 24.8637C20.5597 24.8311 20.4885 24.8726 20.4885 24.9379V35.0768C20.4885 35.0917 20.4925 35.1064 20.4999 35.1193C20.5074 35.1322 20.5181 35.143 20.531 35.1505C20.5439 35.158 20.5585 35.162 20.5735 35.1621C20.5884 35.1621 20.6031 35.1583 20.6161 35.151L29.3964 30.0815C29.4528 30.0489 29.4528 29.9658 29.3964 29.9332L20.6161 24.8637ZM22.1482 24.0791C22.0696 24.0791 22.0414 24.1844 22.1096 24.2245H22.1081L29.1517 28.2913C29.2214 28.3313 29.2985 28.2542 29.2585 28.186L26.9655 24.1963C26.924 24.1236 26.8469 24.0791 26.7638 24.0791H22.1482ZM19.0424 34.0905C19.0825 34.1602 19.1878 34.132 19.1878 34.0519V25.9494C19.1878 25.8693 19.0825 25.8426 19.0424 25.9108L16.7583 29.8842C16.7168 29.9569 16.7168 30.0459 16.7583 30.1171L19.0424 34.0905ZM29.1443 31.7278C29.214 31.6878 29.2911 31.7649 29.2511 31.8331L29.2496 31.8346L26.964 35.808C26.9225 35.8807 26.8454 35.9252 26.7623 35.9252H22.1645C22.0859 35.9252 22.0577 35.8199 22.1259 35.7798L29.1443 31.7278ZM31.5811 29.6143C31.7191 29.8546 31.7191 30.1482 31.5811 30.3885L27.8747 36.8344C27.7368 37.0761 27.4787 37.2244 27.2013 37.2244H19.7944C19.6578 37.2242 19.5237 37.188 19.4055 37.1195C19.2873 37.0511 19.1892 36.9527 19.121 36.8344L15.4146 30.3885C15.2767 30.1482 15.2767 29.8546 15.4146 29.6143L19.121 23.1684C19.259 22.9267 19.517 22.7784 19.7944 22.7784H27.2013C27.3379 22.7786 27.472 22.8148 27.5902 22.8833C27.7084 22.9517 27.8065 23.0501 27.8747 23.1684L31.5811 29.6143Z" fill="#7E7E7E"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M43.3075 32.3299C43.3075 30.6332 44.5608 29.285 46.345 29.285C48.1293 29.285 49.3825 30.6332 49.3825 32.3299C49.3825 34.0267 48.1085 35.3956 46.345 35.3956C44.5815 35.3956 43.3075 34.0267 43.3075 32.3299ZM46.876 37.5002C49.7652 37.5002 51.7408 35.2117 51.7408 32.3299C51.7408 29.4481 49.7652 27.1804 46.876 27.1804C45.4744 27.1804 44.0936 27.8137 43.3713 28.9379V22.9504H41.013V37.254H43.2437V35.4965C43.923 36.7839 45.4106 37.4988 46.876 37.4988V37.5002ZM54.8465 31.1642C55.2084 29.856 56.1843 29.0388 57.6289 29.0388C59.0736 29.0388 60.094 29.856 60.4336 31.1642H54.8465ZM57.7995 37.5596C59.8819 37.5596 61.7091 36.6815 62.6228 34.7193V34.6778C61.985 34.7193 61.0299 34.2892 60.6472 33.779L60.6264 33.7997C60.2438 34.8216 59.2248 35.5781 57.844 35.5781C56.1873 35.5781 54.934 34.5354 54.7205 32.8401H62.6866C63.0692 29.7551 61.0299 27.1181 57.6512 27.1181C54.6552 27.1181 52.4883 29.4481 52.4883 32.3284C52.4883 35.2088 54.6982 37.5596 57.7995 37.5596ZM63.1879 29.4481H64.5687V37.254H66.9492V29.4481H68.4576V27.4043H66.9492V24.2556H64.5687V27.4043H63.1879V29.4481ZM71.2474 32.3299C71.2474 30.6332 72.5007 29.285 74.2849 29.285C76.0692 29.285 77.3447 30.6539 77.3447 32.3299C77.3447 34.0059 76.0914 35.3956 74.2849 35.3956C72.4784 35.3956 71.2474 34.0267 71.2474 32.3299ZM73.7762 37.4795C75.157 37.4795 76.6654 36.8046 77.3447 35.538V37.254H79.6392V27.4043H77.3447V29.1203C76.6654 27.8537 75.157 27.1789 73.7762 27.1789C70.8662 27.1789 68.8892 29.4674 68.8892 32.3284C68.8892 35.1895 70.8647 37.478 73.7762 37.478V37.4795ZM85.0394 37.5611C87.3769 37.5611 88.9698 36.1313 88.9698 34.2714C88.9698 32.4115 87.4822 31.5943 85.91 31.2873L84.9534 31.1033C84.1035 30.9194 83.4657 30.694 83.4657 30.0414C83.4657 29.4689 84.0175 28.9379 84.8896 28.9379C85.8462 28.9379 86.5893 29.4081 86.8222 30.4092H86.8429C87.2463 29.9391 88.203 29.5712 88.8393 29.6528L88.86 29.632C88.4774 28.2423 87.0965 27.0988 84.9504 27.0988C82.8042 27.0988 81.1683 28.4885 81.1683 30.1645C81.1683 31.6773 82.1887 32.5761 84.2489 33.0048L85.247 33.2094C86.0331 33.3934 86.6486 33.6381 86.6486 34.3545C86.6486 35.0708 86.0969 35.6418 85.0557 35.6418C83.7817 35.6418 82.868 34.8246 82.6975 33.8027L82.6767 33.7819C82.2733 34.2521 81.3166 34.5992 80.6804 34.5176L80.6596 34.5384C81.0422 36.3775 82.742 37.5625 85.0364 37.5625L85.0394 37.5611ZM90.1163 37.254H92.4745V31.6551C92.4745 30.2253 93.4949 29.285 94.8965 29.285C96.2981 29.285 97.191 30.1838 97.191 31.5735V37.254H99.5492V30.7355C99.5492 28.6517 97.8925 27.1596 95.7034 27.1596C94.4071 27.1596 93.133 27.7321 92.4745 28.8964V22.9504H90.1163V37.254ZM103.038 32.3299C103.038 30.6332 104.291 29.285 106.075 29.285C107.859 29.285 109.135 30.6539 109.135 32.3299C109.135 34.0059 107.882 35.3956 106.075 35.3956C104.269 35.3956 103.038 34.0267 103.038 32.3299ZM105.566 37.4795C106.947 37.4795 108.456 36.8046 109.135 35.538V37.254H111.429V27.4043H109.135V29.1203C108.456 27.8537 106.947 27.1789 105.566 27.1789C102.656 27.1789 100.679 29.4674 100.679 32.3284C100.679 35.1895 102.655 37.478 105.566 37.478V37.4795ZM113.282 30.1022V37.254H115.64V32.8817C115.64 31.1656 116.171 29.5712 117.892 29.5712C118.402 29.5712 118.848 29.6943 119.081 29.8783H119.102C119.123 29.2449 119.676 28.3254 120.228 27.9783V27.9368C119.845 27.5081 119.166 27.2427 118.252 27.2427C116.956 27.2427 116.042 28.0198 115.575 29.0818V27.4058H113.28V30.1037L113.282 30.1022ZM121.929 31.1642C122.289 29.856 123.267 29.0388 124.711 29.0388C126.156 29.0388 127.176 29.856 127.516 31.1642H121.929ZM124.882 37.5596C126.964 37.5596 128.791 36.6815 129.705 34.7193V34.6778C129.067 34.7193 128.112 34.2892 127.729 33.779L127.709 33.7997C127.326 34.8216 126.307 35.5781 124.926 35.5781C123.27 35.5781 122.016 34.5354 121.803 32.8401H129.769C130.151 29.7551 128.112 27.1181 124.733 27.1181C121.737 27.1181 119.571 29.4481 119.571 32.3284C119.571 35.2088 121.78 37.5596 124.882 37.5596ZM134.745 37.5611C137.082 37.5611 138.675 36.1313 138.675 34.2714C138.675 32.4115 137.188 31.5943 135.615 31.2873L134.659 31.1033C133.809 30.9194 133.171 30.694 133.171 30.0414C133.171 29.4689 133.723 28.9379 134.595 28.9379C135.552 28.9379 136.295 29.4081 136.528 30.4092H136.548C136.952 29.9391 137.908 29.5712 138.545 29.6528L138.565 29.632C138.183 28.2423 136.802 27.0988 134.656 27.0988C132.51 27.0988 130.874 28.4885 130.874 30.1645C130.874 31.6773 131.894 32.5761 133.954 33.0048L134.952 33.2094C135.739 33.3934 136.354 33.6381 136.354 34.3545C136.354 35.0708 135.802 35.6418 134.761 35.6418C133.487 35.6418 132.573 34.8246 132.403 33.8027L132.382 33.7819C131.979 34.2521 131.022 34.5992 130.386 34.5176L130.365 34.5384C130.748 36.3775 132.447 37.5625 134.742 37.5625L134.745 37.5611Z" fill="#7E7E7E"/>
|
||||
</g>
|
||||
<defs>
|
||||
<clipPath id="clip0_117_159">
|
||||
<rect width="170.384" height="34.4676" fill="white" transform="translate(0.610352 0.780807)"/>
|
||||
<clipPath id="clip0_2080_14366">
|
||||
<rect width="128.129" height="25.9198" fill="white" transform="translate(10.5908 17.04)"/>
|
||||
</clipPath>
|
||||
</defs>
|
||||
</svg>
|
||||
|
||||
|
Before Width: | Height: | Size: 6.6 KiB After Width: | Height: | Size: 6.6 KiB |
@@ -1,11 +1,18 @@
|
||||
<svg width="152" height="40" viewBox="0 0 152 40" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M10.9776 0.520279C4.91161 0.520279 -0.00585938 5.40031 -0.00585938 11.4201V28.6091C-0.00585938 34.6289 4.91161 39.5089 10.9776 39.5089H30.2652C36.3312 39.5089 41.2487 34.6289 41.2487 28.6091V11.4201C41.2487 5.40031 36.3312 0.520279 30.2652 0.520279H10.9776ZM20.5832 29.156C18.664 29.156 17.0203 28.76 15.6521 27.9774C14.2839 27.1948 13.2292 26.101 12.4976 24.7055C11.766 23.3101 11.3955 21.6883 11.3955 19.8496C11.3955 18.011 11.766 16.3798 12.5071 14.9749C13.2482 13.5794 14.3029 12.4856 15.6711 11.703C17.0393 10.9204 18.6735 10.5244 20.5832 10.5244C22.265 10.5244 23.7282 10.8261 24.9823 11.4296C26.2365 12.033 27.2151 12.8816 27.9182 13.9848C28.6213 15.088 29.0014 16.3798 29.0394 17.8601H23.6236C23.5096 16.9361 23.1961 16.2101 22.683 15.682C22.1699 15.154 21.4954 14.89 20.6687 14.89C19.9942 14.89 19.4051 15.0786 18.9015 15.4463C18.3979 15.8235 17.9989 16.3704 17.7233 17.0964C17.4478 17.8224 17.3053 18.7182 17.3053 19.7836C17.3053 20.8491 17.4478 21.7449 17.7233 22.4803C17.9989 23.2158 18.3979 23.7626 18.9015 24.1398C19.4051 24.5075 19.9942 24.6961 20.6687 24.6961C21.2103 24.6961 21.6854 24.583 22.0939 24.3567C22.512 24.1304 22.854 23.7909 23.1201 23.3478C23.3861 22.9046 23.5571 22.3672 23.6331 21.7354H29.0489C28.9919 23.2252 28.6213 24.5264 27.9277 25.639C27.2341 26.7516 26.265 27.6191 25.0298 28.232C23.7852 28.8448 22.3125 29.156 20.6022 29.156H20.5832Z" fill="#B4B4B4"/>
|
||||
<path d="M67.5295 16.9738H66.0378C65.9238 16.4269 65.7242 15.9178 65.4392 15.4463C65.1542 14.9749 64.7931 14.5694 64.356 14.2205C63.919 13.8717 63.4344 13.5982 62.8834 13.4002C62.3323 13.2022 61.7432 13.1079 61.1066 13.1079C60.0805 13.1079 59.1493 13.3719 58.3132 13.9C57.4771 14.428 56.8025 15.2011 56.299 16.2289C55.7954 17.2567 55.5484 18.5013 55.5484 19.9816C55.5484 21.462 55.7954 22.7254 56.299 23.7532C56.8025 24.7715 57.4771 25.5447 58.3132 26.0727C59.1589 26.6007 60.09 26.8647 61.1066 26.8647C61.7432 26.8647 62.3418 26.7705 62.8834 26.5725C63.4344 26.3744 63.919 26.1104 64.356 25.7616C64.7931 25.4127 65.1447 25.0072 65.4392 24.5358C65.7242 24.0644 65.9238 23.5552 66.0378 23.0083H67.5295C67.3965 23.7438 67.1494 24.4321 66.7884 25.0733C66.4273 25.705 65.9713 26.2613 65.4107 26.7422C64.8501 27.2231 64.2135 27.5908 63.4914 27.8548C62.7693 28.1188 61.9712 28.2508 61.1066 28.2508C59.7479 28.2508 58.5413 27.9114 57.4866 27.2325C56.432 26.5536 55.6054 25.6013 55.0068 24.3661C54.4082 23.1309 54.1137 21.6694 54.1137 19.9911C54.1137 18.3127 54.4082 16.8512 55.0068 15.616C55.6054 14.3808 56.432 13.4285 57.4866 12.7496C58.5413 12.0707 59.7479 11.7313 61.1066 11.7313C61.9712 11.7313 62.7693 11.8633 63.4914 12.1273C64.2135 12.3913 64.8501 12.7591 65.4107 13.2399C65.9618 13.7208 66.4273 14.2771 66.7884 14.9089C67.1494 15.5406 67.3965 16.2289 67.5295 16.9738Z" fill="#B4B4B4"/>
|
||||
<path d="M72.1277 20.4908V28.0245H70.7215V11.9482H72.1277V17.8601H72.2512C72.5363 17.2378 72.9733 16.7381 73.5719 16.3703C74.1705 16.0026 74.9306 15.814 75.8427 15.814C76.6693 15.814 77.3914 15.9838 78.009 16.3138C78.6361 16.6532 79.1207 17.1435 79.4627 17.7941C79.8142 18.4447 79.9853 19.2556 79.9853 20.2079V28.0151H78.5696V20.2928C78.5696 19.3027 78.294 18.5107 77.7335 17.945C77.1824 17.3698 76.4223 17.0869 75.4817 17.0869C74.8356 17.0869 74.256 17.2189 73.7524 17.4924C73.2489 17.7658 72.8498 18.1524 72.5553 18.671C72.2607 19.1802 72.1182 19.7836 72.1182 20.4908H72.1277Z" fill="#B4B4B4"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M85.1071 27.8737C85.7056 28.1565 86.3802 28.298 87.1118 28.298V28.2885C87.7864 28.2885 88.3755 28.1754 88.8791 27.9679C89.3826 27.7605 89.8007 27.4871 90.1332 27.1476C90.4658 26.8082 90.7128 26.4687 90.8838 26.1104H90.9694V28.0151H92.3755V19.8308C92.3755 19.0199 92.2425 18.3599 91.9765 17.8318C91.701 17.3038 91.3589 16.8889 90.9218 16.5966C90.4848 16.3043 90.0192 16.0969 89.5157 15.9743C89.0121 15.8518 88.5275 15.7952 88.062 15.7952C87.4444 15.7952 86.8363 15.88 86.2377 16.0592C85.6391 16.2383 85.0976 16.5212 84.613 16.9172C84.1284 17.3132 83.7484 17.8413 83.4728 18.5013L84.8125 18.9822C85.031 18.4636 85.4206 18.0204 85.9717 17.6338C86.5228 17.2472 87.2353 17.0587 88.1095 17.0587C89.0406 17.0587 89.7437 17.2944 90.2378 17.7658C90.7318 18.2373 90.9789 18.8879 90.9789 19.7082V19.9911C90.9789 20.2928 90.8553 20.5191 90.6083 20.6511C90.3613 20.7925 90.0002 20.8868 89.5252 20.9528C89.2537 20.9851 88.9513 21.0236 88.6142 21.0665C88.3614 21.0987 88.0891 21.1333 87.7959 21.1697C87.1118 21.2451 86.4847 21.3677 85.9147 21.5186C85.3446 21.6694 84.8505 21.8769 84.4325 22.1409C84.0144 22.4049 83.6914 22.7443 83.4633 23.1498C83.2353 23.5552 83.1213 24.0644 83.1213 24.6584C83.1213 25.4316 83.3018 26.0916 83.6629 26.629C84.0144 27.1759 84.499 27.5908 85.1071 27.8737ZM89.2496 26.5253C88.6985 26.8553 88.0525 27.0156 87.3019 27.0156L87.3114 27.0251C86.5133 27.0251 85.8482 26.8176 85.3256 26.4216C84.803 26.0256 84.537 25.4598 84.537 24.7244C84.537 24.2341 84.67 23.8381 84.9265 23.5269C85.1831 23.2158 85.5536 22.9706 86.0382 22.7915C86.5228 22.6123 87.1118 22.4803 87.7959 22.3954C88.0525 22.3577 88.3375 22.32 88.651 22.2823C88.9646 22.2446 89.2876 22.188 89.6012 22.1314C89.9147 22.0749 90.1997 21.9994 90.4468 21.924C90.6843 21.8486 90.8648 21.7637 90.9694 21.66V23.4043C90.9694 24.0644 90.8268 24.6678 90.5228 25.2147C90.2188 25.7616 89.8007 26.1953 89.2496 26.5253Z" fill="#B4B4B4"/>
|
||||
<path d="M100.898 15.9649V17.1812H98.3233V24.8752C98.3233 25.375 98.4088 25.771 98.5799 26.0539C98.7509 26.3367 98.9789 26.5442 99.264 26.6573C99.5395 26.7705 99.8435 26.8365 100.157 26.8365C100.338 26.8365 100.499 26.827 100.632 26.7988C100.676 26.7893 100.719 26.781 100.759 26.7729C100.84 26.7569 100.914 26.7422 100.984 26.7233L101.288 27.9868C101.155 28.0434 100.984 28.0905 100.784 28.1282C100.585 28.1754 100.338 28.1942 100.043 28.1942C99.53 28.1942 99.0264 28.0811 98.5514 27.8548C98.0763 27.6285 97.6772 27.2985 97.3732 26.8459C97.0692 26.4027 96.9171 25.8464 96.9171 25.1864V17.1812H95.1024V15.9649H96.9171V13.0796H98.3233V15.9649H100.898Z" fill="#B4B4B4"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M104.642 11.9482V28.0245L104.651 28.0151H106.019V25.7804H106.19C106.352 26.1387 106.589 26.5159 106.884 26.9025C107.178 27.2891 107.578 27.6096 108.072 27.8736C108.566 28.1377 109.174 28.2697 109.915 28.2697C110.903 28.2697 111.777 28.0151 112.528 27.4871C113.278 26.9685 113.867 26.233 114.285 25.2995C114.704 24.3661 114.913 23.2723 114.913 22.0277C114.913 20.7831 114.694 19.6988 114.276 18.7653C113.848 17.8318 113.259 17.1058 112.509 16.5872C111.758 16.0686 110.884 15.8046 109.886 15.8046C109.145 15.8046 108.528 15.9366 108.043 16.1912C107.559 16.4458 107.16 16.7758 106.865 17.1529C106.57 17.5301 106.342 17.9073 106.181 18.2656H106.057V11.9482H104.642ZM106.475 24.5829C106.181 23.8381 106.038 22.9706 106.038 21.9994C106.038 21.0377 106.181 20.1891 106.475 19.4442C106.77 18.6993 107.188 18.1241 107.739 17.6998C108.29 17.2755 108.946 17.0681 109.753 17.0681C110.561 17.0681 111.245 17.2849 111.806 17.7187C112.366 18.1618 112.794 18.7464 113.079 19.4913C113.364 20.2362 113.506 21.066 113.506 21.9994C113.506 22.9329 113.354 23.7815 113.069 24.5358C112.784 25.2901 112.357 25.8841 111.796 26.3273C111.236 26.7705 110.532 26.9873 109.744 26.9873C108.955 26.9873 108.29 26.7705 107.739 26.3462C107.188 25.9219 106.77 25.3373 106.475 24.5829Z" fill="#B4B4B4"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M121.411 28.298C120.68 28.298 120.005 28.1565 119.407 27.8737C118.799 27.5908 118.314 27.1759 117.962 26.629C117.601 26.0916 117.421 25.4316 117.421 24.6584C117.421 24.0644 117.535 23.5552 117.763 23.1498C117.991 22.7443 118.314 22.4049 118.732 22.1409C119.15 21.8769 119.644 21.6694 120.214 21.5186C120.784 21.3677 121.411 21.2451 122.096 21.1697C122.389 21.1333 122.661 21.0987 122.914 21.0665L122.916 21.0663L122.917 21.066C123.253 21.0233 123.554 20.985 123.825 20.9528C124.3 20.8868 124.661 20.7925 124.908 20.6511C125.155 20.5191 125.278 20.2928 125.278 19.9911V19.7082C125.278 18.8879 125.031 18.2373 124.537 17.7658C124.043 17.2944 123.34 17.0587 122.409 17.0587C121.535 17.0587 120.822 17.2472 120.271 17.6338C119.72 18.0204 119.331 18.4636 119.112 18.9822L117.772 18.5013C118.048 17.8413 118.428 17.3132 118.913 16.9172C119.397 16.5212 119.939 16.2383 120.537 16.0592C121.136 15.88 121.744 15.7952 122.362 15.7952C122.827 15.7952 123.312 15.8518 123.815 15.9743C124.319 16.0969 124.784 16.3043 125.221 16.5966C125.658 16.8889 126.001 17.3038 126.276 17.8318C126.542 18.3599 126.675 19.0199 126.675 19.8308V28.0151H125.269V26.1104H125.183C125.012 26.4687 124.765 26.8082 124.433 27.1476C124.1 27.4871 123.682 27.7605 123.179 27.9679C122.675 28.1754 122.086 28.2885 121.411 28.2885V28.298ZM121.601 27.0156C122.352 27.0156 122.998 26.8553 123.549 26.5253C124.1 26.1953 124.518 25.7616 124.822 25.2147C125.126 24.6678 125.269 24.0644 125.269 23.4043V21.66C125.164 21.7637 124.984 21.8486 124.746 21.924C124.499 21.9994 124.214 22.0749 123.901 22.1314C123.587 22.188 123.264 22.2446 122.951 22.2823C122.637 22.32 122.352 22.3577 122.096 22.3954C121.411 22.4803 120.822 22.6123 120.338 22.7915C119.853 22.9706 119.483 23.2158 119.226 23.5269C118.97 23.8381 118.837 24.2341 118.837 24.7244C118.837 25.4598 119.103 26.0256 119.625 26.4216C120.148 26.8176 120.813 27.0251 121.611 27.0251L121.601 27.0156Z" fill="#B4B4B4"/>
|
||||
<path d="M137.278 18.9727L138.57 18.6144H138.551C138.257 17.7375 137.772 17.0492 137.107 16.5495C136.442 16.0498 135.549 15.7952 134.437 15.7952C133.62 15.7952 132.889 15.946 132.252 16.2289C131.615 16.5118 131.112 16.9078 130.751 17.417C130.39 17.9167 130.209 18.5013 130.209 19.1707C130.209 19.9816 130.466 20.6511 130.969 21.198C131.473 21.7448 132.252 22.1409 133.307 22.3954L135.292 22.8669C135.957 23.0272 136.461 23.2723 136.784 23.6023C137.117 23.9324 137.278 24.3378 137.278 24.8281C137.278 25.4504 137.003 25.9784 136.442 26.3933C135.881 26.8082 135.131 27.0156 134.2 27.0156C133.364 27.0156 132.699 26.8365 132.185 26.4687C131.672 26.101 131.33 25.5636 131.159 24.847L129.81 25.177C130.029 26.1764 130.523 26.9402 131.292 27.4776C132.062 28.0151 133.041 28.2791 134.228 28.2791C135.121 28.2791 135.91 28.1282 136.585 27.8265C137.259 27.5248 137.791 27.1099 138.171 26.5819C138.551 26.0539 138.741 25.4504 138.741 24.7715C138.741 23.9701 138.494 23.3006 137.981 22.7632C137.478 22.2257 136.708 21.8391 135.691 21.594L133.858 21.1508C133.107 20.9622 132.547 20.7077 132.185 20.3871C131.824 20.0665 131.644 19.6422 131.644 19.1236C131.644 18.5107 131.91 18.011 132.433 17.6244C132.955 17.2378 133.63 17.0398 134.456 17.0398C134.998 17.0398 135.463 17.1247 135.834 17.2944C136.205 17.4641 136.499 17.6998 136.737 17.9921C136.974 18.2844 137.155 18.6144 137.278 18.9727Z" fill="#B4B4B4"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M146.751 28.2791C145.62 28.2791 144.632 28.0151 143.806 27.4871C142.979 26.959 142.343 26.233 141.886 25.2996C141.43 24.3661 141.212 23.2912 141.212 22.0654C141.212 20.8397 141.44 19.7742 141.886 18.8313C142.333 17.8884 142.96 17.1435 143.758 16.6061C144.556 16.0686 145.478 15.8046 146.533 15.8046C147.188 15.8046 147.825 15.9272 148.442 16.1629C149.06 16.3986 149.601 16.7664 150.096 17.2567C150.59 17.747 150.97 18.3599 151.255 19.1047C151.54 19.8496 151.682 20.7171 151.682 21.7354V22.4237H142.639C142.658 23.3138 142.828 24.088 143.141 24.7621C143.473 25.4787 143.948 26.0256 144.566 26.4216C145.183 26.8176 145.915 27.0062 146.761 27.0062C147.331 27.0062 147.844 26.9213 148.271 26.7422C148.708 26.563 149.069 26.3273 149.373 26.0256C149.668 25.7239 149.896 25.3938 150.048 25.0355L151.388 25.4693C151.207 25.9784 150.903 26.4499 150.485 26.8742C150.067 27.2985 149.544 27.6474 148.917 27.9114C148.29 28.166 147.578 28.298 146.761 28.298L146.751 28.2791ZM143.141 19.3216C142.855 19.8971 142.695 20.5214 142.65 21.1885H150.248C150.248 20.4154 150.086 19.7176 149.773 19.0953C149.459 18.473 149.022 17.9827 148.471 17.6244C147.92 17.2661 147.274 17.0869 146.542 17.0869C145.772 17.0869 145.098 17.2944 144.509 17.6998C143.92 18.1053 143.464 18.6427 143.141 19.3216Z" fill="#B4B4B4"/>
|
||||
<svg width="148" height="60" viewBox="0 0 148 60" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<g clip-path="url(#clip0_2053_10667)">
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M17.7016 16.5H31.0868C34.9922 16.5 38.1582 19.6053 38.1582 23.4358V36.5642C38.1582 40.3947 34.9922 43.5 31.0868 43.5H17.7016C13.7961 43.5 10.6301 40.3947 10.6301 36.5642V23.4358C10.6301 19.6053 13.7961 16.5 17.7016 16.5ZM27.5195 28.0107H31.9707C31.8865 27.0213 31.6471 26.1433 31.2525 25.3766C30.8579 24.61 30.337 23.965 29.6898 23.4418C29.0427 22.9134 28.2903 22.512 27.4327 22.2374C26.5751 21.9629 25.6359 21.8256 24.6152 21.8256C23.163 21.8256 21.8476 22.139 20.669 22.7658C19.4905 23.3874 18.5539 24.3069 17.8594 25.5243C17.1649 26.7364 16.8176 28.2283 16.8176 29.9999C16.8176 31.7612 17.157 33.2505 17.8357 34.4678C18.5197 35.6852 19.4484 36.6072 20.6217 37.234C21.8003 37.8608 23.1314 38.1742 24.6152 38.1742C25.799 38.1742 26.8381 37.9955 27.7326 37.6381C28.627 37.2807 29.3768 36.8093 29.9819 36.2239C30.5922 35.6334 31.0631 34.991 31.3946 34.2969C31.726 33.5976 31.9181 32.9112 31.9707 32.2378L27.5195 32.2067C27.4669 32.5486 27.3643 32.8568 27.2117 33.1313C27.0644 33.4007 26.8723 33.6312 26.6356 33.8229C26.3988 34.0146 26.1199 34.1622 25.799 34.2658C25.478 34.3642 25.115 34.4134 24.7099 34.4134C23.9996 34.4134 23.3918 34.2502 22.8867 33.9239C22.3816 33.5924 21.9949 33.1003 21.7266 32.4476C21.4635 31.7897 21.332 30.9738 21.332 29.9999C21.332 29.0779 21.4609 28.2879 21.7187 27.63C21.9818 26.9721 22.3659 26.467 22.871 26.1148C23.3813 25.7625 24.0048 25.5864 24.7414 25.5864C25.1624 25.5864 25.5385 25.646 25.87 25.7651C26.2015 25.8791 26.483 26.0449 26.7145 26.2624C26.9513 26.4748 27.1354 26.7286 27.2669 27.0239C27.4037 27.3192 27.4879 27.6481 27.5195 28.0107Z" fill="#7E7E7E"/>
|
||||
<path d="M59.8925 27.3267H57.3925C57.2965 26.8101 57.1175 26.3556 56.8558 25.963C56.5939 25.5704 56.2735 25.2373 55.8944 24.9635C55.515 24.6897 55.0902 24.4831 54.6203 24.3436C54.1556 24.2042 53.6616 24.1345 53.138 24.1345C52.1925 24.1345 51.3459 24.3643 50.5981 24.824C49.8556 25.2838 49.2679 25.9578 48.8353 26.8463C48.408 27.7347 48.1943 28.8195 48.1943 30.1005C48.1943 31.3919 48.408 32.4818 48.8353 33.3703C49.2679 34.2587 49.8582 34.9302 50.606 35.3848C51.3538 35.8393 52.1953 36.0666 53.1299 36.0666C53.6482 36.0666 54.1396 35.9995 54.6043 35.8652C55.0743 35.7257 55.4989 35.5217 55.8782 35.2531C56.2575 34.9844 56.578 34.6565 56.8397 34.269C57.1069 33.8765 57.291 33.4271 57.3925 32.9209L59.8925 32.9286C59.7589 33.7086 59.4998 34.4266 59.1152 35.0826C58.7361 35.7334 58.2471 36.2965 57.6488 36.7717C57.0561 37.2417 56.3778 37.6059 55.6138 37.8642C54.8501 38.1225 54.0167 38.2516 53.114 38.2516C51.6932 38.2516 50.4271 37.9262 49.3159 37.2753C48.205 36.6193 47.3288 35.6818 46.6879 34.4627C46.0522 33.2437 45.7345 31.7896 45.7345 30.1005C45.7345 28.4063 46.055 26.9522 46.696 25.7383C47.3369 24.5193 48.213 23.5843 49.324 22.9335C50.4352 22.2775 51.6985 21.9495 53.114 21.9495C53.9846 21.9495 54.7965 22.0708 55.5496 22.3136C56.3083 22.5512 56.9892 22.9025 57.5928 23.3674C58.1964 23.8271 58.6959 24.3901 59.0912 25.0565C59.4864 25.7176 59.7536 26.4744 59.8925 27.3267Z" fill="#7E7E7E"/>
|
||||
<path d="M63.7048 30.9683V38.0346H61.3091V22.1664H63.6727V28.0705H63.825C64.1134 27.43 64.5541 26.9212 65.1468 26.5441C65.7398 26.167 66.5144 25.9785 67.4706 25.9785C68.3146 25.9785 69.0515 26.1464 69.6819 26.4821C70.3176 26.8179 70.809 27.3189 71.1563 27.9853C71.5089 28.6464 71.6851 29.4729 71.6851 30.4647V38.0346H69.2894V30.7436C69.2894 29.8706 69.0571 29.194 68.5921 28.7136C68.1275 28.228 67.4812 27.9853 66.6533 27.9853C66.0871 27.9853 65.5795 28.1015 65.1309 28.3339C64.6875 28.5664 64.3377 28.9073 64.0813 29.3567C63.8303 29.8009 63.7048 30.3381 63.7048 30.9683Z" fill="#7E7E7E"/>
|
||||
<path d="M77.11 38.2983C76.3302 38.2983 75.6253 38.1589 74.9949 37.8799C74.3646 37.5958 73.865 37.1852 73.4965 36.648C73.1334 36.1108 72.9518 35.4522 72.9518 34.6722C72.9518 34.0007 73.0851 33.448 73.3523 33.0141C73.6193 32.5802 73.9799 32.2367 74.434 31.9836C74.8881 31.7305 75.3955 31.5393 75.9564 31.4102C76.5173 31.2811 77.0888 31.1829 77.671 31.1158C78.4081 31.0331 79.0064 30.966 79.4658 30.9143C79.9252 30.8575 80.2591 30.7671 80.4674 30.6431C80.6756 30.5192 80.7799 30.3177 80.7799 30.0388V29.9846C80.7799 29.3079 80.5821 28.7836 80.1869 28.4117C79.7969 28.0398 79.2148 27.8538 78.4402 27.8538C77.6336 27.8538 76.9979 28.0268 76.5332 28.3729C76.0738 28.7139 75.7561 29.0935 75.5798 29.5119L73.3283 29.016C73.5953 28.2929 73.9852 27.7092 74.4982 27.265C75.0161 26.8156 75.6119 26.4902 76.285 26.2887C76.958 26.0821 77.6656 25.9788 78.4081 25.9788C78.8996 25.9788 79.4204 26.0356 79.9707 26.1492C80.526 26.2577 81.0443 26.4591 81.5249 26.7536C82.011 27.048 82.4091 27.469 82.7189 28.0165C83.0286 28.5589 83.1836 29.264 83.1836 30.1318V38.0349H80.844V36.4078H80.7478C80.593 36.7074 80.3606 37.0018 80.0507 37.2911C79.7409 37.5803 79.3428 37.8205 78.8569 38.0117C78.3708 38.2028 77.7886 38.2983 77.11 38.2983ZM77.631 36.4388C78.2932 36.4388 78.8595 36.3122 79.3295 36.0591C79.805 35.806 80.1656 35.4754 80.4111 35.0674C80.6624 34.6541 80.7879 34.2125 80.7879 33.7424V32.2083C80.7023 32.2909 80.5369 32.3684 80.2912 32.4407C80.0507 32.5079 79.7757 32.5673 79.4658 32.6189C79.156 32.6654 78.8542 32.7093 78.5604 32.7507C78.2667 32.7868 78.021 32.8178 77.8232 32.8436C77.3585 32.9004 76.9338 32.996 76.5494 33.1303C76.17 33.2646 75.8655 33.4583 75.6359 33.7114C75.4114 33.9594 75.2992 34.29 75.2992 34.7032C75.2992 35.2765 75.5185 35.7105 75.9564 36.0049C76.3943 36.2941 76.9524 36.4388 77.631 36.4388Z" fill="#7E7E7E"/>
|
||||
<path d="M90.766 26.1335V27.9931H84.0436V26.1335H90.766ZM85.8463 23.2822H88.242V34.5403C88.242 34.9897 88.3114 35.328 88.4503 35.5553C88.5892 35.7774 88.7681 35.9298 88.987 36.0125C89.2115 36.0899 89.4545 36.1287 89.7164 36.1287C89.9086 36.1287 90.0768 36.1158 90.221 36.0899C90.3652 36.0641 90.4773 36.0434 90.5576 36.028L90.9902 37.9417C90.8513 37.9934 90.6536 38.0451 90.3973 38.0967C90.1409 38.1535 89.8204 38.1845 89.4358 38.1897C88.8054 38.2 88.218 38.0916 87.673 37.8643C87.1282 37.637 86.6875 37.2857 86.3511 36.8105C86.0145 36.3353 85.8463 35.7387 85.8463 35.0207V23.2822Z" fill="#7E7E7E"/>
|
||||
<path d="M92.5184 38.0346V22.1664H94.9141V28.0627H95.0583C95.1972 27.8148 95.3975 27.5281 95.6594 27.2027C95.9211 26.8773 96.2842 26.5932 96.7489 26.3504C97.2136 26.1025 97.8281 25.9785 98.5918 25.9785C99.5853 25.9785 100.472 26.2213 101.252 26.7068C102.032 27.1924 102.643 27.8923 103.087 28.8066C103.535 29.7209 103.76 30.8211 103.76 32.1073C103.76 33.3935 103.538 34.4963 103.095 35.4158C102.652 36.33 102.043 37.0351 101.268 37.531C100.493 38.0217 99.6093 38.2671 98.6158 38.2671C97.868 38.2671 97.2565 38.1457 96.781 37.9029C96.311 37.6601 95.9423 37.376 95.6753 37.0506C95.4081 36.7252 95.2025 36.4359 95.0583 36.1828H94.8581V38.0346H92.5184ZM94.8661 32.084C94.8661 32.9208 94.9917 33.6543 95.2427 34.2845C95.4937 34.9147 95.8569 35.408 96.3322 35.7644C96.8078 36.1157 97.3899 36.2913 98.0791 36.2913C98.7948 36.2913 99.3931 36.1079 99.8737 35.7412C100.355 35.3693 100.718 34.8656 100.963 34.2303C101.215 33.5949 101.34 32.8795 101.34 32.084C101.34 31.2989 101.217 30.5938 100.972 29.9688C100.731 29.3438 100.368 28.8505 99.8818 28.4889C99.4012 28.1273 98.8001 27.9465 98.0791 27.9465C97.3846 27.9465 96.7972 28.1196 96.3163 28.4657C95.841 28.8117 95.4804 29.2947 95.2346 29.9146C94.9889 30.5344 94.8661 31.2576 94.8661 32.084Z" fill="#7E7E7E"/>
|
||||
<path d="M108.678 38.2983C107.898 38.2983 107.193 38.1589 106.563 37.8799C105.932 37.5958 105.433 37.1852 105.064 36.648C104.701 36.1108 104.52 35.4522 104.52 34.6722C104.52 34.0007 104.653 33.448 104.92 33.0141C105.187 32.5802 105.548 32.2367 106.002 31.9836C106.456 31.7305 106.963 31.5393 107.524 31.4102C108.085 31.2811 108.657 31.1829 109.239 31.1158C109.976 31.0331 110.574 30.966 111.034 30.9143C111.493 30.8575 111.827 30.7671 112.035 30.6431C112.244 30.5192 112.348 30.3177 112.348 30.0388V29.9846C112.348 29.3079 112.15 28.7836 111.755 28.4117C111.365 28.0398 110.783 27.8538 110.008 27.8538C109.201 27.8538 108.566 28.0268 108.101 28.3729C107.642 28.7139 107.324 29.0935 107.148 29.5119L104.896 29.016C105.163 28.2929 105.553 27.7092 106.066 27.265C106.584 26.8156 107.18 26.4902 107.853 26.2887C108.526 26.0821 109.234 25.9788 109.976 25.9788C110.467 25.9788 110.988 26.0356 111.539 26.1492C112.094 26.2577 112.612 26.4591 113.093 26.7536C113.579 27.048 113.977 27.469 114.287 28.0165C114.596 28.5589 114.752 29.264 114.752 30.1318V38.0349H112.412V36.4078H112.316C112.161 36.7074 111.928 37.0018 111.619 37.2911C111.309 37.5803 110.911 37.8205 110.425 38.0117C109.939 38.2028 109.357 38.2983 108.678 38.2983ZM109.199 36.4388C109.861 36.4388 110.427 36.3122 110.898 36.0591C111.373 35.806 111.734 35.4754 111.979 35.0674C112.23 34.6541 112.356 34.2125 112.356 33.7424V32.2083C112.27 32.2909 112.105 32.3684 111.859 32.4407C111.619 32.5079 111.344 32.5673 111.034 32.6189C110.724 32.6654 110.422 32.7093 110.128 32.7507C109.835 32.7868 109.589 32.8178 109.391 32.8436C108.926 32.9004 108.502 32.996 108.117 33.1303C107.738 33.2646 107.433 33.4583 107.204 33.7114C106.979 33.9594 106.867 34.29 106.867 34.7032C106.867 35.2765 107.086 35.7105 107.524 36.0049C107.962 36.2941 108.521 36.4388 109.199 36.4388Z" fill="#7E7E7E"/>
|
||||
<path d="M125.811 29.0393L123.64 29.4112C123.549 29.1426 123.404 28.8869 123.207 28.6441C123.014 28.4014 122.753 28.2025 122.422 28.0475C122.09 27.8926 121.676 27.8151 121.18 27.8151C120.501 27.8151 119.935 27.9623 119.481 28.2567C119.027 28.546 118.8 28.9205 118.8 29.3802C118.8 29.7779 118.952 30.0982 119.257 30.341C119.561 30.5837 120.053 30.7826 120.731 30.9376L122.686 31.3715C123.819 31.6246 124.662 32.0146 125.218 32.5414C125.774 33.0683 126.051 33.7528 126.051 34.5947C126.051 35.3076 125.837 35.9429 125.41 36.5008C124.988 37.0535 124.398 37.4874 123.64 37.8025C122.886 38.1175 122.013 38.2751 121.02 38.2751C119.641 38.2751 118.517 37.991 117.646 37.4228C116.775 36.8494 116.241 36.0359 116.044 34.9821L118.359 34.6412C118.504 35.2249 118.8 35.6666 119.249 35.9661C119.697 36.2606 120.282 36.4078 121.003 36.4078C121.789 36.4078 122.416 36.2503 122.886 35.9351C123.356 35.6149 123.592 35.2249 123.592 34.7652C123.592 34.3933 123.447 34.0808 123.159 33.8277C122.876 33.5746 122.44 33.3834 121.853 33.2543L119.769 32.8126C118.621 32.5595 117.772 32.1566 117.222 31.6039C116.677 31.0512 116.404 30.3513 116.404 29.5042C116.404 28.8017 116.607 28.187 117.013 27.6601C117.419 27.1332 117.98 26.7226 118.696 26.4281C119.412 26.1285 120.232 25.9788 121.156 25.9788C122.486 25.9788 123.533 26.2577 124.297 26.8156C125.06 27.3683 125.565 28.1095 125.811 29.0393Z" fill="#7E7E7E"/>
|
||||
<path d="M132.636 38.2751C131.423 38.2751 130.379 38.0246 129.503 37.5235C128.632 37.0173 127.959 36.3071 127.484 35.3928C127.014 34.4733 126.779 33.3963 126.779 32.1618C126.779 30.9427 127.014 29.8683 127.484 28.9386C127.959 28.0088 128.622 27.283 129.471 26.7613C130.326 26.2396 131.324 25.9788 132.468 25.9788C133.162 25.9788 133.835 26.0898 134.487 26.3119C135.138 26.534 135.723 26.8827 136.241 27.3579C136.76 27.8332 137.168 28.4504 137.467 29.2097C137.767 29.9639 137.916 30.8808 137.916 31.9603V32.7816H128.133V31.0461H135.568C135.568 30.4365 135.44 29.8968 135.184 29.4267C134.927 28.9515 134.567 28.577 134.102 28.3032C133.643 28.0294 133.103 27.8926 132.484 27.8926C131.811 27.8926 131.223 28.0527 130.721 28.3729C130.224 28.688 129.839 29.1013 129.567 29.6126C129.3 30.1189 129.166 30.669 129.166 31.263V32.6189C129.166 33.4144 129.311 34.0911 129.599 34.649C129.893 35.2068 130.302 35.633 130.825 35.9274C131.348 36.2167 131.96 36.3613 132.66 36.3613C133.114 36.3613 133.528 36.2993 133.902 36.1753C134.276 36.0462 134.599 35.8551 134.871 35.602C135.144 35.3489 135.352 35.0364 135.496 34.6645L137.764 35.0596C137.582 35.7053 137.256 36.2709 136.786 36.7565C136.322 37.2368 135.737 37.6113 135.032 37.8799C134.332 38.1434 133.533 38.2751 132.636 38.2751Z" fill="#7E7E7E"/>
|
||||
</g>
|
||||
<defs>
|
||||
<clipPath id="clip0_2053_10667">
|
||||
<rect width="127.286" height="27" fill="white" transform="translate(10.63 16.5)"/>
|
||||
</clipPath>
|
||||
</defs>
|
||||
</svg>
|
||||
|
||||
|
Before Width: | Height: | Size: 12 KiB After Width: | Height: | Size: 12 KiB |
@@ -0,0 +1,12 @@
|
||||
<svg width="180" height="60" viewBox="0 0 180 60" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M40.5433 41.5894C46.9439 41.5894 52.1327 36.4006 52.1327 30C52.1327 23.5993 46.9439 18.4106 40.5433 18.4106C34.1426 18.4106 28.9539 23.5993 28.9539 30C28.9539 36.4006 34.1426 41.5894 40.5433 41.5894ZM42.7619 23.8238V30.4797C42.7619 30.658 42.6911 30.8291 42.565 30.9552L41.7653 31.7549C41.7128 31.8074 41.7128 31.8925 41.7653 31.9451L42.565 32.7447C42.6911 32.8708 42.7619 33.0419 42.7619 33.2202V36.3544C42.7619 36.7258 42.4609 37.0269 42.0895 37.0269H38.997C38.6256 37.0269 38.3246 36.7258 38.3246 36.3544V29.7337C38.3246 29.5554 38.3954 29.3844 38.5215 29.2583L39.3036 28.4762C39.3561 28.4237 39.3561 28.3385 39.3036 28.286L38.5215 27.5039C38.3954 27.3778 38.3246 27.2068 38.3246 27.0284V23.8238C38.3246 23.4524 38.6256 23.1513 38.997 23.1513H42.0895C42.4609 23.1513 42.7619 23.4524 42.7619 23.8238Z" fill="#7E7E7E"/>
|
||||
<path d="M104.896 26.5524C105.85 26.5524 106.732 26.5344 107.614 26.5704C107.704 26.5704 107.848 26.8044 107.884 26.9484C108.352 29.1983 108.82 31.4483 109.288 33.6983C109.342 33.9503 109.396 34.1843 109.486 34.5623C109.576 34.3283 109.63 34.2383 109.648 34.1303C110.224 31.7543 110.8 29.3783 111.358 26.9844C111.43 26.6424 111.556 26.5164 111.916 26.5344C112.654 26.5524 113.374 26.5524 114.112 26.5344C114.436 26.5164 114.544 26.6424 114.616 26.9484C115.228 29.3603 115.858 31.7723 116.47 34.1843C116.506 34.2923 116.542 34.4003 116.632 34.6343C116.902 33.3563 117.136 32.2223 117.388 31.0703C117.676 29.7023 117.964 28.3163 118.234 26.9484C118.306 26.6244 118.45 26.5164 118.774 26.5344C119.566 26.5524 120.358 26.5344 121.204 26.5344C121.15 26.8224 121.114 27.0564 121.06 27.2724C120.286 30.4403 119.494 33.6083 118.72 36.7763C118.63 37.1363 118.486 37.2443 118.126 37.2443C117.01 37.2263 115.876 37.2263 114.742 37.2263C114.184 34.8503 113.626 32.4923 113.086 30.1523C113.05 30.1523 113.032 30.1343 112.996 30.1343C112.438 32.4923 111.88 34.8503 111.304 37.2083C110.044 37.2083 108.82 37.2083 107.56 37.2083C106.642 33.6803 105.778 30.1523 104.896 26.5524Z" fill="#7E7E7E"/>
|
||||
<path d="M148.112 22.5744V27.6684C147.842 27.4524 147.59 27.2184 147.338 27.0204C145.61 25.6884 142.731 26.1564 141.381 28.0464C140.031 29.9363 139.887 32.0063 140.571 34.1663C141.075 35.7863 142.137 36.9563 143.828 37.3883C145.43 37.8023 147.23 37.3523 148.004 35.8583C148.022 35.8223 148.076 35.8043 148.202 35.6963V37.2263H151.046V22.5744H148.112ZM148.004 31.8263C148.022 32.7983 147.842 33.6083 147.23 34.3103C146.474 35.1743 144.585 35.2103 143.883 33.9863C143.109 32.6183 143.091 31.1963 143.865 29.8463C144.656 28.4604 146.672 28.4784 147.518 29.8463C147.914 30.4763 148.04 31.1783 148.004 31.8263Z" fill="#7E7E7E"/>
|
||||
<path d="M73.3445 24.1764C72.4805 23.5464 71.5085 23.2404 70.4465 23.2404C68.5745 23.2224 66.7025 23.2224 64.8305 23.2224C64.7225 23.2224 64.6325 23.2404 64.5065 23.2584V37.2263H67.5845V36.7223C67.5845 35.5163 67.6025 34.2923 67.5845 33.0863C67.5845 32.7803 67.6745 32.6723 67.9985 32.6723C68.8985 32.6723 69.7985 32.6723 70.6985 32.6003C73.4165 32.3843 75.0365 30.6563 75.1085 27.9564C75.1265 26.4084 74.6045 25.1124 73.3445 24.1764ZM69.7625 29.9543C69.1685 29.9543 68.5745 29.9363 67.9625 29.9543C67.6745 29.9543 67.5665 29.8643 67.5665 29.5583C67.5845 29.0003 67.5665 28.4603 67.5665 27.9024C67.5665 27.3624 67.5845 26.8224 67.5665 26.2824C67.5665 26.0124 67.6385 25.8684 67.9445 25.8864C68.7005 25.9224 69.4745 25.9044 70.2305 25.9404C71.1305 25.9944 71.7605 26.5884 71.8685 27.4884C72.0845 29.0363 71.3105 29.9363 69.7625 29.9543Z" fill="#7E7E7E"/>
|
||||
<path d="M85.2838 37.2263C85.2298 34.6883 85.2298 32.1863 85.0858 29.7023C85.0138 28.5324 84.3298 27.5784 83.2859 26.9484C81.6479 25.9584 78.6779 25.9764 77.0399 27.5784C76.4639 28.1544 76.0139 28.8024 75.8159 29.6303C76.5719 29.8103 77.2919 29.9543 77.9759 30.1703C78.3719 30.2783 78.6419 30.2783 78.8039 29.8103C78.8759 29.5943 79.0739 29.3783 79.2539 29.2163C79.7759 28.7484 80.3879 28.6404 81.0539 28.8383C81.6659 29.0363 81.9899 29.5043 82.1159 30.1163C82.2959 30.9443 82.1339 31.1423 81.2879 31.1423C80.5319 31.1423 79.7579 31.1243 79.0019 31.1423C78.5339 31.1603 78.0659 31.1963 77.6159 31.3043C75.4019 31.8263 74.5559 34.5983 76.0859 36.2903C77.5979 37.9463 80.5499 37.9463 82.0619 36.2543C82.1519 36.1643 82.1699 36.0203 82.2239 35.9123C82.2779 35.9663 82.3499 36.0023 82.4039 36.0563V37.2443H85.2838V37.2263ZM80.3339 35.1743C80.0279 35.2103 79.7039 35.2103 79.3979 35.1743C78.7859 35.0843 78.4079 34.6343 78.4259 34.0763C78.4439 33.5003 78.8039 33.0683 79.4519 33.0503C80.3519 33.0143 81.2339 33.0503 82.1519 33.0503C82.3319 34.0223 81.5219 35.0123 80.3339 35.1743Z" fill="#7E7E7E"/>
|
||||
<path d="M126.669 26.2824C123.591 26.2284 121.215 28.5863 121.161 31.7363C121.107 34.9043 123.375 37.3883 126.327 37.5143C129.459 37.6403 132.105 35.4263 132.123 31.9343C132.141 28.6403 129.765 26.2824 126.669 26.2824ZM128.469 33.8423C127.461 35.3363 125.427 35.2103 124.671 33.5723C124.437 33.0683 124.365 32.4743 124.203 31.8983C124.365 31.3223 124.437 30.7283 124.671 30.2063C124.995 29.4503 125.625 28.9823 126.453 28.8923C127.317 28.8203 127.983 29.1983 128.469 29.9183C129.171 30.9803 129.171 32.7983 128.469 33.8423Z" fill="#7E7E7E"/>
|
||||
<path d="M95.0034 29.4323C94.1574 29.5943 93.3114 29.7383 92.4834 29.8823C92.4114 29.9003 92.2674 29.7203 92.2134 29.6123C91.7094 28.6043 90.6834 28.1724 89.6034 28.5503C89.2074 28.6943 88.9194 28.9283 88.8834 29.3783C88.8294 29.8463 89.0994 30.1343 89.4954 30.2603C90.4674 30.5663 91.4574 30.7823 92.4114 31.1063C93.0414 31.3223 93.7074 31.5743 94.2114 31.9703C95.3094 32.8523 95.4354 34.4903 94.6434 35.6963C93.9954 36.6683 93.0774 37.1903 91.9434 37.3883C90.2154 37.6943 88.5414 37.5683 87.0474 36.5423C86.3634 36.0743 85.9675 35.4083 85.8055 34.5443C86.6154 34.3463 87.3894 34.1483 88.1634 33.9683C88.2534 33.9503 88.4514 34.0583 88.4874 34.1663C89.0994 35.3903 90.6474 35.4623 91.5114 35.1743C91.9074 35.0483 92.2134 34.7783 92.2134 34.2923C92.2314 33.8063 91.8894 33.6263 91.5294 33.5183C90.6474 33.2663 89.7474 33.0323 88.8654 32.7803C88.5414 32.6903 88.2174 32.5643 87.8934 32.4383C86.7954 31.9883 86.0934 31.2323 86.0215 29.9903C85.9494 28.7843 86.3454 27.7944 87.3714 27.0924C88.2714 26.4624 89.2974 26.3004 90.3594 26.2824C91.6734 26.2824 92.9334 26.4984 93.9234 27.4524C94.4634 27.9924 94.8234 28.6223 95.0034 29.4323Z" fill="#7E7E7E"/>
|
||||
<path d="M95.6336 34.5263C96.4256 34.3283 97.1816 34.1303 97.9376 33.9683C98.0456 33.9503 98.2616 34.0403 98.3156 34.1303C98.8916 35.2643 100.26 35.4443 101.25 35.1743C101.754 35.0483 102.042 34.6883 102.06 34.2743C102.078 33.7703 101.718 33.5903 101.34 33.4823C100.458 33.2123 99.5575 32.9963 98.6576 32.7623C98.3336 32.6723 98.0096 32.5463 97.6856 32.4203C96.6056 31.9703 95.9216 31.2143 95.8316 30.0083C95.7596 28.8204 96.1376 27.8304 97.1276 27.1284C98.0276 26.4804 99.0716 26.3004 100.152 26.3004C101.466 26.3004 102.708 26.5164 103.716 27.4704C104.256 27.9744 104.634 28.6584 104.814 29.4503C104.148 29.5763 103.464 29.6663 102.816 29.8283C102.366 29.9363 102.132 29.8643 101.898 29.3963C101.43 28.4784 100.17 28.1544 99.2336 28.6224C98.9096 28.7844 98.7116 29.0544 98.7116 29.4324C98.7116 29.8103 98.9096 30.0803 99.2336 30.1883C99.9896 30.4403 100.782 30.6383 101.538 30.8903C102.204 31.1063 102.906 31.2683 103.518 31.5923C105.03 32.4023 105.426 34.2383 104.472 35.6783C103.842 36.6503 102.906 37.1723 101.79 37.3703C100.062 37.6763 98.3876 37.5503 96.8936 36.5243C96.2096 36.0743 95.8136 35.4083 95.6336 34.5263Z" fill="#7E7E7E"/>
|
||||
<path d="M58.4586 37.2083C58.4586 33.7163 58.4586 30.2603 58.4586 26.7504C57.7746 26.7504 57.1086 26.7504 56.4066 26.7504C56.4066 25.8864 56.4066 25.0944 56.4066 24.2844C56.8386 24.2124 57.2886 24.1584 57.7206 24.0504C58.2606 23.9244 58.7106 23.6544 59.0526 23.2044C59.1246 23.1144 59.2326 23.0064 59.3226 23.0064C60.0606 22.9884 60.8166 23.0064 61.5905 23.0064C61.5905 27.7764 61.5905 32.4743 61.5905 37.2083C60.5466 37.2083 59.5206 37.2083 58.4586 37.2083Z" fill="#7E7E7E"/>
|
||||
<path d="M136.014 26.5884C136.014 27.1824 136.014 27.7404 136.014 28.2984C136.05 28.2984 136.068 28.3163 136.104 28.3163C136.23 28.1184 136.338 27.9024 136.464 27.7044C137.148 26.6064 138.498 26.0484 139.722 26.3364C140.046 26.4084 140.244 26.5164 140.136 26.9484C139.956 27.6324 139.83 28.3163 139.776 29.0183C139.74 29.4683 139.524 29.4323 139.2 29.4323C138.66 29.4143 138.102 29.4323 137.562 29.5223C136.878 29.6303 136.482 30.0983 136.374 30.7643C136.302 31.1783 136.284 31.5923 136.284 32.0063C136.266 33.5723 136.284 35.1563 136.284 36.7223C136.284 36.8843 136.284 37.0463 136.284 37.2443C135.258 37.2443 134.268 37.2443 133.242 37.2443C133.242 33.6983 133.242 30.1883 133.242 26.6064C134.124 26.5884 135.024 26.5884 136.014 26.5884Z" fill="#7E7E7E"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 8.6 KiB |
@@ -0,0 +1,11 @@
|
||||
<svg width="180" height="60" viewBox="0 0 180 60" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<g clip-path="url(#clip0_2080_14366)">
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M51.6854 30.003C51.6854 37.0942 45.9369 42.8428 38.8456 42.8428C31.7544 42.8428 26.0059 37.0942 26.0059 30.003C26.0059 22.9118 31.7544 17.1632 38.8456 17.1632C45.9369 17.1632 51.6854 22.9118 51.6854 30.003ZM35.9601 24.8638C35.9037 24.8312 35.8325 24.8727 35.8325 24.938V35.0769C35.8325 35.0918 35.8365 35.1065 35.8439 35.1194C35.8514 35.1324 35.8621 35.1431 35.875 35.1506C35.8879 35.1581 35.9025 35.1621 35.9175 35.1622C35.9324 35.1623 35.9471 35.1584 35.9601 35.1511L44.7404 30.0816C44.7968 30.049 44.7968 29.9659 44.7404 29.9333L35.9601 24.8638ZM37.4922 24.0792C37.4136 24.0792 37.3854 24.1845 37.4536 24.2246H37.4521L44.4957 28.2914C44.5654 28.3315 44.6425 28.2543 44.6025 28.1861L42.3095 24.1964C42.268 24.1237 42.1909 24.0792 42.1078 24.0792H37.4922ZM34.3864 34.0906C34.4265 34.1603 34.5318 34.1321 34.5318 34.052V25.9495C34.5318 25.8694 34.4265 25.8427 34.3864 25.9109L32.1023 29.8843C32.0608 29.957 32.0608 30.046 32.1023 30.1172L34.3864 34.0906ZM44.4883 31.7279C44.558 31.6879 44.6351 31.765 44.5951 31.8332L44.5936 31.8347L42.308 35.8081C42.2665 35.8808 42.1894 35.9253 42.1063 35.9253H37.5085C37.4299 35.9253 37.4017 35.82 37.4699 35.7799L44.4883 31.7279ZM46.9251 29.6144C47.0631 29.8547 47.0631 30.1484 46.9251 30.3886L43.2187 36.8345C43.0808 37.0762 42.8227 37.2245 42.5453 37.2245H35.1384C35.0018 37.2243 34.8677 37.1881 34.7495 37.1197C34.6313 37.0512 34.5332 36.9528 34.465 36.8345L30.7586 30.3886C30.6207 30.1484 30.6207 29.8547 30.7586 29.6144L34.465 23.1686C34.603 22.9268 34.861 22.7785 35.1384 22.7785H42.5453C42.6819 22.7787 42.816 22.8149 42.9342 22.8834C43.0524 22.9518 43.1505 23.0502 43.2187 23.1686L46.9251 29.6144Z" fill="#7E7E7E"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M58.6515 32.33C58.6515 30.6333 59.9047 29.2851 61.689 29.2851C63.4732 29.2851 64.7265 30.6333 64.7265 32.33C64.7265 34.0268 63.4525 35.3958 61.689 35.3958C59.9255 35.3958 58.6515 34.0268 58.6515 32.33ZM62.22 37.5004C65.1092 37.5004 67.0848 35.2118 67.0848 32.33C67.0848 29.4483 65.1092 27.1805 62.22 27.1805C60.8184 27.1805 59.4375 27.8138 58.7152 28.938V22.9505H56.357V37.2542H58.5877V35.4966C59.267 36.784 60.7546 37.4989 62.22 37.4989V37.5004ZM70.1905 31.1643C70.5524 29.8561 71.5283 29.0389 72.9729 29.0389C74.4175 29.0389 75.438 29.8561 75.7776 31.1643H70.1905ZM73.1435 37.5597C75.2259 37.5597 77.0531 36.6817 77.9668 34.7194V34.6779C77.329 34.7194 76.3738 34.2893 75.9912 33.7791L75.9704 33.7999C75.5878 34.8218 74.5688 35.5782 73.188 35.5782C71.5313 35.5782 70.278 34.5355 70.0644 32.8403H78.0305C78.4132 29.7553 76.3738 27.1182 72.9952 27.1182C69.9992 27.1182 67.8323 29.4483 67.8323 32.3286C67.8323 35.2089 70.0422 37.5597 73.1435 37.5597ZM78.5319 29.4483H79.9127V37.2542H82.2932V29.4483H83.8016V27.4044H82.2932V24.2557H79.9127V27.4044H78.5319V29.4483ZM86.5914 32.33C86.5914 30.6333 87.8447 29.2851 89.6289 29.2851C91.4132 29.2851 92.6887 30.6541 92.6887 32.33C92.6887 34.006 91.4354 35.3958 89.6289 35.3958C87.8224 35.3958 86.5914 34.0268 86.5914 32.33ZM89.1202 37.4796C90.501 37.4796 92.0094 36.8048 92.6887 35.5381V37.2542H94.9832V27.4044H92.6887V29.1205C92.0094 27.8538 90.501 27.179 89.1202 27.179C86.2102 27.179 84.2332 29.4675 84.2332 32.3286C84.2332 35.1896 86.2087 37.4781 89.1202 37.4781V37.4796ZM100.383 37.5612C102.721 37.5612 104.314 36.1314 104.314 34.2715C104.314 32.4116 102.826 31.5944 101.254 31.2874L100.297 31.1035C99.4475 30.9196 98.8097 30.6941 98.8097 30.0415C98.8097 29.469 99.3615 28.938 100.234 28.938C101.19 28.938 101.933 29.4082 102.166 30.4093H102.187C102.59 29.9392 103.547 29.5714 104.183 29.6529L104.204 29.6322C103.821 28.2424 102.441 27.0989 100.294 27.0989C98.1482 27.0989 96.5123 28.4886 96.5123 30.1646C96.5123 31.6775 97.5327 32.5763 99.5928 33.0049L100.591 33.2096C101.377 33.3935 101.993 33.6382 101.993 34.3546C101.993 35.0709 101.441 35.642 100.4 35.642C99.1256 35.642 98.212 34.8247 98.0415 33.8028L98.0207 33.7821C97.6173 34.2522 96.6606 34.5993 96.0243 34.5177L96.0036 34.5385C96.3862 36.3776 98.086 37.5627 100.38 37.5627L100.383 37.5612ZM105.46 37.2542H107.818V31.6552C107.818 30.2254 108.839 29.2851 110.241 29.2851C111.642 29.2851 112.535 30.1839 112.535 31.5736V37.2542H114.893V30.7356C114.893 28.6518 113.237 27.1597 111.047 27.1597C109.751 27.1597 108.477 27.7322 107.818 28.8965V22.9505H105.46V37.2542ZM118.382 32.33C118.382 30.6333 119.635 29.2851 121.419 29.2851C123.203 29.2851 124.479 30.6541 124.479 32.33C124.479 34.006 123.226 35.3958 121.419 35.3958C119.613 35.3958 118.382 34.0268 118.382 32.33ZM120.91 37.4796C122.291 37.4796 123.8 36.8048 124.479 35.5381V37.2542H126.773V27.4044H124.479V29.1205C123.8 27.8538 122.291 27.179 120.91 27.179C118 27.179 116.023 29.4675 116.023 32.3286C116.023 35.1896 117.999 37.4781 120.91 37.4781V37.4796ZM128.626 30.1023V37.2542H130.984V32.8818C130.984 31.1658 131.515 29.5714 133.236 29.5714C133.746 29.5714 134.192 29.6945 134.425 29.8784H134.446C134.467 29.2451 135.02 28.3255 135.572 27.9784V27.9369C135.189 27.5083 134.51 27.2428 133.596 27.2428C132.3 27.2428 131.386 28.02 130.919 29.0819V27.4059H128.624V30.1038L128.626 30.1023ZM137.273 31.1643C137.633 29.8561 138.611 29.0389 140.055 29.0389C141.5 29.0389 142.52 29.8561 142.86 31.1643H137.273ZM140.226 37.5597C142.308 37.5597 144.135 36.6817 145.049 34.7194V34.6779C144.411 34.7194 143.456 34.2893 143.073 33.7791L143.053 33.7999C142.67 34.8218 141.651 35.5782 140.27 35.5782C138.614 35.5782 137.36 34.5355 137.147 32.8403H145.113C145.495 29.7553 143.456 27.1182 140.077 27.1182C137.081 27.1182 134.915 29.4483 134.915 32.3286C134.915 35.2089 137.124 37.5597 140.226 37.5597ZM150.089 37.5612C152.426 37.5612 154.019 36.1314 154.019 34.2715C154.019 32.4116 152.532 31.5944 150.959 31.2874L150.003 31.1035C149.153 30.9196 148.515 30.6941 148.515 30.0415C148.515 29.469 149.067 28.938 149.939 28.938C150.896 28.938 151.639 29.4082 151.872 30.4093H151.892C152.296 29.9392 153.252 29.5714 153.889 29.6529L153.909 29.6322C153.527 28.2424 152.146 27.0989 150 27.0989C147.854 27.0989 146.218 28.4886 146.218 30.1646C146.218 31.6775 147.238 32.5763 149.298 33.0049L150.296 33.2096C151.083 33.3935 151.698 33.6382 151.698 34.3546C151.698 35.0709 151.146 35.642 150.105 35.642C148.831 35.642 147.917 34.8247 147.747 33.8028L147.726 33.7821C147.323 34.2522 146.366 34.5993 145.73 34.5177L145.709 34.5385C146.092 36.3776 147.791 37.5627 150.086 37.5627L150.089 37.5612Z" fill="#7E7E7E"/>
|
||||
</g>
|
||||
<defs>
|
||||
<clipPath id="clip0_2080_14366">
|
||||
<rect width="128.129" height="25.9198" fill="white" transform="translate(25.9351 17.0401)"/>
|
||||
</clipPath>
|
||||
</defs>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 6.5 KiB |
@@ -0,0 +1,18 @@
|
||||
<svg width="180" height="60" viewBox="0 0 180 60" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<g clip-path="url(#clip0_2053_10667)">
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M31.3333 16H45.2143C49.2644 16 52.5476 19.2203 52.5476 23.1927V36.8073C52.5476 40.7797 49.2644 44 45.2143 44H31.3333C27.2832 44 24 40.7797 24 36.8073V23.1927C24 19.2203 27.2832 16 31.3333 16ZM41.5149 27.9371H46.131C46.0437 26.911 45.7954 26.0004 45.3862 25.2054C44.977 24.4103 44.4368 23.7415 43.7656 23.1989C43.0945 22.651 42.3143 22.2346 41.4249 21.9499C40.5355 21.6652 39.5615 21.5229 38.503 21.5229C36.997 21.5229 35.633 21.8479 34.4107 22.4979C33.1885 23.1425 32.2173 24.0961 31.497 25.3585C30.7768 26.6155 30.4167 28.1627 30.4167 29.9999C30.4167 31.8264 30.7686 33.3709 31.4725 34.6333C32.1818 35.8957 33.1449 36.852 34.3616 37.502C35.5839 38.152 36.9643 38.477 38.503 38.477C39.7307 38.477 40.8083 38.2916 41.7359 37.921C42.6635 37.5503 43.441 37.0614 44.0685 36.4544C44.7014 35.842 45.1897 35.1759 45.5335 34.456C45.8772 33.7308 46.0764 33.019 46.131 32.3206L41.5149 32.2884C41.4603 32.643 41.3539 32.9626 41.1957 33.2473C41.0429 33.5267 40.8438 33.7657 40.5982 33.9645C40.3527 34.1632 40.0635 34.3163 39.7307 34.4238C39.3978 34.5259 39.0214 34.5769 38.6012 34.5769C37.8646 34.5769 37.2344 34.4077 36.7106 34.0692C36.1868 33.7254 35.7857 33.2151 35.5075 32.5382C35.2346 31.856 35.0982 31.0099 35.0982 29.9999C35.0982 29.0437 35.2319 28.2245 35.4993 27.5422C35.7721 26.86 36.1704 26.3362 36.6942 25.9709C37.2235 25.6056 37.87 25.4229 38.6339 25.4229C39.0705 25.4229 39.4606 25.4847 39.8043 25.6083C40.1481 25.7265 40.44 25.8984 40.6801 26.124C40.9256 26.3443 41.1166 26.6075 41.253 26.9137C41.3949 27.2199 41.4822 27.561 41.5149 27.9371Z" fill="#7E7E7E"/>
|
||||
<path d="M75.087 27.2277H72.4944C72.3949 26.692 72.2092 26.2206 71.9379 25.8135C71.6663 25.4064 71.3339 25.0609 70.9408 24.777C70.5474 24.4931 70.1069 24.2788 69.6195 24.1342C69.1376 23.9895 68.6253 23.9172 68.0824 23.9172C67.1018 23.9172 66.2239 24.1556 65.4484 24.6323C64.6784 25.1091 64.069 25.8081 63.6203 26.7295C63.1772 27.6509 62.9556 28.7758 62.9556 30.1043C62.9556 31.4434 63.1772 32.5737 63.6203 33.4951C64.069 34.4165 64.681 35.1128 65.4565 35.5842C66.232 36.0556 67.1047 36.2913 68.074 36.2913C68.6114 36.2913 69.1211 36.2217 69.603 36.0824C70.0904 35.9378 70.5307 35.7262 70.9241 35.4476C71.3174 35.1691 71.6498 34.8289 71.9211 34.4272C72.1982 34.0201 72.3892 33.554 72.4944 33.029L75.087 33.0371C74.9485 33.8459 74.6798 34.5905 74.2809 35.2709C73.8878 35.9458 73.3807 36.5297 72.7603 37.0225C72.1456 37.51 71.4421 37.8876 70.6499 38.1555C69.8579 38.4233 68.9936 38.5572 68.0575 38.5572C66.584 38.5572 65.2711 38.2198 64.1187 37.5448C62.9666 36.8645 62.0581 35.8922 61.3934 34.628C60.7341 33.3639 60.4047 31.8559 60.4047 30.1043C60.4047 28.3472 60.737 26.8393 61.4017 25.5805C62.0665 24.3163 62.975 23.3467 64.1271 22.6718C65.2795 21.9915 66.5895 21.6513 68.0575 21.6513C68.9603 21.6513 69.8023 21.7772 70.5833 22.0289C71.3701 22.2754 72.0762 22.6396 72.7021 23.1217C73.3281 23.5985 73.8461 24.1824 74.256 24.8734C74.6659 25.5591 74.943 26.3438 75.087 27.2277Z" fill="#7E7E7E"/>
|
||||
<path d="M79.0406 31.0042V38.3322H76.5562V21.8763H79.0073V27.9991H79.1652C79.4643 27.3348 79.9214 26.8072 80.5361 26.4161C81.151 26.0251 81.9543 25.8296 82.9458 25.8296C83.8211 25.8296 84.5854 26.0037 85.2391 26.3519C85.8983 26.7 86.408 27.2197 86.7681 27.9107C87.1337 28.5963 87.3165 29.4534 87.3165 30.4819V38.3322H84.8321V30.7712C84.8321 29.8659 84.5911 29.1641 84.109 28.666C83.6271 28.1624 82.9568 27.9107 82.0983 27.9107C81.5111 27.9107 80.9847 28.0312 80.5196 28.2723C80.0597 28.5133 79.6969 28.8669 79.4311 29.3329C79.1707 29.7936 79.0406 30.3507 79.0406 31.0042Z" fill="#7E7E7E"/>
|
||||
<path d="M92.9423 38.6056C92.1335 38.6056 91.4025 38.461 90.7488 38.1717C90.0951 37.8771 89.5771 37.4513 89.1949 36.8941C88.8183 36.337 88.63 35.6541 88.63 34.8452C88.63 34.1488 88.7683 33.5757 89.0454 33.1257C89.3222 32.6757 89.6962 32.3195 90.1671 32.057C90.638 31.7945 91.1642 31.5963 91.7459 31.4624C92.3276 31.3285 92.9203 31.2267 93.524 31.1571C94.2885 31.0713 94.9089 31.0017 95.3853 30.9481C95.8617 30.8892 96.208 30.7955 96.424 30.6669C96.6398 30.5384 96.748 30.3295 96.748 30.0402V29.9839C96.748 29.2822 96.5429 28.7385 96.133 28.3528C95.7287 27.9671 95.125 27.7743 94.3217 27.7743C93.4852 27.7743 92.826 27.9537 92.3441 28.3126C91.8677 28.6662 91.5382 29.0599 91.3554 29.4938L89.0205 28.9795C89.2973 28.2296 89.7017 27.6243 90.2336 27.1636C90.7708 26.6976 91.3886 26.3601 92.0866 26.1512C92.7846 25.9369 93.5185 25.8298 94.2885 25.8298C94.7981 25.8298 95.3382 25.8887 95.9089 26.0066C96.4848 26.119 97.0222 26.3279 97.5206 26.6333C98.0248 26.9386 98.4375 27.3752 98.7589 27.943C99.08 28.5055 99.2408 29.2367 99.2408 30.1366V38.3324H96.8145V36.6451H96.7147C96.5542 36.9558 96.3132 37.2611 95.9919 37.5611C95.6705 37.861 95.2578 38.1101 94.7539 38.3083C94.2497 38.5065 93.646 38.6056 92.9423 38.6056ZM93.4826 36.6772C94.1693 36.6772 94.7565 36.546 95.2439 36.2835C95.737 36.021 96.111 35.6782 96.3656 35.255C96.6262 34.8264 96.7564 34.3684 96.7564 33.881V32.29C96.6676 32.3757 96.4961 32.4561 96.2412 32.5311C95.9919 32.6007 95.7067 32.6623 95.3853 32.7159C95.064 32.7641 94.751 32.8096 94.4464 32.8525C94.1418 32.89 93.887 32.9221 93.6819 32.9489C93.2 33.0078 92.7595 33.1069 92.3608 33.2462C91.9675 33.3855 91.6516 33.5864 91.4135 33.8488C91.1807 34.106 91.0644 34.4488 91.0644 34.8773C91.0644 35.4719 91.2917 35.9219 91.7459 36.2272C92.2 36.5272 92.7788 36.6772 93.4826 36.6772Z" fill="#7E7E7E"/>
|
||||
<path d="M107.104 25.9903V27.9187H100.133V25.9903H107.104ZM102.002 23.0334H104.486V34.7084C104.486 35.1745 104.558 35.5253 104.703 35.761C104.847 35.9914 105.032 36.1494 105.259 36.2351C105.492 36.3155 105.744 36.3556 106.015 36.3556C106.215 36.3556 106.389 36.3422 106.539 36.3155C106.688 36.2887 106.805 36.2672 106.888 36.2512L107.337 38.2358C107.192 38.2894 106.987 38.343 106.722 38.3965C106.456 38.4555 106.123 38.4876 105.724 38.493C105.071 38.5037 104.462 38.3912 103.896 38.1555C103.331 37.9198 102.874 37.5555 102.526 37.0627C102.176 36.5699 102.002 35.9512 102.002 35.2066V23.0334Z" fill="#7E7E7E"/>
|
||||
<path d="M108.921 38.3322V21.8763H111.406V27.991H111.555C111.699 27.7339 111.907 27.4366 112.179 27.0991C112.45 26.7616 112.827 26.467 113.309 26.2153C113.79 25.9581 114.428 25.8296 115.22 25.8296C116.25 25.8296 117.17 26.0813 117.978 26.5849C118.787 27.0884 119.421 27.8143 119.881 28.7624C120.346 29.7106 120.579 30.8515 120.579 32.1854C120.579 33.5192 120.349 34.6629 119.889 35.6164C119.43 36.5645 118.798 37.2957 117.995 37.81C117.192 38.3189 116.275 38.5733 115.245 38.5733C114.469 38.5733 113.835 38.4474 113.342 38.1956C112.854 37.9439 112.472 37.6492 112.195 37.3118C111.918 36.9743 111.705 36.6743 111.555 36.4119H111.348V38.3322H108.921ZM111.356 32.1612C111.356 33.029 111.486 33.7897 111.747 34.4432C112.007 35.0968 112.384 35.6083 112.876 35.978C113.37 36.3422 113.973 36.5243 114.688 36.5243C115.43 36.5243 116.051 36.3342 116.549 35.9538C117.048 35.5682 117.424 35.0459 117.679 34.387C117.94 33.7281 118.07 32.9862 118.07 32.1612C118.07 31.347 117.942 30.6158 117.688 29.9677C117.438 29.3195 117.062 28.8079 116.557 28.433C116.059 28.058 115.436 27.8705 114.688 27.8705C113.968 27.8705 113.359 28.0499 112.86 28.4089C112.367 28.7678 111.993 29.2686 111.738 29.9114C111.483 30.5542 111.356 31.3042 111.356 32.1612Z" fill="#7E7E7E"/>
|
||||
<path d="M125.679 38.6056C124.871 38.6056 124.139 38.461 123.486 38.1717C122.832 37.8771 122.314 37.4513 121.932 36.8941C121.555 36.337 121.367 35.6541 121.367 34.8452C121.367 34.1488 121.505 33.5757 121.782 33.1257C122.059 32.6757 122.433 32.3195 122.904 32.057C123.375 31.7945 123.901 31.5963 124.483 31.4624C125.065 31.3285 125.657 31.2267 126.261 31.1571C127.025 31.0713 127.646 31.0017 128.122 30.9481C128.599 30.8892 128.945 30.7955 129.161 30.6669C129.377 30.5384 129.485 30.3295 129.485 30.0402V29.9839C129.485 29.2822 129.28 28.7385 128.87 28.3528C128.466 27.9671 127.862 27.7743 127.059 27.7743C126.222 27.7743 125.563 27.9537 125.081 28.3126C124.605 28.6662 124.275 29.0599 124.092 29.4938L121.757 28.9795C122.034 28.2296 122.439 27.6243 122.971 27.1636C123.508 26.6976 124.126 26.3601 124.824 26.1512C125.522 25.9369 126.255 25.8298 127.025 25.8298C127.535 25.8298 128.075 25.8887 128.646 26.0066C129.222 26.119 129.759 26.3279 130.258 26.6333C130.762 26.9386 131.174 27.3752 131.496 27.943C131.817 28.5055 131.978 29.2367 131.978 30.1366V38.3324H129.551V36.6451H129.452C129.291 36.9558 129.05 37.2611 128.729 37.5611C128.407 37.861 127.995 38.1101 127.491 38.3083C126.987 38.5065 126.383 38.6056 125.679 38.6056ZM126.22 36.6772C126.906 36.6772 127.493 36.546 127.981 36.2835C128.474 36.021 128.848 35.6782 129.103 35.255C129.363 34.8264 129.493 34.3684 129.493 33.881V32.29C129.405 32.3757 129.233 32.4561 128.978 32.5311C128.729 32.6007 128.444 32.6623 128.122 32.7159C127.801 32.7641 127.488 32.8096 127.183 32.8525C126.879 32.89 126.624 32.9221 126.419 32.9489C125.937 33.0078 125.497 33.1069 125.098 33.2462C124.704 33.3855 124.389 33.5864 124.15 33.8488C123.918 34.106 123.801 34.4488 123.801 34.8773C123.801 35.4719 124.029 35.9219 124.483 36.2272C124.937 36.5272 125.516 36.6772 126.22 36.6772Z" fill="#7E7E7E"/>
|
||||
<path d="M143.447 29.0037L141.195 29.3893C141.101 29.1108 140.951 28.8456 140.746 28.5939C140.547 28.3421 140.275 28.1359 139.932 27.9752C139.589 27.8145 139.159 27.7341 138.644 27.7341C137.941 27.7341 137.353 27.8868 136.883 28.1921C136.412 28.4921 136.176 28.8804 136.176 29.3572C136.176 29.7697 136.334 30.1018 136.65 30.3535C136.966 30.6053 137.475 30.8116 138.179 30.9723L140.206 31.4222C141.381 31.6847 142.256 32.0891 142.832 32.6355C143.408 33.1819 143.696 33.8917 143.696 34.7648C143.696 35.5041 143.474 36.163 143.031 36.7415C142.594 37.3147 141.982 37.7646 141.195 38.0914C140.414 38.4181 139.508 38.5815 138.478 38.5815C137.049 38.5815 135.883 38.2869 134.98 37.6977C134.077 37.1031 133.523 36.2594 133.318 35.1666L135.719 34.813C135.869 35.4184 136.176 35.8764 136.642 36.1871C137.107 36.4924 137.714 36.6451 138.461 36.6451C139.276 36.6451 139.927 36.4817 140.414 36.1549C140.901 35.8228 141.145 35.4184 141.145 34.9416C141.145 34.5559 140.996 34.2319 140.696 33.9694C140.403 33.7069 139.952 33.5087 139.342 33.3748L137.182 32.9168C135.991 32.6543 135.11 32.2365 134.54 31.6633C133.974 31.0901 133.692 30.3643 133.692 29.4858C133.692 28.7572 133.902 28.1198 134.323 27.5734C134.744 27.027 135.326 26.6011 136.068 26.2958C136.81 25.9851 137.661 25.8298 138.619 25.8298C139.998 25.8298 141.084 26.119 141.877 26.6976C142.669 27.2707 143.192 28.0394 143.447 29.0037Z" fill="#7E7E7E"/>
|
||||
<path d="M150.525 38.5815C149.267 38.5815 148.184 38.3217 147.276 37.8021C146.373 37.2772 145.675 36.5406 145.182 35.5925C144.694 34.639 144.451 33.5221 144.451 32.2418C144.451 30.9776 144.694 29.8634 145.182 28.8992C145.675 27.935 146.362 27.1824 147.242 26.6413C148.129 26.1003 149.165 25.8298 150.35 25.8298C151.07 25.8298 151.768 25.9449 152.444 26.1753C153.12 26.4056 153.726 26.7672 154.264 27.26C154.801 27.7529 155.225 28.393 155.535 29.1804C155.845 29.9625 156 30.9133 156 32.0329V32.8846H145.855V31.0848H153.566C153.566 30.4527 153.433 29.8929 153.167 29.4054C152.901 28.9126 152.527 28.5242 152.045 28.2403C151.569 27.9564 151.009 27.8145 150.367 27.8145C149.669 27.8145 149.059 27.9805 148.539 28.3126C148.023 28.6394 147.625 29.0679 147.342 29.5982C147.065 30.1232 146.927 30.6937 146.927 31.3097V32.7159C146.927 33.5408 147.076 34.2426 147.375 34.8211C147.68 35.3996 148.104 35.8415 148.647 36.1469C149.189 36.4469 149.824 36.5969 150.55 36.5969C151.02 36.5969 151.45 36.5326 151.837 36.404C152.225 36.2701 152.56 36.0719 152.843 35.8094C153.125 35.5469 153.341 35.2228 153.491 34.8372L155.842 35.2469C155.654 35.9166 155.316 36.5031 154.829 37.0067C154.347 37.5048 153.74 37.8932 153.009 38.1717C152.283 38.4449 151.455 38.5815 150.525 38.5815Z" fill="#7E7E7E"/>
|
||||
</g>
|
||||
<defs>
|
||||
<clipPath id="clip0_2053_10667">
|
||||
<rect width="132" height="28" fill="white" transform="translate(24 16)"/>
|
||||
</clipPath>
|
||||
</defs>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 12 KiB |
@@ -0,0 +1,11 @@
|
||||
<svg width="180" height="60" viewBox="0 0 180 60" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M50.9 41.6929H18.7864C17.3229 41.6929 16.1345 40.5122 16.1345 39.0581V20.942C16.1345 19.4879 17.3229 18.3071 18.7864 18.3071H50.9C52.3635 18.3071 53.5518 19.4879 53.5518 20.942V39.0581C53.5518 40.5122 52.3635 41.6929 50.9 41.6929ZM43.6542 25.594C41.1729 25.594 39.1593 27.5947 39.1593 30.0602C39.1593 32.5256 41.1729 34.5263 43.6542 34.5263C46.1355 34.5263 48.1491 32.5256 48.1491 30.0602C48.1491 27.5947 46.1355 25.594 43.6542 25.594ZM26.4668 25.594C23.9855 25.594 21.9719 27.5947 21.9719 30.0602C21.9719 32.5256 23.9855 34.5263 26.4668 34.5263C28.9481 34.5263 30.9617 32.5256 30.9617 30.0602C30.9617 27.5947 28.9481 25.594 26.4668 25.594Z" fill="#7E7E7E"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M114.427 24.4461H111.159C111.135 26.3555 111.135 26.3555 111.112 28.2276C110.945 27.9936 110.897 27.9271 110.843 27.8664L110.837 27.8596L110.829 27.8509L110.821 27.8419C110.806 27.8256 110.789 27.8082 110.768 27.7869C110.032 27.1338 109.253 26.8126 108.258 26.8074C108.197 26.8084 108.139 26.8088 108.08 26.8093C107.654 26.8126 107.24 26.8168 106.824 26.9218C106.797 26.9304 106.769 26.9389 106.742 26.9473L106.741 26.9473L106.677 26.9671C106.51 27.0161 106.348 27.0689 106.186 27.1305C105.493 27.4297 104.74 27.9255 104.424 28.6398C104.413 28.6743 104.401 28.7075 104.389 28.7411H104.296C103.849 29.757 103.702 30.6823 103.73 31.785C103.779 32.8657 104.185 33.8923 104.971 34.6374L104.988 34.6541L105.007 34.6715L105.008 34.6728C105.021 34.6845 105.033 34.6962 105.046 34.7079C105.175 34.8307 105.294 34.9366 105.457 35.0118L105.49 35.0223C105.512 35.0295 105.534 35.0366 105.557 35.0436V35.1369C106.789 35.6939 108.166 36.0071 109.499 35.5585C110.163 35.2905 110.869 34.9016 111.169 34.2126C111.181 34.1776 111.193 34.1439 111.205 34.1099H111.299C111.299 34.1639 111.299 34.2074 111.3 34.251C111.306 34.4332 111.335 34.6148 111.485 35.5555L111.485 35.5567L111.486 35.5571H114.427V24.4461ZM110.73 29.9392C111.11 30.3575 111.229 30.8669 111.214 31.4238C111.185 31.8248 111.102 32.139 110.879 32.4761C110.851 32.5181 110.823 32.5606 110.794 32.6045C110.395 33.0148 109.819 33.1315 109.266 33.1455C108.62 33.1525 108.055 33.0793 107.564 32.6161C107.234 32.2865 107.147 31.8188 107.135 31.3701C107.144 30.7814 107.278 30.2403 107.704 29.815C108.525 29.1703 109.965 29.2394 110.73 29.9392Z" fill="#7E7E7E"/>
|
||||
<path d="M72.9416 24.7145C72.9661 24.7148 72.9787 24.7149 72.991 24.7149L73.0148 24.715L73.0431 24.715C73.5525 24.7178 74.0557 24.7281 74.5576 24.8196C74.5968 24.8266 74.636 24.8336 74.6766 24.8411C75.7812 25.0474 76.7756 25.4284 77.5921 26.2201C77.6023 26.2291 77.6125 26.238 77.6227 26.247C77.6418 26.2638 77.661 26.2807 77.6808 26.2981C78.2634 26.8294 78.6631 27.7771 78.7592 28.5544V28.9278H75.0244L74.9773 28.7705L74.9769 28.7691L74.9765 28.7678L74.9762 28.7666L74.9668 28.7353C74.9537 28.6914 74.9405 28.6474 74.9272 28.6031L74.9016 28.5179L74.8844 28.461H74.791C74.7709 28.4265 74.7509 28.3914 74.7299 28.356C74.5249 28.0217 74.1454 27.8737 73.7817 27.7724C72.9988 27.6081 72.0273 27.6295 71.334 28.0698L71.243 28.1342C71.2277 28.1445 71.2125 28.1547 71.197 28.165C71.1811 28.1756 71.1651 28.1862 71.1486 28.1971L71.1463 28.1986C70.7089 28.5296 70.5203 29.066 70.4367 29.5903C70.327 30.4213 70.3956 31.2537 70.6361 32.0557H70.7294C70.7449 32.0954 70.7602 32.1346 70.7761 32.1752C71.0109 32.5791 71.4073 32.7882 71.8433 32.9227C72.1585 33.0051 72.4716 33.0019 72.7946 32.9987L72.8303 32.9983H73.003C73.7313 32.9946 74.3872 32.9306 74.9315 32.3923C75.1089 32.1958 75.2046 32.0254 75.3046 31.7756L72.4568 31.7289L72.454 30.7747L72.4526 30.4731V30.2383C72.4523 30.2181 72.4522 30.1979 72.4521 30.1775V30.1756C72.452 30.1552 72.4519 30.1346 72.4516 30.1136C72.4516 30.0142 72.454 29.9143 72.4568 29.8149C72.5203 29.7517 72.5973 29.7557 72.6809 29.7599C72.7025 29.761 72.7244 29.7621 72.7467 29.7621C72.799 29.7621 72.8517 29.7621 72.9059 29.7616C72.9642 29.7621 73.0226 29.7621 73.0823 29.7621H73.2672C73.4348 29.7616 73.6024 29.7616 73.77 29.7621C73.9451 29.7621 74.1202 29.7621 74.2952 29.7616C74.5893 29.7616 74.8835 29.7616 75.1776 29.7621C75.4044 29.7624 75.6313 29.7623 75.8582 29.7622C75.9717 29.7622 76.0851 29.7621 76.1986 29.7621C76.4903 29.7616 76.7821 29.7616 77.0739 29.7621C77.1493 29.7621 77.2247 29.7621 77.3001 29.7621C77.3992 29.762 77.4983 29.7619 77.5972 29.7616C77.6946 29.7616 77.7918 29.7618 77.889 29.7619L78.1808 29.7621C78.2387 29.7621 78.2971 29.7621 78.3573 29.7616C78.4362 29.7621 78.4362 29.7621 78.5165 29.7621H78.6561C78.7178 29.7657 78.7426 29.7672 78.7625 29.7778C78.7759 29.7849 78.7872 29.7961 78.8059 29.8149C78.8106 29.8891 78.812 29.9638 78.812 30.0385V30.1851C78.812 30.2388 78.8115 30.292 78.8115 30.3471V30.517C78.8115 30.594 78.8114 30.6711 78.8113 30.7481C78.8112 30.8251 78.811 30.9021 78.811 30.9792C78.8109 31.0252 78.8108 31.0713 78.8107 31.1174C78.8107 31.1617 78.8107 31.206 78.8106 31.2502L78.8106 31.4614C78.8106 31.5646 78.8105 31.6677 78.8104 31.7709C78.8103 31.8875 78.8102 32.0041 78.81 32.1207L78.8097 32.3755C78.809 32.6274 78.8088 32.8794 78.8086 33.1313C78.8085 33.2603 78.8084 33.3893 78.8082 33.5184C78.8078 34.1976 78.8068 34.8774 78.8059 35.5571H75.8648L75.8646 35.5559C75.7911 34.9657 75.7682 34.7817 75.7525 34.5971C75.7489 34.5543 75.7457 34.5114 75.7423 34.4634C75.7407 34.4408 75.7391 34.4171 75.7373 34.3918L75.7289 34.2658C75.727 34.2373 75.725 34.2087 75.7228 34.1794C75.7199 34.138 75.717 34.0966 75.7142 34.0552C75.7107 34.0053 75.7073 33.9553 75.704 33.9054L75.6958 33.7831C75.694 33.759 75.6923 33.735 75.6907 33.7109L75.6846 33.6239C75.682 33.5859 75.6793 33.5479 75.6766 33.51C75.6692 33.3998 75.6616 33.2897 75.654 33.1797C75.6464 33.0696 75.6388 32.9595 75.6313 32.8494C75.6225 32.8928 75.6136 32.9367 75.6047 32.9815L75.6023 32.9932C75.5949 33.0284 75.5875 33.0636 75.5801 33.0992C75.5762 33.1182 75.5723 33.1373 75.5683 33.1566C75.5604 33.1938 75.5526 33.2313 75.5448 33.2691L75.5437 33.2746L75.5324 33.3293C75.3424 34.136 74.9063 34.8059 74.2135 35.2681C73.0207 35.9801 71.4418 36.0043 70.1193 35.6729C68.9732 35.3591 68.1048 34.7004 67.5082 33.6897C67.489 33.657 67.4694 33.6243 67.4489 33.5907C66.6212 32.1645 66.6702 30.031 67.0694 28.4764C67.3807 27.3574 68.1001 26.3196 69.0955 25.7066H69.1888V25.6132C69.7584 25.3191 70.3009 25.0843 70.925 24.9302L70.9481 24.9246L70.9742 24.9181L71.0071 24.9099L71.0418 24.9013C71.6711 24.7528 72.2976 24.7094 72.9414 24.7145H72.9416Z" fill="#7E7E7E"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M147.618 26.8151L147.637 26.8149C147.666 26.8146 147.695 26.8142 147.725 26.8138L147.812 26.8125C148.217 26.8093 148.584 26.8569 148.974 26.9671C149.01 26.9769 149.047 26.9867 149.085 26.997C150.094 27.2817 150.866 27.9689 151.373 28.8718C151.604 29.3345 151.728 29.8219 151.821 30.3284C151.829 30.3713 151.837 30.4143 151.846 30.4586C152.03 31.699 151.835 33.0123 151.086 34.0352C151.006 34.1393 150.924 34.2415 150.841 34.3433C150.807 34.3895 150.773 34.4357 150.739 34.4833C150.577 34.6754 150.366 34.822 150.159 34.9656L150.159 34.9657L150.158 34.9664C150.135 34.9823 150.112 34.9981 150.09 35.0139C150.075 35.0237 150.061 35.0336 150.047 35.0435C150.014 35.0669 149.981 35.0902 149.947 35.114C148.98 35.7574 147.685 35.8545 146.564 35.6827C146.327 35.6346 146.113 35.5613 145.892 35.4637C145.847 35.4441 145.801 35.4245 145.754 35.404C145.179 35.1378 144.857 34.819 144.492 34.2966L144.445 38.5449H141.13V27.0138H144.025C144.183 28.0779 144.207 28.2437 144.211 28.4099C144.212 28.4406 144.212 28.4713 144.212 28.5077H144.305C144.311 28.4885 144.318 28.4694 144.324 28.4501C144.329 28.4352 144.335 28.4202 144.34 28.405C144.431 28.2006 144.585 28.0445 144.741 27.8868C144.755 27.8719 144.77 27.8571 144.785 27.8421C144.796 27.8306 144.807 27.819 144.819 27.8074C144.85 27.7743 144.881 27.7411 144.913 27.7075C145.602 27.0357 146.596 26.8186 147.525 26.8158C147.556 26.8157 147.587 26.8154 147.618 26.8151ZM148.46 30.8417C148.363 30.379 148.184 30.0424 147.806 29.7623C146.976 29.2474 145.587 29.2381 144.862 29.9467C144.504 30.3487 144.397 30.8739 144.394 31.4028C144.414 31.8902 144.507 32.3123 144.865 32.6624C145.477 33.1731 146.205 33.1839 146.966 33.1292C147.457 33.0424 147.835 32.8729 148.156 32.485C148.482 32.0191 148.528 31.393 148.46 30.8417Z" fill="#7E7E7E"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M85.236 26.7656C85.3527 26.7656 85.4699 26.7647 85.5866 26.7633C86.9564 26.7581 88.286 27.1129 89.3569 27.9944C89.3905 28.0196 89.4241 28.0452 89.4587 28.0719C90.2304 28.6956 90.701 29.7296 90.8041 30.7021C90.8653 32.0891 90.6776 33.2711 89.7304 34.3435L89.7065 34.3715L89.6747 34.409L89.6552 34.4317C89.2136 34.9163 88.6067 35.2053 88.0026 35.4294C87.9396 35.4527 87.8765 35.4765 87.814 35.5013C86.1081 36.1642 83.7767 35.9658 82.1175 35.2627C81.4891 34.9719 80.8668 34.4943 80.5335 33.8766V33.7833H80.4401C79.8846 32.4322 79.6595 30.9234 80.2361 29.5359C80.4364 29.0942 80.6777 28.7306 81.0003 28.3678C81.0297 28.3347 81.0587 28.3015 81.089 28.267C81.4144 27.9206 81.8285 27.6302 82.2608 27.4341H82.3542V27.3408C83.3173 26.9906 84.2076 26.7628 85.236 26.7656ZM85.3478 29.418L85.4893 29.4171C86.0327 29.4264 86.5691 29.5539 86.9673 29.9446C87.3931 30.4656 87.4566 31.1748 87.3964 31.8223C87.3548 31.9927 87.2951 32.1365 87.2096 32.2892C87.1826 32.3382 87.1555 32.3872 87.1275 32.4381C86.7974 32.8508 86.4197 33.0384 85.9025 33.1295C85.1765 33.1766 84.4314 33.2009 83.8483 32.7093C83.4828 32.376 83.353 31.9357 83.3236 31.4526C83.3086 30.8732 83.388 30.3923 83.8016 29.9549C84.2447 29.5268 84.7526 29.4208 85.3478 29.418Z" fill="#7E7E7E"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M97.4913 26.7633C97.3746 26.7647 97.2574 26.7656 97.1407 26.7656C96.5889 26.7642 96.0506 26.7833 95.5123 26.9187L95.362 26.964C95.2583 26.9948 95.1552 27.027 95.0525 27.0607C93.8354 27.4888 92.7873 28.1932 92.2056 29.379C91.7019 30.4855 91.6515 31.8986 92.0586 33.0405C92.475 34.1124 93.115 34.8421 94.1654 35.3239C95.7509 36.0083 98.0972 36.1315 99.7186 35.5013C99.7812 35.4765 99.8442 35.4527 99.9072 35.4294C100.537 35.1959 101.137 34.8925 101.6 34.3925L101.645 34.3398L101.682 34.2968C102.278 33.6161 102.67 32.7679 102.717 31.8571C102.76 30.5097 102.546 29.3053 101.599 28.2829C100.497 27.1988 99.0104 26.7577 97.4913 26.7633ZM97.2693 29.4261L97.306 29.4256C97.3295 29.4253 97.3531 29.4249 97.3772 29.4245C97.8982 29.424 98.3712 29.536 98.7871 29.8614C98.8954 29.9781 98.9823 30.1009 99.0672 30.2349C99.083 30.2558 99.0987 30.2766 99.1146 30.2974C99.126 30.3124 99.1374 30.3275 99.1489 30.3427C99.3898 30.8609 99.3767 31.6014 99.2026 32.1373C99.0598 32.4958 98.7689 32.7932 98.4206 32.9599C98.0374 33.1018 97.6933 33.1392 97.2876 33.141L97.1485 33.1438C96.6163 33.1466 96.0803 33.0229 95.6737 32.6625C95.4081 32.3805 95.2596 31.9725 95.2391 31.5888L95.2321 31.466C95.2148 30.9328 95.2923 30.409 95.6592 30.0015C95.8861 29.79 96.1149 29.6392 96.4062 29.5346C96.424 29.527 96.4419 29.5195 96.4598 29.512L96.4621 29.511L96.475 29.5056C96.4905 29.499 96.5062 29.4924 96.522 29.4856C96.7494 29.4247 96.9687 29.4257 97.2021 29.4267L97.232 29.4268L97.2693 29.4261Z" fill="#7E7E7E"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M158.308 26.7656C158.435 26.7656 158.561 26.7647 158.688 26.7633C160.018 26.7586 161.37 27.034 162.418 27.901C162.451 27.9257 162.484 27.9509 162.517 27.9771C163.313 28.6185 163.703 29.6755 163.866 30.6554V32.1493H156.209C156.421 32.7296 156.567 32.956 157.096 33.223C157.556 33.4154 158.02 33.4191 158.512 33.4215L158.691 33.4243C159.19 33.4261 159.64 33.3603 160.038 33.0363L160.049 33.0162L160.059 32.9982L160.068 32.982C160.075 32.9682 160.083 32.9542 160.091 32.9401C160.13 32.8994 160.151 32.877 160.177 32.8626C160.209 32.845 160.247 32.8393 160.333 32.8267C160.371 32.8264 160.408 32.8265 160.446 32.8268C160.473 32.8271 160.5 32.8275 160.528 32.8281H160.636C160.753 32.8281 160.87 32.8295 160.988 32.8314L161.055 32.8314L161.162 32.8317L161.232 32.8318C161.446 32.8328 161.661 32.8346 161.876 32.8365C162.093 32.8384 162.311 32.8393 162.529 32.8402L162.531 32.8402C162.961 32.8421 163.39 32.8454 163.819 32.8496C163.798 32.9046 163.776 32.9597 163.754 33.0148L163.686 33.1876C163.682 33.1972 163.678 33.2069 163.675 33.2166L163.648 33.2842C163.516 33.6171 163.336 33.8729 163.119 34.1567L163.118 34.1571C163.096 34.1878 163.074 34.2185 163.051 34.2506C162.267 35.2641 160.829 35.6236 159.628 35.7776C159.594 35.7818 159.56 35.786 159.524 35.7907L159.439 35.801L159.413 35.8043L159.372 35.8094C157.634 35.9798 155.622 35.8561 154.196 34.7426C153.42 34.0685 153.044 33.1465 152.895 32.1493C152.822 30.8389 152.999 29.5046 153.902 28.4873C153.943 28.4441 153.985 28.4009 154.027 28.358C154.054 28.3301 154.081 28.3022 154.109 28.2745L154.113 28.2698L154.114 28.2686L154.135 28.244C154.151 28.2261 154.167 28.208 154.183 28.1895C154.723 27.5943 155.545 27.2334 156.303 27.014C156.332 27.0049 156.346 27.0004 156.36 26.9959C156.375 26.9914 156.39 26.987 156.419 26.978C157.044 26.7941 157.662 26.7642 158.308 26.7656ZM158.48 29.1438C158.528 29.1433 158.576 29.1424 158.626 29.1419C159.123 29.1447 159.697 29.2227 160.08 29.5681C160.299 29.8025 160.505 30.0905 160.505 30.422H156.256C156.348 29.9654 156.626 29.6946 157.003 29.4416C157.445 29.1513 157.962 29.1475 158.474 29.1438L158.48 29.1438Z" fill="#7E7E7E"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M134.819 26.7687H134.7L134.686 26.7687C134.271 26.7691 133.857 26.7696 133.443 26.8135L133.409 26.8178L133.376 26.8219L133.334 26.827C132.258 26.9549 131.247 27.3144 130.393 27.9942C129.759 28.5856 129.489 29.2929 129.412 30.1417H132.82L132.822 30.1381C132.933 29.8034 133.012 29.5676 133.307 29.3662C133.993 28.9951 135.041 28.9904 135.785 29.193C135.82 29.2052 135.854 29.2168 135.887 29.2285C135.905 29.2345 135.923 29.2403 135.94 29.246C136.097 29.2975 136.244 29.346 136.336 29.4909C136.381 29.6795 136.395 29.8662 136.322 30.0483C136.176 30.1627 136.058 30.2308 135.878 30.2798L135.808 30.2913L135.694 30.3097C135.286 30.376 134.876 30.4194 134.464 30.461C134.221 30.485 133.966 30.5032 133.706 30.5217C132.668 30.5956 131.538 30.6761 130.667 31.165C130.653 31.1731 130.64 31.181 130.626 31.1888C130.61 31.1977 130.595 31.2065 130.58 31.2154C130.277 31.3671 129.993 31.5212 129.746 31.7551C129.305 32.2588 129.131 32.8368 129.121 33.503C129.142 34.1061 129.334 34.6514 129.777 35.0758C129.828 35.1125 129.844 35.1246 129.872 35.1447L129.926 35.1836C130.149 35.3559 130.375 35.4852 130.638 35.5893C132.218 36.1154 133.881 35.8498 135.341 35.1369V35.0436H135.435C135.818 34.7756 136.106 34.4619 136.379 34.0861C136.4 34.0565 136.421 34.0276 136.441 33.999L136.462 33.9698C136.498 34.1213 136.516 34.197 136.533 34.2729C136.542 34.3115 136.551 34.3502 136.562 34.399C136.573 34.4459 136.585 34.5022 136.602 34.5767C136.696 35.072 136.696 35.072 136.789 35.5571H139.683V35.5516C139.684 34.8845 139.685 34.2178 139.685 33.5506C139.685 33.1757 139.686 32.8004 139.686 32.425C139.687 32.1253 139.687 31.8251 139.687 31.5254C139.687 31.4573 139.687 31.3892 139.688 31.3211L139.688 31.2872V31.2868C139.688 31.2077 139.688 31.1286 139.688 31.0497C139.688 30.8979 139.688 30.7467 139.688 30.5954V30.4269C139.692 29.4881 139.516 28.6202 138.846 27.9241C137.767 26.9204 136.227 26.7705 134.819 26.7687ZM136.032 32.7574C136.313 32.4068 136.444 32.0851 136.415 31.6356C136.156 31.6356 135.803 31.7569 135.448 31.8789C135.152 31.9806 134.855 32.0829 134.608 32.116C134.538 32.1253 134.467 32.1342 134.396 32.143C133.86 32.2099 133.314 32.2779 132.864 32.5982C132.701 32.749 132.684 32.9012 132.67 33.1169L132.67 33.1173C132.676 33.1746 132.679 33.2111 132.692 33.2443C132.713 33.3023 132.761 33.3504 132.893 33.4824C133.198 33.7233 133.198 33.7233 134.035 33.7009C134.773 33.6561 135.532 33.3045 136.032 32.7574Z" fill="#7E7E7E"/>
|
||||
<path d="M119.375 24.9596H129.459V27.9475H126.098V35.5571H122.643V27.9475H119.375V24.9596Z" fill="#7E7E7E"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 16 KiB |
@@ -0,0 +1,10 @@
|
||||
<svg width="180" height="60" viewBox="0 0 180 60" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<g clip-path="url(#clip0_2080_14298)">
|
||||
<path d="M104.479 23.9426V30.9639C104.479 32.7812 103.882 33.8625 102.481 33.8625C101.086 33.8625 100.483 32.7812 100.483 30.9639V23.9426H96.507V31.231C96.507 35.0478 98.8939 36.6241 102.474 36.6241C105.431 36.6241 108.441 35.0478 108.441 31.231V23.9426C108.448 23.9426 104.479 23.9426 104.479 23.9426ZM74.2138 23.6625C70.1105 23.6625 67.3883 26.2353 67.3883 30.2345C67.3883 34.2468 70.2714 36.6241 73.9792 36.6241C77.3985 36.6241 80.7174 34.5528 80.7174 30.0195C80.7174 26.2809 78.1226 23.6625 74.2138 23.6625ZM74.0932 33.8819C72.3968 33.8819 71.4849 32.2797 71.4849 30.1498C71.4849 28.3065 72.2091 26.4176 74.1065 26.4176C75.9034 26.4176 76.6275 28.3065 76.6275 30.1368C76.6342 32.3774 75.6486 33.8819 74.0932 33.8819ZM64.559 23.0698C63.2247 23.9556 62.8761 25.3104 62.8761 25.3104C62.152 24.4246 60.6568 23.7211 58.9069 23.7211C55.9836 23.7211 52.9263 26.2548 52.9263 30.254C52.9263 33.8038 55.5076 36.5329 58.9069 36.5329C60.3149 36.5329 61.267 36.1942 62.0246 35.4647V35.7317C62.0246 37.9854 60.5898 38.995 58.7058 38.995C56.862 38.995 55.5612 38.4023 54.75 37.9529L53.9655 40.8839C55.0248 41.418 57.1234 41.939 58.8063 41.939C60.6904 41.939 62.5878 41.5873 63.9757 40.4214C65.4239 39.1839 65.9201 37.2234 65.9201 34.846V29.3552C65.9468 27.4533 66.6442 26.118 67.5023 25.1736C67.5023 25.1671 64.559 23.0698 64.559 23.0698ZM59.6377 33.921C57.9414 33.921 57.0296 32.3188 57.0296 30.1889C57.0296 28.3456 57.7537 26.4567 59.6511 26.4567C61.4346 26.4697 62.1587 28.3456 62.1587 30.1759C62.1587 32.4165 61.1865 33.921 59.6377 33.921ZM88.6155 23.6625C84.3581 23.6625 82.0383 26.4046 82.0383 30.4625V41.6654H86.0074V35.5299C86.7181 36.2464 87.8512 36.6436 89.3664 36.6436C92.2093 36.6436 95.1795 34.5202 95.1795 30C95.1795 26.0268 92.4842 23.6625 88.6155 23.6625ZM88.6021 33.8819C86.9059 33.8819 85.994 32.2797 85.994 30.1498C85.994 28.3065 86.7181 26.4176 88.6155 26.4176C90.4124 26.4176 91.1366 28.3065 91.1366 30.1368C91.1164 32.3774 90.1509 33.8819 88.6021 33.8819ZM127.06 21.2981V18.341C126.511 18.1847 125.827 18.074 124.962 18.074C123.802 18.074 122.427 18.3997 121.428 19.3115C120.295 20.3407 119.819 21.9885 119.819 23.4606V23.923H115.716V23.2977C115.656 20.3016 118.673 21.1744 119.021 21.2851V18.328C118.465 18.1717 117.781 18.061 116.916 18.061C115.756 18.061 114.382 18.3866 113.383 19.2985C112.25 20.3276 111.774 21.969 111.774 23.4475V23.91H110.077V26.7563H111.774V36.344C111.774 38.9754 109.89 38.5976 109.052 38.4674L108.629 41.3138C109.032 41.47 109.675 41.6263 110.325 41.6263C112.122 41.6394 113.396 41.1053 114.254 40.2912C115.327 39.262 115.736 37.7835 115.736 36.318L115.763 26.7629H119.833V36.3506C119.893 39.1252 117.66 38.5585 117.111 38.4739L116.688 41.3202C117.091 41.4765 117.734 41.6329 118.385 41.6329C120.181 41.646 121.455 41.1118 122.313 40.2976C123.386 39.2686 123.789 37.79 123.789 36.3245L123.815 26.7694H127.074V23.9426H123.768V23.3108C123.809 20.282 126.712 21.2004 127.06 21.2981Z" fill="#7E7E7E"/>
|
||||
</g>
|
||||
<defs>
|
||||
<clipPath id="clip0_2080_14298">
|
||||
<rect width="74.1476" height="23.878" fill="white" transform="translate(52.9263 18.061)"/>
|
||||
</clipPath>
|
||||
</defs>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 3.2 KiB |
@@ -0,0 +1,17 @@
|
||||
<svg width="180" height="60" viewBox="0 0 180 60" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M67.0913 36.3009V30.9006H62.792V36.3009H60.485V24.2244H62.792V29.0655H67.0913V24.2244H69.4157V36.3009H67.0913Z" fill="#7E7E7E"/>
|
||||
<path d="M78.9909 33.8542C78.9909 34.2153 79.0433 34.4833 79.1482 34.6581C79.2647 34.8212 79.4453 34.9494 79.6899 35.0426L79.2181 36.5281C78.6938 36.4815 78.2627 36.3533 77.9248 36.1436C77.5985 35.9339 77.348 35.6135 77.1733 35.1824C76.8587 35.6484 76.4625 35.998 75.9848 36.231C75.5188 36.4524 74.9945 36.5631 74.4119 36.5631C73.4915 36.5631 72.7633 36.3009 72.2273 35.7766C71.6914 35.2523 71.4234 34.5649 71.4234 33.7143C71.4234 32.7123 71.7846 31.9492 72.5069 31.4249C73.241 30.8889 74.2838 30.6209 75.6353 30.6209H76.7888V30.0966C76.7888 29.5024 76.649 29.0888 76.3693 28.8558C76.1014 28.6111 75.6644 28.4888 75.0586 28.4888C74.3828 28.4888 73.5672 28.6519 72.6118 28.9781L72.0875 27.4576C73.241 27.0149 74.3595 26.7935 75.4431 26.7935C77.8083 26.7935 78.9909 27.8538 78.9909 29.9743V33.8542ZM75.0061 34.9377C75.7635 34.9377 76.3577 34.5591 76.7888 33.8017V31.9317H75.8625C74.4177 31.9317 73.6954 32.4677 73.6954 33.5396C73.6954 33.9823 73.8061 34.326 74.0274 34.5707C74.2488 34.8154 74.575 34.9377 75.0061 34.9377Z" fill="#7E7E7E"/>
|
||||
<path d="M86.4867 26.7935C87.6518 26.7935 88.514 27.2188 89.0732 28.0693C89.6325 28.9198 89.9121 30.1141 89.9121 31.6521C89.9121 32.6075 89.7665 33.458 89.4752 34.2037C89.1956 34.9377 88.7761 35.5145 88.2169 35.9339C87.6693 36.3533 87.0168 36.5631 86.2595 36.5631C85.2808 36.5631 84.506 36.2252 83.935 35.5494V39.8662L81.698 40.1109V27.0556H83.6554L83.7778 28.1916C84.1389 27.7256 84.5526 27.3761 85.0186 27.143C85.4847 26.91 85.974 26.7935 86.4867 26.7935ZM85.6303 34.8503C86.9236 34.8503 87.5702 33.7901 87.5702 31.6695C87.5702 30.5394 87.4246 29.7238 87.1333 29.2228C86.842 28.7218 86.4051 28.4713 85.8225 28.4713C85.4497 28.4713 85.1002 28.5878 84.7739 28.8208C84.4477 29.0422 84.1681 29.3451 83.935 29.7296V33.8891C84.3661 34.5299 84.9312 34.8503 85.6303 34.8503Z" fill="#7E7E7E"/>
|
||||
<path d="M96.8977 26.7935C98.0628 26.7935 98.925 27.2188 99.4843 28.0693C100.044 28.9198 100.323 30.1141 100.323 31.6521C100.323 32.6075 100.178 33.458 99.8862 34.2037C99.6066 34.9377 99.1872 35.5145 98.6279 35.9339C98.0803 36.3533 97.4278 36.5631 96.6705 36.5631C95.6918 36.5631 94.917 36.2252 94.3461 35.5494V39.8662L92.109 40.1109V27.0556H94.0664L94.1888 28.1916C94.55 27.7256 94.9636 27.3761 95.4296 27.143C95.8957 26.91 96.385 26.7935 96.8977 26.7935ZM96.0413 34.8503C97.3346 34.8503 97.9813 33.7901 97.9813 31.6695C97.9813 30.5394 97.8356 29.7238 97.5443 29.2228C97.2531 28.7218 96.8161 28.4713 96.2336 28.4713C95.8607 28.4713 95.5112 28.5878 95.185 28.8208C94.8587 29.0422 94.5791 29.3451 94.3461 29.7296V33.8891C94.7772 34.5299 95.3423 34.8503 96.0413 34.8503Z" fill="#7E7E7E"/>
|
||||
<path d="M106.892 36.3359C106.519 37.4777 105.954 38.3632 105.196 38.9924C104.439 39.6332 103.402 40.006 102.086 40.1109L101.858 38.4855C102.464 38.3923 102.948 38.2583 103.309 38.0836C103.682 37.9204 103.979 37.6991 104.2 37.4194C104.422 37.1398 104.626 36.767 104.812 36.3009H104.043L101.107 27.0556H103.484L105.494 34.8154L107.591 27.0556H109.898L106.892 36.3359Z" fill="#7E7E7E"/>
|
||||
<path d="M119.088 24.2244L118.843 26.0595H115.698V36.3009H113.373V26.0595H110.123V24.2244H119.088Z" fill="#7E7E7E"/>
|
||||
<path d="M127.155 31.4598C127.155 31.5763 127.138 31.8793 127.103 32.3686H121.3C121.37 33.2658 121.603 33.9066 122 34.2911C122.396 34.6756 122.92 34.8678 123.572 34.8678C123.98 34.8678 124.365 34.8037 124.726 34.6756C125.087 34.5358 125.472 34.326 125.879 34.0464L126.806 35.3222C125.78 36.1494 124.639 36.5631 123.38 36.5631C121.97 36.5631 120.881 36.132 120.112 35.2698C119.355 34.4076 118.976 33.2308 118.976 31.7395C118.976 30.7957 119.139 29.951 119.465 29.2053C119.792 28.448 120.264 27.8596 120.881 27.4401C121.499 27.009 122.233 26.7935 123.083 26.7935C124.376 26.7935 125.378 27.2071 126.089 28.0344C126.8 28.8499 127.155 29.9918 127.155 31.4598ZM124.936 30.8132C124.936 29.1937 124.336 28.3839 123.136 28.3839C122.588 28.3839 122.157 28.5878 121.842 28.9956C121.539 29.3917 121.359 30.0325 121.3 30.918H124.936V30.8132Z" fill="#7E7E7E"/>
|
||||
<path d="M135.825 33.8542C135.825 34.2153 135.877 34.4833 135.982 34.6581C136.099 34.8212 136.279 34.9494 136.524 35.0426L136.052 36.5281C135.528 36.4815 135.097 36.3533 134.759 36.1436C134.433 35.9339 134.182 35.6135 134.007 35.1824C133.693 35.6484 133.297 35.998 132.819 36.231C132.353 36.4524 131.828 36.5631 131.246 36.5631C130.325 36.5631 129.597 36.3009 129.061 35.7766C128.525 35.2523 128.257 34.5649 128.257 33.7143C128.257 32.7123 128.619 31.9492 129.341 31.4249C130.075 30.8889 131.118 30.6209 132.469 30.6209H133.623V30.0966C133.623 29.5024 133.483 29.0888 133.203 28.8558C132.935 28.6111 132.498 28.4888 131.893 28.4888C131.217 28.4888 130.401 28.6519 129.446 28.9781L128.921 27.4576C130.075 27.0149 131.193 26.7935 132.277 26.7935C134.642 26.7935 135.825 27.8538 135.825 29.9743V33.8542ZM131.84 34.9377C132.597 34.9377 133.192 34.5591 133.623 33.8017V31.9317H132.696C131.252 31.9317 130.529 32.4677 130.529 33.5396C130.529 33.9823 130.64 34.326 130.861 34.5707C131.083 34.8154 131.409 34.9377 131.84 34.9377Z" fill="#7E7E7E"/>
|
||||
<path d="M148.337 26.7935C149.082 26.7935 149.676 27.0498 150.119 27.5625C150.562 28.0635 150.783 28.7451 150.783 29.6073V36.3009H148.546V29.9568C148.546 28.9665 148.208 28.4713 147.533 28.4713C147.171 28.4713 146.857 28.5878 146.589 28.8208C146.332 29.0422 146.065 29.3917 145.785 29.8694V36.3009H143.548V29.9568C143.548 28.9665 143.21 28.4713 142.534 28.4713C142.161 28.4713 141.841 28.5878 141.573 28.8208C141.317 29.0422 141.049 29.3917 140.769 29.8694V36.3009H138.532V27.0556H140.472L140.647 28.2616C141.346 27.2828 142.237 26.7935 143.321 26.7935C143.857 26.7935 144.317 26.9333 144.701 27.2129C145.097 27.4809 145.383 27.8596 145.558 28.3489C145.931 27.8479 146.338 27.4634 146.781 27.1955C147.235 26.9275 147.754 26.7935 148.337 26.7935Z" fill="#7E7E7E"/>
|
||||
<path d="M156.299 26.7935C157.546 26.7935 158.641 27.1605 159.585 27.8945L158.711 29.2053C157.919 28.7043 157.144 28.4538 156.387 28.4538C155.944 28.4538 155.6 28.5412 155.355 28.7159C155.111 28.8791 154.988 29.1004 154.988 29.3801C154.988 29.5898 155.041 29.7646 155.146 29.9044C155.251 30.0442 155.437 30.1782 155.705 30.3063C155.985 30.4229 156.392 30.5568 156.928 30.7083C157.93 30.9763 158.67 31.3317 159.148 31.7744C159.637 32.2172 159.882 32.8347 159.882 33.627C159.882 34.5474 159.509 35.2698 158.763 35.7941C158.018 36.3067 157.091 36.5631 155.985 36.5631C155.227 36.5631 154.534 36.4466 153.905 36.2135C153.287 35.9805 152.751 35.6601 152.297 35.2523L153.415 33.994C154.219 34.5998 155.058 34.9028 155.932 34.9028C156.433 34.9028 156.829 34.8037 157.121 34.6057C157.423 34.4076 157.575 34.1338 157.575 33.7842C157.575 33.5163 157.517 33.3065 157.4 33.1551C157.295 32.992 157.097 32.8521 156.806 32.7356C156.526 32.6075 156.084 32.456 155.478 32.2812C154.534 32.0249 153.841 31.6695 153.398 31.2151C152.955 30.7491 152.734 30.1724 152.734 29.4849C152.734 28.9723 152.879 28.5121 153.171 28.1043C153.474 27.6965 153.893 27.3761 154.429 27.143C154.977 26.91 155.6 26.7935 156.299 26.7935Z" fill="#7E7E7E"/>
|
||||
<path d="M51.2184 32.9627C51.4028 32.0034 51.4993 31.0129 51.4993 30C51.4993 21.3576 44.4743 14.3515 35.8087 14.3515C27.1431 14.3515 20.1182 21.3576 20.1182 30C20.1182 38.6424 27.1431 45.6484 35.8087 45.6484C37.4337 45.6484 39.001 45.4021 40.4751 44.9448C40.171 44.1237 39.9821 43.2467 39.9279 42.3335C38.6332 42.7634 37.2482 42.9962 35.8087 42.9962C28.6118 42.9962 22.7776 37.1776 22.7776 30C22.7776 22.8224 28.6118 17.0038 35.8087 17.0038C43.0056 17.0038 48.8399 22.8224 48.8399 30C48.8399 30.9268 48.7426 31.8309 48.5577 32.7028C48.7064 32.6955 48.856 32.6919 49.0065 32.6919C49.7694 32.6919 50.5104 32.7858 51.2184 32.9627Z" fill="#7E7E7E"/>
|
||||
<path d="M49.0936 33.3636C44.3936 33.3636 40.5835 37.1635 40.5835 41.8509C40.5835 42.8657 40.8358 43.9398 41.0896 44.741C42.4003 43.3073 51.0814 33.6009 51.0814 33.6009C51.0814 33.6009 49.706 33.3636 49.0936 33.3636Z" fill="#7E7E7E"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M30.1535 28.8631C30.5333 28.8242 30.8729 29.0999 30.9118 29.4787C31.1494 31.789 33.2046 33.6386 35.7562 33.6386C38.3042 33.6386 40.3573 31.7941 40.5995 29.4884C40.6393 29.1096 40.9794 28.8347 41.3592 28.8744C41.739 28.9141 42.0147 29.2533 41.9749 29.6321C41.6546 32.6813 38.9698 35.0177 35.7562 35.0177C32.5382 35.0177 29.8503 32.6748 29.5361 29.6194C29.4972 29.2406 29.7736 28.9019 30.1535 28.8631Z" fill="#7E7E7E"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M39.3686 24.9606C38.7095 24.9606 38.1756 25.5075 38.1756 26.1819C38.1756 26.8571 38.7095 27.4038 39.3686 27.4038C40.0278 27.4038 40.5609 26.8571 40.5609 26.1819C40.5609 25.5075 40.0278 24.9606 39.3686 24.9606Z" fill="#7E7E7E"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M32.1084 24.9606C31.45 24.9606 30.9154 25.5075 30.9154 26.1819C30.9154 26.8571 31.45 27.4038 32.1084 27.4038C32.7669 27.4038 33.3014 26.8571 33.3014 26.1819C33.3014 25.5075 32.7669 24.9606 32.1084 24.9606Z" fill="#7E7E7E"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 8.9 KiB |
@@ -0,0 +1,11 @@
|
||||
<svg width="180" height="60" viewBox="0 0 180 60" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M42.1012 24.5408C41.6373 24.5408 41.2613 24.9168 41.2613 25.3806V34.6193C41.2613 35.0832 41.6373 35.4592 42.1012 35.4592H45.0407V37.9788H42.1012C40.2458 37.9788 38.7417 36.4747 38.7417 34.6193V25.3806C38.7417 23.5253 40.2458 22.0212 42.1012 22.0212H45.0407V24.5408H42.1012Z" fill="#7E7E7E"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M58.8991 35.4593C59.3629 35.4593 59.7389 35.0833 59.7389 34.6194V25.3808C59.7389 24.9169 59.3629 24.5409 58.8991 24.5409H55.9595V22.0213H58.8991C60.7544 22.0213 62.2585 23.5254 62.2585 25.3808V34.6194C62.2585 36.4748 60.7544 37.9789 58.8991 37.9789H55.9595V35.4593H58.8991Z" fill="#7E7E7E"/>
|
||||
<path d="M58.4786 29.9627C58.4786 28.9504 57.7356 28.0927 56.7332 27.948C54.5864 27.599 52.9034 25.9135 52.5568 23.7667C52.4072 22.7668 51.5495 22.0238 50.5372 22.0213H50.4624C49.4501 22.0213 48.5924 22.7643 48.4477 23.7667C48.0987 25.9135 46.4132 27.5965 44.2664 27.9431C43.2665 28.0927 42.5235 28.9504 42.521 29.9627V30.0375C42.521 31.0498 43.264 31.9075 44.2664 32.0521C46.4132 32.4012 48.0962 34.0867 48.4428 36.2335C48.5924 37.2334 49.4501 37.9764 50.4624 37.9789H50.5372C51.5495 37.9789 52.4072 37.2359 52.5518 36.2335C52.9009 34.0867 54.5864 32.4037 56.7332 32.0571C57.7331 31.9075 58.4761 31.0498 58.4786 30.0375V29.9627ZM55.4865 30.03C55.4865 30.05 55.4591 30.0674 55.4317 30.0724C52.9333 30.4788 50.9735 32.4386 50.5646 34.937C50.5646 34.9644 50.5447 34.9868 50.5297 34.9868H50.4674C50.4474 34.9868 50.43 34.9594 50.425 34.932C50.0186 32.4336 48.0613 30.4738 45.5604 30.0649C45.533 30.0649 45.5106 30.045 45.5106 30.03V29.9677C45.5106 29.9477 45.538 29.9303 45.5654 29.9253C48.0638 29.5189 50.0236 27.5591 50.4325 25.0607C50.4325 25.0333 50.4524 25.0109 50.4674 25.0109H50.5297C50.5497 25.0109 50.5671 25.0383 50.5721 25.0657C50.9785 27.5641 52.9358 29.5239 55.4367 29.9328C55.4641 29.9328 55.4865 29.9527 55.4865 29.9677V30.03Z" fill="#7E7E7E"/>
|
||||
<path d="M80.5647 22.0212H83.3085V37.738H80.5647V30.8646H73.1906V37.738H70.4468V22.0212H73.1906V28.413H80.5647V22.0212Z" fill="#7E7E7E"/>
|
||||
<path d="M94.6043 26.2459V37.7381H92.0319V36.5122C91.3888 37.2784 90.4242 37.9788 88.9665 37.9788C86.6085 37.9788 85.1509 36.3371 85.1509 33.8636V26.2459H87.7231V33.2945C87.7231 34.6954 88.3234 35.5929 89.7167 35.5929C90.8743 35.5929 92.0319 34.7173 92.0319 33.0756V26.2459H94.6043Z" fill="#7E7E7E"/>
|
||||
<path d="M99.0006 30.9963V37.7384H96.4282V26.2462H99.0006V27.4721C99.6222 26.7059 100.587 26.0274 102.087 26.0274C103.438 26.0274 104.445 26.6403 105.067 27.6254C105.753 26.881 106.825 26.0274 108.561 26.0274C110.876 26.0274 112.377 27.691 112.377 30.1645V37.7384H109.804V30.9307C109.804 29.5079 109.29 28.479 107.918 28.479C106.825 28.479 105.689 29.3546 105.689 30.9963V37.7384H103.116V30.9307C103.116 29.5079 102.602 28.479 101.23 28.479C100.137 28.479 99.0006 29.3546 99.0006 30.9963Z" fill="#7E7E7E"/>
|
||||
<path d="M117.333 37.9352C115.189 37.9352 113.539 36.6 113.539 34.5423C113.539 32.3534 115.146 31.3902 117.311 30.9305L120.42 30.2738V30.0768C120.42 28.9823 119.862 28.3037 118.49 28.3037C117.268 28.3037 116.625 28.8729 116.325 29.9893L113.903 29.4202C114.46 27.5157 116.111 26.0273 118.598 26.0273C121.298 26.0273 122.928 27.3406 122.928 29.9893V34.9363C122.928 35.5931 123.206 35.79 123.914 35.7025V37.7383C122.049 37.9572 121.063 37.585 120.677 36.6438C119.969 37.4537 118.79 37.9352 117.333 37.9352ZM120.42 33.6886V32.2877L117.997 32.813C116.904 33.0538 116.089 33.4041 116.089 34.4328C116.089 35.3304 116.733 35.8338 117.719 35.8338C119.091 35.8338 120.42 35.0896 120.42 33.6886Z" fill="#7E7E7E"/>
|
||||
<path d="M125.334 34.8485V28.4786H123.769V26.2458H125.334V22.8748H127.863V26.2458H130.221V28.4786H127.863V34.4325C127.863 35.4614 128.442 35.5708 129.364 35.5708C129.793 35.5708 130.028 35.549 130.414 35.5052V37.716C129.943 37.8036 129.3 37.8693 128.635 37.8693C126.492 37.8693 125.334 37.1907 125.334 34.8485Z" fill="#7E7E7E"/>
|
||||
<path d="M134.677 37.9352C132.534 37.9352 130.883 36.6 130.883 34.5423C130.883 32.3534 132.491 31.3902 134.656 30.9305L137.764 30.2738V30.0768C137.764 28.9823 137.207 28.3037 135.835 28.3037C134.613 28.3037 133.97 28.8729 133.67 29.9893L131.248 29.4202C131.805 27.5157 133.456 26.0273 135.942 26.0273C138.644 26.0273 140.272 27.3406 140.272 29.9893V34.9363C140.272 35.5931 140.552 35.79 141.259 35.7025V37.7383C139.394 37.9572 138.407 37.585 138.021 36.6438C137.314 37.4537 136.135 37.9352 134.677 37.9352ZM137.764 33.6886V32.2877L135.342 32.813C134.249 33.0538 133.434 33.4041 133.434 34.4328C133.434 35.3304 134.078 35.8338 135.063 35.8338C136.435 35.8338 137.764 35.0896 137.764 33.6886Z" fill="#7E7E7E"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 4.6 KiB |
10
apps/www/public/images/logos/publicity/fixed-width/krea.svg
Normal file
@@ -0,0 +1,10 @@
|
||||
<svg width="180" height="60" viewBox="0 0 180 60" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M123.463 21.9407H127.332L132.97 36.8606H129.143L128.237 34.2059H122.475L121.59 36.8606H117.845L123.463 21.9407ZM123.442 31.3454H127.29L125.377 25.6656L123.442 31.3454Z" fill="#7E7E7E"/>
|
||||
<path d="M105.454 21.9407H116.896V25.0276H108.973V27.6412H116.464V30.7486H108.973V33.7532H116.896V36.8606H105.454V21.9407Z" fill="#7E7E7E"/>
|
||||
<path d="M96.3232 31.2425H93.936V36.8606H90.417V21.9407H96.1586C96.9817 21.9407 97.7157 21.9819 98.3605 22.0642C99.0054 22.1465 99.6159 22.2906 100.192 22.4964C100.782 22.7022 101.269 22.9766 101.653 23.3196C102.051 23.6625 102.36 24.1084 102.579 24.6572C102.813 25.1923 102.929 25.8233 102.929 26.5505C102.929 28.5398 101.955 29.9117 100.007 30.6663L103.691 36.8606H99.5541L96.3232 31.2425ZM93.936 24.9041V28.2791H96.2615C97.2081 28.2791 97.9352 28.1625 98.4429 27.9293C98.9505 27.6823 99.2043 27.2364 99.2043 26.5916C99.2043 25.9468 98.9436 25.5078 98.4223 25.2746C97.9147 25.0276 97.1944 24.9041 96.2615 24.9041H93.936Z" fill="#7E7E7E"/>
|
||||
<path d="M79.0596 27.847L84.4719 21.9407H88.7729L83.2577 27.8881L89.061 36.8606H84.8217L80.7882 30.5634L79.0596 32.4567V36.8606H75.5405V21.9407H79.0596V27.847Z" fill="#7E7E7E"/>
|
||||
<path d="M50.4484 18.0302C52.4013 17.8928 54.1243 19.2525 54.3757 21.1294C54.6144 22.9123 53.3942 24.6368 51.5606 25.0405C51.1011 25.1417 50.5903 25.1136 50.104 25.1753C48.9205 25.3256 47.9071 25.8195 47.0638 26.657L47.0551 26.6615L47.0452 26.6607L47.0374 26.6548L47.0342 26.6457C47.0339 26.639 47.0356 26.6331 47.0394 26.628C47.0447 26.6204 47.0474 26.6121 47.0474 26.603C47.0358 25.2202 47.0322 23.546 47.0366 21.5803C47.0403 19.7229 48.5078 18.1663 50.4484 18.0302Z" fill="#7E7E7E"/>
|
||||
<path d="M50.6539 33.5575C48.1682 33.538 46.3864 31.0923 47.251 28.8007C47.7279 27.5358 48.9054 26.6135 50.301 26.4683C50.7253 26.4243 51.2351 26.4356 51.6444 26.3594C53.7462 25.9688 55.3696 24.3614 55.6981 22.3148C55.7709 21.8607 55.7329 21.3194 55.8401 20.8376C56.3363 18.6078 58.8914 17.3565 61.0374 18.3646C62.1562 18.8909 62.9062 19.8844 63.0918 21.0713C63.13 21.3147 63.1424 21.6163 63.1289 21.9759C62.8855 28.4372 57.3672 33.611 50.6539 33.5575Z" fill="#7E7E7E"/>
|
||||
<path d="M53.7845 34.5858C53.7732 34.5806 53.7656 34.5731 53.7615 34.5631L53.7605 34.5568L53.7623 34.5507L53.7664 34.5459C53.7681 34.5446 53.7701 34.5437 53.7723 34.5431C56.3225 33.9594 58.532 32.7852 60.4006 31.0202C60.4341 30.9885 60.4646 30.9909 60.4922 31.0275C60.7919 31.4222 61.105 31.8464 61.3558 32.2516C62.3867 33.9157 62.9709 35.7182 63.108 37.6591C63.1356 38.0504 63.1442 38.3527 63.1339 38.566C63.0413 40.4519 61.463 41.9735 59.4734 41.9849C57.7118 41.9944 56.1631 40.7926 55.8285 39.1113C55.7496 38.7134 55.774 38.1621 55.7068 37.7416C55.4994 36.4476 54.8672 35.4005 53.8099 34.5999C53.8052 34.5959 53.7968 34.5912 53.7845 34.5858Z" fill="#7E7E7E"/>
|
||||
<path d="M50.0579 41.9306C48.5618 41.6702 47.3579 40.5084 47.0901 39.0629C47.0534 38.8651 47.0351 38.5637 47.0351 38.1587C47.0348 36.5645 47.0345 34.9701 47.0342 33.3755C47.0342 33.3598 47.0401 33.3573 47.052 33.3678C48.0303 34.2375 49.0584 34.7688 50.4014 34.8573C50.4014 34.8573 50.5229 34.8615 50.7623 34.869C52.5107 34.9249 53.9918 36.0708 54.3334 37.7354C54.839 40.1967 52.6108 42.3748 50.0579 41.9306Z" fill="#7E7E7E"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 3.2 KiB |
@@ -0,0 +1,21 @@
|
||||
<svg width="180" height="60" viewBox="0 0 180 60" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<g clip-path="url(#clip0_2080_14357)">
|
||||
<path d="M55.0813 24.4218C54.4477 24.4218 53.852 24.6673 53.4061 25.1132L51.6041 26.9103C51.118 27.3951 50.8683 28.0682 50.9194 28.7584C50.9231 28.796 50.9267 28.8337 50.9304 28.8726C50.995 29.4023 51.2277 29.8798 51.6041 30.2541C51.8637 30.5129 52.1499 30.677 52.4972 30.7912C52.5154 30.8957 52.5252 31.0013 52.5252 31.1071C52.5252 31.5834 52.34 32.0305 52.0037 32.3659L51.8928 32.4765C51.291 32.2711 50.789 31.971 50.3358 31.519C49.734 30.9187 49.3356 30.1605 49.1857 29.3282L49.165 29.2128L49.0736 29.2869C49.0115 29.3367 48.953 29.3902 48.8982 29.4448L47.0962 31.2419C46.1727 32.1629 46.1727 33.6636 47.0962 34.5846C47.558 35.0451 48.1647 35.2759 48.7727 35.2759C49.3807 35.2759 49.9862 35.0451 50.4479 34.5846L52.2499 32.7875C53.1734 31.8665 53.1734 30.3671 52.2499 29.4448C52.0037 29.1995 51.7102 29.0147 51.3775 28.8957C51.3593 28.7875 51.3495 28.6794 51.3495 28.5737C51.3495 28.0561 51.5542 27.5652 51.9294 27.1909C52.5325 27.3963 53.0674 27.7292 53.5194 28.18C54.12 28.779 54.5172 29.536 54.6695 30.3707L54.6902 30.4861L54.7816 30.4121C54.8437 30.3623 54.9022 30.3088 54.9583 30.2529L56.7602 28.4558C57.6837 27.5348 57.6849 26.0342 56.7602 25.1132C56.3131 24.6673 55.7185 24.4218 55.0838 24.4218H55.0813Z" fill="#7E7E7E"/>
|
||||
<path d="M54.1157 17.8495H30.5382C23.8202 17.8495 18.3547 23.3003 18.3547 30.0002C18.3547 36.7 23.8202 42.1507 30.5382 42.1507H54.1157C60.8337 42.1507 66.2992 36.7 66.2992 30.0002C66.2992 23.3003 60.8337 17.8495 54.1157 17.8495ZM42.4866 36.8992C42.0979 36.9794 41.6605 36.994 41.3632 36.6842C41.2536 36.9357 40.9977 36.8032 40.8003 36.7705C40.7821 36.8215 40.7663 36.8664 40.7492 36.9175C40.0925 36.9612 39.6003 36.2929 39.2872 35.7887C38.6658 35.4533 37.9604 35.2492 37.3256 34.898C37.2891 35.4764 37.4158 36.1933 36.8638 36.5663C36.8358 37.6781 38.5501 36.6976 38.7072 37.5262C38.5854 37.5396 38.4502 37.5067 38.3527 37.6003C37.9056 38.0341 37.3927 37.2723 36.8773 37.587C36.1852 37.9345 36.1158 38.2188 35.2593 38.2905C35.2118 38.2188 35.2313 38.1714 35.2715 38.1277C35.5127 37.8482 35.5298 37.5189 35.9416 37.3998C35.5176 37.333 35.163 37.5663 34.8061 37.751C34.3419 37.9406 34.3456 37.3233 33.6316 37.7838C33.5524 37.7194 33.5902 37.6611 33.6353 37.6113C33.8168 37.3901 34.0556 37.3573 34.3249 37.3695C33.0005 36.6331 32.3767 38.2698 31.7651 37.4558C31.5811 37.5044 31.5117 37.6696 31.3959 37.7862C31.296 37.6769 31.3716 37.5444 31.3765 37.4156C31.2571 37.3597 31.1059 37.333 31.1413 37.1422C30.9074 37.0633 30.7441 37.2018 30.5699 37.333C30.4127 37.2115 30.6759 37.0341 30.7246 36.9077C30.8647 36.6647 31.1839 36.8579 31.346 36.6829C31.8065 36.4217 32.4486 36.8458 32.9749 36.7741C33.3806 36.8251 33.8826 36.4096 33.6791 35.9952C33.2454 35.4424 33.3221 34.7194 33.3124 34.0584C33.2588 33.6732 32.3316 33.1823 32.0636 32.7668C31.7322 32.3926 31.4739 31.9588 31.2156 31.5323C30.2836 29.7328 30.5772 27.4206 29.4027 25.7498C28.8715 26.0427 28.1795 25.9042 27.7214 25.5117C27.4741 25.7365 27.4631 26.0305 27.4436 26.3428C26.8503 25.7511 26.9246 24.6332 27.3985 23.9747C27.5923 23.7146 27.8238 23.5008 28.082 23.3124C28.1405 23.2699 28.16 23.2286 28.1588 23.163C28.6279 21.0585 31.8272 21.4643 32.8385 22.9552C33.5719 23.8726 33.7937 25.0864 34.6258 25.9382C35.7454 27.1605 37.0211 28.2371 38.0542 29.5384C39.0313 30.728 39.7294 32.1228 40.3386 33.5287C40.5871 33.9952 40.5896 34.5675 40.9575 34.9661C41.139 35.2067 42.026 35.8616 41.8335 36.0937C41.9444 36.3342 42.7729 36.6659 42.4853 36.8992H42.4866ZM58.0253 29.7207L56.2235 31.5177C55.7434 31.9965 55.1501 32.3537 54.5068 32.5493L54.4739 32.559L54.4617 32.5906C54.2521 33.1423 53.9341 33.6344 53.515 34.0512L51.7131 35.8482C50.9272 36.632 49.8819 37.0633 48.7683 37.0633C47.6548 37.0633 46.6094 36.632 45.8236 35.8482C44.1996 34.2285 44.1996 31.5943 45.8236 29.9746L47.6255 28.1776C48.108 27.6964 48.6855 27.3501 49.3398 27.1496L49.3727 27.1399L49.3848 27.1083C49.5944 26.5566 49.9136 26.0634 50.334 25.6429L52.1358 23.8459C52.9217 23.0621 53.967 22.6308 55.0806 22.6308C56.1942 22.6308 57.2395 23.0621 58.0253 23.8459C58.8112 24.6296 59.2437 25.6721 59.2437 26.7827C59.2437 27.8932 58.8112 28.9369 58.0253 29.7195V29.7207Z" fill="#7E7E7E"/>
|
||||
<path d="M35.1569 34.7243C34.9985 35.3391 34.9473 36.3853 34.1457 36.4156C34.0799 36.7705 34.3918 36.9041 34.6769 36.7899C34.9583 36.6611 35.0923 36.892 35.1873 37.1216C35.6223 37.1848 36.2656 36.977 36.29 36.463C35.6406 36.09 35.4395 35.3804 35.1581 34.7231L35.1569 34.7243Z" fill="#7E7E7E"/>
|
||||
<path d="M77.5869 24.2184H75.4466V37.2018H84.6267V35.1337H77.5869V24.2184Z" fill="#7E7E7E"/>
|
||||
<path d="M95.3861 37.2018H97.5265V37.1787H97.5546L97.5587 37.0834C97.5593 37.0556 97.5671 36.7957 97.5277 36.3953V31.5633C97.5277 29.7453 98.8531 28.9177 100.085 28.9177C101.41 28.9177 102.054 29.6318 102.054 31.1013V37.2018H104.195V30.8165C104.195 28.3913 102.654 26.8842 100.174 26.8842C99.1206 26.8842 98.1803 27.1835 97.4417 27.7523L97.422 27.0623H95.3891V37.2018H95.3861Z" fill="#7E7E7E"/>
|
||||
<path d="M112.906 27.8071C112.162 27.2028 111.205 26.8842 110.127 26.8842C107.24 26.8842 105.447 28.8744 105.447 32.0782C105.447 35.2819 107.24 37.2904 110.127 37.2904C111.145 37.2904 112.053 37.0132 112.769 36.4858C112.708 38.0574 111.723 38.9909 110.109 38.9909C108.752 38.9909 107.984 38.5588 107.827 37.7071L107.807 37.6012L105.728 38.2354L105.746 38.3211C106.097 40.0139 107.681 41.0244 109.985 41.0244C111.548 41.0244 112.774 40.599 113.629 39.7589C114.493 38.9119 114.93 37.6916 114.93 36.1326V27.0623H112.95L112.907 27.8071H112.906ZM112.772 32.1677C112.772 34.102 111.83 35.2579 110.251 35.2579C108.558 35.2579 107.588 34.0991 107.588 32.0791C107.588 30.0591 108.559 28.9177 110.251 28.9177C111.792 28.9177 112.757 30.0677 112.772 31.9184V32.1677Z" fill="#7E7E7E"/>
|
||||
<path d="M125.475 33.0847C125.032 34.5196 123.893 35.3107 122.269 35.3107C119.947 35.3107 118.503 33.5476 118.503 30.7096C118.503 27.8716 119.959 26.1085 122.304 26.1085C123.927 26.1085 124.862 26.7446 125.338 28.1699L125.56 28.8368L127.581 27.8879L127.391 27.3538C126.622 25.1856 124.844 24.0403 122.251 24.0403C120.489 24.0403 118.994 24.6765 117.926 25.8795C116.869 27.0709 116.31 28.7406 116.31 30.7106C116.31 34.7621 118.648 37.3808 122.269 37.3808C124.82 37.3808 126.796 36.046 127.554 33.8094L127.748 33.2377L125.672 32.4486L125.474 33.0857L125.475 33.0847Z" fill="#7E7E7E"/>
|
||||
<path d="M133.469 26.8842C132.446 26.8842 131.537 27.1643 130.823 27.6965V22.9741H128.683V37.2028H130.823V31.5643C130.823 29.7348 132.148 28.9014 133.38 28.9014C134.705 28.9014 135.35 29.6155 135.35 31.085V37.2038H137.49V30.8001C137.49 28.4221 135.912 26.8862 133.47 26.8862L133.469 26.8842Z" fill="#7E7E7E"/>
|
||||
<path d="M150.001 22.6681C149.206 22.6681 148.628 23.2455 148.628 24.0404C148.628 24.8354 149.206 25.4128 150.001 25.4128C150.795 25.4128 151.373 24.8354 151.373 24.0404C151.373 23.2455 150.795 22.6681 150.001 22.6681Z" fill="#7E7E7E"/>
|
||||
<path d="M157.623 26.8842C156.569 26.8842 155.629 27.1835 154.891 27.7523L154.87 27.0623H152.838V37.2018H154.978V31.5633C154.978 29.7453 156.303 28.9177 157.535 28.9177C158.86 28.9177 159.505 29.6318 159.505 31.1013V37.2018H161.646V30.8165C161.646 28.3913 160.105 26.8842 157.625 26.8842H157.623Z" fill="#7E7E7E"/>
|
||||
<path d="M151.04 27.0623H148.911V32.0888C148.32 31.5922 147.623 31.2169 146.838 30.9715V30.4604C146.838 28.221 145.368 26.8842 142.905 26.8842C140.904 26.8842 139.408 27.8236 138.798 29.4605L138.634 29.9022L140.35 31.1668L140.644 30.3998C141.033 29.3884 141.751 28.9168 142.905 28.9168C144.059 28.9168 144.697 29.4721 144.697 30.5663V30.6231C144.629 30.6202 144.559 30.6183 144.49 30.6173C142.199 30.5807 140.527 31.1168 139.521 32.2081C138.493 33.3244 138.583 34.5784 138.597 34.717L138.606 34.8132H138.616C138.776 36.3752 140.14 37.378 142.123 37.378C143.215 37.378 144.224 37.0739 144.987 36.5186L144.995 37.2009H146.838V34.0289L146.798 34.0001C146.537 33.8095 146.083 33.5631 145.399 33.4765C145.185 33.4496 144.98 33.4361 144.792 33.44H144.696V33.7316C144.696 34.4023 143.925 35.3464 142.211 35.3464C140.945 35.3464 140.756 34.8142 140.756 34.4966V34.4639C140.766 34.3215 140.825 33.9731 141.14 33.6488C141.539 33.2359 142.439 32.7528 144.455 32.7836C145.915 32.8067 147.035 33.2148 147.785 33.9971C148.705 34.9576 148.878 36.2722 148.909 36.7871V37.2018H151.039V27.0623H151.04Z" fill="#7E7E7E"/>
|
||||
<path d="M89.8521 26.84C87.8514 26.84 86.3552 27.7793 85.7456 29.4162L85.5814 29.858L87.2973 31.1225L87.5917 30.3555C87.9797 29.3441 88.6986 28.8725 89.8521 28.8725C91.0062 28.8725 91.6444 29.4278 91.6444 30.522V30.779L89.4401 31.1678C86.8561 31.6249 85.5456 32.7297 85.5456 34.4504C85.5456 36.1712 86.9284 37.3337 89.0688 37.3337C90.1613 37.3337 91.1698 37.0296 91.9328 36.4743L91.9417 37.1566H93.7836V30.4162C93.7836 28.1767 92.3143 26.84 89.8521 26.84ZM91.6444 32.7846V33.6882C91.6444 34.359 90.873 35.3031 89.1583 35.3031C87.8926 35.3031 87.7045 34.7709 87.7045 34.4533C87.7045 34.1713 87.7045 33.5111 89.9464 33.0954L91.6444 32.7855V32.7846Z" fill="#7E7E7E"/>
|
||||
</g>
|
||||
<defs>
|
||||
<clipPath id="clip0_2080_14357">
|
||||
<rect width="143.291" height="24.4788" fill="white" transform="translate(18.3547 17.7606)"/>
|
||||
</clipPath>
|
||||
</defs>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 9.0 KiB |
@@ -0,0 +1,4 @@
|
||||
<svg width="180" height="60" viewBox="0 0 180 60" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M51.0081 17.9313H47.7635C45.0007 17.9346 42.352 19.0337 40.3987 20.9875C38.4453 22.9413 37.3468 25.5903 37.3442 28.353C37.3475 31.1154 38.4463 33.7637 40.3996 35.717C42.3528 37.6702 45.0011 38.769 47.7635 38.7723H51.0204C53.7832 38.7697 56.4321 37.6712 58.3859 35.7178C60.3397 33.7645 61.4389 31.1158 61.4421 28.353C61.4395 25.5877 60.339 22.9365 58.3824 20.9823C56.4259 19.0281 53.7734 17.9307 51.0081 17.9313ZM38.6337 28.353C38.6337 25.9336 39.5948 23.6133 41.3056 21.9025C43.0164 20.1918 45.3367 19.2307 47.7561 19.2307C48.2657 19.2307 48.7746 19.2726 49.2773 19.3564C51.4055 19.7084 53.3389 20.8065 54.7312 22.4541C56.1235 24.1016 56.8838 26.191 56.876 28.3481C56.8735 29.7333 56.3815 31.073 55.4868 32.1305C54.5922 33.1881 53.3525 33.8953 51.9869 34.1273C52.8966 33.4631 53.6364 32.5935 54.1463 31.5892C54.6562 30.5849 54.9216 29.4744 54.9209 28.3481C54.9236 26.7591 54.397 25.2145 53.4241 23.9581C52.4513 22.7017 51.0876 21.8052 49.5485 21.4102C48.9631 21.2589 48.3608 21.1826 47.7561 21.1833C45.859 21.1892 44.0416 21.9464 42.7015 23.2892C41.3615 24.632 40.6081 26.4511 40.6061 28.3481C40.6013 30.1086 41.0437 31.8414 41.892 33.384C42.7403 34.9266 43.9666 36.2284 45.4558 37.1672C43.5067 36.6554 41.7816 35.5135 40.5491 33.9193C39.3165 32.3252 38.6457 30.3681 38.6411 28.353H38.6337ZM49.3809 22.7243C50.6018 23.0759 51.6751 23.8153 52.4388 24.8307C53.2025 25.8461 53.6151 27.0825 53.6141 28.353C53.6145 29.6232 53.2017 30.859 52.4381 31.8739C51.6744 32.8888 50.6014 33.6278 49.3809 33.9793C48.1603 33.6278 47.0873 32.8888 46.3236 31.8739C45.56 30.859 45.1472 29.6232 45.1476 28.353C45.1467 27.0825 45.5592 25.8461 46.3229 24.8307C47.0866 23.8153 48.1599 23.0759 49.3809 22.7243ZM51.0081 37.4705H50.9711C50.4755 37.4678 49.9808 37.4257 49.4918 37.3448C47.4163 37.0006 45.5248 35.9462 44.1406 34.3619C42.7564 32.7776 41.9655 30.7617 41.903 28.6588V28.353C41.9045 26.9676 42.3962 25.6274 43.291 24.5697C44.1858 23.512 45.426 22.805 46.7921 22.5739C45.882 23.2378 45.1416 24.1073 44.6313 25.1116C44.121 26.1159 43.8552 27.2265 43.8556 28.353C43.8534 29.9416 44.3802 31.4857 45.3531 32.7416C46.3259 33.9975 47.6893 34.8936 49.228 35.2885C49.8131 35.4409 50.4156 35.5173 51.0204 35.5153C52.9196 35.5134 54.7405 34.7582 56.0836 33.4155C57.4268 32.0728 58.1826 30.2522 58.1852 28.353C58.1907 26.5925 57.7485 24.8594 56.9001 23.3167C56.0518 21.774 54.8252 20.4723 53.3355 19.5339C55.2841 20.0463 57.0083 21.1895 58.2388 22.7849C59.4694 24.3803 60.1371 26.3382 60.1379 28.353C60.1372 29.5512 59.9005 30.7375 59.4413 31.8442C58.9821 32.9509 58.3094 33.9562 57.4616 34.8029C56.6138 35.6496 55.6075 36.3209 54.5002 36.7786C53.3929 37.2363 52.2063 37.4714 51.0081 37.4705Z" fill="#7E7E7E"/>
|
||||
<path d="M82.3028 36.9552H67.4629V35.2811C69.2923 34.9729 69.6523 34.3294 69.6523 33.7106V23.2248C69.6523 22.0413 69.2923 21.5507 67.4629 21.4225V19.7484H76.7899V21.4225C74.9605 21.5507 74.6005 22.0413 74.6005 23.2248V34.3196C74.6005 34.936 74.7805 35.3748 76.3264 35.3748H78.0005C78.9522 35.3748 80.0863 34.9113 80.8851 32.3866H82.5592L82.3028 36.9552ZM83.6416 30.6435C83.6416 26.4719 86.6569 23.3801 90.9321 23.3801C95.4415 23.3801 98.0426 26.4201 98.0426 30.1282C98.0426 34.2777 94.978 37.3176 90.7792 37.3176C86.1934 37.3176 83.6416 34.3541 83.6416 30.6435ZM93.2003 31.5977C93.2003 27.5024 91.7827 25.0542 90.3921 25.0542C89.078 25.0542 88.5381 26.7036 88.5381 29.073C88.5381 33.2471 89.9804 35.6436 91.3438 35.6436C92.6357 35.6436 93.2003 34.0188 93.2003 31.5977ZM99.6403 30.6435C99.6403 26.4719 102.656 23.3801 106.931 23.3801C111.44 23.3801 114.041 26.4201 114.041 30.1282C114.041 34.2777 110.977 37.3176 106.775 37.3176C102.192 37.3176 99.6403 34.3541 99.6403 30.6435ZM109.199 31.5977C109.199 27.5024 107.781 25.0542 106.391 25.0542C105.077 25.0542 104.534 26.7036 104.534 29.073C104.534 33.2471 105.979 35.6436 107.342 35.6436C108.632 35.6436 109.199 34.0188 109.199 31.5977ZM129.944 29.9236C129.944 34.4305 127.215 37.3201 123.272 37.3201C122.477 37.3347 121.687 37.1853 120.952 36.8812V38.7871C120.952 39.7412 121.339 40.1283 123.092 40.3847V42.0687H114.668V40.3946C116.006 40.0864 116.162 39.7511 116.162 38.7969V27.4556C116.162 26.785 115.93 26.3979 115.079 26.0133L114.668 25.8333V24.4921L119.922 23.385H120.952V25.0345C121.278 24.5184 121.731 24.0954 122.269 23.8064C122.806 23.5173 123.409 23.3722 124.019 23.385C128.114 23.3801 129.944 26.536 129.944 29.9236ZM124.998 30.8506C124.998 28.1706 124.258 25.853 122.473 25.853C121.699 25.853 121.571 25.8012 120.952 26.2648V31.4423C120.952 34.5094 121.445 35.4118 122.782 35.4118C124.019 35.4118 124.998 33.8906 124.998 30.8506ZM142.395 24.8989L140.025 28.1459C138.891 25.8777 137.806 24.926 136.522 24.926C135.748 24.926 134.744 25.3895 134.744 26.1883C134.744 28.9004 142.806 27.14 142.654 33.1189C142.575 35.2811 140.489 37.3102 136.882 37.3102C133.738 37.3102 131.112 35.7372 130.471 35.1702L133.255 32.2609C134.801 34.682 136.063 35.7644 137.298 35.7644C137.942 35.7644 139.076 35.4808 139.103 34.2185C139.103 31.3067 131.142 33.6514 131.167 27.8082C131.167 25.0517 133.46 23.3702 137.118 23.3702C139.998 23.3801 141.855 24.3836 142.395 24.8989Z" fill="#7E7E7E"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 5.1 KiB |
|
After Width: | Height: | Size: 11 KiB |
@@ -0,0 +1,5 @@
|
||||
<svg width="180" height="60" viewBox="0 0 180 60" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M49.8868 14.959L41.5824 41.7018H38.1851L46.4605 14.959H49.8868ZM52.9067 14.959V41.7018H49.8868V14.959H52.9067ZM64.6084 14.959L56.333 41.7018H52.9357L61.2112 14.959H64.6084ZM67.6283 14.959V41.7018H64.6084V14.959H67.6283Z" fill="#7E7E7E"/>
|
||||
<path d="M95.0679 36.1558H90.1027V34.5588H91.206V29.971C91.206 28.8966 91.0028 28.1416 90.5963 27.6771C90.1898 27.2125 89.6381 27.0092 88.9412 27.0092C88.012 27.0092 87.3151 27.3286 86.8505 27.9965C86.386 28.6643 86.1537 29.3322 86.1246 30V34.5297H87.8668V36.1267H82.9016V34.5297H84.005V29.971C84.005 28.8676 83.8017 28.1126 83.3952 27.6771C82.9887 27.2415 82.437 27.0092 81.7691 27.0092C80.84 27.0092 80.1721 27.3286 79.6785 27.9674C79.2139 28.6062 78.9816 29.2741 78.9526 29.971V34.5588H80.9561V36.1558H75.0907V34.5588H76.8329V27.2125H75.0616V25.5864H78.9526V27.4448C79.301 26.835 79.7366 26.3414 80.3173 25.9349C80.898 25.5574 81.5949 25.3541 82.437 25.3541C83.279 25.3541 83.9759 25.5574 84.6147 25.9639C85.2535 26.3704 85.6891 26.9802 85.9214 27.8222C86.2408 27.0963 86.7054 26.5156 87.3442 26.051C87.983 25.5864 88.7379 25.3541 89.6381 25.3541C90.6544 25.3541 91.5255 25.6735 92.2223 26.3123C92.9192 26.9511 93.2967 27.9384 93.2967 29.2741V34.5588H95.0679V36.1558ZM107.409 36.1558H103.576V34.0651C103.227 34.7039 102.763 35.2556 102.153 35.6912C101.543 36.1558 100.759 36.3881 99.7428 36.3881C98.3491 36.3881 97.2166 35.9235 96.3746 34.9653C95.5325 34.0361 95.126 32.7294 95.126 31.1034C95.126 29.6516 95.5035 28.3159 96.2875 27.1254C97.0424 25.9349 98.291 25.3251 100.004 25.3251C101.717 25.3251 102.85 25.9639 103.576 27.2125V21.4922H101.079V19.8662H105.666V34.5588H107.409V36.1558ZM103.547 31.2776V30C103.518 29.1289 103.198 28.403 102.617 27.8803C102.037 27.3577 101.34 27.0673 100.527 27.0673C99.4815 27.0673 98.6975 27.4448 98.1458 28.1997C97.5941 28.9547 97.3328 29.8838 97.3328 30.9872C97.3328 32.1777 97.6232 33.1069 98.2039 33.7457C98.7846 34.3845 99.5105 34.7039 100.353 34.7039C101.282 34.7039 102.037 34.3265 102.617 33.6005C103.227 32.8456 103.518 32.0616 103.547 31.2776ZM115.8 36.1558V34.5588H117.542V29.971C117.542 28.8966 117.339 28.1416 116.904 27.6771C116.497 27.2125 115.916 27.0092 115.248 27.0092C114.348 27.0092 113.622 27.2996 113.1 27.8803C112.577 28.4611 112.287 29.1579 112.258 29.9129V34.5297H114V36.1267H108.396V34.5297H110.138V27.2125H108.338V25.5864H112.287V27.3867C113.042 26.051 114.261 25.3832 115.974 25.3832C117.02 25.3832 117.92 25.7026 118.646 26.3414C119.372 26.9802 119.72 27.9674 119.72 29.3031V34.5878H121.462V36.1558H115.8Z" fill="#7E7E7E"/>
|
||||
<path d="M123.06 42.4858H142.514V45.041H123.06V42.4858Z" fill="#7E7E7E"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 2.7 KiB |