Add LinkedUp/Lynkedup technologies website
Next.js app with pages, components, styles, and public assets. Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
@@ -0,0 +1 @@
|
||||
{"sessionId":"77406333-d7f1-42db-8165-5bc95e384f14","pid":12092,"acquiredAt":1778249203574}
|
||||
@@ -39,3 +39,5 @@ yarn-error.log*
|
||||
# typescript
|
||||
*.tsbuildinfo
|
||||
next-env.d.ts
|
||||
|
||||
.vercel
|
||||
|
||||
|
Before Width: | Height: | Size: 25 KiB |
@@ -1,26 +0,0 @@
|
||||
@import "tailwindcss";
|
||||
|
||||
:root {
|
||||
--background: #ffffff;
|
||||
--foreground: #171717;
|
||||
}
|
||||
|
||||
@theme inline {
|
||||
--color-background: var(--background);
|
||||
--color-foreground: var(--foreground);
|
||||
--font-sans: var(--font-geist-sans);
|
||||
--font-mono: var(--font-geist-mono);
|
||||
}
|
||||
|
||||
@media (prefers-color-scheme: dark) {
|
||||
:root {
|
||||
--background: #0a0a0a;
|
||||
--foreground: #ededed;
|
||||
}
|
||||
}
|
||||
|
||||
body {
|
||||
background: var(--background);
|
||||
color: var(--foreground);
|
||||
font-family: Arial, Helvetica, sans-serif;
|
||||
}
|
||||
@@ -1,33 +0,0 @@
|
||||
import type { Metadata } from "next";
|
||||
import { Geist, Geist_Mono } from "next/font/google";
|
||||
import "./globals.css";
|
||||
|
||||
const geistSans = Geist({
|
||||
variable: "--font-geist-sans",
|
||||
subsets: ["latin"],
|
||||
});
|
||||
|
||||
const geistMono = Geist_Mono({
|
||||
variable: "--font-geist-mono",
|
||||
subsets: ["latin"],
|
||||
});
|
||||
|
||||
export const metadata: Metadata = {
|
||||
title: "Create Next App",
|
||||
description: "Generated by create next app",
|
||||
};
|
||||
|
||||
export default function RootLayout({
|
||||
children,
|
||||
}: Readonly<{
|
||||
children: React.ReactNode;
|
||||
}>) {
|
||||
return (
|
||||
<html
|
||||
lang="en"
|
||||
className={`${geistSans.variable} ${geistMono.variable} h-full antialiased`}
|
||||
>
|
||||
<body className="min-h-full flex flex-col">{children}</body>
|
||||
</html>
|
||||
);
|
||||
}
|
||||
@@ -1,65 +0,0 @@
|
||||
import Image from "next/image";
|
||||
|
||||
export default function Home() {
|
||||
return (
|
||||
<div className="flex flex-col flex-1 items-center justify-center bg-zinc-50 font-sans dark:bg-black">
|
||||
<main className="flex flex-1 w-full max-w-3xl flex-col items-center justify-between py-32 px-16 bg-white dark:bg-black sm:items-start">
|
||||
<Image
|
||||
className="dark:invert"
|
||||
src="/next.svg"
|
||||
alt="Next.js logo"
|
||||
width={100}
|
||||
height={20}
|
||||
priority
|
||||
/>
|
||||
<div className="flex flex-col items-center gap-6 text-center sm:items-start sm:text-left">
|
||||
<h1 className="max-w-xs text-3xl font-semibold leading-10 tracking-tight text-black dark:text-zinc-50">
|
||||
To get started, edit the page.tsx file.
|
||||
</h1>
|
||||
<p className="max-w-md text-lg leading-8 text-zinc-600 dark:text-zinc-400">
|
||||
Looking for a starting point or more instructions? Head over to{" "}
|
||||
<a
|
||||
href="https://vercel.com/templates?framework=next.js&utm_source=create-next-app&utm_medium=appdir-template-tw&utm_campaign=create-next-app"
|
||||
className="font-medium text-zinc-950 dark:text-zinc-50"
|
||||
>
|
||||
Templates
|
||||
</a>{" "}
|
||||
or the{" "}
|
||||
<a
|
||||
href="https://nextjs.org/learn?utm_source=create-next-app&utm_medium=appdir-template-tw&utm_campaign=create-next-app"
|
||||
className="font-medium text-zinc-950 dark:text-zinc-50"
|
||||
>
|
||||
Learning
|
||||
</a>{" "}
|
||||
center.
|
||||
</p>
|
||||
</div>
|
||||
<div className="flex flex-col gap-4 text-base font-medium sm:flex-row">
|
||||
<a
|
||||
className="flex h-12 w-full items-center justify-center gap-2 rounded-full bg-foreground px-5 text-background transition-colors hover:bg-[#383838] dark:hover:bg-[#ccc] md:w-[158px]"
|
||||
href="https://vercel.com/new?utm_source=create-next-app&utm_medium=appdir-template-tw&utm_campaign=create-next-app"
|
||||
target="_blank"
|
||||
rel="noopener noreferrer"
|
||||
>
|
||||
<Image
|
||||
className="dark:invert"
|
||||
src="/vercel.svg"
|
||||
alt="Vercel logomark"
|
||||
width={16}
|
||||
height={16}
|
||||
/>
|
||||
Deploy Now
|
||||
</a>
|
||||
<a
|
||||
className="flex h-12 w-full items-center justify-center rounded-full border border-solid border-black/[.08] px-5 transition-colors hover:border-transparent hover:bg-black/[.04] dark:border-white/[.145] dark:hover:bg-[#1a1a1a] md:w-[158px]"
|
||||
href="https://nextjs.org/docs?utm_source=create-next-app&utm_medium=appdir-template-tw&utm_campaign=create-next-app"
|
||||
target="_blank"
|
||||
rel="noopener noreferrer"
|
||||
>
|
||||
Documentation
|
||||
</a>
|
||||
</div>
|
||||
</main>
|
||||
</div>
|
||||
);
|
||||
}
|
||||
@@ -9,18 +9,24 @@
|
||||
"lint": "eslint"
|
||||
},
|
||||
"dependencies": {
|
||||
"aos": "^2.3.4",
|
||||
"bootstrap": "^5.3.8",
|
||||
"gsap": "^3.15.0",
|
||||
"lucide-react": "^1.16.0",
|
||||
"next": "16.2.6",
|
||||
"react": "19.2.4",
|
||||
"react-dom": "19.2.4"
|
||||
"react-dom": "19.2.4",
|
||||
"swiper": "^12.1.4"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@tailwindcss/postcss": "^4",
|
||||
"@types/aos": "^3.0.7",
|
||||
"@types/bootstrap": "^5.2.10",
|
||||
"@types/node": "^20",
|
||||
"@types/react": "^19",
|
||||
"@types/react-dom": "^19",
|
||||
"eslint": "^9",
|
||||
"eslint-config-next": "16.2.6",
|
||||
"tailwindcss": "^4",
|
||||
"sass": "^1.99.0",
|
||||
"typescript": "^5"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1,7 +0,0 @@
|
||||
const config = {
|
||||
plugins: {
|
||||
"@tailwindcss/postcss": {},
|
||||
},
|
||||
};
|
||||
|
||||
export default config;
|
||||
|
After Width: | Height: | Size: 19 KiB |
|
After Width: | Height: | Size: 1.4 MiB |
|
After Width: | Height: | Size: 707 KiB |
|
After Width: | Height: | Size: 783 KiB |
|
After Width: | Height: | Size: 668 KiB |
|
After Width: | Height: | Size: 424 KiB |
|
After Width: | Height: | Size: 384 KiB |
|
After Width: | Height: | Size: 2.1 MiB |
|
After Width: | Height: | Size: 780 KiB |
|
After Width: | Height: | Size: 804 KiB |
|
After Width: | Height: | Size: 36 KiB |
|
After Width: | Height: | Size: 780 KiB |
|
After Width: | Height: | Size: 116 KiB |
|
After Width: | Height: | Size: 2.0 MiB |
|
After Width: | Height: | Size: 117 KiB |
|
After Width: | Height: | Size: 1.6 MiB |
|
After Width: | Height: | Size: 2.0 MiB |
|
After Width: | Height: | Size: 87 KiB |
|
After Width: | Height: | Size: 908 KiB |
|
After Width: | Height: | Size: 908 KiB |
|
After Width: | Height: | Size: 446 KiB |
|
After Width: | Height: | Size: 523 KiB |
|
After Width: | Height: | Size: 323 KiB |
|
After Width: | Height: | Size: 511 KiB |
|
After Width: | Height: | Size: 780 KiB |
|
After Width: | Height: | Size: 1.6 MiB |
|
After Width: | Height: | Size: 446 KiB |
|
After Width: | Height: | Size: 523 KiB |
|
After Width: | Height: | Size: 323 KiB |
|
After Width: | Height: | Size: 511 KiB |
|
After Width: | Height: | Size: 847 KiB |
|
After Width: | Height: | Size: 6.3 KiB |
|
After Width: | Height: | Size: 21 KiB |
|
After Width: | Height: | Size: 616 KiB |
|
After Width: | Height: | Size: 401 KiB |
|
After Width: | Height: | Size: 690 KiB |
|
After Width: | Height: | Size: 430 KiB |
|
After Width: | Height: | Size: 460 KiB |
|
After Width: | Height: | Size: 273 KiB |
|
After Width: | Height: | Size: 288 KiB |
|
After Width: | Height: | Size: 252 KiB |
@@ -0,0 +1,162 @@
|
||||
|
||||
<style>
|
||||
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');
|
||||
.bp-about { font-family: 'Poppins', sans-serif; padding: 60px 0; background: #f8f9fb; }
|
||||
.bp-container { max-width: 1100px; margin: 0 auto; padding: 0 20px; }
|
||||
.bp-row { display: flex; align-items: center; gap: 50px; }
|
||||
.bp-left { flex: 0 0 45%; }
|
||||
.bp-right { flex: 1; position: relative; }
|
||||
.bp-label { color: #c68b2f; font-size: 13px; font-weight: 500; letter-spacing: 1px; margin-bottom: 10px; display: flex; align-items: center; gap: 6px; }
|
||||
.bp-label::before { content: ''; width: 20px; height: 1.5px; background: #c68b2f; display: inline-block; }
|
||||
.bp-h2 { font-size: 28px; font-weight: 700; color: #1a1a2e; line-height: 1.3; margin-bottom: 14px; }
|
||||
.bp-desc { font-size: 14px; color: #666; line-height: 1.8; margin-bottom: 24px; }
|
||||
.bp-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 28px; }
|
||||
.bp-card { border: 1px solid #e8e8e8; border-radius: 10px; padding: 18px; background: #fff; }
|
||||
.bp-card-icon { width: 34px; height: 34px; border-radius: 50%; background: #fef3e2; display: flex; align-items: center; justify-content: center; margin-bottom: 10px; }
|
||||
.bp-card-icon svg { width: 16px; height: 16px; fill: #c68b2f; }
|
||||
.bp-card h6 { font-size: 13px; font-weight: 600; color: #1a1a2e; margin-bottom: 6px; }
|
||||
.bp-card p { font-size: 12px; color: #888; line-height: 1.6; margin: 0 0 8px; }
|
||||
.bp-card-check { font-size: 11px; color: #c68b2f; display: flex; align-items: center; gap: 5px; }
|
||||
.bp-card-check::before { content: '✓'; font-weight: 700; }
|
||||
.bp-btn-row { display: flex; align-items: center; gap: 16px; }
|
||||
.bp-btn { background: #c68b2f; color: #fff; font-size: 13px; font-weight: 600; padding: 12px 24px; border-radius: 30px; text-decoration: none; display: flex; align-items: center; gap: 8px; }
|
||||
.bp-btn-arrow { width: 28px; height: 28px; background: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center; }
|
||||
.bp-btn-arrow svg { width: 12px; height: 12px; fill: #c68b2f; }
|
||||
.bp-expert { display: flex; align-items: center; gap: 10px; }
|
||||
.bp-expert-img { width: 36px; height: 36px; border-radius: 50%; background: #ddd; overflow: hidden; }
|
||||
.bp-expert-img img { width: 100%; height: 100%; object-fit: cover; }
|
||||
.bp-expert-text p { margin: 0; }
|
||||
.bp-expert-text .name { font-size: 13px; font-weight: 600; color: #1a1a2e; }
|
||||
.bp-expert-text .role { font-size: 11px; color: #999; }
|
||||
|
||||
/* Right image collage */
|
||||
.bp-collage { position: relative; width: 100%; height: 380px; }
|
||||
.bp-main-img { position: absolute; left: 0; top: 0; width: 58%; height: 100%; border-radius: 14px; background: #2a2a2a; overflow: hidden; }
|
||||
.bp-main-img img { width: 100%; height: 100%; object-fit: cover; }
|
||||
.bp-side { position: absolute; right: 0; top: 0; width: 38%; display: flex; flex-direction: column; gap: 12px; height: 100%; }
|
||||
.bp-google-card { background: #fff; border-radius: 10px; padding: 12px 14px; border: 1px solid #e5e5e5; }
|
||||
.bp-google-top { display: flex; align-items: center; gap: 8px; margin-bottom: 6px; }
|
||||
.bp-avatars { display: flex; }
|
||||
.bp-avatars span { width: 22px; height: 22px; border-radius: 50%; background: #c68b2f; color: #fff; font-size: 9px; font-weight: 700; display: flex; align-items: center; justify-content: center; margin-left: -5px; border: 1.5px solid #fff; }
|
||||
.bp-avatars span:first-child { margin-left: 0; background: #4a90d9; }
|
||||
.bp-avatars span:nth-child(2) { background: #e8734a; }
|
||||
.bp-avatars span:nth-child(3) { background: #5cb85c; }
|
||||
.bp-avatars span:nth-child(4) { background: #c68b2f; }
|
||||
.bp-rating-row { display: flex; align-items: center; gap: 8px; }
|
||||
.bp-g-logo { font-size: 16px; font-weight: 800; color: #4285f4; letter-spacing: -1px; }
|
||||
.bp-stars { color: #f5a623; font-size: 12px; }
|
||||
.bp-rating-val { font-size: 13px; font-weight: 600; color: #1a1a2e; }
|
||||
.bp-review-count { font-size: 10px; color: #999; margin-top: 2px; }
|
||||
.bp-side-img { flex: 1; border-radius: 10px; background: #bbb; overflow: hidden; }
|
||||
.bp-side-img img { width: 100%; height: 100%; object-fit: cover; }
|
||||
.bp-location-card { position: absolute; bottom: 0; left: 0; width: 56%; background: #1a1a2e; border-radius: 0 0 14px 14px; padding: 16px 18px; display: flex; align-items: center; gap: 12px; }
|
||||
.bp-loc-icon { width: 36px; height: 36px; background: #c68b2f; border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
|
||||
.bp-loc-icon svg { width: 16px; height: 16px; fill: #fff; }
|
||||
.bp-loc-text h5 { margin: 0; font-size: 14px; font-weight: 600; color: #fff; }
|
||||
.bp-loc-text p { margin: 0; font-size: 11px; color: #aaa; }
|
||||
</style>
|
||||
|
||||
<div class="bp-about">
|
||||
<div class="bp-container">
|
||||
<div class="bp-row">
|
||||
|
||||
<!-- LEFT -->
|
||||
<div class="bp-left">
|
||||
<div class="bp-label">About Our Conference</div>
|
||||
<h2 class="bp-h2">One of the most advanced fitness conferences ever created</h2>
|
||||
<p class="bp-desc">BodyPower presents a next-generation fitness conference bringing together elite trainers, wellness innovators, and world-class speakers. Creating cutting-edge events since 2008 with unmatched energy, learning, and networking opportunities.</p>
|
||||
|
||||
<div class="bp-cards">
|
||||
<div class="bp-card">
|
||||
<div class="bp-card-icon">
|
||||
<svg viewBox="0 0 24 24"><path d="M12 2C8.13 2 5 5.13 5 9c0 5.25 7 13 7 13s7-7.75 7-13c0-3.87-3.13-7-7-7z"/></svg>
|
||||
</div>
|
||||
<h6>Since 2008</h6>
|
||||
<p>Our mission is to inspire and empower individuals to live healthier, stronger lives through expert fitness</p>
|
||||
<div class="bp-card-check">Industry Leading Events</div>
|
||||
</div>
|
||||
<div class="bp-card">
|
||||
<div class="bp-card-icon">
|
||||
<svg viewBox="0 0 24 24"><path d="M12 12c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm0 2c-2.67 0-8 1.34-8 4v2h16v-2c0-2.66-5.33-4-8-4z"/></svg>
|
||||
</div>
|
||||
<h6>World-Class Speakers</h6>
|
||||
<p>Learn directly from elite athletes, global coaches, fitness entrepreneurs, and performance experts.</p>
|
||||
<div class="bp-card-check">Industry Leading Events</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="bp-btn-row">
|
||||
<a href="#" class="bp-btn">
|
||||
More About us
|
||||
<div class="bp-btn-arrow">
|
||||
<svg viewBox="0 0 24 24"><path d="M5 12h14M12 5l7 7-7 7"/></svg>
|
||||
</div>
|
||||
</a>
|
||||
<div class="bp-expert">
|
||||
<div class="bp-expert-img">
|
||||
<div style="width:100%;height:100%;background:linear-gradient(135deg,#c68b2f,#e8a84a);display:flex;align-items:center;justify-content:center;color:#fff;font-size:11px;font-weight:700;">FE</div>
|
||||
</div>
|
||||
<div class="bp-expert-text">
|
||||
<p class="name">Fitness Experts</p>
|
||||
<p class="role">Global Industry Leaders</p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<!-- RIGHT COLLAGE -->
|
||||
<div class="bp-right">
|
||||
<div class="bp-collage">
|
||||
|
||||
<!-- Main speaker image -->
|
||||
<div class="bp-main-img">
|
||||
<div style="width:100%;height:100%;background:linear-gradient(160deg,#2a2a2a 0%,#3a3a3a 50%,#1a1a1a 100%);display:flex;align-items:center;justify-content:center;">
|
||||
<div style="text-align:center;color:#fff;">
|
||||
<div style="width:80px;height:80px;background:#444;border-radius:50%;margin:0 auto 10px;display:flex;align-items:center;justify-content:center;font-size:28px;">👤</div>
|
||||
<div style="font-size:11px;color:#888;font-family:'Poppins',sans-serif;">Speaker Image</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<!-- Side column -->
|
||||
<div class="bp-side">
|
||||
<!-- Google review -->
|
||||
<div class="bp-google-card">
|
||||
<div class="bp-google-top">
|
||||
<div class="bp-avatars">
|
||||
<span>A</span><span>B</span><span>C</span><span>D</span>
|
||||
</div>
|
||||
</div>
|
||||
<div class="bp-rating-row">
|
||||
<div class="bp-g-logo">G</div>
|
||||
<div class="bp-rating-val">4.9/5</div>
|
||||
<div class="bp-stars">★★★★★</div>
|
||||
</div>
|
||||
<div class="bp-review-count">Based on 250 review</div>
|
||||
</div>
|
||||
|
||||
<!-- Running image -->
|
||||
<div class="bp-side-img">
|
||||
<div style="width:100%;height:100%;background:linear-gradient(135deg,#5a8f4a,#3a6f8a);display:flex;align-items:center;justify-content:center;color:#fff;font-size:11px;font-family:'Poppins',sans-serif;text-align:center;">
|
||||
<div>🏃♂️🏃♀️<br><span style="font-size:10px;opacity:0.7;">Fitness Image</span></div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<!-- Location card -->
|
||||
<div class="bp-location-card">
|
||||
<div class="bp-loc-icon">
|
||||
<svg viewBox="0 0 24 24"><path d="M12 2C8.13 2 5 5.13 5 9c0 5.25 7 13 7 13s7-7.75 7-13c0-3.87-3.13-7-7-7zm0 9.5c-1.38 0-2.5-1.12-2.5-2.5S10.62 6.5 12 6.5 14.5 7.62 14.5 9 13.38 11.5 12 11.5z"/></svg>
|
||||
</div>
|
||||
<div class="bp-loc-text">
|
||||
<h5>ExCeL London</h5>
|
||||
<p>UK's Premier Conference Venue</p>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
After Width: | Height: | Size: 802 KiB |
|
After Width: | Height: | Size: 1.0 MiB |
|
After Width: | Height: | Size: 77 KiB |
@@ -0,0 +1,3 @@
|
||||
<svg width="10" height="17" viewBox="0 0 10 17" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M9.39951 8.15081C9.4004 8.30536 9.37078 8.45856 9.31234 8.60164C9.2539 8.74472 9.16779 8.87486 9.05895 8.98459L2.01292 16.0306C1.79179 16.2517 1.49187 16.376 1.17914 16.376C0.866415 16.376 0.566495 16.2517 0.345363 16.0306C0.124231 15.8095 -3.78722e-08 15.5096 -5.1542e-08 15.1968C-6.52117e-08 14.8841 0.124231 14.5842 0.345363 14.3631L6.56935 8.15081L0.357106 1.93856C0.164718 1.71391 0.0641875 1.42493 0.0756034 1.12938C0.0870193 0.833827 0.209541 0.553466 0.418684 0.344323C0.627828 0.135179 0.908188 0.0126596 1.20374 0.00124366C1.49929 -0.0101723 1.78827 0.0903565 2.01292 0.282744L9.05895 7.32877C9.2759 7.5475 9.39821 7.84273 9.39951 8.15081Z" fill="white"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 778 B |
|
After Width: | Height: | Size: 65 KiB |
|
After Width: | Height: | Size: 1.5 MiB |
|
After Width: | Height: | Size: 142 KiB |
|
After Width: | Height: | Size: 77 KiB |
|
After Width: | Height: | Size: 72 KiB |
|
After Width: | Height: | Size: 802 KiB |
|
After Width: | Height: | Size: 91 KiB |
@@ -0,0 +1,3 @@
|
||||
<svg width="17" height="13" viewBox="0 0 17 13" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M15.3386 5.10685C13.1389 5.10685 11.134 3.10381 11.134 0.902271V0H9.32948V0.902271C9.32948 2.5029 10.0314 4.00428 11.1331 5.10685H0V6.91139H11.1331C10.0314 8.01397 9.32948 9.51535 9.32948 11.116V12.0182H11.134V11.116C11.134 8.91534 13.1389 6.91139 15.3386 6.91139H16.2409V5.10685H15.3386Z" fill="#02091C"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 459 B |
@@ -0,0 +1,3 @@
|
||||
<svg width="25" height="33" viewBox="0 0 25 33" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M6.86885 0.667079L5.45942 1.09303C4.20445 1.47269 3.08371 2.2041 2.2291 3.20116C1.3745 4.19822 0.82161 5.41944 0.635499 6.72108C0.0516753 10.7992 1.35692 15.5674 4.50407 21.0357C7.64335 26.4903 11.0991 30.0043 14.9028 31.5425C16.125 32.0366 17.4629 32.1683 18.7574 31.9218C20.052 31.6754 21.2488 31.0612 22.2055 30.1522L23.271 29.1386C23.9628 28.4818 24.3934 27.5953 24.4827 26.6439C24.572 25.6925 24.3139 24.741 23.7565 23.9661L21.091 20.2588C20.7306 19.7583 20.2231 19.3834 19.6397 19.1868C19.0563 18.9902 18.4262 18.9816 17.8377 19.1624L13.8059 20.3988L13.7017 20.4185C13.2575 20.4836 12.2314 19.5193 10.9536 17.2988C9.61695 14.9758 9.34175 13.6171 9.70934 13.2661L11.7596 11.3474C12.5094 10.6462 13.0215 9.72726 13.2242 8.71933C13.4269 7.7114 13.31 6.66509 12.8899 5.7272L11.5886 2.82641C11.1973 1.95349 10.5029 1.25311 9.63489 0.855822C8.76688 0.458535 7.78252 0.391451 6.86885 0.667079ZM9.7978 3.63492L11.0952 6.53571C11.3479 7.09819 11.4185 7.72594 11.2972 8.33077C11.1759 8.9356 10.8688 9.48711 10.419 9.90781L8.36281 11.8285C7.04773 13.0788 7.48412 15.2125 9.25329 18.2848C10.9163 21.1758 12.4338 22.6035 14.0654 22.355L14.3092 22.3037L18.4136 21.0476C18.6098 20.9871 18.8199 20.9898 19.0145 21.0552C19.2091 21.1206 19.3785 21.2455 19.4987 21.4124L22.1642 25.1197C22.4434 25.5071 22.5727 25.983 22.5282 26.459C22.4838 26.9349 22.2685 27.3784 21.9225 27.707L20.8551 28.7206C20.1717 29.3694 19.317 29.8078 18.3925 29.9836C17.468 30.1595 16.5127 30.0653 15.64 29.7125C12.3021 28.3636 9.14714 25.1552 6.20836 20.0497C3.26172 14.9324 2.06852 10.5803 2.58158 7.0011C2.71439 6.07117 3.10929 5.19867 3.71978 4.48632C4.33027 3.77396 5.13094 3.25143 6.02751 2.98022L7.43695 2.55427C7.8939 2.41653 8.38519 2.45021 8.81921 2.64904C9.25323 2.84788 9.60035 3.19828 9.79583 3.63492H9.7978Z" fill="#2261FF" stroke="#2261FF"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1.9 KiB |
|
After Width: | Height: | Size: 19 KiB |
|
After Width: | Height: | Size: 20 KiB |
|
After Width: | Height: | Size: 21 KiB |
|
After Width: | Height: | Size: 440 KiB |
|
After Width: | Height: | Size: 412 KiB |
|
After Width: | Height: | Size: 481 KiB |
|
After Width: | Height: | Size: 5.9 KiB |
|
After Width: | Height: | Size: 2.1 MiB |
|
After Width: | Height: | Size: 239 KiB |
|
After Width: | Height: | Size: 1.7 MiB |
|
After Width: | Height: | Size: 1.7 MiB |
|
After Width: | Height: | Size: 1.3 MiB |
|
After Width: | Height: | Size: 264 KiB |
|
After Width: | Height: | Size: 88 KiB |
|
After Width: | Height: | Size: 465 KiB |
|
After Width: | Height: | Size: 553 KiB |
|
After Width: | Height: | Size: 818 KiB |
|
After Width: | Height: | Size: 552 KiB |
|
After Width: | Height: | Size: 396 KiB |
|
After Width: | Height: | Size: 43 KiB |
|
After Width: | Height: | Size: 910 KiB |
|
After Width: | Height: | Size: 578 KiB |
|
After Width: | Height: | Size: 415 KiB |
|
After Width: | Height: | Size: 647 KiB |
|
After Width: | Height: | Size: 151 KiB |
@@ -0,0 +1,5 @@
|
||||
<svg width="42" height="42" viewBox="0 0 42 42" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<rect width="42" height="42" rx="5" fill="#DDE6FF"/>
|
||||
<path d="M29.9593 13.042V26.2208V13.042ZM20.9997 15.7785C23.5574 14.0508 26.6407 13.042 29.9593 13.042L20.9997 15.7785ZM12.04 13.042C15.3587 13.042 18.442 14.0508 20.9997 15.7785L12.04 13.042ZM12.04 26.2207V13.042V26.2207ZM20.9997 28.9577C18.442 27.2298 15.3587 26.2207 12.04 26.2207L20.9997 28.9577ZM29.9593 26.2207C26.6407 26.2207 23.5574 27.2298 20.9997 28.9577L29.9593 26.2207ZM20.9997 15.7785V28.9577V15.7785Z" fill="black"/>
|
||||
<path d="M29.9593 26.2208V13.042C26.6407 13.042 23.5574 14.0508 20.9997 15.7785M29.9593 26.2207C26.6407 26.2207 23.5574 27.2298 20.9997 28.9577C18.442 27.2298 15.3587 26.2207 12.04 26.2207V13.042C15.3587 13.042 18.442 14.0508 20.9997 15.7785M20.9997 15.7785V28.9577" stroke="#096AD9" stroke-width="1.5" stroke-miterlimit="10" stroke-linecap="round"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 938 B |
@@ -0,0 +1,3 @@
|
||||
<svg width="40" height="32" viewBox="0 0 40 32" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M6.5 1.39504e-08H33.5C35.1603 -0.000108693 36.7577 0.635108 37.9645 1.77534C39.1713 2.91558 39.896 4.47439 39.99 6.132L40 6.5V25.5C40.0001 27.1603 39.3649 28.7577 38.2247 29.9645C37.0844 31.1713 35.5256 31.896 33.868 31.99L33.5 32H6.5C4.83972 32.0001 3.24234 31.3649 2.03554 30.2247C0.828734 29.0844 0.103997 27.5256 0.0100002 25.868L1.39504e-08 25.5V6.5C-0.000108693 4.83972 0.635108 3.24234 1.77534 2.03554C2.91558 0.828734 4.47439 0.103997 6.132 0.0100002L6.5 1.39504e-08ZM37 10.746L20.7 19.326C20.5159 19.4232 20.3137 19.4811 20.106 19.4959C19.8984 19.5107 19.69 19.4821 19.494 19.412L19.302 19.328L3 10.748V25.5C3.00003 26.3784 3.33034 27.2246 3.92536 27.8708C4.52038 28.5169 5.3366 28.9157 6.212 28.988L6.5 29H33.5C34.3787 28.9999 35.2252 28.6693 35.8714 28.0739C36.5176 27.4785 36.9162 26.6618 36.988 25.786L37 25.5V10.746ZM33.5 3H6.5C5.62162 3.00003 4.77536 3.33034 4.12922 3.92536C3.48307 4.52038 3.08428 5.3366 3.012 6.212L3 6.5V7.358L20 16.304L37 7.356V6.5C36.9999 5.6213 36.6693 4.77478 36.0739 4.12858C35.4785 3.48239 34.6618 3.0838 33.786 3.012L33.5 3Z" fill="#2261FF"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1.2 KiB |
|
After Width: | Height: | Size: 2.7 KiB |
|
After Width: | Height: | Size: 1.4 MiB |
|
After Width: | Height: | Size: 9.5 KiB |
|
After Width: | Height: | Size: 12 KiB |
@@ -0,0 +1,3 @@
|
||||
<svg width="12" height="14" viewBox="0 0 12 14" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M9.7906 1.68327C8.71047 0.598498 7.27147 0.00107974 5.73867 0.00107974H5.73206C2.64545 -0.0620953 -0.0624534 2.65617 0.00109654 5.74165C0.0818931 7.92037 2.17786 10.6873 3.81008 12.8131C4.28942 13.3857 4.98785 13.7125 5.73819 13.7125C6.51482 13.7125 7.23591 13.3626 7.71651 12.7524C8.92736 11.2477 11.542 7.62863 11.463 5.7416C11.4631 4.2077 10.8691 2.76643 9.7906 1.68327ZM6.87502 12.0896C6.32149 12.8197 5.15711 12.821 4.60337 12.0908C2.39015 9.27262 1.07226 6.92567 1.07226 5.74163C1.07226 3.16695 3.16263 1.07232 5.73206 1.07232H5.73867C8.30445 1.07232 10.3918 3.16698 10.3918 5.74163C10.3918 6.93855 9.11 9.25227 6.87502 12.0896ZM5.76216 8.00835C4.50698 8.00835 3.48582 6.98718 3.48582 5.73201C3.61086 2.71214 7.91391 2.71303 8.03849 5.73204C8.03849 6.98721 7.01733 8.00835 5.76216 8.00835ZM5.76216 4.52689C5.09765 4.52689 4.55704 5.06751 4.55704 5.73201C4.62324 7.33078 6.90132 7.33029 6.96728 5.73201C6.96728 5.06751 6.42669 4.52689 5.76216 4.52689Z" fill="#717171"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1.1 KiB |
@@ -0,0 +1,4 @@
|
||||
<svg width="40" height="40" viewBox="0 0 40 40" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M35.616 30.2716C36.4134 29.3196 36.8534 28.1191 36.86 26.8774C36.86 25.4517 36.2936 24.0845 35.2856 23.0764C34.2775 22.0683 32.9102 21.502 31.4846 21.502C30.0589 21.502 28.6917 22.0683 27.6836 23.0764C26.6755 24.0845 26.1091 25.4517 26.1091 26.8774C26.1157 28.1191 26.5557 29.3196 27.3532 30.2716C25.905 31.0855 24.7296 32.309 23.9743 33.7886L23.6211 33.4968C24.2334 32.6989 24.5678 31.7227 24.5733 30.7169C24.5733 29.495 24.0879 28.323 23.2238 27.459C22.3597 26.5949 21.1878 26.1094 19.9658 26.1094C18.7438 26.1094 17.5719 26.5949 16.7078 27.459C15.8438 28.323 15.3583 29.495 15.3583 30.7169C15.3672 31.7174 15.7014 32.6878 16.3105 33.4814L15.9573 33.7733C15.1996 32.2993 14.0244 31.0814 12.5785 30.2716C13.3759 29.3196 13.8159 28.1191 13.8225 26.8774C13.8225 25.4517 13.2562 24.0845 12.2481 23.0764C11.24 22.0683 9.87273 21.502 8.44708 21.502C7.02143 21.502 5.65417 22.0683 4.64609 23.0764C3.638 24.0845 3.07166 25.4517 3.07166 26.8774C3.07823 28.1191 3.51824 29.3196 4.31569 30.2716C3.00727 31.0034 1.91764 32.0709 1.15906 33.3639C0.400483 34.657 0.000387634 36.129 0 37.6282V38.3961C0 38.8034 0.16181 39.1941 0.449835 39.4821C0.737859 39.7701 1.1285 39.9319 1.53583 39.9319C1.94316 39.9319 2.33381 39.7701 2.62183 39.4821C2.90985 39.1941 3.07166 38.8034 3.07166 38.3961V37.6282C3.07166 36.2025 3.638 34.8353 4.64609 33.8272C5.65417 32.8191 7.02143 32.2528 8.44708 32.2528C9.87273 32.2528 11.24 32.8191 12.2481 33.8272C13.2562 34.8353 13.8225 36.2025 13.8225 37.6282V38.3961C13.8225 38.8034 13.9843 39.1941 14.2723 39.4821C14.5604 39.7701 14.951 39.9319 15.3583 39.9319C15.7657 39.9319 16.1563 39.7701 16.4443 39.4821C16.7323 39.1941 16.8942 38.8034 16.8942 38.3961C16.8942 37.5815 17.2178 36.8002 17.7938 36.2241C18.3699 35.6481 19.1512 35.3244 19.9658 35.3244C20.7805 35.3244 21.5618 35.6481 22.1378 36.2241C22.7139 36.8002 23.0375 37.5815 23.0375 38.3961C23.0375 38.8034 23.1993 39.1941 23.4873 39.4821C23.7753 39.7701 24.166 39.9319 24.5733 39.9319C24.9806 39.9319 25.3713 39.7701 25.6593 39.4821C25.9473 39.1941 26.1091 38.8034 26.1091 38.3961V37.6282C26.1091 36.2025 26.6755 34.8353 27.6836 33.8272C28.6917 32.8191 30.0589 32.2528 31.4846 32.2528C32.9102 32.2528 34.2775 32.8191 35.2856 33.8272C36.2936 34.8353 36.86 36.2025 36.86 37.6282V38.3961C36.86 38.8034 37.0218 39.1941 37.3098 39.4821C37.5978 39.7701 37.9885 39.9319 38.3958 39.9319C38.8031 39.9319 39.1938 39.7701 39.4818 39.4821C39.7698 39.1941 39.9316 38.8034 39.9316 38.3961V37.6282C39.9313 36.129 39.5312 34.657 38.7726 33.3639C38.014 32.0709 36.9244 31.0034 35.616 30.2716ZM6.14333 26.8774C6.14333 26.4217 6.27844 25.9763 6.53158 25.5975C6.78472 25.2186 7.14452 24.9233 7.56547 24.749C7.98643 24.5746 8.44963 24.529 8.89652 24.6179C9.3434 24.7068 9.75389 24.9262 10.0761 25.2484C10.3983 25.5706 10.6177 25.981 10.7066 26.4279C10.7955 26.8748 10.7498 27.338 10.5755 27.759C10.4011 28.1799 10.1058 28.5397 9.72697 28.7929C9.34812 29.046 8.90272 29.1811 8.44708 29.1811C7.83609 29.1811 7.25012 28.9384 6.81808 28.5064C6.38604 28.0743 6.14333 27.4884 6.14333 26.8774ZM18.43 30.7169C18.43 30.4132 18.5201 30.1163 18.6888 29.8637C18.8576 29.6111 19.0974 29.4143 19.3781 29.298C19.6587 29.1818 19.9675 29.1514 20.2654 29.2106C20.5634 29.2699 20.837 29.4162 21.0518 29.6309C21.2666 29.8457 21.4129 30.1194 21.4721 30.4173C21.5314 30.7152 21.501 31.024 21.3847 31.3047C21.2685 31.5853 21.0716 31.8252 20.8191 31.9939C20.5665 32.1627 20.2696 32.2528 19.9658 32.2528C19.5585 32.2528 19.1678 32.091 18.8798 31.8029C18.5918 31.5149 18.43 31.1243 18.43 30.7169ZM29.1808 26.8774C29.1808 26.4217 29.3159 25.9763 29.5691 25.5975C29.8222 25.2186 30.182 24.9233 30.603 24.749C31.0239 24.5746 31.4871 24.529 31.934 24.6179C32.3809 24.7068 32.7914 24.9262 33.1136 25.2484C33.4357 25.5706 33.6552 25.981 33.744 26.4279C33.8329 26.8748 33.7873 27.338 33.6129 27.759C33.4386 28.1799 33.1433 28.5397 32.7645 28.7929C32.3856 29.046 31.9402 29.1811 31.4846 29.1811C30.8736 29.1811 30.2876 28.9384 29.8556 28.5064C29.4235 28.0743 29.1808 27.4884 29.1808 26.8774Z" fill="white"/>
|
||||
<path d="M1.53583 19.9658C1.91315 19.9685 2.27827 19.8323 2.56154 19.583C2.84481 19.3337 3.02639 18.9889 3.07166 18.6143C3.68746 18.0367 4.41186 17.5872 5.20282 17.2919C5.99378 16.9966 6.83552 16.8614 7.67916 16.8942C8.52281 16.8614 9.36455 16.9966 10.1555 17.2919C10.9465 17.5872 11.6709 18.0367 12.2867 18.6143C12.2867 19.0216 12.4485 19.4123 12.7365 19.7003C13.0245 19.9883 13.4152 20.1501 13.8225 20.1501C14.2298 20.1501 14.6205 19.9883 14.9085 19.7003C15.1965 19.4123 15.3583 19.0216 15.3583 18.6143C16.1993 17.7978 17.2722 17.2614 18.43 17.0785V21.5017C18.43 21.909 18.5918 22.2996 18.8798 22.5877C19.1678 22.8757 19.5585 23.0375 19.9658 23.0375C20.3731 23.0375 20.7638 22.8757 21.0518 22.5877C21.3398 22.2996 21.5017 21.909 21.5017 21.5017V17.0631C22.6594 17.246 23.7323 17.7824 24.5733 18.5989C24.5733 19.0063 24.7351 19.3969 25.0231 19.6849C25.3112 19.973 25.7018 20.1348 26.1091 20.1348C26.5165 20.1348 26.9071 19.973 27.1951 19.6849C27.4832 19.3969 27.645 19.0063 27.645 18.5989C28.262 18.0241 28.987 17.5774 29.7779 17.2848C30.5688 16.9921 31.4099 16.8594 32.2525 16.8942C33.0961 16.8614 33.9379 16.9966 34.7288 17.2919C35.5198 17.5872 36.2442 18.0367 36.86 18.6143C36.8844 19.0216 37.0697 19.4026 37.375 19.6733C37.6803 19.944 38.0806 20.0824 38.488 20.058C38.8953 20.0335 39.2762 19.8483 39.547 19.543C39.8177 19.2377 39.9561 18.8373 39.9316 18.43C39.9316 9.86004 31.4846 2.31911 21.5017 1.61262V1.53583C21.5017 1.1285 21.3398 0.737859 21.0518 0.449835C20.7638 0.16181 20.3731 0 19.9658 0C19.5585 0 19.1678 0.16181 18.8798 0.449835C18.5918 0.737859 18.43 1.1285 18.43 1.53583C8.44708 2.31911 0 9.86004 0 18.43C0 18.8373 0.16181 19.228 0.449835 19.516C0.737859 19.804 1.1285 19.9658 1.53583 19.9658ZM19.9658 13.8225C18.3695 13.8221 16.794 14.1845 15.3583 14.8822C15.5426 9.67574 16.418 5.80545 19.9658 4.68429C23.4522 5.80545 24.3276 9.67574 24.5733 14.8822C23.1376 14.1845 21.5621 13.8221 19.9658 13.8225ZM36.046 14.529C34.8344 14.0666 33.5492 13.8273 32.2525 13.8225C30.6527 13.837 29.0771 14.2151 27.645 14.9283C27.7317 11.6465 27.0146 8.39339 25.5562 5.4522C27.8545 6.12205 29.9812 7.27964 31.7915 8.84604C33.6017 10.4124 35.0529 12.3508 36.046 14.529ZM14.4215 5.4522C12.9472 8.38935 12.2143 11.6427 12.2867 14.9283C10.8545 14.2151 9.27897 13.837 7.67916 13.8225C6.3824 13.8273 5.0972 14.0666 3.88566 14.529C4.88366 12.3459 6.34191 10.4045 8.16045 8.83783C9.97898 7.27114 12.1148 6.1162 14.4215 5.4522Z" fill="white"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 6.4 KiB |
@@ -0,0 +1,4 @@
|
||||
<svg width="27" height="28" viewBox="0 0 27 28" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M17.0459 8.79529C14.3469 4.82455 10.7421 2.71415 8.85437 4.00723C8.64649 4.15361 8.46587 4.33528 8.32067 4.54398C8.32067 4.55923 3.95042 13.4034 3.95042 13.4034L1.51064 15.0564C1.1361 15.3106 0.815323 15.6362 0.566631 16.0144C0.317938 16.3927 0.146205 16.8162 0.0612425 17.2608C-0.0237204 17.7055 -0.0202485 18.1625 0.0714598 18.6058C0.163168 19.0491 0.341316 19.47 0.595726 19.8444L0.705516 20.0061C1.21976 20.7552 2.0086 21.2713 2.90095 21.4426C3.79329 21.6139 4.71718 21.4264 5.47223 20.921L9.39112 26.6941C9.96751 27.4047 11.0746 28.1122 12.4408 27.2796C12.6829 27.1227 12.8893 26.9168 13.0469 26.6751C13.2045 26.4335 13.3097 26.1615 13.3558 25.8768C13.4109 25.5935 13.4095 25.3021 13.3513 25.0195C13.2932 24.7368 13.1797 24.4684 13.0172 24.2299L9.56495 19.1369C9.56495 19.1369 17.726 18.4873 17.7565 18.4751C18.0113 18.4218 18.2529 18.3181 18.4671 18.1701C19.4369 17.5114 19.7846 16.1299 19.4491 14.2787C19.1472 12.5739 18.2902 10.6434 17.0459 8.79529ZM1.59298 19.4053L1.48319 19.2436C1.30766 18.9852 1.18482 18.6947 1.1217 18.3888C1.05858 18.0828 1.05642 17.7674 1.11534 17.4606C1.17426 17.1539 1.29311 16.8617 1.46508 16.6009C1.63705 16.3401 1.85876 16.1158 2.11754 15.9408L4.22489 14.5074L7.00624 18.6032L4.89888 20.0366C4.64041 20.2123 4.34983 20.3354 4.04376 20.3988C3.73769 20.4622 3.42212 20.4646 3.1151 20.406C2.80808 20.3474 2.51563 20.2288 2.25445 20.0571C1.99328 19.8854 1.76851 19.6639 1.59298 19.4053ZM12.1389 24.8307C12.3056 25.0787 12.3671 25.3827 12.3099 25.676C12.2527 25.9693 12.0816 26.228 11.8339 26.3952C11.5855 26.5621 11.281 26.6236 10.9872 26.5665C10.6934 26.5093 10.4342 26.3381 10.2664 26.0902L6.3597 20.3354L7.9303 19.268L8.34506 19.2345L12.1389 24.8307ZM8.01569 18.1884L4.98427 13.7236L7.87541 7.82853C8.15598 9.48452 8.97635 11.4516 10.2877 13.3821C11.5991 15.3125 13.124 16.8008 14.5573 17.673L8.01569 18.1884ZM17.0124 17.4778C15.5546 17.3833 13.1819 15.7395 11.1722 12.7782C9.16239 9.81694 8.50975 7.01425 8.95806 5.62053C9.03902 5.35892 9.20057 5.12959 9.41965 4.96528C9.63873 4.80097 9.90413 4.71009 10.1779 4.70561C11.6235 4.70561 14.0846 6.35856 16.1523 9.40523C17.3173 11.1192 18.1652 12.9124 18.3969 14.48C18.8513 17.4778 17.0124 17.4778 17.0124 17.4778Z" fill="#2261FF"/>
|
||||
<path d="M13.2334 8.90815C12.8598 8.83479 12.4754 8.83665 12.1026 8.91363C11.7297 8.9906 11.376 9.14115 11.062 9.35646C11.0041 9.39651 10.9547 9.44756 10.9166 9.50671C10.8784 9.56586 10.8523 9.63194 10.8397 9.70118C10.8271 9.77042 10.8283 9.84146 10.8431 9.91026C10.858 9.97905 10.8862 10.0442 10.9263 10.1021C10.9663 10.16 11.0174 10.2094 11.0765 10.2475C11.1357 10.2857 11.2018 10.3118 11.271 10.3244C11.3403 10.337 11.4113 10.3358 11.4801 10.321C11.5489 10.3061 11.6141 10.2779 11.6719 10.2378C11.8708 10.1029 12.0943 10.0084 12.3296 9.95978C12.565 9.91118 12.8076 9.90942 13.0437 9.95459C13.2797 9.99976 13.5045 10.091 13.7053 10.223C13.9061 10.3551 14.0789 10.5254 14.2139 10.7243C14.3489 10.9231 14.4433 11.1466 14.4919 11.3819C14.5405 11.6173 14.5423 11.8599 14.4971 12.096C14.452 12.332 14.3607 12.5568 14.2287 12.7576C14.0966 12.9584 13.9263 13.1312 13.7275 13.2662C13.6337 13.3309 13.5631 13.424 13.5261 13.5317C13.489 13.6395 13.4874 13.7563 13.5215 13.865C13.5555 13.9737 13.6235 14.0687 13.7155 14.136C13.8074 14.2033 13.9185 14.2394 14.0324 14.2391C14.1411 14.2411 14.2478 14.2091 14.3374 14.1476C14.8118 13.8262 15.1801 13.3713 15.3957 12.8405C15.6113 12.3097 15.6645 11.7268 15.5485 11.1657C15.4326 10.6047 15.1527 10.0906 14.7444 9.68871C14.336 9.28681 13.8176 9.01515 13.2548 8.90815H13.2334ZM17.7043 5.0838H17.7561C17.8881 5.08375 18.0154 5.03477 18.1134 4.94634C18.2115 4.85791 18.2732 4.7363 18.2868 4.60499L18.6985 0.603763C18.7079 0.533011 18.703 0.461098 18.684 0.392279C18.6651 0.323461 18.6326 0.259134 18.5884 0.203105C18.5442 0.147077 18.4892 0.100484 18.4267 0.0660846C18.3641 0.031685 18.2953 0.0101769 18.2243 0.00283303C18.1533 -0.00451089 18.0816 0.00245851 18.0134 0.0233289C17.9451 0.0441992 17.8817 0.0785466 17.827 0.124339C17.7722 0.170131 17.7272 0.226438 17.6946 0.289928C17.662 0.353418 17.6425 0.422802 17.6372 0.493974L17.2285 4.49825C17.214 4.63898 17.256 4.77971 17.3452 4.8895C17.4344 4.9993 17.5636 5.06919 17.7043 5.0838ZM24.6028 4.26038C24.5244 4.14225 24.4025 4.05992 24.2637 4.03136C24.1248 4.00279 23.9803 4.0303 23.8617 4.10789L20.1441 6.54767C20.0475 6.61141 19.9743 6.70479 19.9355 6.81374C19.8966 6.9227 19.8942 7.04133 19.9286 7.15177C19.963 7.26222 20.0324 7.35849 20.1262 7.4261C20.2201 7.49371 20.3334 7.52899 20.449 7.52663C20.5569 7.52911 20.6631 7.49938 20.754 7.44123L24.4716 5.00146C24.5869 4.92031 24.6655 4.79682 24.69 4.65797C24.7146 4.51911 24.6832 4.37617 24.6028 4.26038ZM25.7403 10.7746L21.4158 9.9969C21.2763 9.97182 21.1325 10.0032 21.0161 10.0841C20.8997 10.1651 20.8203 10.2889 20.7952 10.4284C20.7701 10.568 20.8015 10.7117 20.8824 10.8281C20.9633 10.9445 21.0872 11.024 21.2267 11.0491L25.5482 11.8267H25.6427C25.7787 11.8307 25.9111 11.7826 26.0128 11.6922C26.1145 11.6019 26.1778 11.4761 26.1899 11.3406C26.202 11.2051 26.1618 11.0701 26.0777 10.9632C25.9936 10.8563 25.8718 10.7856 25.7373 10.7654L25.7403 10.7746Z" fill="#2261FF"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 5.1 KiB |
@@ -0,0 +1,4 @@
|
||||
<svg width="23" height="22" viewBox="0 0 23 22" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M18.4587 17.5797H4.39493C1.96887 17.5768 0.00291164 15.6108 0 13.1848V4.39493C0.00291164 1.96887 1.96887 0.00291164 4.39493 0H18.4587C20.8848 0.00291164 22.8507 1.96887 22.8536 4.39493V13.1848C22.8507 15.6108 20.8848 17.5768 18.4587 17.5797ZM4.39493 1.75797C2.93856 1.75797 1.75797 2.93856 1.75797 4.39493V13.1848C1.75797 14.6412 2.93856 15.8217 4.39493 15.8217H18.4587C19.9151 15.8217 21.0957 14.6412 21.0957 13.1848V4.39493C21.0957 2.93856 19.9151 1.75797 18.4587 1.75797H4.39493ZM20.2167 21.0957H2.63696C2.15148 21.0957 1.75797 20.7022 1.75797 20.2167C1.75797 19.7312 2.15148 19.3377 2.63696 19.3377H20.2167C20.7022 19.3377 21.0957 19.7312 21.0957 20.2167C21.0957 20.7022 20.7022 21.0957 20.2167 21.0957Z" fill="#F59999"/>
|
||||
<path d="M9.76774 13.4232C8.79866 13.4189 8.01411 12.6344 8.00977 11.6653V5.91759C8.00977 4.94669 8.7969 4.15961 9.76779 4.15967C10.0764 4.15968 10.3795 4.2409 10.6467 4.39518L15.6209 7.26771C16.4617 7.75318 16.7497 8.82835 16.2643 9.66915C16.11 9.93635 15.8881 10.1582 15.6209 10.3125L10.6467 13.185C10.3799 13.3406 10.0766 13.4228 9.76774 13.4232ZM14.7428 8.79011L9.76774 5.91759V11.6626L14.7428 8.79011Z" fill="#F59999"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1.2 KiB |