Add Testimonials, News, and Footer sections
- Testimonials: scattered absolute-positioned cards with rotations over a giant background "Testimonials" text (desktop), stacked on mobile - News: bg-[#f3f3f3], rotated vertical heading, 3 article cards with vertical dividers, middle card offset 120px down - Footer: black bg, CTA + socials, hr, giant clipped H.Studio wordmark, "[ Coded By Claude ]" rotated label, legal links Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
@@ -0,0 +1,67 @@
|
||||
export function Footer() {
|
||||
return (
|
||||
<footer className="bg-black px-4 md:px-8 pt-12 flex flex-col gap-[120px]">
|
||||
{/* Top bar: CTA | social (center) | social (right) */}
|
||||
<div className="flex flex-col md:flex-row items-start md:items-start justify-between gap-8">
|
||||
{/* CTA */}
|
||||
<div className="flex flex-col gap-3">
|
||||
<p className="font-light italic text-white text-2xl tracking-[-0.04em] uppercase leading-[1.1]">
|
||||
Have a{" "}
|
||||
<strong className="font-black not-italic">project</strong>{" "}
|
||||
in mind?
|
||||
</p>
|
||||
<button className="self-start border border-white text-white text-sm font-medium tracking-[-0.04em] px-4 py-3 rounded-3xl">
|
||||
Let's talk
|
||||
</button>
|
||||
</div>
|
||||
|
||||
{/* Center social */}
|
||||
<div className="text-white text-[18px] tracking-[-0.04em] uppercase leading-[1.1] text-center">
|
||||
<p>Facebook</p>
|
||||
<p>Instagram</p>
|
||||
</div>
|
||||
|
||||
{/* Right social */}
|
||||
<div className="text-white text-[18px] tracking-[-0.04em] uppercase leading-[1.1] text-right">
|
||||
<p>x.com</p>
|
||||
<p>Linkedin</p>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
{/* Divider */}
|
||||
<hr className="border-t border-white/30 -mt-[96px]" />
|
||||
|
||||
{/* Bottom: big H.Studio + legal links */}
|
||||
<div className="flex items-end justify-between pb-8">
|
||||
{/* H.Studio overflowing text + "[ Coded By Claude ]" */}
|
||||
<div className="relative overflow-hidden h-[219px] flex-1 max-w-[1093px]">
|
||||
{/* "[ Coded By Claude ]" rotated vertical */}
|
||||
<div className="absolute left-0 top-1/2 -translate-y-1/2 flex items-center justify-center w-4 h-[160px]">
|
||||
<div className="-rotate-90 flex-none">
|
||||
<span className="font-mono text-white text-sm uppercase whitespace-nowrap">
|
||||
[ Coded By Claude ]
|
||||
</span>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
{/* Giant H.Studio — clipped by overflow-hidden */}
|
||||
<div className="absolute inset-0 flex items-center justify-center">
|
||||
<p className="font-semibold text-white capitalize whitespace-nowrap leading-[0.8] tracking-[-0.06em] text-[clamp(120px,20vw,290px)]">
|
||||
H.Studio
|
||||
</p>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
{/* Legal links */}
|
||||
<div className="flex gap-8 pb-8 shrink-0">
|
||||
<a href="#" className="text-white text-xs tracking-[-0.04em] uppercase underline">
|
||||
licences
|
||||
</a>
|
||||
<a href="#" className="text-white text-xs tracking-[-0.04em] uppercase underline">
|
||||
Privacy policy
|
||||
</a>
|
||||
</div>
|
||||
</div>
|
||||
</footer>
|
||||
);
|
||||
}
|
||||
@@ -0,0 +1,130 @@
|
||||
import Image from "next/image";
|
||||
|
||||
const articles = [
|
||||
{ id: 1, image: "/news-1.jpg", offset: false },
|
||||
{ id: 2, image: "/news-2.jpg", offset: true },
|
||||
{ id: 3, image: "/news-3.jpg", offset: false },
|
||||
];
|
||||
|
||||
function ReadMore() {
|
||||
return (
|
||||
<div className="border-b border-black flex items-center gap-2 py-1 w-fit">
|
||||
<span className="font-medium text-sm text-black tracking-[-0.04em]">
|
||||
Read more
|
||||
</span>
|
||||
{/* eslint-disable-next-line @next/next/no-img-element */}
|
||||
<img
|
||||
src="/arrow-diagonal.svg"
|
||||
alt=""
|
||||
className="size-[18px] -rotate-90 shrink-0"
|
||||
/>
|
||||
</div>
|
||||
);
|
||||
}
|
||||
|
||||
export function News() {
|
||||
return (
|
||||
<section className="bg-[#f3f3f3] px-4 md:px-8 py-[120px]">
|
||||
{/* Mobile */}
|
||||
<div className="md:hidden flex flex-col gap-10">
|
||||
<h2 className="font-light text-black text-[clamp(32px,9vw,64px)] tracking-[-0.08em] uppercase leading-[0.86]">
|
||||
Keep up with my latest
|
||||
<br />
|
||||
news & achievements
|
||||
</h2>
|
||||
<div className="flex flex-col gap-12">
|
||||
{articles.map((a) => (
|
||||
<div key={a.id} className="flex flex-col gap-4">
|
||||
<div className="relative w-full h-[260px] overflow-hidden">
|
||||
<Image
|
||||
src={a.image}
|
||||
alt=""
|
||||
fill
|
||||
className="object-cover"
|
||||
/>
|
||||
</div>
|
||||
<p className="text-[#1f1f1f] text-sm tracking-[-0.04em] leading-[1.3]">
|
||||
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do
|
||||
eiusmod tempor incididunt ut labore et dolore magna aliqua.
|
||||
</p>
|
||||
<ReadMore />
|
||||
</div>
|
||||
))}
|
||||
</div>
|
||||
</div>
|
||||
|
||||
{/* Desktop */}
|
||||
<div className="hidden md:flex items-end justify-between gap-8">
|
||||
{/* Rotated vertical heading */}
|
||||
<div className="flex items-center justify-center shrink-0 w-[110px] h-[700px]">
|
||||
<div className="-rotate-90 flex-none">
|
||||
<div className="font-light text-black text-[64px] tracking-[-0.08em] uppercase whitespace-nowrap leading-[0.86]">
|
||||
<p>Keep up with my latest</p>
|
||||
<p>news & achievements</p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
{/* 3 article cards separated by thin vertical lines */}
|
||||
<div className="flex-1 flex items-start">
|
||||
{/* Card 1 */}
|
||||
<div className="flex-1 flex flex-col gap-4 h-[581px]">
|
||||
<div className="relative flex-1 overflow-hidden">
|
||||
<Image
|
||||
src="/news-1.jpg"
|
||||
alt=""
|
||||
fill
|
||||
className="object-cover"
|
||||
/>
|
||||
</div>
|
||||
<p className="text-[#1f1f1f] text-sm tracking-[-0.04em] leading-[1.3]">
|
||||
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do
|
||||
eiusmod tempor incididunt ut labore et dolore magna aliqua.
|
||||
</p>
|
||||
<ReadMore />
|
||||
</div>
|
||||
|
||||
{/* Divider */}
|
||||
<div className="w-px self-stretch bg-[#1f1f1f] mx-8 shrink-0" />
|
||||
|
||||
{/* Card 2 — offset 120px down */}
|
||||
<div className="flex-1 flex flex-col gap-4 pt-[120px]">
|
||||
<div className="relative h-[469px] overflow-hidden">
|
||||
<Image
|
||||
src="/news-2.jpg"
|
||||
alt=""
|
||||
fill
|
||||
className="object-cover"
|
||||
/>
|
||||
</div>
|
||||
<p className="text-[#1f1f1f] text-sm tracking-[-0.04em] leading-[1.3]">
|
||||
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do
|
||||
eiusmod tempor incididunt ut labore et dolore magna aliqua.
|
||||
</p>
|
||||
<ReadMore />
|
||||
</div>
|
||||
|
||||
{/* Divider */}
|
||||
<div className="w-px self-stretch bg-[#1f1f1f] mx-8 shrink-0" />
|
||||
|
||||
{/* Card 3 */}
|
||||
<div className="flex-1 flex flex-col gap-4 h-[581px]">
|
||||
<div className="relative flex-1 overflow-hidden">
|
||||
<Image
|
||||
src="/news-3.jpg"
|
||||
alt=""
|
||||
fill
|
||||
className="object-cover"
|
||||
/>
|
||||
</div>
|
||||
<p className="text-[#1f1f1f] text-sm tracking-[-0.04em] leading-[1.3]">
|
||||
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do
|
||||
eiusmod tempor incididunt ut labore et dolore magna aliqua.
|
||||
</p>
|
||||
<ReadMore />
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
);
|
||||
}
|
||||
@@ -0,0 +1,137 @@
|
||||
const testimonials = [
|
||||
{
|
||||
id: "marko",
|
||||
name: "Marko Stojković",
|
||||
logo: "/logo-marko.svg",
|
||||
logoW: 143,
|
||||
logoH: 19,
|
||||
text: "A brilliant creative partner who transformed our vision into a unique, high-impact brand identity. Their ability to craft everything from custom mascots to polished logos is truly impressive.",
|
||||
rotation: "-6.85deg",
|
||||
left: 102,
|
||||
top: 142,
|
||||
},
|
||||
{
|
||||
id: "lukas",
|
||||
name: "Lukas Weber",
|
||||
logo: "/logo-lukas.svg",
|
||||
logoW: 138,
|
||||
logoH: 19,
|
||||
text: "Professional, precise, and incredibly fast at handling complex product visualizations and templates.",
|
||||
rotation: "2.9deg",
|
||||
left: 676,
|
||||
top: 272,
|
||||
},
|
||||
{
|
||||
id: "sarah",
|
||||
name: "Sarah Jenkins",
|
||||
logo: "/logo-sarah.svg",
|
||||
logoW: 109,
|
||||
logoH: 31,
|
||||
text: "A strategic partner who balances stunning aesthetics with high-performance UX for complex platforms. They don't just make things look good; they solve business problems through visual clarity.",
|
||||
rotation: "2.23deg",
|
||||
left: 305,
|
||||
top: 553,
|
||||
},
|
||||
{
|
||||
id: "sofia",
|
||||
name: "Sofia Martínez",
|
||||
logo: "/logo-sofia.svg",
|
||||
logoW: 81,
|
||||
logoH: 36,
|
||||
text: "An incredibly versatile designer who delivers consistent quality across a wide range of styles and formats.",
|
||||
rotation: "-4.15deg",
|
||||
left: 987,
|
||||
top: 546,
|
||||
},
|
||||
];
|
||||
|
||||
function Card({
|
||||
logo,
|
||||
logoW,
|
||||
logoH,
|
||||
name,
|
||||
text,
|
||||
}: (typeof testimonials)[number]) {
|
||||
return (
|
||||
<div className="bg-[#f1f1f1] border border-[#ddd] rounded-[4px] p-6 w-[353px] flex flex-col gap-4">
|
||||
{/* eslint-disable-next-line @next/next/no-img-element */}
|
||||
<img
|
||||
src={logo}
|
||||
alt={name}
|
||||
style={{ width: logoW, height: logoH }}
|
||||
className="object-contain object-left shrink-0"
|
||||
/>
|
||||
<p className="text-[#1f1f1f] text-[18px] tracking-[-0.04em] leading-[1.3]">
|
||||
{text}
|
||||
</p>
|
||||
<p className="font-black text-black text-[16px] tracking-[-0.04em] uppercase">
|
||||
{name}
|
||||
</p>
|
||||
</div>
|
||||
);
|
||||
}
|
||||
|
||||
export function Testimonials() {
|
||||
return (
|
||||
<section className="bg-white overflow-hidden">
|
||||
{/* ── Mobile: simple stacked column ── */}
|
||||
<div className="md:hidden px-4 py-16 flex flex-col gap-5">
|
||||
<h2 className="font-medium text-black text-[clamp(40px,13vw,80px)] tracking-[-0.07em] leading-[1.1] capitalize">
|
||||
Testimonials
|
||||
</h2>
|
||||
{testimonials.map((t) => (
|
||||
<div key={t.id} className="w-full">
|
||||
{/* on mobile, reset width to full */}
|
||||
<div
|
||||
className="bg-[#f1f1f1] border border-[#ddd] rounded-[4px] p-6 flex flex-col gap-4"
|
||||
style={{ transform: `rotate(${t.rotation})` }}
|
||||
>
|
||||
{/* eslint-disable-next-line @next/next/no-img-element */}
|
||||
<img
|
||||
src={t.logo}
|
||||
alt={t.name}
|
||||
style={{ width: t.logoW * 0.7, height: t.logoH * 0.7 }}
|
||||
className="object-contain object-left shrink-0"
|
||||
/>
|
||||
<p className="text-[#1f1f1f] text-base tracking-[-0.04em] leading-[1.3]">
|
||||
{t.text}
|
||||
</p>
|
||||
<p className="font-black text-black text-sm tracking-[-0.04em] uppercase">
|
||||
{t.name}
|
||||
</p>
|
||||
</div>
|
||||
</div>
|
||||
))}
|
||||
</div>
|
||||
|
||||
{/* ── Desktop: scattered absolute cards over massive background text ── */}
|
||||
<div className="hidden md:block relative min-h-[987px]">
|
||||
{/* Background "Testimonials" — in flow so it drives section height,
|
||||
centered vertically with absolute inset trick */}
|
||||
<div
|
||||
aria-hidden
|
||||
className="absolute inset-0 flex items-center justify-center pointer-events-none select-none"
|
||||
>
|
||||
<p className="font-medium text-black text-[198px] tracking-[-13.86px] leading-[1.1] capitalize whitespace-nowrap">
|
||||
Testimonials
|
||||
</p>
|
||||
</div>
|
||||
|
||||
{/* Cards — z-10 so they sit above the background text */}
|
||||
{testimonials.map((t) => (
|
||||
<div
|
||||
key={t.id}
|
||||
className="absolute z-10"
|
||||
style={{
|
||||
left: t.left,
|
||||
top: t.top,
|
||||
transform: `rotate(${t.rotation})`,
|
||||
}}
|
||||
>
|
||||
<Card {...t} />
|
||||
</div>
|
||||
))}
|
||||
</div>
|
||||
</section>
|
||||
);
|
||||
}
|
||||
@@ -4,6 +4,9 @@ import { About } from "./components/About";
|
||||
import { FullbleedImage } from "./components/FullbleedImage";
|
||||
import { Services } from "./components/Services";
|
||||
import { Portfolio } from "./components/Portfolio";
|
||||
import { Testimonials } from "./components/Testimonials";
|
||||
import { News } from "./components/News";
|
||||
import { Footer } from "./components/Footer";
|
||||
|
||||
export default function Home() {
|
||||
return (
|
||||
@@ -14,6 +17,9 @@ export default function Home() {
|
||||
<FullbleedImage />
|
||||
<Services />
|
||||
<Portfolio />
|
||||
<Testimonials />
|
||||
<News />
|
||||
<Footer />
|
||||
</main>
|
||||
);
|
||||
}
|
||||
|
||||
@@ -0,0 +1,20 @@
|
||||
<svg preserveAspectRatio="none" width="100%" height="100%" overflow="visible" style="display: block;" viewBox="0 0 137.733 19.2634" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<g id="Frame" clip-path="url(#clip0_0_41)">
|
||||
<path id="Vector" d="M137.733 3.61189C137.733 4.27681 137.194 4.81585 136.529 4.81585C135.864 4.81585 135.325 4.27681 135.325 3.61189C135.325 2.94696 135.864 2.40792 136.529 2.40792C137.194 2.40792 137.733 2.94696 137.733 3.61189Z" fill="var(--fill-0, #A7A7A7)"/>
|
||||
<path id="Vector_2" d="M103.047 11.2848C103.089 11.0849 102.996 10.9077 102.814 10.8455L96.0766 8.53204C95.1674 8.21983 94.6964 7.33039 94.9102 6.32744C95.1828 5.04619 96.4672 4.00747 97.779 4.00747H106.498L106.103 5.86503H97.3836C97.1221 5.86503 96.8664 6.07206 96.812 6.32744C96.7696 6.5273 96.863 6.70448 97.0446 6.76675L103.782 9.08018C104.692 9.39244 105.162 10.2818 104.949 11.2848C104.676 12.5661 103.391 13.6048 102.08 13.6048H93.361L93.7563 11.7472H102.475C102.736 11.7472 102.993 11.5402 103.047 11.2848Z" fill="var(--fill-0, #A7A7A7)"/>
|
||||
<path id="Vector_3" d="M82.1242 3.85268L80.0649 13.5274H78.1626L80.2224 3.85268H82.1242Z" fill="var(--fill-0, #A7A7A7)"/>
|
||||
<path id="Vector_4" d="M132.522 3.85268C134.098 3.85268 135.11 5.10017 134.782 6.63898L133.332 13.45H131.43L132.88 6.63898C132.99 6.12605 132.652 5.7102 132.127 5.7102H128.64L126.993 13.45H125.091L126.739 5.7102H122.301L120.653 13.45H118.752L120.399 5.7102H122.301L122.696 3.85268H132.522Z" fill="var(--fill-0, #A7A7A7)"/>
|
||||
<path id="Vector_5" fill-rule="evenodd" clip-rule="evenodd" d="M50.8693 4.00747C52.445 4.00747 53.4569 5.25496 53.1294 6.79376L52.0747 11.7472H50.1729L49.7776 13.6048H42.4871C40.9362 13.6048 39.9317 12.396 40.2131 10.8904L40.2275 10.8185L41.282 5.86503H43.1838L43.5792 4.00747H50.8693ZM42.1294 10.8185L42.1204 10.8662C42.0414 11.357 42.3738 11.7472 42.8826 11.7472H50.1729L51.2271 6.79376C51.3364 6.28083 50.9993 5.86503 50.4739 5.86503H43.1838L42.1294 10.8185Z" fill="var(--fill-0, #A7A7A7)"/>
|
||||
<path id="Vector_6" fill-rule="evenodd" clip-rule="evenodd" d="M76.2271 4.00747C77.8029 4.00747 78.8142 5.25496 78.4867 6.79376L77.4326 11.7472H75.5308L75.1354 13.6048H67.8447C66.294 13.6048 65.2894 12.396 65.5706 10.8904L65.5851 10.8185L66.6398 5.86503H68.5415L68.9369 4.00747H76.2271ZM67.4869 10.8185L67.4782 10.8662C67.3992 11.357 67.7315 11.7472 68.2401 11.7472H75.5308L76.585 6.79376C76.6943 6.28083 76.3572 5.86503 75.8318 5.86503H68.5415L67.4869 10.8185Z" fill="var(--fill-0, #A7A7A7)"/>
|
||||
<path id="Vector_7" d="M85.658 5.86503C85.1326 5.86503 84.6183 6.28083 84.5094 6.79376L82.4006 16.7007H80.4988L82.6077 6.79376C82.9351 5.25496 84.4777 4.00747 86.0534 4.00747H92.3925L91.9971 5.86503H93.8989L92.8447 10.8185C92.5172 12.3573 90.9742 13.6048 89.399 13.6048H84.9612L85.3565 11.7472H89.7944C90.3193 11.7472 90.8336 11.3314 90.9429 10.8185L91.9971 5.86503H85.658Z" fill="var(--fill-0, #A7A7A7)"/>
|
||||
<path id="Vector_8" d="M55.5142 9.7349C55.4054 10.2478 55.7425 10.6637 56.2674 10.6637H60.7052L60.3098 12.5212H55.872C54.2967 12.5212 53.2849 11.2737 53.6124 9.7349L54.4032 6.01981H56.305L56.7003 4.16227H63.0399C64.6157 4.16227 65.627 5.40974 65.2995 6.94859L63.784 14.0692C63.4565 15.608 61.9135 16.8555 60.3377 16.8555H54.2361L54.6319 14.9979H60.7336C61.2585 14.9979 61.7729 14.5821 61.8822 14.0692L63.3977 6.94859C63.5071 6.43566 63.1699 6.01981 62.6445 6.01981H56.305L55.5142 9.7349Z" fill="var(--fill-0, #A7A7A7)"/>
|
||||
<path id="Vector_9" d="M31.3401 10.8185L32.7899 4.00747H30.8881L29.4383 10.8185C29.1107 12.3573 30.1224 13.6048 31.6979 13.6048H38.525L38.9204 11.7472H32.0933C31.5681 11.7472 31.2309 11.3314 31.3401 10.8185Z" fill="var(--fill-0, #A7A7A7)"/>
|
||||
<path id="Vector_10" d="M108.026 10.9732L108.018 11.021C107.939 11.5118 108.271 11.902 108.779 11.902H116.07L117.718 4.16227H119.619L117.972 11.902H116.07L115.675 13.7595H108.384C106.833 13.7595 105.829 12.5508 106.11 11.0452L106.124 10.9732L107.574 4.16227H109.476L108.026 10.9732Z" fill="var(--fill-0, #A7A7A7)"/>
|
||||
<path id="Vector_11" fill-rule="evenodd" clip-rule="evenodd" d="M8.18694 0C8.45292 0 8.66852 0.215613 8.66852 0.481585V4.04362C8.66852 4.15087 8.79821 4.20457 8.87406 4.12874L12.7206 0.282179C12.9012 0.101584 13.1462 3.84275e-05 13.4016 0H17.6192C17.7469 1.94569e-05 17.8694 0.0507918 17.9597 0.141089L19.4045 1.58584C19.5925 1.7739 19.5925 2.07877 19.4045 2.26683L17.5426 4.12874C17.4667 4.20459 17.5204 4.33425 17.6277 4.33426H21.4719C21.5996 4.33428 21.7221 4.38505 21.8124 4.47535L23.2572 5.92012C23.4452 6.10818 23.4452 6.41302 23.2572 6.60108L21.36 8.49828C21.266 8.59229 21.266 8.74476 21.36 8.83876L22.9166 10.3954C23.3527 10.8315 23.5976 11.4229 23.5976 12.0396C23.5976 12.6563 23.3527 13.2477 22.9166 13.6838L17.6192 18.9812C17.4386 19.1618 17.1936 19.2633 16.9382 19.2634H15.4107C15.1447 19.2634 14.9291 19.0478 14.9291 18.7818V15.2198C14.9291 15.1125 14.7994 15.0588 14.7236 15.1347L10.877 18.9812C10.6964 19.1618 10.4514 19.2633 10.1961 19.2634H5.97844C5.85072 19.2634 5.72821 19.2126 5.63791 19.1223L4.19317 17.6775C4.00515 17.4895 4.00515 17.1846 4.19317 16.9966L6.05506 15.1347C6.13091 15.0588 6.07721 14.9291 5.96996 14.9291H2.12574C1.99805 14.9291 1.87555 14.8783 1.78525 14.788L0.340495 13.3433C0.152473 13.1552 0.152473 12.8504 0.340495 12.6623L2.23767 10.7651C2.33169 10.6711 2.33169 10.5186 2.23767 10.4246L0.68099 8.86795C0.244959 8.43187 0 7.84044 0 7.22377C0 6.6071 0.244959 6.01567 0.68099 5.57959L5.97844 0.282179C6.15903 0.101584 6.40402 3.85491e-05 6.6594 0H8.18694ZM9.66603 4.33426C9.0274 4.33426 8.41463 4.58813 7.9631 5.03969L2.81897 10.1838C2.66731 10.3355 2.77472 10.5948 2.98921 10.5949H10.0136C10.228 10.5949 10.3354 10.8542 10.1838 11.0059L6.67163 14.5181C6.51998 14.6698 6.62738 14.9291 6.84187 14.9291H13.9316C14.5702 14.9291 15.183 14.6752 15.6346 14.2237L20.7787 9.07956C20.9209 8.93739 20.8354 8.70045 20.6475 8.67137L20.6085 8.66852H13.5841C13.3696 8.66852 13.2622 8.40919 13.4138 8.25749L16.926 4.7453C17.0777 4.59362 16.9703 4.33429 16.7558 4.33426H9.66603Z" fill="var(--fill-0, #A7A7A7)"/>
|
||||
</g>
|
||||
<defs>
|
||||
<clipPath id="clip0_0_41">
|
||||
<rect width="137.733" height="19.2634" fill="white"/>
|
||||
</clipPath>
|
||||
</defs>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 6.0 KiB |
@@ -0,0 +1,19 @@
|
||||
<svg preserveAspectRatio="none" width="100%" height="100%" overflow="visible" style="display: block;" viewBox="0 0 142.749 18.97" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<g id="Frame" clip-path="url(#clip0_0_30)">
|
||||
<path id="Vector" d="M9.485 0C4.5085 0 0.47425 4.03425 0.47425 9.01075V9.56652L1.897 10.9893V9.01075C1.897 4.81999 5.29424 1.42275 9.485 1.42275C13.6758 1.42275 17.073 4.81999 17.073 9.01075V10.9893L18.4957 9.56652V9.01075C18.4957 4.03425 14.4615 0 9.485 0ZM9.485 4.7425C7.12769 4.7425 5.21675 6.65344 5.21675 9.01075V14.7254C5.21675 14.9741 5.01486 15.176 4.76612 15.176C4.64675 15.1759 4.53236 15.1284 4.44795 15.044L0 10.5961V12.6079L3.44202 16.0499C3.79325 16.4012 4.26941 16.5987 4.76612 16.5987C5.80065 16.5987 6.6395 15.7599 6.6395 14.7254V9.01075C6.6395 7.43923 7.91348 6.16525 9.485 6.16525C11.0565 6.16525 12.3305 7.43923 12.3305 9.01075V14.7254C12.3305 15.7599 13.1694 16.5987 14.2039 16.5987C14.7006 16.5987 15.1768 16.4012 15.528 16.0499L16.4596 15.1184L17.8824 13.6956L18.97 12.6079V10.5961L17.9641 11.602L16.8764 12.6897L15.4536 14.1124L14.5221 15.044C14.4376 15.1284 14.3232 15.1759 14.2039 15.176C13.9551 15.176 13.7532 14.9741 13.7532 14.7254V9.01075C13.7532 6.65344 11.8423 4.7425 9.485 4.7425ZM9.485 7.11375C8.43733 7.11375 7.588 7.96308 7.588 9.01075V14.7254C7.588 16.2838 6.3245 17.5472 4.76612 17.5472C4.01785 17.5472 3.30005 17.2501 2.77093 16.721L0 13.9496V15.9614L1.76501 17.7269C2.56094 18.5229 3.64051 18.9699 4.76612 18.97C7.11024 18.97 9.01075 17.0695 9.01075 14.7254V9.01075C9.01075 8.74882 9.22307 8.5365 9.485 8.5365C9.74693 8.5365 9.95925 8.74882 9.95925 9.01075V14.7254C9.95925 17.0695 11.8598 18.97 14.2039 18.97C15.3295 18.9699 16.409 18.5229 17.205 17.7269L18.97 15.9614V13.9496L16.199 16.721C15.6699 17.2501 14.9522 17.5472 14.2039 17.5472C12.6455 17.5472 11.382 16.2838 11.382 14.7254V9.01075C11.382 7.96308 10.5327 7.11375 9.485 7.11375ZM9.485 2.37125C5.8181 2.37125 2.8455 5.34385 2.8455 9.01075V11.9378L4.26825 13.3605V9.01075C4.26825 6.12963 6.60388 3.794 9.485 3.794C12.3661 3.794 14.7017 6.12963 14.7017 9.01075V13.3605L16.1245 11.9378V9.01075C16.1245 5.34385 13.1519 2.37125 9.485 2.37125Z" fill="var(--fill-0, #A7A7A7)"/>
|
||||
<path id="Vector_2" d="M125.667 5.21675H129.082C130.315 5.21675 131.491 5.55821 132.496 6.14628V5.21675H135.911C139.686 5.21675 142.74 8.28989 142.74 12.0459V14.3223H140.464V12.0459C140.464 9.54191 138.415 7.49315 135.911 7.49315H134.773V8.27092C135.494 9.35221 135.911 10.6611 135.911 12.0459V14.3223H133.635V12.0459C133.635 9.54191 131.586 7.49315 129.082 7.49315H127.944V14.3223H125.667V5.21675Z" fill="var(--fill-0, #A7A7A7)"/>
|
||||
<path id="Vector_3" d="M124.149 14.3413H117.319C113.544 14.3413 110.49 11.2871 110.49 7.51207V5.23567H112.767V7.51207C112.767 10.0161 114.796 12.0649 117.319 12.0649H121.872V5.23567H124.149V14.3413Z" fill="var(--fill-0, #A7A7A7)"/>
|
||||
<path id="Vector_4" d="M109.197 5.23567V7.51207H101.229C99.9771 7.51207 98.9527 8.53645 98.9527 9.78847C98.9527 11.0405 99.9771 12.0649 101.229 12.0649H101.476C102.045 12.0649 102.614 11.8752 103.05 11.5147L104.89 10.0351L104.966 9.99714L105.687 9.48495C106.787 8.70718 108.305 8.83997 109.253 9.80744C110.43 10.9646 110.316 12.8995 109.026 13.9429L108.552 14.3413H104.928L107.603 12.1787C107.85 11.989 107.85 11.6286 107.641 11.4009C107.47 11.2302 107.186 11.2112 106.996 11.344L106.294 11.8372L104.473 13.2789C103.619 13.9619 102.576 14.3413 101.476 14.3413H101.229C98.7251 14.3413 96.6763 12.2925 96.6763 9.78847C96.6763 7.26546 98.7251 5.23567 101.229 5.23567H109.197Z" fill="var(--fill-0, #A7A7A7)"/>
|
||||
<path id="Vector_5" d="M82.6646 5.21675H91.7702C94.2742 5.21675 96.323 7.26551 96.323 9.76955C96.323 12.2926 94.2742 14.3223 91.7702 14.3223H90.9735C89.7594 14.3223 88.5643 13.924 87.6158 13.1652L84.941 11.0026V14.3223H82.6646V5.21675ZM84.941 7.51212V8.10019L89.0385 11.382C89.5887 11.8183 90.2716 12.0649 90.9735 12.0649H91.7702C93.0222 12.0649 94.0466 11.0405 94.0466 9.78852C94.0466 8.51753 93.0222 7.51212 91.7702 7.51212H84.941Z" fill="var(--fill-0, #A7A7A7)"/>
|
||||
<path id="Vector_6" d="M81.5307 14.3223H79.2543V5.21675H81.5307V14.3223Z" fill="var(--fill-0, #A7A7A7)"/>
|
||||
<path id="Vector_7" d="M72.7011 12.0459C74.5981 12.0459 76.1157 10.5283 76.1157 8.63135V7.49315H69.2865C68.0345 7.49315 67.0101 8.51753 67.0101 9.76955C67.0101 11.0405 68.0345 12.0459 69.2865 12.0459H72.7011ZM78.3921 5.21675V8.63135C78.3921 11.7804 75.8501 14.3223 72.7011 14.3223H69.2865C66.7825 14.3223 64.7337 12.2926 64.7337 9.76955C64.7337 7.26551 66.7825 5.21675 69.2865 5.21675H78.3921Z" fill="var(--fill-0, #A7A7A7)"/>
|
||||
<path id="Vector_8" d="M63.9777 5.21675V12.0649C63.9777 12.8996 63.6742 13.7153 63.1051 14.3223H59.4439L61.2461 12.9755C61.5306 12.7478 61.7013 12.4064 61.7013 12.0649V11.0026L59.0266 13.1652C58.0781 13.924 56.883 14.3223 55.6689 14.3223H54.8721C52.3681 14.3223 50.3193 12.2926 50.3193 9.76955C50.3193 7.26551 52.3681 5.21675 54.8721 5.21675H63.9777ZM54.8721 7.49315C53.6201 7.49315 52.5957 8.51753 52.5957 9.76955C52.5957 11.0405 53.6201 12.0459 54.8721 12.0459H55.6689C56.3708 12.0459 57.0537 11.8183 57.6038 11.382L61.7013 8.10019V7.49315H54.8721Z" fill="var(--fill-0, #A7A7A7)"/>
|
||||
<path id="Vector_9" d="M44.3538 12.0459C46.2508 12.0459 47.7683 10.5283 47.7683 8.63135V7.49315H40.9392C39.6872 7.49315 38.6628 8.51753 38.6628 9.76955C38.6628 11.0405 39.6872 12.0459 40.9392 12.0459H44.3538ZM50.0447 5.21675V8.63135C50.0447 11.7804 47.5028 14.3223 44.3538 14.3223H40.9392C38.4352 14.3223 36.3864 12.2926 36.3864 9.76955C36.3864 7.26551 38.4352 5.21675 40.9392 5.21675H50.0447Z" fill="var(--fill-0, #A7A7A7)"/>
|
||||
<path id="Vector_10" d="M26.7856 5.21675V8.84002C26.7856 9.14354 26.8995 9.42809 27.1081 9.63676L28.5309 11.0595C29.1759 11.7045 30.0295 12.0649 30.9401 12.0649H35.8912V14.3413H30.9401C29.4414 14.3413 27.9807 13.7343 26.9184 12.672L25.4957 11.2492C24.8697 10.6042 24.5092 9.73161 24.5092 8.84002V5.21675H26.7856Z" fill="var(--fill-0, #A7A7A7)"/>
|
||||
</g>
|
||||
<defs>
|
||||
<clipPath id="clip0_0_30">
|
||||
<rect width="142.749" height="18.97" fill="white"/>
|
||||
</clipPath>
|
||||
</defs>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 5.9 KiB |
@@ -0,0 +1,29 @@
|
||||
<svg preserveAspectRatio="none" width="100%" height="100%" overflow="visible" style="display: block;" viewBox="0 0 108.537 30.7477" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<g id="Frame" clip-path="url(#clip0_0_9)">
|
||||
<path id="Vector" d="M93.9647 11.8738V11.7266H93.9795C94.3327 11.7266 94.6173 11.6187 94.833 11.4028C95.0488 11.187 95.1568 10.9025 95.1568 10.5493V5.72212C95.1568 5.34929 95.0782 5.05986 94.9213 4.85383C94.7742 4.64779 94.4554 4.54477 93.9647 4.54477V4.39761H95.4217C95.8241 4.39761 96.1331 4.378 96.3489 4.33874C96.5746 4.2995 96.7412 4.25044 96.8493 4.19157C96.9573 4.1229 97.0356 4.0542 97.0847 3.98553H97.2319L97.2466 5.89872C97.5018 5.38855 97.8892 4.97648 98.4092 4.66251C98.9293 4.34857 99.4786 4.19157 100.058 4.19157C100.617 4.19157 101.083 4.34857 101.456 4.66251C101.829 4.97648 102.069 5.39835 102.177 5.92816C102.451 5.39835 102.844 4.97648 103.354 4.66251C103.874 4.34857 104.433 4.19157 105.032 4.19157C105.689 4.19157 106.214 4.40741 106.607 4.83911C107.009 5.27081 107.21 5.83986 107.21 6.54627V10.5493C107.21 10.9025 107.318 11.187 107.534 11.4028C107.749 11.6187 108.034 11.7266 108.387 11.7266H108.402V11.8738H103.913V11.7266H103.928C104.281 11.7266 104.566 11.6187 104.782 11.4028C104.997 11.187 105.105 10.9025 105.105 10.5493V6.3991C105.105 5.90855 105.007 5.51609 104.811 5.22175C104.615 4.92741 104.36 4.78024 104.046 4.78024C103.742 4.78024 103.423 4.91761 103.089 5.19232C102.755 5.45722 102.466 5.80554 102.221 6.23721C102.231 6.25684 102.236 6.28136 102.236 6.3108C102.236 6.34023 102.236 6.36478 102.236 6.38438V10.5493C102.236 10.9025 102.344 11.187 102.559 11.4028C102.775 11.6187 103.06 11.7266 103.413 11.7266H103.428V11.8738H98.939V11.7266H98.9538C99.307 11.7266 99.5916 11.6187 99.8073 11.4028C100.023 11.187 100.131 10.9025 100.131 10.5493V6.3991C100.131 5.90855 100.033 5.51609 99.8368 5.22175C99.6504 4.92741 99.4003 4.78024 99.0862 4.78024C98.7822 4.78024 98.4631 4.9127 98.1296 5.1776C97.8058 5.4327 97.5212 5.78099 97.276 6.2225V10.5493C97.276 10.9025 97.384 11.187 97.5998 11.4028C97.8156 11.6187 98.1002 11.7266 98.4534 11.7266H98.4681V11.8738H93.9647Z" fill="var(--fill-0, #A7A7A7)"/>
|
||||
<path id="Vector_2" d="M90.8697 12.2858L90.855 10.3874C90.5998 10.8877 90.2122 11.2949 89.6924 11.6089C89.1723 11.9228 88.6228 12.0798 88.0441 12.0798C87.3866 12.0798 86.8568 11.864 86.4547 11.4323C86.0621 11.0006 85.866 10.4315 85.866 9.72511V5.72212C85.866 5.34929 85.7924 5.05986 85.6453 4.85383C85.4981 4.64779 85.1743 4.54477 84.6739 4.54477V4.39761H86.1603C86.6607 4.39761 87.0434 4.34365 87.3083 4.23572C87.5534 4.12779 87.7251 3.99534 87.8234 3.83837H87.9705V9.87228C87.9705 10.3628 88.0685 10.7553 88.2649 11.0496C88.4609 11.344 88.7161 11.4911 89.0301 11.4911C89.3342 11.4911 89.6482 11.3636 89.972 11.1085C90.2958 10.8436 90.5801 10.4904 90.8256 10.0489V5.72212C90.8256 5.36892 90.7373 5.08441 90.5607 4.86855C90.3841 4.65271 90.0798 4.54477 89.6482 4.54477V4.39761H91.1346C91.635 4.39761 92.0177 4.34365 92.2826 4.23572C92.5375 4.12779 92.7141 3.99534 92.8124 3.83837H92.9595L92.9448 10.5493C92.9448 10.9025 93.0526 11.1919 93.2686 11.4175C93.4843 11.6334 93.769 11.7413 94.1222 11.7413V11.8738H92.6652C92.41 11.8738 92.1843 11.8787 91.9882 11.8885C91.7919 11.9081 91.63 11.9277 91.5026 11.9474C91.2377 12.0062 91.0511 12.1191 90.9433 12.2858H90.8697Z" fill="var(--fill-0, #A7A7A7)"/>
|
||||
<path id="Vector_3" d="M81.745 12.0798C81.4899 12.0798 81.2985 12.07 81.1711 12.0504C81.0436 12.0308 80.9209 12.0062 80.8031 11.9768C80.6951 11.9474 80.548 11.9228 80.3616 11.9032C80.1753 11.8836 79.8907 11.8738 79.5081 11.8738L79.1549 9.107H79.3462C79.5031 10.0293 79.7974 10.7259 80.2292 11.1968C80.661 11.6579 81.1319 11.8885 81.642 11.8885C82.1424 11.8885 82.52 11.7855 82.7752 11.5794C83.0401 11.3734 83.1726 11.0938 83.1726 10.7406C83.1726 10.5149 83.1137 10.3187 82.996 10.1519C82.8879 9.97529 82.6966 9.79869 82.422 9.62209C82.1474 9.43568 81.7745 9.21493 81.3035 8.95983L80.8767 8.72436C80.3372 8.42022 79.9349 8.06702 79.67 7.66475C79.4148 7.25267 79.2873 6.81117 79.2873 6.34023C79.2873 5.67308 79.5278 5.14817 80.0084 4.76553C80.4991 4.38289 81.1514 4.19157 81.9658 4.19157C82.1718 4.19157 82.3387 4.20137 82.4662 4.221C82.5936 4.24063 82.7163 4.26515 82.8341 4.29459C82.9518 4.32402 83.099 4.34854 83.2756 4.36817C83.4522 4.3878 83.6877 4.39761 83.982 4.39761L84.188 6.76702H84.0114C83.9526 6.30591 83.8201 5.89872 83.6141 5.54552C83.4178 5.18251 83.1823 4.90289 82.9077 4.70666C82.633 4.50062 82.3534 4.39761 82.0688 4.39761C81.6959 4.39761 81.3968 4.49571 81.1711 4.69194C80.9553 4.88818 80.8473 5.16288 80.8473 5.51609C80.8473 5.78099 80.9306 6.02626 81.0975 6.25193C81.2741 6.46779 81.6076 6.70324 82.0982 6.95834L82.5397 7.17909C83.2264 7.5323 83.7268 7.90022 84.0409 8.28285C84.3549 8.66549 84.5118 9.15606 84.5118 9.75454C84.5118 11.2851 83.5896 12.0602 81.745 12.0798Z" fill="var(--fill-0, #A7A7A7)"/>
|
||||
<path id="Vector_4" d="M69.6825 14.9643V14.8171H69.6972C70.0504 14.8171 70.335 14.7092 70.5508 14.4934C70.7668 14.2775 70.8745 13.993 70.8745 13.6398V5.72212C70.8648 5.29045 70.7715 4.98628 70.5949 4.80968C70.4183 4.63308 70.1142 4.54477 69.6825 4.54477V4.39761H71.1394C71.7184 4.39761 72.1157 4.34365 72.3315 4.23572C72.5475 4.12779 72.7044 3.99534 72.8024 3.83837H72.9496L72.9643 5.72212C73.1901 5.28062 73.5335 4.9127 73.9945 4.61836C74.4557 4.32402 74.9414 4.17685 75.4515 4.17685C76.001 4.17685 76.4866 4.34365 76.9084 4.67723C77.3305 5.0108 77.659 5.46702 77.8945 6.04589C78.1399 6.61494 78.2624 7.27231 78.2624 8.01795C78.2624 8.8421 78.1152 9.55833 77.8209 10.1666C77.5265 10.7749 77.1097 11.2459 76.5699 11.5794C76.0401 11.913 75.4073 12.0798 74.6715 12.0798C74.2694 12.0798 73.9406 12.016 73.6854 11.8885C73.4305 11.7707 73.1998 11.5696 72.9937 11.2851V13.6398C72.9937 13.993 73.1018 14.2775 73.3175 14.4934C73.5335 14.7092 73.8179 14.8171 74.1711 14.8171H74.1858V14.9643H69.6825ZM74.3624 11.8296C74.8922 11.8296 75.2946 11.501 75.5692 10.8436C75.8341 10.1764 75.9666 9.21985 75.9666 7.9738C75.9666 5.83497 75.535 4.76553 74.6715 4.76553C74.338 4.76553 74.0092 4.89798 73.6854 5.16288C73.3617 5.42779 73.1312 5.75156 72.9937 6.13419V9.56322C72.9937 10.2696 73.1165 10.824 73.3617 11.2262C73.6071 11.6285 73.9406 11.8296 74.3624 11.8296Z" fill="var(--fill-0, #A7A7A7)"/>
|
||||
<path id="Vector_5" d="M65.6666 11.8738V11.7266H65.6813C66.0345 11.7266 66.3191 11.6187 66.5349 11.4028C66.7509 11.187 66.8587 10.9025 66.8587 10.5493V5.72212C66.8587 5.34929 66.7804 5.05986 66.6232 4.85383C66.476 4.64779 66.1573 4.54477 65.6666 4.54477V4.39761H67.1677C67.6681 4.39761 68.0507 4.34365 68.3156 4.23572C68.5611 4.12779 68.7327 3.99534 68.8307 3.83837H68.9779V10.5493C68.9779 10.9025 69.0859 11.187 69.3017 11.4028C69.5177 11.6187 69.802 11.7266 70.1552 11.7266H70.17V11.8738H65.6666ZM67.9036 2.9112C67.5504 2.9112 67.256 2.79838 67.0206 2.57272C66.7951 2.33725 66.6821 2.04291 66.6821 1.68971C66.6821 1.3365 66.7951 1.04707 67.0206 0.821416C67.256 0.585946 67.5504 0.468211 67.9036 0.468211C68.247 0.468211 68.5317 0.585946 68.7571 0.821416C68.9926 1.05688 69.1104 1.34632 69.1104 1.68971C69.1104 2.0331 68.9926 2.32253 68.7571 2.558C68.5317 2.79347 68.247 2.9112 67.9036 2.9112Z" fill="var(--fill-0, #A7A7A7)"/>
|
||||
<path id="Vector_6" d="M61.4442 12.0798C60.6397 12.0798 59.9333 11.9179 59.325 11.5941C58.7266 11.2704 58.2606 10.8142 57.9269 10.2255C57.5934 9.6368 57.4265 8.94022 57.4265 8.13569C57.4265 7.33117 57.5934 6.63457 57.9269 6.04589C58.2606 5.45722 58.7266 5.001 59.325 4.67723C59.9333 4.35346 60.6397 4.19157 61.4442 4.19157C62.2489 4.19157 62.9503 4.35346 63.5487 4.67723C64.1474 5.001 64.6133 5.45722 64.9468 6.04589C65.2805 6.63457 65.4472 7.33117 65.4472 8.13569C65.4472 8.94022 65.2805 9.6368 64.9468 10.2255C64.6133 10.8142 64.1474 11.2704 63.5487 11.5941C62.9503 11.9179 62.2489 12.0798 61.4442 12.0798ZM61.4295 11.8885C61.7729 11.8885 62.0673 11.7168 62.3125 11.3734C62.5579 11.03 62.7493 10.5738 62.8864 10.0047C63.0239 9.42588 63.0925 8.79794 63.0925 8.12097C63.0925 7.38513 63.0189 6.73759 62.8717 6.17834C62.7345 5.6093 62.5382 5.1678 62.283 4.85383C62.0378 4.53006 61.7582 4.36817 61.4442 4.36817C61.1107 4.36817 60.8164 4.53986 60.5612 4.88326C60.316 5.22666 60.1247 5.68289 59.9872 6.25193C59.85 6.821 59.7812 7.44399 59.7812 8.12097C59.7812 8.86661 59.8548 9.52399 60.0019 10.093C60.1491 10.6621 60.3454 11.1036 60.5906 11.4175C60.8458 11.7315 61.1254 11.8885 61.4295 11.8885Z" fill="var(--fill-0, #A7A7A7)"/>
|
||||
<path id="Vector_7" d="M53.4789 15.1703C52.439 15.1703 51.5952 15.0281 50.9476 14.7436C50.3098 14.4688 49.9911 14.1058 49.9911 13.6545C49.9911 13.3111 50.1529 13.0021 50.4767 12.7273C50.8102 12.4624 51.2617 12.2564 51.8307 12.1092C50.9085 11.8738 50.4473 11.4568 50.4473 10.8583C50.4473 10.5345 50.5747 10.2353 50.8299 9.96058C51.0851 9.67607 51.443 9.4504 51.9042 9.2836C51.4136 9.06776 51.031 8.75379 50.7563 8.34172C50.4914 7.92965 50.359 7.44399 50.359 6.88475C50.359 6.07041 50.6386 5.41798 51.1978 4.92741C51.7668 4.43687 52.5273 4.19157 53.4789 4.19157C53.9302 4.19157 54.3717 4.26024 54.8035 4.39761H57.5114L57.3642 4.66251H55.3627C55.7551 4.88818 56.0544 5.19232 56.2604 5.57495C56.4762 5.94779 56.5842 6.38438 56.5842 6.88475C56.5842 7.6991 56.3046 8.35644 55.7453 8.85681C55.1958 9.34738 54.4405 9.59265 53.4789 9.59265C52.9491 9.59265 52.4832 9.51416 52.0808 9.35719C51.7668 9.52398 51.6099 9.72019 51.6099 9.94586C51.6099 10.1421 51.7473 10.2745 52.022 10.3432C52.1594 10.3825 52.3555 10.4168 52.6107 10.4462C52.8658 10.4757 53.1749 10.4953 53.5378 10.5051L54.0529 10.5345C55.1811 10.5738 56.0494 10.7896 56.6578 11.1821C57.2759 11.5745 57.5849 12.1092 57.5849 12.7862C57.5849 13.5417 57.222 14.1254 56.4959 14.5375C55.7698 14.9594 54.7643 15.1703 53.4789 15.1703ZM53.4642 9.41605C53.7683 9.41605 54.0185 9.1855 54.2148 8.72436C54.3914 8.26325 54.4797 7.65003 54.4797 6.88475C54.4797 6.10967 54.3914 5.49646 54.2148 5.04515C54.0285 4.60364 53.783 4.38289 53.4789 4.38289C53.1649 4.38289 52.9197 4.60364 52.7431 5.04515C52.5665 5.49646 52.4782 6.10967 52.4782 6.88475C52.4782 7.65983 52.5665 8.27794 52.7431 8.73908C52.9197 9.19041 53.1602 9.41605 53.4642 9.41605ZM53.6408 14.979C54.0921 14.979 54.5091 14.9104 54.8918 14.773C55.2744 14.6455 55.5785 14.4639 55.8042 14.2285C56.0397 13.993 56.1574 13.7232 56.1574 13.419C56.1574 13.0855 55.9858 12.8206 55.6423 12.6243C55.2794 12.4379 54.7249 12.3398 53.9793 12.33L53.4642 12.3006C53.1796 12.2908 52.9147 12.2711 52.6695 12.2417C52.434 12.2221 52.223 12.1927 52.0367 12.1534C51.8307 12.2221 51.6785 12.3594 51.5805 12.5655C51.4824 12.7715 51.4333 13.0168 51.4333 13.3013C51.4333 13.8115 51.6246 14.2187 52.0073 14.5228C52.3899 14.827 52.9344 14.979 53.6408 14.979Z" fill="var(--fill-0, #A7A7A7)"/>
|
||||
<path id="Vector_8" d="M45.5058 12.0798C44.7014 12.0798 43.995 11.9179 43.3866 11.5941C42.7882 11.2704 42.322 10.8142 41.9885 10.2255C41.655 9.6368 41.4881 8.94022 41.4881 8.13569C41.4881 7.33117 41.655 6.63457 41.9885 6.04589C42.322 5.45722 42.7882 5.001 43.3866 4.67723C43.995 4.35346 44.7014 4.19157 45.5058 4.19157C46.3103 4.19157 47.0119 4.35346 47.6103 4.67723C48.2087 5.001 48.6749 5.45722 49.0084 6.04589C49.3419 6.63457 49.5088 7.33117 49.5088 8.13569C49.5088 8.94022 49.3419 9.6368 49.0084 10.2255C48.6749 10.8142 48.2087 11.2704 47.6103 11.5941C47.0119 11.9179 46.3103 12.0798 45.5058 12.0798ZM45.4911 11.8885C45.8346 11.8885 46.1289 11.7168 46.3741 11.3734C46.6193 11.03 46.8106 10.5738 46.9481 10.0047C47.0855 9.42588 47.1541 8.79794 47.1541 8.12097C47.1541 7.38513 47.0805 6.73759 46.9334 6.17834C46.7959 5.6093 46.5999 5.1678 46.3447 4.85383C46.0995 4.53006 45.8199 4.36817 45.5058 4.36817C45.1723 4.36817 44.878 4.53986 44.6228 4.88326C44.3776 5.22666 44.1863 5.68289 44.0489 6.25193C43.9114 6.821 43.8428 7.44399 43.8428 8.12097C43.8428 8.86661 43.9164 9.52399 44.0636 10.093C44.2107 10.6621 44.4071 11.1036 44.6522 11.4175C44.9074 11.7315 45.187 11.8885 45.4911 11.8885Z" fill="var(--fill-0, #A7A7A7)"/>
|
||||
<path id="Vector_9" d="M32.6664 11.8738V11.7266H32.6811C33.0343 11.7266 33.3187 11.6334 33.5347 11.447C33.7505 11.2606 33.8585 10.9908 33.8585 10.6376V2.16065C33.8585 1.80744 33.7505 1.52292 33.5347 1.30707C33.3187 1.09122 33.0343 0.983301 32.6811 0.983301H32.6664V0.83613H37.3611V0.983301H37.3022C36.949 0.983301 36.6644 1.09122 36.4487 1.30707C36.2326 1.52292 36.1249 1.80744 36.1249 2.16065V10.6964C36.1249 11.0104 36.1985 11.2557 36.3456 11.4323C36.5025 11.5991 36.7724 11.6824 37.1551 11.6824H37.4641C38.3371 11.6824 39.073 11.4127 39.6716 10.873C40.27 10.3334 40.6477 9.57305 40.8048 8.59191H40.952L40.5105 11.8738H32.6664Z" fill="var(--fill-0, #A7A7A7)"/>
|
||||
<path id="Vector_10" d="M93.6793 30.6757C93.277 30.6757 92.8896 30.5971 92.5167 30.4402L93.0907 28.7184C93.3359 28.8164 93.6008 28.8997 93.8854 28.9686C94.1797 29.0371 94.4741 29.0716 94.7684 29.0716C95.1413 29.0716 95.4895 28.993 95.8133 28.8361C96.1468 28.6889 96.397 28.4093 96.5638 27.9972L96.7257 27.5999L93.8118 20.8447C93.7138 20.6093 93.586 20.4229 93.4292 20.2855C93.2623 20.1383 93.0368 20.0599 92.7522 20.05V19.9029H97.0054V20.05C96.7404 20.0795 96.5344 20.1727 96.3872 20.3297C96.2498 20.4866 96.1812 20.6878 96.1812 20.933C96.1812 21.1489 96.2304 21.3697 96.3284 21.5953L97.8148 25.0832L99.3012 21.5953C99.3992 21.3697 99.4483 21.1489 99.4483 20.933C99.4483 20.6878 99.3748 20.4866 99.2276 20.3297C99.0902 20.1727 98.8841 20.0795 98.6095 20.05V19.9029H100.64V20.05C100.415 20.0991 100.223 20.2463 100.066 20.4915C99.9096 20.727 99.7427 21.0508 99.5661 21.4629L96.5638 28.4387C96.2498 29.1646 95.8427 29.7191 95.3423 30.1017C94.842 30.4844 94.2877 30.6757 93.6793 30.6757Z" fill="var(--fill-0, #A7A7A7)"/>
|
||||
<path id="Vector_11" d="M90.8613 27.5852C90.351 27.5852 89.9342 27.4233 89.6104 27.0995C89.2866 26.7757 89.1247 26.3537 89.1247 25.8338V20.1678H87.8738V19.9764C88.5508 19.9274 89.1542 19.7115 89.684 19.3289C90.2235 18.9463 90.665 18.4312 91.0085 17.7836H91.244V19.9029H93.2013L93.0541 20.1678H91.244V25.51C91.244 26.2948 91.5089 26.6874 92.0387 26.6874C92.2153 26.6874 92.4163 26.6333 92.6421 26.5256C92.8775 26.4175 93.0983 26.2753 93.3043 26.0987V26.2458C92.9806 26.658 92.5979 26.9865 92.1564 27.232C91.7149 27.4674 91.2831 27.5852 90.8613 27.5852Z" fill="var(--fill-0, #A7A7A7)"/>
|
||||
<path id="Vector_12" d="M83.6172 27.3791V27.232H83.6319C83.9851 27.232 84.2698 27.1239 84.4855 26.9082C84.7013 26.6922 84.8093 26.4078 84.8093 26.0545V21.2274C84.8093 20.8545 84.7307 20.5651 84.5738 20.3591C84.4266 20.153 84.1079 20.05 83.6172 20.05V19.9029H85.1183C85.6187 19.9029 86.0014 19.8489 86.2663 19.741C86.5114 19.633 86.6833 19.5006 86.7814 19.3436H86.9285V26.0545C86.9285 26.4078 87.0365 26.6922 87.2523 26.9082C87.468 27.1239 87.7527 27.232 88.1059 27.232H88.1206V27.3791H83.6172ZM85.8542 18.4165C85.501 18.4165 85.2066 18.3036 84.9712 18.078C84.7454 17.8425 84.6327 17.5482 84.6327 17.195C84.6327 16.8418 84.7454 16.5523 84.9712 16.3267C85.2066 16.0912 85.501 15.9735 85.8542 15.9735C86.1977 15.9735 86.482 16.0912 86.7078 16.3267C86.9432 16.5621 87.061 16.8516 87.061 17.195C87.061 17.5384 86.9432 17.8278 86.7078 18.0633C86.482 18.2987 86.1977 18.4165 85.8542 18.4165Z" fill="var(--fill-0, #A7A7A7)"/>
|
||||
<path id="Vector_13" d="M80.6097 27.5852C80.3546 27.5852 80.1632 27.5752 80.0358 27.5557C79.9081 27.536 79.7856 27.5116 79.6679 27.4821C79.5598 27.4527 79.4127 27.428 79.2263 27.4086C79.0398 27.3889 78.7554 27.3791 78.3728 27.3791L78.0196 24.6123H78.2109C78.3678 25.5345 78.6621 26.2311 79.0939 26.7022C79.5254 27.1631 79.9964 27.3938 80.5067 27.3938C81.0071 27.3938 81.3847 27.2908 81.6399 27.0848C81.9048 26.8788 82.0373 26.5991 82.0373 26.2458C82.0373 26.0202 81.9784 25.824 81.8607 25.6572C81.7527 25.4805 81.5613 25.3039 81.2867 25.1273C81.0118 24.9409 80.6392 24.7202 80.1682 24.4651L79.7414 24.2296C79.2016 23.9255 78.7996 23.5723 78.5347 23.17C78.2795 22.7579 78.152 22.3164 78.152 21.8455C78.152 21.1783 78.3922 20.6534 78.8731 20.2708C79.3635 19.8881 80.0161 19.6968 80.8305 19.6968C81.0365 19.6968 81.2031 19.7066 81.3309 19.7263C81.4583 19.7459 81.581 19.7704 81.6988 19.7998C81.8165 19.8293 81.9637 19.8538 82.1403 19.8734C82.3169 19.8931 82.5524 19.9029 82.8467 19.9029L83.0527 22.2723H82.8761C82.8173 21.8111 82.6848 21.404 82.4788 21.0508C82.2825 20.6878 82.047 20.4081 81.7724 20.2119C81.4975 20.0059 81.2179 19.9029 80.9335 19.9029C80.5606 19.9029 80.2613 20.001 80.0358 20.1972C79.8198 20.3934 79.712 20.6681 79.712 21.0213C79.712 21.2862 79.7953 21.5315 79.9622 21.7572C80.1388 21.973 80.4723 22.2085 80.9629 22.4636L81.4044 22.6843C82.0911 23.0376 82.5915 23.4055 82.9056 23.7881C83.2193 24.1708 83.3765 24.6613 83.3765 25.2598C83.3765 26.7905 82.4541 27.5655 80.6097 27.5852Z" fill="var(--fill-0, #A7A7A7)"/>
|
||||
<path id="Vector_14" d="M71.0272 27.3791V27.232H71.0419C71.3951 27.232 71.6795 27.124 71.8955 26.9082C72.1113 26.6922 72.2193 26.4078 72.2193 26.0545V21.2274C72.2193 20.8545 72.1407 20.5651 71.9838 20.3591C71.8366 20.153 71.5176 20.05 71.0272 20.05V19.9029H72.4842C73.004 19.9029 73.3966 19.8538 73.6615 19.7557C73.9264 19.6478 74.1128 19.5104 74.2208 19.3436H74.2944L74.3091 21.7572C74.4365 21.4628 74.5984 21.1538 74.7947 20.83C75.0008 20.5063 75.2557 20.2364 75.56 20.0206C75.8738 19.7949 76.2467 19.6821 76.6785 19.6821C76.8257 19.6821 76.9826 19.6968 77.1494 19.7263C77.316 19.7557 77.4926 19.8096 77.6792 19.8881L77.1053 21.61C76.7521 21.4138 76.443 21.2764 76.1781 21.1979C75.9229 21.1194 75.6972 21.0802 75.5011 21.0802C75.1674 21.0802 74.9172 21.1832 74.7506 21.3893C74.5934 21.5953 74.4562 21.8406 74.3385 22.1251V26.0545C74.3385 26.4078 74.4463 26.6922 74.6623 26.9082C74.878 27.124 75.1627 27.232 75.5159 27.232H75.5306V27.3791H71.0272Z" fill="var(--fill-0, #A7A7A7)"/>
|
||||
<path id="Vector_15" d="M67.3667 27.5557C66.6897 27.5557 66.0863 27.3889 65.5565 27.0554C65.0367 26.7216 64.6293 26.2605 64.335 25.6719C64.0406 25.0734 63.8935 24.3915 63.8935 23.6262C63.8935 22.8413 64.0554 22.1545 64.3791 21.5659C64.7029 20.9772 65.1444 20.521 65.7037 20.1972C66.2729 19.8636 66.9154 19.6968 67.6316 19.6968C68.2302 19.6968 68.76 19.8146 69.221 20.05C69.6919 20.2855 70.0648 20.6191 70.3395 21.0508C70.6241 21.4727 70.786 21.9632 70.8251 22.5225L70.8398 22.7432H65.895V22.8168C65.895 23.8568 66.1257 24.6908 66.5867 25.3187C67.0479 25.9368 67.666 26.2458 68.441 26.2458C68.9119 26.2458 69.3584 26.133 69.7802 25.9073C70.212 25.6719 70.5602 25.3579 70.8251 24.9655L70.9576 25.0096C70.791 25.51 70.5308 25.9515 70.1776 26.3342C69.8244 26.7169 69.4076 27.0159 68.9266 27.232C68.446 27.4477 67.9259 27.5557 67.3667 27.5557ZM65.9097 22.5225H68.8972C68.8972 21.7474 68.7698 21.1194 68.5146 20.6387C68.2694 20.158 67.9212 19.9176 67.4697 19.9176C67.0382 19.9176 66.68 20.153 66.3953 20.624C66.111 21.0949 65.9491 21.7278 65.9097 22.5225Z" fill="var(--fill-0, #A7A7A7)"/>
|
||||
<path id="Vector_16" d="M60.3107 27.6146L57.3821 20.8447C57.284 20.6191 57.1516 20.4327 56.9847 20.2855C56.8278 20.1383 56.6071 20.0599 56.3224 20.05V19.9029H60.4432V20.05C60.0997 20.0893 59.8742 20.2414 59.7662 20.5063C59.6682 20.7712 59.7023 21.1048 59.8692 21.507L61.385 25.0538L62.8862 21.5953C62.9842 21.3697 63.0333 21.1489 63.0333 20.933C63.0333 20.6878 62.9598 20.4866 62.8126 20.3297C62.6654 20.1727 62.4594 20.0795 62.1945 20.05V19.9029H64.5197V20.05C64.2646 20.1089 64.0194 20.2561 63.7839 20.4915C63.5484 20.727 63.3374 21.0508 63.1511 21.4629L60.4432 27.6146H60.3107Z" fill="var(--fill-0, #A7A7A7)"/>
|
||||
<path id="Vector_17" d="M52.6745 27.3791V27.232H52.6892C53.0424 27.232 53.327 27.1239 53.5428 26.9082C53.7586 26.6922 53.8666 26.4078 53.8666 26.0545V21.2274C53.8666 20.8545 53.788 20.5651 53.6311 20.3591C53.4839 20.153 53.1652 20.05 52.6745 20.05V19.9029H54.1756C54.676 19.9029 55.0586 19.8489 55.3235 19.741C55.5687 19.633 55.7406 19.5006 55.8386 19.3436H55.9858V26.0545C55.9858 26.4078 56.0938 26.6922 56.3096 26.9082C56.5253 27.1239 56.8099 27.232 57.1632 27.232H57.1779V27.3791H52.6745ZM54.9115 18.4165C54.5583 18.4165 54.2639 18.3036 54.0285 18.078C53.8027 17.8425 53.69 17.5482 53.69 17.195C53.69 16.8418 53.8027 16.5523 54.0285 16.3267C54.2639 16.0912 54.5583 15.9735 54.9115 15.9735C55.255 15.9735 55.5393 16.0912 55.7651 16.3267C56.0005 16.5621 56.1183 16.8516 56.1183 17.195C56.1183 17.5384 56.0005 17.8278 55.7651 18.0633C55.5393 18.2987 55.255 18.4165 54.9115 18.4165Z" fill="var(--fill-0, #A7A7A7)"/>
|
||||
<path id="Vector_18" d="M43.3756 27.3791V27.232H43.3903C43.7435 27.232 44.0278 27.124 44.2439 26.9082C44.4596 26.6922 44.5676 26.4078 44.5676 26.0545V21.2274C44.5676 20.8545 44.489 20.5651 44.3322 20.3591C44.185 20.153 43.8659 20.05 43.3756 20.05V19.9029H44.8325C45.3329 19.9029 45.7155 19.8489 45.9804 19.741C46.2256 19.633 46.3972 19.5006 46.4955 19.3436H46.6427L46.6574 21.404C46.9123 20.8938 47.3 20.4817 47.8201 20.1678C48.3399 19.8538 48.8894 19.6968 49.4683 19.6968C50.1256 19.6968 50.6504 19.9127 51.043 20.3444C51.4451 20.7761 51.6464 21.3451 51.6464 22.0515V26.0545C51.6464 26.4078 51.7542 26.6922 51.9702 26.9082C52.186 27.124 52.4706 27.232 52.8238 27.232H52.8385V27.3791H48.3499V27.232H48.3646C48.7178 27.232 49.0021 27.124 49.2182 26.9082C49.4339 26.6922 49.5419 26.4078 49.5419 26.0545V21.9044C49.5419 21.4138 49.4436 21.0213 49.2476 20.727C49.061 20.4327 48.8108 20.2855 48.497 20.2855C48.1927 20.2855 47.8739 20.418 47.5404 20.6829C47.2167 20.938 46.932 21.2862 46.6869 21.7278V26.0545C46.6869 26.4078 46.7946 26.6922 47.0106 26.9082C47.2264 27.124 47.511 27.232 47.8642 27.232H47.8789V27.3791H43.3756Z" fill="var(--fill-0, #A7A7A7)"/>
|
||||
<path id="Vector_19" d="M38.0822 27.5852C37.2187 27.5852 36.4681 27.4183 35.8305 27.0848C35.1927 26.751 34.6973 26.2801 34.3441 25.6719C34.0007 25.0538 33.8291 24.3326 33.8291 23.5085V17.6659C33.8291 17.3127 33.721 17.0282 33.5053 16.8123C33.2893 16.5965 33.0049 16.4886 32.6517 16.4886H32.5928V16.3414H37.3317V16.4886H37.2875C36.9343 16.4886 36.6497 16.5965 36.4339 16.8123C36.2179 17.0282 36.1102 17.3127 36.1102 17.6659V23.5085C36.1102 24.5485 36.3751 25.3726 36.9049 25.9809C37.4444 26.5794 38.1705 26.8788 39.083 26.8788C40.0051 26.8788 40.7313 26.5744 41.2611 25.9662C41.7909 25.3481 42.0558 24.5289 42.0558 23.5085V17.8867C42.0558 17.4648 41.9281 17.1312 41.6731 16.8859C41.418 16.6406 41.0795 16.5082 40.6577 16.4886V16.3414H43.7041V16.4886C43.282 16.5082 42.9435 16.6406 42.6886 16.8859C42.4334 17.1312 42.306 17.4648 42.306 17.8867V23.5085C42.306 24.3326 42.1341 25.0489 41.7909 25.6572C41.4571 26.2655 40.9715 26.7413 40.3339 27.0848C39.7058 27.4183 38.9552 27.5852 38.0822 27.5852Z" fill="var(--fill-0, #A7A7A7)"/>
|
||||
<path id="Vector_20" fill-rule="evenodd" clip-rule="evenodd" d="M22.4171 1.88733V0.0477273H26.622V16.9984C26.622 24.328 20.6801 30.2699 13.3505 30.2699C6.33006 30.2699 0.582801 24.8187 0.110422 17.9182H0.0790455V0.0477273H4.28387V1.88733H11.3795V0.0477273H15.5843V1.88733H22.4171ZM22.4171 16.9984V14.4185C21.9442 14.9061 21.4372 15.3692 20.8992 15.8053C19.1233 17.2452 17.0371 18.3701 14.7679 19.1322C12.4984 19.8943 10.0768 20.2834 7.63844 20.2834H4.8973C6.21309 23.6669 9.50173 26.065 13.3505 26.065C18.3579 26.065 22.4171 22.0057 22.4171 16.9984ZM11.7783 13.8317C10.9772 14.6808 10.0743 15.4171 9.09239 16.022C10.5859 15.9054 12.0481 15.61 13.4292 15.1461C15.2563 14.5326 16.892 13.6411 18.2511 12.5392C19.6097 11.4377 20.6582 10.1538 21.3623 8.77548C21.8069 7.90534 22.111 7.0043 22.2745 6.09215H15.449C15.295 7.21013 15.0107 8.30732 14.5999 9.35845C13.9491 11.024 12.9922 12.545 11.7783 13.8317ZM4.28387 13.5076V6.09215H11.1878C11.0715 6.6856 10.9028 7.26689 10.6835 7.82805C10.225 9.00151 9.55576 10.0601 8.71976 10.9462C7.884 11.8322 6.8985 12.5279 5.82296 13.0002C5.32343 13.2195 4.80823 13.389 4.28387 13.5076Z" fill="var(--fill-0, #A7A7A7)"/>
|
||||
</g>
|
||||
<defs>
|
||||
<clipPath id="clip0_0_9">
|
||||
<rect width="108.537" height="30.7477" fill="white"/>
|
||||
</clipPath>
|
||||
</defs>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 23 KiB |
|
After Width: | Height: | Size: 25 KiB |
|
After Width: | Height: | Size: 1009 KiB |
|
After Width: | Height: | Size: 1.2 MiB |
|
After Width: | Height: | Size: 1.2 MiB |