🔖 Release Version 1.0.4-hf3
@@ -0,0 +1,179 @@
|
||||
import * as mongo from "mongodb";
|
||||
import { v4 as uuidv4 } from "uuid";
|
||||
import yargs from "yargs";
|
||||
import tdrive from "../../../tdrive";
|
||||
import gr from "../../../services/global-resolver";
|
||||
import { getInstance } from "../../../services/user/entities/user";
|
||||
import { getInstance as getCompanyInstance } from "../../../services/user/entities/company";
|
||||
import PasswordEncoder from "../../../utils/password-encoder";
|
||||
import { getDefaultDriveItem } from "../../../services/documents/utils";
|
||||
|
||||
type CLIArgs = {
|
||||
start: number;
|
||||
};
|
||||
|
||||
const services = [
|
||||
"auth",
|
||||
"storage",
|
||||
"user",
|
||||
"files",
|
||||
"counter",
|
||||
"cron",
|
||||
"message-queue",
|
||||
"push",
|
||||
"search",
|
||||
"tracker",
|
||||
"email-pusher",
|
||||
"workspaces",
|
||||
"console",
|
||||
"applications",
|
||||
"database",
|
||||
"webserver",
|
||||
];
|
||||
const createTree = async (
|
||||
depth: number,
|
||||
folderData: any,
|
||||
parent: string,
|
||||
context: any,
|
||||
client: mongo.MongoClient,
|
||||
) => {
|
||||
const documentRepo = await gr.services.documents.documents.repository;
|
||||
// Create an array to hold promises
|
||||
const createFolderPromises = [];
|
||||
|
||||
// Loop from 0 to depth
|
||||
for (let i = 0; i < depth; i++) {
|
||||
// Modify folder data for each iteration
|
||||
folderData.name = `folder_${i}`;
|
||||
folderData.parent_id = parent; // All siblings share the same parent
|
||||
folderData.id = uuidv4();
|
||||
|
||||
// Push the folder creation promise to the array
|
||||
// createFolderPromises.push(
|
||||
// gr.services.documents.documents.create(
|
||||
// null,
|
||||
// folderData,
|
||||
// {},
|
||||
// {
|
||||
// ...context,
|
||||
// user: {
|
||||
// ...context.user,
|
||||
// server_request: false,
|
||||
// },
|
||||
// },
|
||||
// ),
|
||||
// );
|
||||
// createFolderPromises.push(documentRepo.save(getDefaultDriveItem(folderData, context)));
|
||||
createFolderPromises.push(getDefaultDriveItem(folderData, context));
|
||||
}
|
||||
/// const createdFolders = await documentRepo.saveAll(createFolderPromises);
|
||||
await client.db("tdrive").collection("drive_files").insertMany(createFolderPromises);
|
||||
|
||||
// Wait for all folder creation promises to resolve in parallel
|
||||
// const createdFolders = await Promise.all(createFolderPromises);
|
||||
|
||||
// Optionally, return the created folders
|
||||
// return createdFolders;
|
||||
};
|
||||
|
||||
const command: yargs.CommandModule<unknown, CLIArgs> = {
|
||||
command: "seed",
|
||||
describe: "Seed the db",
|
||||
builder: {
|
||||
start: {
|
||||
default: 0,
|
||||
type: "number",
|
||||
description: "Start start for the users",
|
||||
},
|
||||
output: {
|
||||
default: "",
|
||||
type: "string",
|
||||
description: "Folder containing the exported data",
|
||||
},
|
||||
},
|
||||
handler: async argv => {
|
||||
console.log("🌱 Seeding the database with start: ", argv.start);
|
||||
const usersNumber = 1000;
|
||||
const defaultPassword = "password";
|
||||
const userRole = "admin";
|
||||
const folderTreeDepth = 1000;
|
||||
|
||||
const platform = await tdrive.run(services);
|
||||
await gr.doInit(platform);
|
||||
|
||||
let client: mongo.MongoClient;
|
||||
client = (await gr.database.getConnector()).getClient();
|
||||
|
||||
// Manage the default company
|
||||
const companies = await gr.services.companies.getCompanies();
|
||||
let company = companies.getEntities()?.[0];
|
||||
if (!company) {
|
||||
const newCompany = getCompanyInstance({
|
||||
name: "Tdrive",
|
||||
plan: { name: "Local", limits: undefined, features: undefined },
|
||||
});
|
||||
company = await gr.services.companies.createCompany(newCompany);
|
||||
}
|
||||
|
||||
console.log("✅ Company created: ", company.id);
|
||||
|
||||
// encoding the user password
|
||||
const passwordEncoder = new PasswordEncoder();
|
||||
const encodedPassword = await passwordEncoder.encodePassword(defaultPassword);
|
||||
// Step 1: Generate 10k users
|
||||
const usersData = Array.from({ length: usersNumber }, (_, i) => {
|
||||
const userNumber = i + argv.start * 1000;
|
||||
return {
|
||||
first_name: `User ${userNumber}`,
|
||||
last_name: `Lastname ${userNumber}`,
|
||||
username_canonical: `user${userNumber}`,
|
||||
email_canonical: `user${userNumber}@example.com`,
|
||||
password: encodedPassword,
|
||||
cache: {
|
||||
companies: [],
|
||||
},
|
||||
};
|
||||
});
|
||||
|
||||
// for each user, get the user and add it to allUsers
|
||||
const allUsers = [];
|
||||
for (const userData of usersData) {
|
||||
const newUser = getInstance(userData);
|
||||
const user = await gr.services.users.create(newUser);
|
||||
allUsers.push(user.entity);
|
||||
}
|
||||
console.log("✅ Users created:: ", allUsers);
|
||||
|
||||
// // for each user, assign a role
|
||||
for (const user of allUsers) {
|
||||
console.log("User is:: ", user);
|
||||
// Update user company
|
||||
await gr.services.companies.setUserRole(company.id, user.id, userRole);
|
||||
await gr.services.workspaces.processPendingUser(user);
|
||||
}
|
||||
console.log("✅ Users created");
|
||||
|
||||
let updateBegin = Date.now();
|
||||
let createTreePromises = [];
|
||||
for (const user of allUsers) {
|
||||
// console.log progress percentage
|
||||
const context = { company, user };
|
||||
const parentDrive = `user_${user.id}`;
|
||||
const folderData = await getDefaultDriveItem(
|
||||
{
|
||||
parent_id: parentDrive,
|
||||
company_id: company.id,
|
||||
is_directory: true,
|
||||
},
|
||||
context,
|
||||
);
|
||||
// create folder tree
|
||||
await createTree(folderTreeDepth, folderData, parentDrive, context, client);
|
||||
console.log(`✅ User ${user.id} folder tree created`);
|
||||
}
|
||||
// await Promise.all(createTreePromises);
|
||||
console.log("✅ Finished execution, took: ", (Date.now() - updateBegin) / 1000, "s");
|
||||
},
|
||||
};
|
||||
|
||||
export default command;
|
||||
@@ -47,4 +47,7 @@ export abstract class AbstractConnector<T extends ConnectionOptions> implements
|
||||
getType(): DatabaseType {
|
||||
return this.type;
|
||||
}
|
||||
getClient() {
|
||||
return this.getClient();
|
||||
}
|
||||
}
|
||||
|
||||
@@ -99,6 +99,11 @@ export interface Connector extends Initializable {
|
||||
* @returns Pagination
|
||||
*/
|
||||
getOffsetPagination(options: Paginable): Pagination;
|
||||
|
||||
/**
|
||||
* Get the db client
|
||||
*/
|
||||
getClient(): any;
|
||||
}
|
||||
|
||||
export declare type ConnectionOptions = MongoConnectionOptions | PostgresConnectionOptions;
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
export default {
|
||||
current: /* @VERSION_DETAIL */ "1.0.4-hf2",
|
||||
current: /* @VERSION_DETAIL */ "1.0.4-hf3",
|
||||
minimal: {
|
||||
web: /* @MIN_VERSION_WEB */ "1.0.4-hf2",
|
||||
mobile: /* @MIN_VERSION_MOBILE */ "1.0.4-hf2",
|
||||
web: /* @MIN_VERSION_WEB */ "1.0.4-hf3",
|
||||
mobile: /* @MIN_VERSION_MOBILE */ "1.0.4-hf3",
|
||||
},
|
||||
};
|
||||
|
||||
@@ -1,22 +1,23 @@
|
||||
<svg width="203" height="203" viewBox="0 0 203 203" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<rect width="202.032" height="202.032" rx="66.7216" fill="white"/>
|
||||
<rect width="202.032" height="202.032" rx="66.7216" fill="url(#paint0_linear_55782_2838)"/>
|
||||
<rect width="202.032" height="202.032" rx="66.7216" fill="url(#paint1_linear_55782_2838)"/>
|
||||
<rect width="202.032" height="202.032" rx="66.7216" fill="url(#paint2_linear_55782_2838)"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M68.7986 39.5345C67.6115 38.8996 66.2064 38.5615 64.3244 38.5615H63.7285C61.8464 38.5615 60.4414 38.8996 59.2542 39.5345C58.0671 40.1694 57.1354 41.1011 56.5005 42.2883C55.8656 43.4754 55.5275 44.8805 55.5275 46.7625L55.5336 49.5181C52.751 50.1618 50.6692 51.0493 48.58 52.1666C43.8314 54.7062 40.1047 58.4329 37.5651 63.1816C35.0255 67.9302 33.6731 72.6403 33.6731 85.6294V127.477C33.6731 140.466 35.0255 145.176 37.5651 149.925C40.1047 154.673 43.8314 158.4 48.58 160.939C53.3286 163.479 58.0388 164.831 71.0279 164.831H132.301C145.29 164.831 150.001 163.479 154.749 160.939C159.498 158.4 163.224 154.673 165.764 149.925C168.304 145.176 169.656 140.466 169.656 127.477V85.6294C169.656 72.6403 168.304 67.9302 165.764 63.1816C163.224 58.4329 159.498 54.7062 154.749 52.1666C152.662 51.0505 150.583 50.1638 147.805 49.5203L147.802 46.7625C147.802 44.8805 147.464 43.4754 146.829 42.2883C146.194 41.1011 145.262 40.1694 144.075 39.5345C142.888 38.8996 141.483 38.5615 139.601 38.5615H139.005C137.123 38.5615 135.718 38.8996 134.531 39.5345C133.343 40.1694 132.412 41.1011 131.777 42.2883C131.142 43.4754 130.804 44.8805 130.804 46.7625V48.2746L72.5254 48.2649V46.7625C72.5254 44.8805 72.1872 43.4754 71.5524 42.2883C70.9175 41.1011 69.9858 40.1694 68.7986 39.5345ZM58.7645 84.6986H144.565C147.379 84.6986 148.4 84.9916 149.428 85.5419C150.457 86.0921 151.265 86.8996 151.815 87.9285C152.365 88.9573 152.658 89.9779 152.658 92.7922V136.639L152.593 137.856C151.986 143.453 147.244 147.809 141.464 147.809L64.9632 147.641L63.4187 147.619C59.5897 147.509 57.9862 147.001 56.3714 146.135C54.5547 145.16 53.1296 143.731 52.1587 141.913C51.1877 140.094 50.6709 138.29 50.6709 133.318V92.7922L50.6888 91.6906C50.7599 89.6861 51.0426 88.8103 51.5142 87.9285C52.0645 86.8996 52.8719 86.0921 53.9008 85.5419C54.9296 84.9916 55.9502 84.6986 58.7645 84.6986ZM131.178 96.84H125.573C122.326 96.84 121.148 97.1781 119.961 97.813C118.774 98.4479 117.842 99.3796 117.207 100.567C116.572 101.754 116.234 102.931 116.234 106.179V111.784C116.234 115.031 116.572 116.209 117.207 117.396C117.842 118.583 118.774 119.515 119.961 120.15C121.148 120.785 122.326 121.123 125.573 121.123H131.178C134.425 121.123 135.603 120.785 136.79 120.15C137.977 119.515 138.909 118.583 139.544 117.396C140.179 116.209 140.517 115.031 140.517 111.784V106.179C140.517 102.931 140.179 101.754 139.544 100.567C138.909 99.3796 137.977 98.4479 136.79 97.813C135.603 97.1781 134.425 96.84 131.178 96.84Z" fill="white"/>
|
||||
<svg width="42" height="43" viewBox="0 0 42 43" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<rect y="0.576172" width="42" height="42" rx="14.2009" fill="white"/>
|
||||
<rect y="0.576172" width="42" height="42" rx="14.2009" fill="url(#paint0_linear_1954_136)"/>
|
||||
<g filter="url(#filter0_d_1954_136)">
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M14.716 9.18628C14.489 9.06472 14.2204 9 13.8605 9H13.7466C13.3867 9 13.1181 9.06472 12.8911 9.18628C12.6641 9.30775 12.486 9.48614 12.3646 9.7134C12.2432 9.94066 12.1786 10.2096 12.1786 10.5699L12.1797 11.0974C11.6477 11.2206 11.2497 11.3905 10.8502 11.6044C9.94231 12.0906 9.22973 12.804 8.74415 13.713C8.25859 14.622 8 15.5237 8 18.0102V26.021C8 28.5076 8.25859 29.4092 8.74415 30.3183C9.22973 31.2273 9.94231 31.9407 10.8502 32.4268C11.7582 32.913 12.6587 33.1719 15.1422 33.1719H26.8577C29.3412 33.1719 30.2418 32.913 31.1497 32.4268C32.0577 31.9407 32.7702 31.2273 33.2558 30.3183C33.7414 29.4092 34 28.5076 34 26.021V18.0102C34 15.5237 33.7414 14.622 33.2558 13.713C32.7702 12.804 32.0577 12.0906 31.1497 11.6044C30.7507 11.3908 30.3532 11.221 29.822 11.0978L29.8214 10.5699C29.8214 10.2096 29.7568 9.94066 29.6354 9.7134C29.5139 9.48614 29.3358 9.30775 29.1089 9.18628C28.8819 9.06472 28.6132 9 28.2534 9H28.1395C27.7796 9 27.511 9.06472 27.284 9.18628C27.057 9.30775 26.8788 9.48614 26.7574 9.7134C26.6361 9.94066 26.5714 10.2096 26.5714 10.5699V10.8593L15.4286 10.8575V10.5699C15.4286 10.2096 15.3639 9.94066 15.2425 9.7134C15.1212 9.48614 14.943 9.30775 14.716 9.18628ZM12.7975 17.832H29.2025C29.7406 17.832 29.9357 17.8881 30.1324 17.9934C30.3291 18.0988 30.4835 18.2533 30.5887 18.4504C30.694 18.6473 30.7499 18.8427 30.7499 19.3814V27.775L30.7375 28.008C30.6214 29.0794 29.7149 29.9133 28.6095 29.9133L13.9827 29.8812L13.6874 29.8768C12.9553 29.8559 12.6487 29.7587 12.3399 29.5927C11.9926 29.4061 11.7201 29.1328 11.5345 28.7845C11.3488 28.4363 11.25 28.0912 11.25 27.1392V19.3814L11.2534 19.1705C11.267 18.7868 11.3211 18.6191 11.4113 18.4504C11.5164 18.2533 11.6708 18.0988 11.8676 17.9934C12.0643 17.8881 12.2594 17.832 12.7975 17.832ZM26.643 20.1562H25.5712C24.9503 20.1562 24.7253 20.221 24.4983 20.3425C24.2713 20.4641 24.0931 20.6424 23.9717 20.8696C23.8504 21.0969 23.7857 21.3223 23.7857 21.944V23.0169C23.7857 23.6386 23.8504 23.864 23.9717 24.0913C24.0931 24.3186 24.2713 24.4969 24.4983 24.6184C24.7253 24.74 24.9503 24.8047 25.5712 24.8047H26.643C27.2639 24.8047 27.489 24.74 27.716 24.6184C27.943 24.4969 28.1211 24.3186 28.2425 24.0913C28.3639 23.864 28.4285 23.6386 28.4285 23.0169V21.944C28.4285 21.3223 28.3639 21.0969 28.2425 20.8696C28.1211 20.6424 27.943 20.4641 27.716 20.3425C27.489 20.221 27.2639 20.1562 26.643 20.1562Z" fill="white"/>
|
||||
</g>
|
||||
<defs>
|
||||
<linearGradient id="paint0_linear_55782_2838" x1="202.032" y1="117.852" x2="147.333" y2="82.9301" gradientUnits="userSpaceOnUse">
|
||||
<stop offset="0.12998" stop-color="#A033FF"/>
|
||||
<stop offset="0.610381" stop-color="#0094FF"/>
|
||||
<stop offset="1" stop-color="#F47734"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint1_linear_55782_2838" x1="92.598" y1="63.135" x2="29.463" y2="189.405" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#FFD600" stop-opacity="0"/>
|
||||
<stop offset="0.563347" stop-color="#FFC700"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint2_linear_55782_2838" x1="109.434" y1="117.852" x2="180.987" y2="193.614" gradientUnits="userSpaceOnUse">
|
||||
<stop offset="0.0297327" stop-color="#FF3B30" stop-opacity="0"/>
|
||||
<stop offset="0.842824" stop-color="#E73B2D"/>
|
||||
<filter id="filter0_d_1954_136" x="5.80729" y="7.24583" width="30.3854" height="28.5573" 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 dy="0.438541"/>
|
||||
<feGaussianBlur stdDeviation="1.09635"/>
|
||||
<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.1 0"/>
|
||||
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_1954_136"/>
|
||||
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_1954_136" result="shape"/>
|
||||
</filter>
|
||||
<linearGradient id="paint0_linear_1954_136" x1="3.96217" y1="42.5538" x2="50.3303" y2="-5.31354" gradientUnits="userSpaceOnUse">
|
||||
<stop offset="0.286667" stop-color="#FD813C"/>
|
||||
<stop offset="1" stop-color="#FFF500"/>
|
||||
</linearGradient>
|
||||
</defs>
|
||||
</svg>
|
||||
|
||||
|
Before Width: | Height: | Size: 3.7 KiB After Width: | Height: | Size: 3.6 KiB |
@@ -1,27 +1,23 @@
|
||||
<svg width="203" height="203" viewBox="0 0 203 203" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<rect width="202.032" height="202.032" rx="66.7216" fill="white"/>
|
||||
<rect width="202.032" height="202.032" rx="66.7216" fill="url(#paint0_linear_55782_2842)"/>
|
||||
<rect width="202.032" height="202.032" rx="66.7216" fill="url(#paint1_linear_55782_2842)"/>
|
||||
<rect width="202.032" height="202.032" rx="66.7216" fill="url(#paint2_linear_55782_2842)"/>
|
||||
<rect width="202.032" height="202.032" rx="66.7216" fill="url(#paint3_linear_55782_2842)" fill-opacity="0.2"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M42.0036 54.0458C39 59.9399 39 67.6564 39 83.0889V118.911C39 134.344 39 142.06 42.0036 147.954C44.6452 153.139 48.8607 157.355 54.0458 159.996C59.9399 163 67.6564 163 83.0889 163H118.911C134.344 163 142.06 163 147.954 159.996C153.139 157.355 157.355 153.139 159.996 147.954C163 142.06 163 134.344 163 118.911V83.0889C163 67.6564 163 59.9399 159.996 54.0458C157.355 48.8607 153.139 44.6452 147.954 42.0036C142.06 39 134.344 39 118.911 39H83.0889C67.6564 39 59.9399 39 54.0458 42.0036C48.8607 44.6452 44.6452 48.8607 42.0036 54.0458ZM101 66.5556C110.515 66.5556 118.222 74.2624 118.222 83.7778C118.222 93.2932 110.515 101 101 101C91.4846 101 83.7778 93.2932 83.7778 83.7778C83.7778 74.2624 91.4846 66.5556 101 66.5556ZM66.5556 131.117V126.966C66.5556 112.128 89.5043 107.889 101 107.889C112.496 107.889 135.444 112.128 135.444 126.966V131.117C135.444 133.507 133.507 135.444 131.117 135.444H70.8827C68.4927 135.444 66.5556 133.507 66.5556 131.117Z" fill="white"/>
|
||||
<svg width="42" height="43" viewBox="0 0 42 43" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<rect y="0.576172" width="42" height="42" rx="14.2009" fill="white"/>
|
||||
<rect y="0.576172" width="42" height="42" rx="14.2009" fill="url(#paint0_linear_1954_141)"/>
|
||||
<g filter="url(#filter0_d_1954_141)">
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M8.62978 12.1548C8 13.3906 8 15.0086 8 18.2444V25.7556C8 28.9914 8 30.6094 8.62978 31.8452C9.18367 32.9324 10.0676 33.8163 11.1548 34.3702C12.3906 35 14.0086 35 17.2444 35H24.7556C27.9914 35 29.6094 35 30.8452 34.3702C31.9324 33.8163 32.8163 32.9324 33.3702 31.8452C34 30.6094 34 28.9914 34 25.7556V18.2444C34 15.0086 34 13.3906 33.3702 12.1548C32.8163 11.0676 31.9324 10.1837 30.8452 9.62978C29.6094 9 27.9914 9 24.7556 9H17.2444C14.0086 9 12.3906 9 11.1548 9.62978C10.0676 10.1837 9.18367 11.0676 8.62978 12.1548ZM21 14.7778C22.9952 14.7778 24.6111 16.3937 24.6111 18.3889C24.6111 20.3841 22.9952 22 21 22C19.0048 22 17.3889 20.3841 17.3889 18.3889C17.3889 16.3937 19.0048 14.7778 21 14.7778ZM13.7778 28.3149V27.4444C13.7778 24.3334 18.5896 23.4444 21 23.4444C23.4104 23.4444 28.2222 24.3334 28.2222 27.4444V28.3149C28.2222 28.816 27.816 29.2222 27.3149 29.2222H14.6851C14.184 29.2222 13.7778 28.816 13.7778 28.3149Z" fill="white"/>
|
||||
</g>
|
||||
<defs>
|
||||
<linearGradient id="paint0_linear_55782_2842" x1="202.032" y1="117.852" x2="147.333" y2="82.9301" gradientUnits="userSpaceOnUse">
|
||||
<stop offset="0.12998" stop-color="#A033FF"/>
|
||||
<stop offset="0.610381" stop-color="#0094FF"/>
|
||||
<stop offset="1" stop-color="#FF008A"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint1_linear_55782_2842" x1="92.598" y1="63.135" x2="29.463" y2="189.405" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#FFD600" stop-opacity="0"/>
|
||||
<stop offset="0.563347" stop-color="#FFC700"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint2_linear_55782_2842" x1="109.434" y1="117.852" x2="180.987" y2="193.614" gradientUnits="userSpaceOnUse">
|
||||
<stop offset="0.0297327" stop-color="#FF3B30" stop-opacity="0"/>
|
||||
<stop offset="0.842824" stop-color="#E73B2D"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint3_linear_55782_2842" x1="101.016" y1="0" x2="101.016" y2="202.032" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="white"/>
|
||||
<stop offset="1" stop-opacity="0"/>
|
||||
<filter id="filter0_d_1954_141" x="5.80729" y="7.24583" width="30.3854" height="30.3854" 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 dy="0.438541"/>
|
||||
<feGaussianBlur stdDeviation="1.09635"/>
|
||||
<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.1 0"/>
|
||||
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_1954_141"/>
|
||||
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_1954_141" result="shape"/>
|
||||
</filter>
|
||||
<linearGradient id="paint0_linear_1954_141" x1="7.28183" y1="38.8058" x2="39.6217" y2="3.14623" gradientUnits="userSpaceOnUse">
|
||||
<stop offset="0.229502" stop-color="#F74EA9"/>
|
||||
<stop offset="1" stop-color="#FFB2A8"/>
|
||||
</linearGradient>
|
||||
</defs>
|
||||
</svg>
|
||||
|
||||
|
Before Width: | Height: | Size: 2.5 KiB After Width: | Height: | Size: 2.2 KiB |
@@ -1,18 +1,24 @@
|
||||
<svg width="194" height="194" viewBox="0 0 194 194" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M0.00109863 63.8066C0.00109863 28.5672 28.5683 0 63.8076 0H129.4C164.639 0 193.206 28.5672 193.206 63.8066V129.399C193.206 164.638 164.639 193.205 129.4 193.205H63.8077C28.5683 193.205 0.00109863 164.638 0.00109863 129.399V63.8066Z" fill="white"/>
|
||||
<path d="M0.00109863 63.8066C0.00109863 28.5672 28.5683 0 63.8076 0H129.4C164.639 0 193.206 28.5672 193.206 63.8066V129.399C193.206 164.638 164.639 193.205 129.4 193.205H63.8077C28.5683 193.205 0.00109863 164.638 0.00109863 129.399V63.8066Z" fill="url(#paint0_linear_55782_2820)"/>
|
||||
<path d="M0.00109863 63.8066C0.00109863 28.5672 28.5683 0 63.8076 0H129.4C164.639 0 193.206 28.5672 193.206 63.8066V129.399C193.206 164.638 164.639 193.205 129.4 193.205H63.8077C28.5683 193.205 0.00109863 164.638 0.00109863 129.399V63.8066Z" fill="url(#paint1_linear_55782_2820)"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M96.0277 112.99C96.0277 112.402 96.0133 111.815 95.9847 111.227C95.9555 110.64 95.9125 110.053 95.8547 109.468C95.7969 108.882 95.7253 108.299 95.6388 107.717C95.5528 107.136 95.452 106.556 95.3373 105.979C95.2227 105.402 95.0937 104.829 94.9509 104.258C94.8081 103.687 94.651 103.121 94.4805 102.558C94.3095 101.995 94.1252 101.437 93.927 100.883C93.7289 100.33 93.5174 99.7807 93.292 99.2376C93.0672 98.694 92.829 98.1564 92.5775 97.6247C92.326 97.093 92.0616 96.5682 91.7844 96.0493C91.5071 95.5304 91.2171 95.019 90.9147 94.5144C90.6122 94.0099 90.2979 93.5133 89.9713 93.0241C89.6442 92.5349 89.3057 92.0545 88.9553 91.5821C88.605 91.1097 88.2433 90.6462 87.8702 90.1916C87.4971 89.7365 87.1131 89.2912 86.7178 88.8559C86.323 88.42 85.9178 87.9941 85.5017 87.578C85.0856 87.1624 84.6601 86.7567 84.2243 86.3619C83.7884 85.9671 83.3432 85.5826 82.8886 85.2095C82.434 84.8364 81.9705 84.4747 81.498 84.1243C81.0256 83.774 80.5448 83.4355 80.0556 83.1089C79.5664 82.7817 79.0698 82.4674 78.5652 82.165C78.0607 81.8626 77.5492 81.573 77.0304 81.2958C76.512 81.0181 75.9867 80.7537 75.455 80.5027C74.9233 80.2512 74.3857 80.013 73.8426 79.7876C73.299 79.5628 72.7505 79.3508 72.1966 79.1527C71.6426 78.9545 71.0847 78.7702 70.5219 78.5997C69.959 78.4287 69.3922 78.2721 68.8215 78.1293C68.2512 77.986 67.6775 77.8575 67.1003 77.7423C66.5237 77.6277 65.9445 77.5274 65.3624 77.4409C64.7808 77.3549 64.1972 77.2828 63.6121 77.225C63.0265 77.1676 62.44 77.1242 61.8529 77.0955C61.2654 77.0663 60.6773 77.052 60.0893 77.052C59.5012 77.052 58.9133 77.0663 58.3259 77.0955C57.7384 77.1242 57.1521 77.1676 56.5667 77.225C55.9814 77.2828 55.3978 77.3549 54.816 77.4409C54.2342 77.5274 53.6549 77.6277 53.078 77.7423C52.5012 77.8575 51.9275 77.986 51.357 78.1293C50.7864 78.2721 50.2197 78.4287 49.6569 78.5997C49.0941 78.7702 48.5358 78.9545 47.982 79.1527C47.4282 79.3508 46.8796 79.5628 46.3362 79.7876C45.7928 80.013 45.2553 80.2512 44.7236 80.5027C44.1919 80.7537 43.6667 81.0181 43.148 81.2958C42.6293 81.573 42.1177 81.8626 41.6132 82.165C41.1087 82.4674 40.6119 82.7817 40.1229 83.1089C39.6339 83.4355 39.1532 83.774 38.6807 84.1243C38.2083 84.4747 37.7448 84.8364 37.2901 85.2095C36.8355 85.5826 36.3902 85.9671 35.9544 86.3619C35.5186 86.7567 35.0928 87.1624 34.677 87.578C34.261 87.9941 33.8556 88.42 33.4606 88.8559C33.0656 89.2912 32.6816 89.7365 32.3085 90.1916C31.9353 90.6462 31.5736 91.1097 31.2232 91.5821C30.8728 92.0545 30.5343 92.5349 30.2075 93.0241C29.8807 93.5133 29.5662 94.0099 29.2638 94.5144C28.9614 95.019 28.6716 95.5304 28.3943 96.0493C28.1171 96.5682 27.8527 97.093 27.6012 97.6247C27.3498 98.1564 27.1115 98.694 26.8864 99.2376C26.6613 99.7807 26.4497 100.33 26.2516 100.883C26.0535 101.437 25.869 101.995 25.6983 102.558C25.5275 103.121 25.3707 103.687 25.2278 104.258C25.0849 104.829 24.956 105.402 24.8413 105.979C24.7265 106.556 24.626 107.136 24.5398 107.717C24.4534 108.299 24.3815 108.882 24.3238 109.468C24.2661 110.053 24.2229 110.64 24.194 111.227C24.1652 111.815 24.1508 112.402 24.1508 112.99C24.1508 113.578 24.1652 114.166 24.194 114.754C24.2229 115.342 24.2661 115.928 24.3238 116.513C24.3815 117.098 24.4534 117.682 24.5398 118.264C24.626 118.846 24.7265 119.425 24.8413 120.002C24.956 120.579 25.0849 121.152 25.2278 121.723C25.3707 122.293 25.5275 122.86 25.6983 123.423C25.869 123.986 26.0535 124.544 26.2516 125.098C26.4497 125.652 26.6613 126.2 26.8864 126.744C27.1115 127.287 27.3498 127.824 27.6012 128.356C27.8527 128.888 28.1171 129.413 28.3943 129.932C28.6716 130.45 28.9614 130.962 29.2638 131.466C29.5662 131.971 29.8807 132.468 30.2075 132.957C30.5343 133.446 30.8728 133.927 31.2232 134.399C31.5736 134.872 31.9353 135.335 32.3085 135.79C32.6816 136.244 33.0656 136.69 33.4606 137.125C33.8556 137.561 34.261 137.987 34.677 138.403C35.0928 138.819 35.5186 139.224 35.9544 139.619C36.3902 140.014 36.8355 140.398 37.2901 140.771C37.7448 141.144 38.2083 141.506 38.6807 141.856C39.1532 142.207 39.6339 142.545 40.1229 142.872C40.6119 143.199 41.1087 143.514 41.6132 143.816C42.1177 144.118 42.6293 144.408 43.148 144.686C43.6667 144.963 44.1919 145.227 44.7236 145.479C45.2553 145.73 45.7928 145.968 46.3362 146.194C46.8796 146.419 47.4282 146.63 47.982 146.828C48.5358 147.026 49.0941 147.211 49.6569 147.382C50.2197 147.552 50.7864 147.709 51.357 147.852C51.9275 147.995 52.5012 148.124 53.078 148.238C53.6549 148.353 54.2342 148.454 54.816 148.54C55.3978 148.626 55.9814 148.699 56.5667 148.756C57.1521 148.814 57.7384 148.857 58.3259 148.886C58.9133 148.914 59.5012 148.929 60.0893 148.929H117.591V112.99H96.0277Z" fill="white"/>
|
||||
<path d="M117.591 148.929C145.379 148.929 167.906 126.403 167.906 98.6154C167.906 70.8276 145.379 48.3015 117.591 48.3015C89.8041 48.3015 67.2775 70.8276 67.2775 98.6154C67.2775 126.403 89.8041 148.929 117.591 148.929Z" fill="white"/>
|
||||
<svg width="42" height="43" viewBox="0 0 42 43" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<rect y="0.955078" width="42" height="42" rx="14.2009" fill="white"/>
|
||||
<rect y="0.955078" width="42" height="42" rx="14.2009" fill="url(#paint0_linear_1954_129)"/>
|
||||
<g filter="url(#filter0_d_1954_129)">
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M20.989 24.8358C20.989 24.7219 20.9862 24.6081 20.9807 24.4943C20.975 24.3805 20.9667 24.2669 20.9555 24.1536C20.9443 24.0402 20.9304 23.9271 20.9137 23.8145C20.897 23.7018 20.8775 23.5896 20.8553 23.4779C20.8331 23.3661 20.8081 23.255 20.7805 23.1445C20.7528 23.0339 20.7224 22.9243 20.6893 22.8152C20.6562 22.7062 20.6205 22.5981 20.5821 22.4908C20.5438 22.3836 20.5028 22.2772 20.4592 22.1721C20.4156 22.0668 20.3695 21.9626 20.3208 21.8597C20.272 21.7567 20.2208 21.655 20.1671 21.5545C20.1135 21.454 20.0573 21.355 19.9987 21.2573C19.9401 21.1595 19.8792 21.0633 19.816 20.9686C19.7526 20.8738 19.6871 20.7808 19.6192 20.6893C19.5513 20.5978 19.4813 20.508 19.409 20.42C19.3368 20.3318 19.2624 20.2456 19.1858 20.1613C19.1093 20.0768 19.0309 19.9943 18.9503 19.9138C18.8697 19.8333 18.7873 19.7547 18.7029 19.6782C18.6184 19.6017 18.5322 19.5273 18.4441 19.455C18.3561 19.3827 18.2663 19.3127 18.1748 19.2448C18.0833 19.177 17.9902 19.1114 17.8954 19.0481C17.8007 18.9848 17.7045 18.9239 17.6068 18.8653C17.509 18.8068 17.41 18.7507 17.3095 18.697C17.2091 18.6432 17.1073 18.592 17.0044 18.5434C16.9014 18.4946 16.7972 18.4485 16.6921 18.4049C16.5868 18.3613 16.4805 18.3203 16.3732 18.2819C16.2659 18.2435 16.1579 18.2078 16.0489 18.1748C15.9399 18.1417 15.8301 18.1113 15.7195 18.0837C15.6091 18.0559 15.498 18.031 15.3862 18.0087C15.2745 17.9865 15.1623 17.9671 15.0495 17.9503C14.9369 17.9337 14.8239 17.9197 14.7105 17.9085C14.5971 17.8974 14.4835 17.889 14.3698 17.8834C14.256 17.8778 14.1421 17.875 14.0282 17.875C13.9143 17.875 13.8004 17.8778 13.6867 17.8834C13.5729 17.889 13.4593 17.8974 13.3459 17.9085C13.2326 17.9197 13.1195 17.9337 13.0069 17.9503C12.8942 17.9671 12.782 17.9865 12.6702 18.0087C12.5585 18.031 12.4474 18.0559 12.3369 18.0837C12.2264 18.1113 12.1166 18.1417 12.0076 18.1748C11.8986 18.2078 11.7904 18.2435 11.6832 18.2819C11.5759 18.3203 11.4697 18.3613 11.3644 18.4049C11.2592 18.4485 11.1551 18.4946 11.0521 18.5434C10.9491 18.592 10.8474 18.6432 10.7469 18.697C10.6464 18.7507 10.5473 18.8068 10.4496 18.8653C10.3519 18.9239 10.2557 18.9848 10.161 19.0481C10.0663 19.1114 9.97316 19.177 9.88165 19.2448C9.79015 19.3127 9.70037 19.3827 9.6123 19.455C9.52425 19.5273 9.43801 19.6017 9.3536 19.6782C9.2692 19.7547 9.18672 19.8333 9.10617 19.9138C9.02561 19.9943 8.94708 20.0768 8.87058 20.1613C8.79408 20.2456 8.7197 20.3318 8.64743 20.42C8.57515 20.508 8.50508 20.5978 8.43722 20.6893C8.36936 20.7808 8.30378 20.8738 8.2405 20.9686C8.17721 21.0633 8.11628 21.1595 8.05771 21.2573C7.99914 21.355 7.94301 21.454 7.88931 21.5545C7.83561 21.655 7.78441 21.7567 7.7357 21.8597C7.68699 21.9626 7.64084 22.0668 7.59724 22.1721C7.55365 22.2772 7.51266 22.3836 7.47428 22.4908C7.43591 22.5981 7.40018 22.7062 7.36711 22.8152C7.33404 22.9243 7.30368 23.0339 7.27599 23.1445C7.24831 23.255 7.22335 23.3661 7.20113 23.4779C7.17891 23.5896 7.15944 23.7018 7.14273 23.8145C7.12601 23.9271 7.11207 24.0402 7.1009 24.1536C7.08973 24.2669 7.08136 24.3805 7.07577 24.4943C7.07018 24.6081 7.06738 24.7219 7.06738 24.8358C7.06738 24.9497 7.07018 25.0636 7.07577 25.1774C7.08136 25.2912 7.08973 25.4047 7.1009 25.5181C7.11207 25.6315 7.12601 25.7445 7.14273 25.8572C7.15944 25.9699 7.17891 26.0821 7.20113 26.1939C7.22335 26.3056 7.24831 26.4167 7.27599 26.5272C7.30368 26.6377 7.33404 26.7475 7.36711 26.8565C7.40018 26.9655 7.43591 27.0736 7.47428 27.1808C7.51266 27.2881 7.55365 27.3944 7.59724 27.4997C7.64084 27.6048 7.68699 27.709 7.7357 27.812C7.78441 27.9149 7.83561 28.0167 7.88931 28.1172C7.94301 28.2176 7.99914 28.3167 8.05771 28.4144C8.11628 28.5121 8.17721 28.6084 8.2405 28.703C8.30378 28.7978 8.36936 28.8909 8.43722 28.9824C8.50508 29.0739 8.57515 29.1637 8.64743 29.2517C8.7197 29.3398 8.79408 29.426 8.87058 29.5105C8.94708 29.5949 9.02561 29.6774 9.10617 29.7579C9.18672 29.8385 9.2692 29.9169 9.3536 29.9935C9.43801 30.07 9.52425 30.1443 9.6123 30.2166C9.70037 30.2889 9.79015 30.3589 9.88165 30.4268C9.97316 30.4947 10.0663 30.5602 10.161 30.6236C10.2557 30.6868 10.3519 30.7478 10.4496 30.8063C10.5473 30.8649 10.6464 30.921 10.7469 30.9747C10.8474 31.0284 10.9491 31.0796 11.0521 31.1284C11.1551 31.1771 11.2592 31.2232 11.3644 31.2669C11.4697 31.3104 11.5759 31.3514 11.6832 31.3897C11.7904 31.4281 11.8986 31.4638 12.0076 31.4969C12.1166 31.53 12.2264 31.5604 12.3369 31.5881C12.4474 31.6157 12.5585 31.6407 12.6702 31.6629C12.782 31.6851 12.8942 31.7046 13.0069 31.7213C13.1195 31.738 13.2326 31.752 13.3459 31.7631C13.4593 31.7743 13.5729 31.7827 13.6867 31.7883C13.8004 31.7938 13.9143 31.7967 14.0282 31.7967H25.1656V24.8358H20.989Z" fill="white"/>
|
||||
<path d="M25.1631 31.7969C30.5453 31.7969 34.9084 27.4339 34.9084 22.0518C34.9084 16.6696 30.5453 12.3066 25.1631 12.3066C19.7811 12.3066 15.418 16.6696 15.418 22.0518C15.418 27.4339 19.7811 31.7969 25.1631 31.7969Z" fill="white"/>
|
||||
</g>
|
||||
<defs>
|
||||
<linearGradient id="paint0_linear_55782_2820" x1="193.206" y1="112.703" x2="140.898" y2="79.307" gradientUnits="userSpaceOnUse">
|
||||
<stop offset="0.12998" stop-color="#A033FF"/>
|
||||
<stop offset="0.610381" stop-color="#0094FF"/>
|
||||
<stop offset="1" stop-color="#FF4759"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint1_linear_55782_2820" x1="88.5535" y1="60.3766" x2="28.1768" y2="181.13" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#FFD600" stop-opacity="0"/>
|
||||
<stop offset="0.563347" stop-color="#FFC700"/>
|
||||
<filter id="filter0_d_1954_129" x="4.87468" y="10.5525" width="32.2262" height="23.8756" 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 dy="0.438541"/>
|
||||
<feGaussianBlur stdDeviation="1.09635"/>
|
||||
<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.1 0"/>
|
||||
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_1954_129"/>
|
||||
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_1954_129" result="shape"/>
|
||||
</filter>
|
||||
<linearGradient id="paint0_linear_1954_129" x1="4.60468" y1="38.9705" x2="50.4373" y2="-6.96926" gradientUnits="userSpaceOnUse">
|
||||
<stop offset="0.248154" stop-color="#FF4759"/>
|
||||
<stop offset="1" stop-color="#FFD600"/>
|
||||
</linearGradient>
|
||||
</defs>
|
||||
</svg>
|
||||
|
||||
|
Before Width: | Height: | Size: 6.2 KiB After Width: | Height: | Size: 6.0 KiB |
@@ -1,22 +1,23 @@
|
||||
<svg width="196" height="196" viewBox="0 0 196 196" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<rect width="195.325" height="195.325" rx="64.5067" fill="white"/>
|
||||
<rect width="195.325" height="195.325" rx="64.5067" fill="url(#paint0_linear_55782_2826)"/>
|
||||
<rect width="195.325" height="195.325" rx="64.5067" fill="url(#paint1_linear_55782_2826)"/>
|
||||
<rect width="195.325" height="195.325" rx="64.5067" fill="url(#paint2_linear_55782_2826)"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M32.3834 67.9907C27.7502 71.524 25.0312 77.0171 25.0312 82.8438V145.989C25.0312 158.369 35.0669 168.404 47.4466 168.404H147.653C160.033 168.404 170.068 158.369 170.068 145.989V82.8438C170.068 77.0171 167.349 71.524 162.716 67.9906L108.877 26.9321C102.187 21.8303 92.9123 21.8303 86.2224 26.9321L32.3834 67.9907ZM41.1464 81.4981V145.131C41.1464 149.258 44.4916 152.603 48.6182 152.603H146.481C150.608 152.603 153.953 149.258 153.953 145.131V81.4981L106.122 114.997C100.976 118.602 94.1239 118.602 88.9772 114.997L41.1464 81.4981Z" fill="white"/>
|
||||
<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="14.2009" fill="white"/>
|
||||
<rect width="42" height="42" rx="14.2009" fill="url(#paint0_linear_1954_122)"/>
|
||||
<g filter="url(#filter0_d_1954_122)">
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M9.61213 15.6294C8.5962 16.4042 8 17.6087 8 18.8863V28.9393C8 31.6538 10.2005 33.8544 12.915 33.8544H29.085C31.7995 33.8544 34 31.6538 34 28.9393V18.8863C34 17.6087 33.4038 16.4042 32.3879 15.6294L23.4837 8.839C22.0169 7.72033 19.9831 7.72033 18.5163 8.839L9.61213 15.6294ZM10.8889 18.2752V29.3834C10.8889 30.2883 11.6224 31.0218 12.5272 31.0218H29.4728C30.3776 31.0218 31.1111 30.2883 31.1111 29.3834V18.2752L22.8797 24.0401C21.7512 24.8305 20.2488 24.8305 19.1203 24.0401L10.8889 18.2752Z" fill="white"/>
|
||||
</g>
|
||||
<defs>
|
||||
<linearGradient id="paint0_linear_55782_2826" x1="195.325" y1="113.94" x2="142.443" y2="80.1772" gradientUnits="userSpaceOnUse">
|
||||
<stop offset="0.12998" stop-color="#A033FF"/>
|
||||
<stop offset="0.610381" stop-color="#0094FF"/>
|
||||
<stop offset="1" stop-color="#1D90FF"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint1_linear_55782_2826" x1="89.5242" y1="61.0392" x2="28.4849" y2="183.118" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#FFD600" stop-opacity="0"/>
|
||||
<stop offset="0.563347" stop-color="#FFC700"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint2_linear_55782_2826" x1="105.801" y1="113.94" x2="174.979" y2="187.187" gradientUnits="userSpaceOnUse">
|
||||
<stop offset="0.0297327" stop-color="#FF3B30" stop-opacity="0"/>
|
||||
<stop offset="0.842824" stop-color="#E73B2D"/>
|
||||
<filter id="filter0_d_1954_122" x="5.80729" y="6.24583" width="30.3854" height="30.2389" 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 dy="0.438541"/>
|
||||
<feGaussianBlur stdDeviation="1.09635"/>
|
||||
<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.1 0"/>
|
||||
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_1954_122"/>
|
||||
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_1954_122" result="shape"/>
|
||||
</filter>
|
||||
<linearGradient id="paint0_linear_1954_122" x1="5.88971" y1="37.5871" x2="41.0138" y2="2.03463" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#1E91FF"/>
|
||||
<stop offset="0.997303" stop-color="#2ED9FF"/>
|
||||
</linearGradient>
|
||||
</defs>
|
||||
</svg>
|
||||
|
||||
|
Before Width: | Height: | Size: 1.8 KiB After Width: | Height: | Size: 1.7 KiB |
@@ -1,22 +1,28 @@
|
||||
<svg width="197" height="197" viewBox="0 0 197 197" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<rect width="196.105" height="196.105" rx="64.7641" fill="white"/>
|
||||
<rect width="196.105" height="196.105" rx="64.7641" fill="url(#paint0_linear_55782_2816)"/>
|
||||
<rect width="196.105" height="196.105" rx="64.7641" fill="url(#paint1_linear_55782_2816)"/>
|
||||
<rect width="196.105" height="196.105" rx="64.7641" fill="url(#paint2_linear_55782_2816)"/>
|
||||
<path d="M97.2776 41.5645C132.317 41.5645 160.723 66.0963 160.723 96.3579C160.723 126.62 132.317 151.151 97.2776 151.151C90.0936 151.151 83.1885 150.12 76.7498 148.22C69.5551 153.815 58.3961 158.513 43.2766 162.306C42.5607 162.485 41.8034 162.385 41.1589 162.026C39.761 161.245 39.2602 159.48 40.0402 158.082L41.1223 156.118C46.1434 146.879 49.2762 139.302 50.5207 133.387C40.1551 123.637 33.8325 110.635 33.8325 96.3579C33.8325 66.0963 62.2379 41.5645 97.2776 41.5645Z" fill="white"/>
|
||||
<svg width="42" height="42" viewBox="0 0 42 42" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<g clip-path="url(#clip0_1954_116)">
|
||||
<rect width="42.0224" height="42.0224" rx="14.2009" fill="white"/>
|
||||
<rect width="42.0224" height="42.0224" rx="14.2009" fill="url(#paint0_linear_1954_116)"/>
|
||||
<g filter="url(#filter0_d_1954_116)">
|
||||
<path d="M21 9C28.1797 9 34 14.0266 34 20.2273C34 26.4279 28.1797 31.4545 21 31.4545C19.528 31.4545 18.1131 31.2433 16.7938 30.8539C15.3196 32.0004 13.0331 32.963 9.93511 33.7401C9.78843 33.7769 9.63324 33.7564 9.50119 33.6827C9.21476 33.5228 9.11213 33.1611 9.27197 32.8746L9.49368 32.4722C10.5225 30.5792 11.1644 29.0266 11.4194 27.8145C9.29551 25.8167 8 23.1527 8 20.2273C8 14.0266 13.8203 9 21 9Z" fill="white"/>
|
||||
</g>
|
||||
</g>
|
||||
<defs>
|
||||
<linearGradient id="paint0_linear_55782_2816" x1="196.105" y1="114.394" x2="143.011" y2="80.4971" gradientUnits="userSpaceOnUse">
|
||||
<stop offset="0.12998" stop-color="#A033FF"/>
|
||||
<stop offset="0.610381" stop-color="#0094FF"/>
|
||||
<stop offset="1" stop-color="#4FB500"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint1_linear_55782_2816" x1="89.8813" y1="61.2827" x2="28.5986" y2="183.848" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#FFD600" stop-opacity="0"/>
|
||||
<stop offset="0.563347" stop-color="#FFC700"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint2_linear_55782_2816" x1="106.223" y1="114.394" x2="175.677" y2="187.934" gradientUnits="userSpaceOnUse">
|
||||
<stop offset="0.0297327" stop-color="#FF3B30" stop-opacity="0"/>
|
||||
<stop offset="0.842824" stop-color="#E73B2D"/>
|
||||
<filter id="filter0_d_1954_116" x="5.80729" y="7.24583" width="30.3854" height="29.1432" 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 dy="0.438541"/>
|
||||
<feGaussianBlur stdDeviation="1.09635"/>
|
||||
<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.1 0"/>
|
||||
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_1954_116"/>
|
||||
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_1954_116" result="shape"/>
|
||||
</filter>
|
||||
<linearGradient id="paint0_linear_1954_116" x1="5.67857" y1="38.5714" x2="39.4286" y2="-7.73e-07" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#8135FE"/>
|
||||
<stop offset="1" stop-color="#E8A6FF"/>
|
||||
</linearGradient>
|
||||
<clipPath id="clip0_1954_116">
|
||||
<rect width="42" height="42" fill="white"/>
|
||||
</clipPath>
|
||||
</defs>
|
||||
</svg>
|
||||
|
||||
|
Before Width: | Height: | Size: 1.7 KiB After Width: | Height: | Size: 1.8 KiB |
@@ -1,23 +1,24 @@
|
||||
<svg width="200" height="200" viewBox="0 0 200 200" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<rect width="199.931" height="199.931" rx="66.0278" fill="white"/>
|
||||
<rect width="199.931" height="199.931" rx="66.0278" fill="url(#paint0_linear_55782_2832)"/>
|
||||
<rect width="199.931" height="199.931" rx="66.0278" fill="url(#paint1_linear_55782_2832)"/>
|
||||
<rect width="199.931" height="199.931" rx="66.0278" fill="url(#paint2_linear_55782_2832)"/>
|
||||
<path d="M33.5844 91.857C33.5844 79.5681 33.5844 73.4236 35.9759 68.7298C38.0796 64.6011 41.4364 61.2443 45.5652 59.1406C50.2589 56.749 56.4034 56.749 68.6923 56.749H97.2176C109.507 56.749 115.651 56.749 120.345 59.1406C124.474 61.2443 127.83 64.6011 129.934 68.7298C132.326 73.4236 132.326 79.5681 132.326 91.857V109.411C132.326 121.7 132.326 127.844 129.934 132.538C127.83 136.667 124.474 140.024 120.345 142.127C115.651 144.519 109.507 144.519 97.2176 144.519H68.6923C56.4034 144.519 50.2589 144.519 45.5652 142.127C41.4364 140.024 38.0796 136.667 35.9759 132.538C33.5844 127.844 33.5844 121.7 33.5844 109.411V91.857Z" fill="white"/>
|
||||
<path d="M143.297 86.818C143.297 85.858 143.297 85.378 143.44 84.9518C143.567 84.5748 143.775 84.23 144.049 83.9413C144.358 83.6148 144.782 83.39 145.63 82.9404L157.838 76.4705C162.09 74.2167 164.216 73.0899 165.951 73.3168C167.465 73.5149 168.828 74.3351 169.712 75.5802C170.725 77.0066 170.725 79.4129 170.725 84.2256V117.042C170.725 121.855 170.725 124.261 169.712 125.688C168.828 126.933 167.465 127.753 165.951 127.951C164.216 128.178 162.09 127.051 157.838 124.798L145.63 118.328C144.782 117.878 144.358 117.653 144.049 117.327C143.775 117.038 143.567 116.693 143.44 116.316C143.297 115.89 143.297 115.41 143.297 114.45V86.818Z" fill="white"/>
|
||||
<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="14.2009" fill="white"/>
|
||||
<rect width="42" height="42" rx="14.2009" fill="url(#paint0_linear_1954_146)"/>
|
||||
<g filter="url(#filter0_d_1954_146)">
|
||||
<path d="M8 18.88C8 16.4718 8 15.2677 8.45341 14.3478C8.85225 13.5387 9.48865 12.8809 10.2714 12.4687C11.1613 12 12.3262 12 14.656 12H20.064C22.3938 12 23.5587 12 24.4486 12.4687C25.2314 12.8809 25.8678 13.5387 26.2666 14.3478C26.72 15.2677 26.72 16.4718 26.72 18.88V22.32C26.72 24.7282 26.72 25.9323 26.2666 26.8522C25.8678 27.6613 25.2314 28.3191 24.4486 28.7313C23.5587 29.2 22.3938 29.2 20.064 29.2H14.656C12.3262 29.2 11.1613 29.2 10.2714 28.7313C9.48865 28.3191 8.85225 27.6613 8.45341 26.8522C8 25.9323 8 24.7282 8 22.32V18.88Z" fill="white"/>
|
||||
<path d="M28.8 17.8925C28.8 17.7044 28.8 17.6103 28.8272 17.5268C28.8513 17.4529 28.8906 17.3854 28.9425 17.3288C29.0012 17.2648 29.0816 17.2207 29.2424 17.1326L31.5568 15.8647C32.3629 15.4231 32.766 15.2023 33.0949 15.2467C33.382 15.2856 33.6404 15.4463 33.808 15.6903C34 15.9698 34 16.4414 34 17.3845V23.8155C34 24.7586 34 25.2302 33.808 25.5097C33.6404 25.7537 33.382 25.9144 33.0949 25.9533C32.766 25.9977 32.3629 25.7769 31.5568 25.3353L29.2424 24.0673C29.0816 23.9792 29.0012 23.9352 28.9425 23.8712C28.8906 23.8146 28.8513 23.7471 28.8272 23.6732C28.8 23.5897 28.8 23.4956 28.8 23.3075V17.8925Z" fill="white"/>
|
||||
</g>
|
||||
<defs>
|
||||
<linearGradient id="paint0_linear_55782_2832" x1="199.931" y1="116.627" x2="145.801" y2="82.0678" gradientUnits="userSpaceOnUse">
|
||||
<stop offset="0.12998" stop-color="#A033FF"/>
|
||||
<stop offset="0.610381" stop-color="#0094FF"/>
|
||||
<stop offset="1" stop-color="#A84FF0"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint1_linear_55782_2832" x1="91.6351" y1="62.4785" x2="29.1566" y2="187.435" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#FFD600" stop-opacity="0"/>
|
||||
<stop offset="0.563347" stop-color="#FFC700"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint2_linear_55782_2832" x1="108.296" y1="116.627" x2="179.105" y2="191.601" gradientUnits="userSpaceOnUse">
|
||||
<stop offset="0.0297327" stop-color="#FF3B30" stop-opacity="0"/>
|
||||
<stop offset="0.842824" stop-color="#E73B2D"/>
|
||||
<filter id="filter0_d_1954_146" x="5.80729" y="10.2458" width="30.3854" height="21.5846" 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 dy="0.438541"/>
|
||||
<feGaussianBlur stdDeviation="1.09635"/>
|
||||
<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.1 0"/>
|
||||
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_1954_146"/>
|
||||
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_1954_146" result="shape"/>
|
||||
</filter>
|
||||
<linearGradient id="paint0_linear_1954_146" x1="4.92594" y1="38.0154" x2="47.9744" y2="-6.31805" gradientUnits="userSpaceOnUse">
|
||||
<stop offset="0.23798" stop-color="#50C750"/>
|
||||
<stop offset="1" stop-color="#EBFF00"/>
|
||||
</linearGradient>
|
||||
</defs>
|
||||
</svg>
|
||||
|
||||
|
Before Width: | Height: | Size: 2.5 KiB After Width: | Height: | Size: 2.4 KiB |
|
Before Width: | Height: | Size: 40 KiB After Width: | Height: | Size: 59 KiB |
@@ -1,48 +1,55 @@
|
||||
<svg width="1184" height="219" viewBox="0 0 1184 219" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M801.314 61.0457H842.907C855.995 61.0457 866.975 63.5412 875.849 68.5324C884.833 73.5235 891.543 80.4002 895.979 89.1624C900.416 97.9246 902.634 108.018 902.634 119.442C902.634 130.755 900.416 140.793 895.979 149.555C891.543 158.317 884.833 165.194 875.849 170.185C866.975 175.065 855.995 177.506 842.907 177.506H801.314V61.0457ZM840.079 156.543C853.167 156.543 862.816 153.215 869.027 146.56C875.349 139.795 878.51 130.755 878.51 119.442C878.51 108.129 875.349 99.0892 869.027 92.3235C862.816 85.4468 853.167 82.0084 840.079 82.0084H824.606V156.543H840.079Z" fill="url(#paint0_linear_55759_27367)"/>
|
||||
<path d="M913.381 90.9925H935.175V107.463C936.728 101.141 939.723 96.3718 944.16 93.1553C948.707 89.9388 954.641 88.5524 961.961 88.996V110.125H958.8C952.145 110.125 946.655 112.233 942.329 116.447C938.004 120.551 935.841 126.152 935.841 133.251V177.506H913.381V90.9925Z" fill="url(#paint1_linear_55759_27367)"/>
|
||||
<path d="M969.434 90.9925H991.894V177.506H969.434V90.9925ZM967.104 70.5288C967.104 66.8687 968.38 63.7631 970.931 61.212C973.593 58.661 976.809 57.3855 980.581 57.3855C984.463 57.3855 987.679 58.661 990.23 61.212C992.781 63.7631 994.057 66.8687 994.057 70.5288C994.057 74.2999 992.781 77.461 990.23 80.012C987.679 82.563 984.463 83.8385 980.581 83.8385C976.809 83.8385 973.593 82.563 970.931 80.012C968.38 77.35 967.104 74.189 967.104 70.5288Z" fill="url(#paint2_linear_55759_27367)"/>
|
||||
<path d="M996.027 90.9925H1022.65L1039.95 140.405C1041.5 144.619 1042.72 149.222 1043.61 154.214C1044.5 149.222 1045.72 144.619 1047.27 140.405L1064.57 90.9925H1090.69L1054.76 177.506H1032.13L996.027 90.9925Z" fill="url(#paint3_linear_55759_27367)"/>
|
||||
<path d="M1130.76 179.668C1122 179.668 1114.24 177.672 1107.47 173.679C1100.71 169.575 1095.44 164.085 1091.67 157.208C1087.9 150.332 1086.01 142.734 1086.01 134.415C1086.01 126.208 1087.95 118.61 1091.83 111.623C1095.72 104.635 1101.04 99.0892 1107.81 94.9854C1114.68 90.8816 1122.33 88.8297 1130.76 88.8297C1139.19 88.8297 1146.74 90.8816 1153.39 94.9854C1160.16 99.0892 1165.37 104.635 1169.03 111.623C1172.8 118.499 1174.69 126.097 1174.69 134.415C1174.69 137.188 1174.46 139.85 1174.02 142.401H1109.3C1110.63 147.614 1113.13 151.829 1116.79 155.045C1120.56 158.151 1125.22 159.704 1130.76 159.704C1135.42 159.704 1139.58 158.65 1143.24 156.543C1146.9 154.324 1149.79 151.496 1151.89 148.058L1169.36 161.201C1165.81 166.747 1160.6 171.239 1153.72 174.677C1146.85 178.005 1139.19 179.668 1130.76 179.668ZM1152.06 125.598C1150.73 120.607 1148.12 116.447 1144.24 113.12C1140.36 109.792 1135.76 108.129 1130.43 108.129C1125.22 108.129 1120.67 109.737 1116.79 112.953C1113.02 116.17 1110.52 120.385 1109.3 125.598H1152.06Z" fill="url(#paint4_linear_55759_27367)"/>
|
||||
<path d="M266.086 78.8336H230.236V56.2479H327.032V78.8336H291.182V181.724H266.086V78.8336Z" fill="black"/>
|
||||
<path d="M309.591 88.5132H337.913L349.923 141.392C351.237 146.77 352.193 151.49 352.791 155.553C353.628 150.415 354.643 145.635 355.838 141.213L369.461 88.5132H397.245L411.765 141.213C412.96 145.635 413.976 150.415 414.812 155.553C415.41 151.49 416.366 146.77 417.68 141.392L430.586 88.5132H456.936L427.897 181.724H401.727L386.49 128.666C385.056 124.363 383.981 119.703 383.264 114.684C382.427 120.181 381.471 124.841 380.396 128.666L366.414 181.724H338.63L309.591 88.5132Z" fill="black"/>
|
||||
<path d="M500.214 184.054C491.849 184.054 484.141 181.903 477.091 177.601C470.04 173.18 464.424 167.264 460.241 159.855C456.178 152.446 454.147 144.32 454.147 135.477C454.147 126.634 456.178 118.508 460.241 111.099C464.424 103.57 470.04 97.5953 477.091 93.1737C484.141 88.7522 491.849 86.5414 500.214 86.5414C507.862 86.5414 514.017 87.9754 518.677 90.8435C523.457 93.7115 527.162 97.8343 529.791 103.212V88.5132H553.81V181.724H530.328V166.488C527.58 172.104 523.816 176.466 519.036 179.573C514.375 182.561 508.101 184.054 500.214 184.054ZM478.345 135.298C478.345 140.078 479.421 144.559 481.572 148.742C483.843 152.805 486.89 156.091 490.714 158.601C494.657 160.991 499.139 162.186 504.158 162.186C509.296 162.186 513.837 160.991 517.781 158.601C521.844 156.211 524.951 152.984 527.102 148.921C529.253 144.858 530.328 140.377 530.328 135.477C530.328 130.578 529.253 126.096 527.102 122.033C524.951 117.851 521.844 114.564 517.781 112.174C513.837 109.665 509.296 108.41 504.158 108.41C499.139 108.41 494.657 109.665 490.714 112.174C486.77 114.564 483.723 117.791 481.572 121.854C479.421 125.917 478.345 130.398 478.345 135.298Z" fill="black"/>
|
||||
<path d="M592.387 137.449V181.724H568.188V50.8704H592.387V126.156L627.341 88.5132H661.758L617.841 131.892L661.937 181.724H629.851L592.387 137.449Z" fill="black"/>
|
||||
<path d="M701.047 184.054C691.607 184.054 683.242 181.903 675.952 177.601C668.663 173.18 662.986 167.264 658.923 159.855C654.86 152.446 652.829 144.26 652.829 135.298C652.829 126.455 654.92 118.269 659.102 110.74C663.285 103.212 669.021 97.2368 676.311 92.8152C683.72 88.3937 691.965 86.1829 701.047 86.1829C710.129 86.1829 718.255 88.3937 725.426 92.8152C732.715 97.2368 738.332 103.212 742.275 110.74C746.338 118.149 748.37 126.335 748.37 135.298C748.37 138.285 748.131 141.153 747.653 143.902H677.924C679.358 149.518 682.047 154.06 685.99 157.525C690.053 160.871 695.072 162.544 701.047 162.544C706.066 162.544 710.548 161.409 714.491 159.138C718.435 156.748 721.542 153.701 723.812 149.996L742.634 164.157C738.81 170.132 733.193 174.972 725.784 178.677C718.375 182.262 710.129 184.054 701.047 184.054ZM723.992 125.798C722.558 120.42 719.749 115.939 715.567 112.354C711.384 108.769 706.425 106.976 700.689 106.976C695.072 106.976 690.173 108.709 685.99 112.174C681.927 115.64 679.238 120.181 677.924 125.798H723.992Z" fill="black"/>
|
||||
<path d="M0.664124 84.0332C0.664124 48.7938 29.2313 20.2266 64.4707 20.2266H130.063C165.302 20.2266 193.869 48.7937 193.869 84.0331V149.625C193.869 184.865 165.302 213.432 130.063 213.432H64.4707C29.2313 213.432 0.664124 184.865 0.664124 149.625V84.0332Z" fill="white"/>
|
||||
<path d="M0.664124 84.0332C0.664124 48.7938 29.2313 20.2266 64.4707 20.2266H130.063C165.302 20.2266 193.869 48.7937 193.869 84.0331V149.625C193.869 184.865 165.302 213.432 130.063 213.432H64.4707C29.2313 213.432 0.664124 184.865 0.664124 149.625V84.0332Z" fill="url(#paint5_linear_55759_27367)"/>
|
||||
<path d="M0.664124 84.0332C0.664124 48.7938 29.2313 20.2266 64.4707 20.2266H130.063C165.302 20.2266 193.869 48.7937 193.869 84.0331V149.625C193.869 184.865 165.302 213.432 130.063 213.432H64.4707C29.2313 213.432 0.664124 184.865 0.664124 149.625V84.0332Z" fill="url(#paint6_linear_55759_27367)"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M96.6907 133.217C96.6907 132.629 96.6764 132.041 96.6477 131.454C96.6186 130.866 96.5756 130.28 96.5177 129.695C96.4599 129.109 96.3883 128.525 96.3018 127.944C96.2158 127.362 96.115 126.783 96.0004 126.206C95.8857 125.629 95.7567 125.056 95.6139 124.485C95.4711 123.914 95.314 123.348 95.1435 122.785C94.9725 122.222 94.7882 121.664 94.59 121.11C94.3919 120.556 94.1804 120.007 93.9551 119.464C93.7302 118.921 93.492 118.383 93.2405 117.851C92.989 117.32 92.7246 116.795 92.4474 116.276C92.1702 115.757 91.8801 115.246 91.5777 114.741C91.2753 114.236 90.961 113.74 90.6343 113.251C90.3072 112.761 89.9687 112.281 89.6184 111.809C89.268 111.336 88.9063 110.873 88.5332 110.418C88.1601 109.963 87.7761 109.518 87.3808 109.082C86.986 108.647 86.5808 108.221 86.1647 107.805C85.7486 107.389 85.3232 106.983 84.8873 106.588C84.4515 106.194 84.0062 105.809 83.5516 105.436C83.097 105.063 82.6335 104.701 82.1611 104.351C81.6887 104.001 81.2078 103.662 80.7186 103.335C80.2294 103.008 79.7328 102.694 79.2283 102.392C78.7237 102.089 78.2123 101.8 77.6934 101.522C77.175 101.245 76.6497 100.98 76.118 100.729C75.5863 100.478 75.0487 100.24 74.5056 100.014C73.962 99.7894 73.4135 99.5774 72.8596 99.3792C72.3056 99.1811 71.7477 98.9967 71.1849 98.8263C70.6221 98.6553 70.0553 98.4986 69.4845 98.3558C68.9142 98.2125 68.3405 98.084 67.7634 97.9689C67.1867 97.8543 66.6075 97.7539 66.0254 97.6675C65.4438 97.5815 64.8602 97.5093 64.2751 97.4515C63.6895 97.3942 63.103 97.3507 62.5159 97.3221C61.9284 97.2929 61.3403 97.2786 60.7523 97.2786C60.1642 97.2786 59.5764 97.2929 58.9889 97.3221C58.4015 97.3507 57.8151 97.3942 57.2297 97.4515C56.6444 97.5093 56.0608 97.5815 55.4791 97.6675C54.8972 97.7539 54.3179 97.8543 53.7411 97.9689C53.1642 98.084 52.5905 98.2125 52.02 98.3558C51.4494 98.4986 50.8827 98.6553 50.3199 98.8263C49.7571 98.9967 49.1988 99.1811 48.645 99.3792C48.0912 99.5774 47.5426 99.7894 46.9992 100.014C46.4558 100.24 45.9183 100.478 45.3866 100.729C44.8549 100.98 44.3297 101.245 43.811 101.522C43.2923 101.8 42.7807 102.089 42.2762 102.392C41.7717 102.694 41.275 103.008 40.786 103.335C40.2969 103.662 39.8162 104.001 39.3437 104.351C38.8713 104.701 38.4078 105.063 37.9531 105.436C37.4985 105.809 37.0533 106.194 36.6174 106.588C36.1817 106.983 35.7559 107.389 35.34 107.805C34.924 108.221 34.5186 108.647 34.1236 109.082C33.7286 109.518 33.3446 109.963 32.9715 110.418C32.5984 110.873 32.2366 111.336 31.8862 111.809C31.5358 112.281 31.1973 112.761 30.8705 113.251C30.5438 113.74 30.2292 114.236 29.9268 114.741C29.6244 115.246 29.3346 115.757 29.0573 116.276C28.7801 116.795 28.5157 117.32 28.2643 117.851C28.0128 118.383 27.7745 118.921 27.5494 119.464C27.3243 120.007 27.1127 120.556 26.9146 121.11C26.7165 121.664 26.532 122.222 26.3613 122.785C26.1905 123.348 26.0338 123.914 25.8908 124.485C25.7479 125.056 25.6191 125.629 25.5043 126.206C25.3896 126.783 25.2891 127.362 25.2028 127.944C25.1165 128.525 25.0445 129.109 24.9868 129.695C24.9292 130.28 24.8859 130.866 24.8571 131.454C24.8282 132.041 24.8138 132.629 24.8138 133.217C24.8138 133.805 24.8282 134.393 24.8571 134.981C24.8859 135.568 24.9292 136.154 24.9868 136.74C25.0445 137.325 25.1165 137.908 25.2028 138.491C25.2891 139.072 25.3896 139.651 25.5043 140.229C25.6191 140.805 25.7479 141.379 25.8908 141.95C26.0338 142.52 26.1905 143.087 26.3613 143.65C26.532 144.212 26.7165 144.771 26.9146 145.324C27.1127 145.878 27.3243 146.427 27.5494 146.97C27.7745 147.513 28.0128 148.051 28.2643 148.583C28.5157 149.114 28.7801 149.64 29.0573 150.159C29.3346 150.677 29.6244 151.189 29.9268 151.693C30.2292 152.197 30.5438 152.695 30.8705 153.183C31.1973 153.673 31.5358 154.153 31.8862 154.626C32.2366 155.098 32.5984 155.562 32.9715 156.016C33.3446 156.471 33.7286 156.916 34.1236 157.352C34.5186 157.788 34.924 158.214 35.34 158.629C35.7559 159.045 36.1817 159.451 36.6174 159.846C37.0533 160.241 37.4985 160.625 37.9531 160.998C38.4078 161.371 38.8713 161.733 39.3437 162.083C39.8162 162.433 40.2969 162.772 40.786 163.099C41.275 163.426 41.7717 163.74 42.2762 164.042C42.7807 164.345 43.2923 164.635 43.811 164.912C44.3297 165.189 44.8549 165.454 45.3866 165.705C45.9183 165.957 46.4558 166.195 46.9992 166.42C47.5426 166.645 48.0912 166.857 48.645 167.055C49.1988 167.253 49.7571 167.437 50.3199 167.608C50.8827 167.779 51.4494 167.936 52.02 168.079C52.5905 168.221 53.1642 168.35 53.7411 168.465C54.3179 168.58 54.8972 168.68 55.4791 168.766C56.0608 168.853 56.6444 168.925 57.2297 168.982C57.8151 169.04 58.4015 169.084 58.9889 169.112C59.5764 169.141 60.1642 169.156 60.7523 169.156H118.254V133.217H96.6907Z" fill="white"/>
|
||||
<path d="M118.254 169.156C146.042 169.156 168.569 146.63 168.569 118.842C168.569 91.0541 146.042 68.5281 118.254 68.5281C90.4671 68.5281 67.9405 91.0541 67.9405 118.842C67.9405 146.63 90.4671 169.156 118.254 169.156Z" fill="white"/>
|
||||
<svg width="1312" height="218" viewBox="0 0 1312 218" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M798.32 57.6602H839.913C853.001 57.6602 863.981 60.1557 872.855 65.1469C881.839 70.138 888.549 77.0147 892.986 85.7769C897.422 94.5391 899.64 104.632 899.64 116.056C899.64 127.37 897.422 137.407 892.986 146.17C888.549 154.932 881.839 161.809 872.855 166.8C863.981 171.68 853.001 174.12 839.913 174.12H798.32V57.6602ZM837.085 153.157C850.173 153.157 859.822 149.83 866.033 143.175C872.355 136.409 875.517 127.37 875.517 116.056C875.517 104.743 872.355 95.7037 866.033 88.938C859.822 82.0613 850.173 78.6229 837.085 78.6229H821.612V153.157H837.085Z" fill="url(#paint0_linear_58327_635)"/>
|
||||
<path d="M910.387 87.607H932.182V104.078C933.734 97.7556 936.729 92.9863 941.166 89.7698C945.713 86.5533 951.647 85.1669 958.967 85.6105V106.74H955.806C949.151 106.74 943.661 108.847 939.335 113.062C935.01 117.166 932.847 122.767 932.847 129.865V174.12H910.387V87.607Z" fill="url(#paint1_linear_58327_635)"/>
|
||||
<path d="M966.44 87.607H988.9V174.12H966.44V87.607ZM964.11 67.1433C964.11 63.4832 965.386 60.3776 967.937 57.8265C970.599 55.2755 973.815 54 977.587 54C981.469 54 984.685 55.2755 987.236 57.8265C989.787 60.3776 991.063 63.4832 991.063 67.1433C991.063 70.9144 989.787 74.0755 987.236 76.6265C984.685 79.1775 981.469 80.453 977.587 80.453C973.815 80.453 970.599 79.1775 967.937 76.6265C965.386 73.9646 964.11 70.8035 964.11 67.1433Z" fill="url(#paint2_linear_58327_635)"/>
|
||||
<path d="M993.033 87.607H1019.65L1036.96 137.019C1038.51 141.234 1039.73 145.837 1040.62 150.828C1041.5 145.837 1042.72 141.234 1044.28 137.019L1061.58 87.607H1087.7L1051.76 174.12H1029.14L993.033 87.607Z" fill="url(#paint3_linear_58327_635)"/>
|
||||
<path d="M1127.77 176.283C1119.01 176.283 1111.24 174.286 1104.48 170.293C1097.71 166.19 1092.44 160.699 1088.67 153.823C1084.9 146.946 1083.02 139.348 1083.02 131.03C1083.02 122.822 1084.96 115.225 1088.84 108.237C1092.72 101.249 1098.05 95.7037 1104.81 91.5999C1111.69 87.4961 1119.34 85.4442 1127.77 85.4442C1136.2 85.4442 1143.74 87.4961 1150.4 91.5999C1157.16 95.7037 1162.38 101.249 1166.04 108.237C1169.81 115.114 1171.69 122.711 1171.69 131.03C1171.69 133.803 1171.47 136.465 1171.03 139.016H1106.31C1107.64 144.229 1110.14 148.443 1113.8 151.66C1117.57 154.765 1122.22 156.318 1127.77 156.318C1132.43 156.318 1136.59 155.265 1140.25 153.157C1143.91 150.939 1146.79 148.111 1148.9 144.672L1166.37 157.816C1162.82 163.361 1157.61 167.853 1150.73 171.292C1143.85 174.619 1136.2 176.283 1127.77 176.283ZM1149.07 122.212C1147.73 117.221 1145.13 113.062 1141.25 109.734C1137.36 106.407 1132.76 104.743 1127.44 104.743C1122.22 104.743 1117.68 106.351 1113.8 109.568C1110.02 112.784 1107.53 116.999 1106.31 122.212H1149.07Z" fill="url(#paint4_linear_58327_635)"/>
|
||||
<path d="M263.085 70.9632H227.234V48.3775H324.03V70.9632H288.18V173.854H263.085V70.9632Z" fill="black"/>
|
||||
<path d="M306.59 80.6428H334.911L346.921 133.522C348.236 138.9 349.192 143.62 349.789 147.683C350.626 142.544 351.641 137.764 352.836 133.343L366.46 80.6428H394.244L408.763 133.343C409.958 137.764 410.974 142.544 411.81 147.683C412.408 143.62 413.364 138.9 414.678 133.522L427.584 80.6428H453.934L424.896 173.854H398.725L383.489 120.795C382.054 116.493 380.979 111.833 380.262 106.814C379.425 112.311 378.469 116.971 377.394 120.795L363.412 173.854H335.628L306.59 80.6428Z" fill="black"/>
|
||||
<path d="M497.212 176.184C488.847 176.184 481.14 174.033 474.089 169.731C467.038 165.309 461.422 159.394 457.239 151.985C453.176 144.576 451.145 136.45 451.145 127.607C451.145 118.764 453.176 110.638 457.239 103.229C461.422 95.7 467.038 89.7249 474.089 85.3034C481.14 80.8818 488.847 78.6711 497.212 78.6711C504.86 78.6711 511.015 80.1051 515.675 82.9731C520.455 85.8411 524.16 89.9639 526.789 95.3414V80.6428H550.809V173.854H527.327V158.617C524.578 164.234 520.814 168.596 516.034 171.703C511.373 174.69 505.099 176.184 497.212 176.184ZM475.344 127.427C475.344 132.208 476.419 136.689 478.57 140.871C480.841 144.934 483.888 148.221 487.712 150.73C491.656 153.12 496.137 154.315 501.156 154.315C506.294 154.315 510.836 153.12 514.779 150.73C518.842 148.34 521.949 145.114 524.1 141.051C526.251 136.988 527.327 132.506 527.327 127.607C527.327 122.707 526.251 118.226 524.1 114.163C521.949 109.98 518.842 106.694 514.779 104.304C510.836 101.795 506.294 100.54 501.156 100.54C496.137 100.54 491.656 101.795 487.712 104.304C483.769 106.694 480.721 109.921 478.57 113.984C476.419 118.047 475.344 122.528 475.344 127.427Z" fill="black"/>
|
||||
<path d="M589.385 129.578V173.854H565.187V43H589.385V118.286L624.34 80.6428H658.756L614.839 124.022L658.935 173.854H626.849L589.385 129.578Z" fill="black"/>
|
||||
<path d="M698.046 176.184C688.605 176.184 680.24 174.033 672.95 169.731C665.661 165.309 659.984 159.394 655.921 151.985C651.858 144.576 649.827 136.39 649.827 127.427C649.827 118.584 651.918 110.399 656.101 102.87C660.283 95.3414 666.019 89.3664 673.309 84.9449C680.718 80.5233 688.963 78.3125 698.046 78.3125C707.128 78.3125 715.254 80.5233 722.424 84.9449C729.713 89.3664 735.33 95.3414 739.273 102.87C743.336 110.279 745.368 118.465 745.368 127.427C745.368 130.415 745.129 133.283 744.651 136.032H674.922C676.356 141.648 679.045 146.189 682.988 149.655C687.051 153.001 692.07 154.674 698.046 154.674C703.065 154.674 707.546 153.538 711.489 151.268C715.433 148.878 718.54 145.831 720.81 142.126L739.632 156.287C735.808 162.262 730.191 167.102 722.782 170.806C715.373 174.391 707.128 176.184 698.046 176.184ZM720.99 117.927C719.556 112.55 716.747 108.068 712.565 104.483C708.382 100.898 703.423 99.1057 697.687 99.1057C692.07 99.1057 687.171 100.838 682.988 104.304C678.925 107.77 676.237 112.311 674.922 117.927H720.99Z" fill="black"/>
|
||||
<rect y="10.9999" width="196.105" height="196.105" rx="64.7641" fill="white"/>
|
||||
<rect y="10.9999" width="196.105" height="196.105" rx="64.7641" fill="url(#paint5_linear_58327_635)"/>
|
||||
<g filter="url(#filter0_d_58327_635)">
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M98.0023 122.503C98.0023 121.971 97.9894 121.44 97.9635 120.908C97.9371 120.377 97.8982 119.847 97.8459 119.317C97.7936 118.788 97.7288 118.26 97.6506 117.734C97.5729 117.208 97.4817 116.684 97.378 116.162C97.2744 115.64 97.1577 115.122 97.0286 114.606C96.8994 114.09 96.7573 113.578 96.6031 113.068C96.4485 112.559 96.2818 112.054 96.1026 111.554C95.9234 111.053 95.7321 110.557 95.5283 110.065C95.325 109.574 95.1096 109.088 94.8821 108.607C94.6547 108.126 94.4156 107.651 94.1649 107.182C93.9142 106.713 93.6519 106.25 93.3784 105.794C93.1049 105.338 92.8206 104.889 92.5252 104.446C92.2294 104.004 91.9233 103.569 91.6064 103.142C91.2896 102.715 90.9624 102.296 90.625 101.885C90.2876 101.473 89.9404 101.07 89.5829 100.677C89.2258 100.282 88.8594 99.8972 88.4831 99.521C88.1068 99.1451 87.722 98.7782 87.3279 98.4212C86.9337 98.0641 86.5311 97.7164 86.1199 97.379C85.7088 97.0416 85.2896 96.7145 84.8624 96.3976C84.4351 96.0808 84.0003 95.7747 83.5579 95.4793C83.1155 95.1834 82.6663 94.8992 82.2101 94.6257C81.7538 94.3522 81.2913 94.0903 80.822 93.8396C80.3532 93.5885 79.8782 93.3494 79.3973 93.1224C78.9165 92.8949 78.4303 92.6795 77.9391 92.4757C77.4475 92.2724 76.9515 92.0807 76.4505 91.9014C75.9496 91.7222 75.445 91.5556 74.936 91.4014C74.427 91.2468 73.9144 91.1051 73.3983 90.9759C72.8825 90.8463 72.3637 90.7301 71.8417 90.626C71.3202 90.5223 70.7964 90.4316 70.27 90.3534C69.744 90.2756 69.2162 90.2104 68.6871 90.1581C68.1575 90.1063 67.6271 90.067 67.0962 90.041C66.5648 90.0147 66.033 90.0017 65.5012 90.0017C64.9694 90.0017 64.4377 90.0147 63.9065 90.041C63.3752 90.067 62.8449 90.1063 62.3155 90.1581C61.7862 90.2104 61.2585 90.2756 60.7323 90.3534C60.2062 90.4316 59.6822 90.5223 59.1606 90.626C58.6389 90.7301 58.12 90.8463 57.6041 90.9759C57.0881 91.1051 56.5756 91.2468 56.0667 91.4014C55.5576 91.5556 55.0527 91.7222 54.5519 91.9014C54.0511 92.0807 53.5549 92.2724 53.0635 92.4757C52.5721 92.6795 52.086 92.8949 51.6051 93.1224C51.1243 93.3494 50.6494 93.5885 50.1803 93.8396C49.7112 94.0903 49.2485 94.3522 48.7923 94.6257C48.336 94.8992 47.8868 95.1834 47.4445 95.4793C47.0022 95.7747 46.5675 96.0808 46.1402 96.3976C45.713 96.7145 45.2938 97.0416 44.8826 97.379C44.4715 97.7164 44.0688 98.0641 43.6747 98.4212C43.2806 98.7782 42.8955 99.1451 42.5194 99.521C42.1433 99.8972 41.7766 100.282 41.4194 100.677C41.0622 101.07 40.7149 101.473 40.3775 101.885C40.04 102.296 39.7129 102.715 39.396 103.142C39.0791 103.569 38.773 104.004 38.4775 104.446C38.1819 104.889 37.8974 105.338 37.624 105.794C37.3505 106.25 37.0884 106.713 36.8377 107.182C36.587 107.651 36.3479 108.126 36.1205 108.607C35.893 109.088 35.6776 109.574 35.474 110.065C35.2704 110.557 35.0791 111.053 34.8999 111.554C34.7207 112.054 34.5539 112.559 34.3995 113.068C34.2451 113.578 34.1033 114.09 33.974 114.606C33.8448 115.122 33.7283 115.64 33.6245 116.162C33.5207 116.684 33.4298 117.208 33.3518 117.734C33.2737 118.26 33.2087 118.788 33.1565 119.317C33.1043 119.847 33.0652 120.377 33.0391 120.908C33.013 121.44 33 121.971 33 122.503C33 123.035 33.013 123.566 33.0391 124.098C33.0652 124.629 33.1043 125.159 33.1565 125.689C33.2087 126.218 33.2737 126.746 33.3518 127.272C33.4298 127.798 33.5207 128.322 33.6245 128.844C33.7283 129.365 33.8448 129.884 33.974 130.4C34.1033 130.916 34.2451 131.429 34.3995 131.938C34.5539 132.447 34.7207 132.952 34.8999 133.452C35.0791 133.953 35.2704 134.449 35.474 134.941C35.6776 135.432 35.893 135.918 36.1205 136.399C36.3479 136.88 36.587 137.355 36.8377 137.824C37.0884 138.293 37.3505 138.756 37.624 139.212C37.8974 139.668 38.1819 140.118 38.4775 140.56C38.773 141.002 39.0791 141.437 39.396 141.864C39.7129 142.291 40.04 142.71 40.3775 143.122C40.7149 143.533 41.0622 143.935 41.4194 144.329C41.7766 144.724 42.1433 145.109 42.5194 145.485C42.8955 145.861 43.2806 146.227 43.6747 146.585C44.0688 146.942 44.4715 147.289 44.8826 147.627C45.2938 147.964 45.713 148.291 46.1402 148.608C46.5675 148.925 47.0022 149.231 47.4445 149.527C47.8868 149.822 48.336 150.107 48.7923 150.38C49.2485 150.653 49.7112 150.916 50.1803 151.166C50.6494 151.417 51.1243 151.656 51.6051 151.884C52.086 152.111 52.5721 152.327 53.0635 152.53C53.5549 152.734 54.0511 152.925 54.5519 153.104C55.0527 153.283 55.5576 153.45 56.0667 153.605C56.5756 153.759 57.0881 153.901 57.6041 154.03C58.12 154.159 58.6389 154.276 59.1606 154.38C59.6822 154.483 60.2062 154.574 60.7323 154.652C61.2585 154.73 61.7862 154.796 62.3155 154.848C62.8449 154.9 63.3752 154.939 63.9065 154.965C64.4377 154.991 64.9694 155.004 65.5012 155.004H117.503V122.503H98.0023Z" fill="white"/>
|
||||
<path d="M117.498 155.003C142.628 155.003 163 134.632 163 109.502C163 84.3716 142.628 64 117.498 64C92.3681 64 71.9961 84.3716 71.9961 109.502C71.9961 134.632 92.3681 155.003 117.498 155.003Z" fill="white"/>
|
||||
</g>
|
||||
<path d="M1202.45 176V144.568H1213.96C1216.19 144.568 1218.04 144.936 1219.5 145.673C1220.97 146.399 1222.06 147.387 1222.79 148.635C1223.52 149.873 1223.88 151.27 1223.88 152.825C1223.88 154.135 1223.64 155.24 1223.16 156.14C1222.68 157.03 1222.03 157.746 1221.22 158.289C1220.43 158.821 1219.55 159.21 1218.58 159.455V159.762C1219.63 159.813 1220.65 160.151 1221.64 160.775C1222.64 161.389 1223.47 162.264 1224.12 163.4C1224.78 164.535 1225.11 165.917 1225.11 167.543C1225.11 169.15 1224.73 170.592 1223.97 171.871C1223.22 173.14 1222.07 174.148 1220.5 174.895C1218.94 175.632 1216.94 176 1214.5 176H1202.45ZM1207.2 171.933H1214.04C1216.31 171.933 1217.94 171.493 1218.92 170.613C1219.9 169.733 1220.39 168.633 1220.39 167.313C1220.39 166.321 1220.14 165.41 1219.64 164.581C1219.14 163.753 1218.43 163.093 1217.49 162.601C1216.57 162.11 1215.48 161.865 1214.21 161.865H1207.2V171.933ZM1207.2 158.166H1213.55C1214.61 158.166 1215.57 157.961 1216.42 157.552C1217.28 157.143 1217.96 156.57 1218.46 155.833C1218.97 155.086 1219.23 154.206 1219.23 153.193C1219.23 151.894 1218.77 150.804 1217.86 149.924C1216.95 149.044 1215.56 148.604 1213.67 148.604H1207.2V158.166ZM1232.03 176V144.568H1251.73V148.65H1236.77V158.227H1250.71V162.295H1236.77V171.918H1251.92V176H1232.03ZM1257.82 148.65V144.568H1282.14V148.65H1272.33V176H1267.61V148.65H1257.82ZM1287.75 176H1282.72L1294.03 144.568H1299.51L1310.82 176H1305.79L1296.9 150.277H1296.66L1287.75 176ZM1288.6 163.691H1304.93V167.682H1288.6V163.691Z" fill="#97A3B7"/>
|
||||
<defs>
|
||||
<linearGradient id="paint0_linear_55759_27367" x1="842.105" y1="30.2115" x2="944.198" y2="273.868" gradientUnits="userSpaceOnUse">
|
||||
<filter id="filter0_d_58327_635" x="23" y="56" width="150" height="111.004" 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 dy="2"/>
|
||||
<feGaussianBlur stdDeviation="5"/>
|
||||
<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.1 0"/>
|
||||
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_58327_635"/>
|
||||
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_58327_635" result="shape"/>
|
||||
</filter>
|
||||
<linearGradient id="paint0_linear_58327_635" x1="970.502" y1="23" x2="970.502" y2="191.5" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#FF6372"/>
|
||||
<stop offset="1" stop-color="#FF3347"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint1_linear_55759_27367" x1="842.105" y1="30.2115" x2="944.198" y2="273.868" gradientUnits="userSpaceOnUse">
|
||||
<linearGradient id="paint1_linear_58327_635" x1="970.502" y1="23" x2="970.502" y2="191.5" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#FF6372"/>
|
||||
<stop offset="1" stop-color="#FF3347"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint2_linear_55759_27367" x1="842.105" y1="30.2115" x2="944.198" y2="273.868" gradientUnits="userSpaceOnUse">
|
||||
<linearGradient id="paint2_linear_58327_635" x1="970.502" y1="23" x2="970.502" y2="191.5" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#FF6372"/>
|
||||
<stop offset="1" stop-color="#FF3347"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint3_linear_55759_27367" x1="842.105" y1="30.2115" x2="944.198" y2="273.868" gradientUnits="userSpaceOnUse">
|
||||
<linearGradient id="paint3_linear_58327_635" x1="970.502" y1="23" x2="970.502" y2="191.5" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#FF6372"/>
|
||||
<stop offset="1" stop-color="#FF3347"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint4_linear_55759_27367" x1="842.105" y1="30.2115" x2="944.198" y2="273.868" gradientUnits="userSpaceOnUse">
|
||||
<linearGradient id="paint4_linear_58327_635" x1="970.502" y1="23" x2="970.502" y2="191.5" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#FF6372"/>
|
||||
<stop offset="1" stop-color="#FF3347"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint5_linear_55759_27367" x1="193.869" y1="132.93" x2="141.561" y2="99.5335" gradientUnits="userSpaceOnUse">
|
||||
<stop offset="0.12998" stop-color="#A033FF"/>
|
||||
<stop offset="0.610381" stop-color="#0094FF"/>
|
||||
<stop offset="1" stop-color="#FF4759"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint6_linear_55759_27367" x1="89.2165" y1="80.6032" x2="28.8399" y2="201.356" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#FFD600" stop-opacity="0"/>
|
||||
<stop offset="0.563347" stop-color="#FFC700"/>
|
||||
<linearGradient id="paint5_linear_58327_635" x1="21.5" y1="188.5" x2="235.5" y2="-26.0001" gradientUnits="userSpaceOnUse">
|
||||
<stop offset="0.248154" stop-color="#FF4759"/>
|
||||
<stop offset="1" stop-color="#FFD600"/>
|
||||
</linearGradient>
|
||||
</defs>
|
||||
</svg>
|
||||
|
||||
|
Before Width: | Height: | Size: 13 KiB After Width: | Height: | Size: 14 KiB |
|
Before Width: | Height: | Size: 40 KiB After Width: | Height: | Size: 60 KiB |
@@ -1,48 +1,55 @@
|
||||
<svg width="1186" height="219" viewBox="0 0 1186 219" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M802.812 61.1603H844.483C857.595 61.1603 868.596 63.6606 877.486 68.6611C886.487 73.6616 893.21 80.5512 897.655 89.3299C902.1 98.1085 904.322 108.221 904.322 119.666C904.322 131.001 902.1 141.057 897.655 149.836C893.21 158.615 886.487 165.504 877.486 170.505C868.596 175.394 857.595 177.839 844.483 177.839H802.812V61.1603ZM841.649 156.837C854.762 156.837 864.429 153.503 870.652 146.836C876.986 140.057 880.153 131.001 880.153 119.666C880.153 108.332 876.986 99.2753 870.652 92.4969C864.429 85.6073 854.762 82.1625 841.649 82.1625H826.148V156.837H841.649Z" fill="url(#paint0_linear_56372_2846)"/>
|
||||
<path d="M915.089 91.1634H936.925V107.665C938.48 101.331 941.481 96.5528 945.926 93.3303C950.482 90.1077 956.427 88.7187 963.761 89.1632V110.332H960.594C953.926 110.332 948.426 112.443 944.092 116.666C939.758 120.778 937.591 126.389 937.591 133.501V177.839H915.089V91.1634Z" fill="url(#paint1_linear_56372_2846)"/>
|
||||
<path d="M971.247 91.1634H993.749V177.839H971.247V91.1634ZM968.914 70.6613C968.914 66.9943 970.191 63.8828 972.747 61.327C975.414 58.7712 978.637 57.4933 982.415 57.4933C986.304 57.4933 989.527 58.7712 992.083 61.327C994.638 63.8828 995.916 66.9943 995.916 70.6613C995.916 74.4395 994.638 77.6065 992.083 80.1623C989.527 82.7181 986.304 83.996 982.415 83.996C978.637 83.996 975.414 82.7181 972.747 80.1623C970.191 77.4953 968.914 74.3283 968.914 70.6613Z" fill="url(#paint2_linear_56372_2846)"/>
|
||||
<path d="M997.89 91.1634H1024.56L1041.89 140.668C1043.45 144.891 1044.67 149.503 1045.56 154.503C1046.45 149.503 1047.67 144.891 1049.23 140.668L1066.56 91.1634H1092.73L1056.73 177.839H1034.06L997.89 91.1634Z" fill="url(#paint3_linear_56372_2846)"/>
|
||||
<path d="M1132.88 180.006C1124.1 180.006 1116.32 178.006 1109.55 174.005C1102.77 169.894 1097.49 164.393 1093.71 157.503C1089.93 150.614 1088.04 143.002 1088.04 134.668C1088.04 126.445 1089.99 118.833 1093.88 111.832C1097.77 104.831 1103.1 99.2753 1109.88 95.1638C1116.77 91.0523 1124.44 88.9965 1132.88 88.9965C1141.33 88.9965 1148.88 91.0523 1155.55 95.1638C1162.33 99.2753 1167.55 104.831 1171.22 111.832C1175 118.722 1176.89 126.334 1176.89 134.668C1176.89 137.446 1176.66 140.113 1176.22 142.669H1111.38C1112.71 147.891 1115.21 152.114 1118.88 155.337C1122.66 158.448 1127.32 160.004 1132.88 160.004C1137.55 160.004 1141.72 158.948 1145.38 156.837C1149.05 154.614 1151.94 151.781 1154.05 148.336L1171.55 161.504C1168 167.06 1162.77 171.56 1155.88 175.005C1148.99 178.339 1141.33 180.006 1132.88 180.006ZM1154.22 125.834C1152.88 120.833 1150.27 116.666 1146.38 113.332C1142.49 109.999 1137.88 108.332 1132.55 108.332C1127.32 108.332 1122.77 109.943 1118.88 113.166C1115.1 116.388 1112.6 120.611 1111.38 125.834H1154.22Z" fill="url(#paint4_linear_56372_2846)"/>
|
||||
<path d="M266.579 78.9816H230.662V56.3535H327.639V78.9816H291.722V182.065H266.579V78.9816Z" fill="white"/>
|
||||
<path d="M310.166 88.6794H338.541L350.573 141.658C351.89 147.046 352.848 151.775 353.447 155.845C354.285 150.697 355.302 145.908 356.5 141.478L370.148 88.6794H397.985L412.531 141.478C413.728 145.908 414.746 150.697 415.584 155.845C416.183 151.775 417.141 147.046 418.458 141.658L431.388 88.6794H457.787L428.694 182.065H402.474L387.209 128.907C385.773 124.597 384.695 119.928 383.977 114.899C383.139 120.407 382.181 125.076 381.103 128.907L367.095 182.065H339.259L310.166 88.6794Z" fill="white"/>
|
||||
<path d="M501.147 184.4C492.766 184.4 485.044 182.245 477.98 177.935C470.916 173.505 465.289 167.578 461.099 160.156C457.028 152.733 454.993 144.591 454.993 135.732C454.993 126.872 457.028 118.73 461.099 111.308C465.289 103.765 470.916 97.7785 477.98 93.3487C485.044 88.9189 492.766 86.7039 501.147 86.7039C508.809 86.7039 514.975 88.1406 519.644 91.014C524.433 93.8875 528.145 98.018 530.779 103.406V88.6794H554.844V182.065H531.318V166.8C528.564 172.427 524.792 176.797 520.003 179.91C515.334 182.903 509.049 184.4 501.147 184.4ZM479.237 135.552C479.237 140.341 480.314 144.831 482.47 149.021C484.744 153.092 487.797 156.384 491.629 158.898C495.579 161.293 500.069 162.49 505.098 162.49C510.246 162.49 514.795 161.293 518.746 158.898C522.817 156.504 525.93 153.271 528.085 149.201C530.24 145.13 531.318 140.64 531.318 135.732C531.318 130.823 530.24 126.333 528.085 122.262C525.93 118.072 522.817 114.78 518.746 112.385C514.795 109.871 510.246 108.614 505.098 108.614C500.069 108.614 495.579 109.871 491.629 112.385C487.678 114.78 484.625 118.012 482.47 122.083C480.314 126.153 479.237 130.643 479.237 135.552Z" fill="white"/>
|
||||
<path d="M593.493 137.707V182.065H569.249V50.9659H593.493V126.393L628.513 88.6794H662.994L618.994 132.14L663.173 182.065H631.027L593.493 137.707Z" fill="white"/>
|
||||
<path d="M702.357 184.4C692.899 184.4 684.518 182.245 677.215 177.935C669.911 173.505 664.224 167.578 660.154 160.156C656.083 152.733 654.048 144.531 654.048 135.552C654.048 126.692 656.143 118.491 660.333 110.948C664.524 103.406 670.271 97.4194 677.574 92.9895C684.997 88.5597 693.258 86.3448 702.357 86.3448C711.456 86.3448 719.597 88.5597 726.781 92.9895C734.084 97.4194 739.711 103.406 743.662 110.948C747.733 118.371 749.768 126.573 749.768 135.552C749.768 138.545 749.529 141.418 749.05 144.172H679.19C680.627 149.799 683.321 154.349 687.272 157.821C691.342 161.173 696.371 162.849 702.357 162.849C707.386 162.849 711.875 161.712 715.826 159.437C719.777 157.043 722.89 153.99 725.165 150.278L744.021 164.466C740.19 170.452 734.563 175.301 727.14 179.012C719.717 182.604 711.456 184.4 702.357 184.4ZM725.344 126.034C723.908 120.646 721.094 116.156 716.904 112.565C712.713 108.973 707.745 107.177 701.998 107.177C696.371 107.177 691.462 108.913 687.272 112.385C683.201 115.857 680.507 120.407 679.19 126.034H725.344Z" fill="white"/>
|
||||
<path d="M0.657715 84.191C0.657715 48.8855 29.2785 20.2646 64.5841 20.2646H130.299C165.605 20.2646 194.226 48.8854 194.226 84.191V149.906C194.226 185.212 165.605 213.833 130.299 213.833H64.5842C29.2786 213.833 0.657715 185.212 0.657715 149.906V84.191Z" fill="white"/>
|
||||
<path d="M0.657715 84.191C0.657715 48.8855 29.2785 20.2646 64.5841 20.2646H130.299C165.605 20.2646 194.226 48.8854 194.226 84.191V149.906C194.226 185.212 165.605 213.833 130.299 213.833H64.5842C29.2786 213.833 0.657715 185.212 0.657715 149.906V84.191Z" fill="url(#paint5_linear_56372_2846)"/>
|
||||
<path d="M0.657715 84.191C0.657715 48.8855 29.2785 20.2646 64.5841 20.2646H130.299C165.605 20.2646 194.226 48.8854 194.226 84.191V149.906C194.226 185.212 165.605 213.833 130.299 213.833H64.5842C29.2786 213.833 0.657715 185.212 0.657715 149.906V84.191Z" fill="url(#paint6_linear_56372_2846)"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M96.8679 133.467C96.8679 132.878 96.8535 132.289 96.8248 131.701C96.7956 131.112 96.7525 130.524 96.6946 129.938C96.6367 129.352 96.5649 128.767 96.4782 128.184C96.3921 127.601 96.2911 127.021 96.1762 126.443C96.0614 125.865 95.9322 125.29 95.7891 124.719C95.646 124.147 95.4886 123.579 95.3178 123.015C95.1465 122.452 94.9618 121.892 94.7633 121.337C94.5647 120.783 94.3528 120.233 94.1271 119.688C93.9018 119.144 93.6632 118.605 93.4112 118.073C93.1592 117.54 92.8943 117.014 92.6166 116.494C92.3388 115.974 92.0482 115.462 91.7452 114.956C91.4423 114.451 91.1274 113.953 90.8001 113.463C90.4724 112.973 90.1332 112.492 89.7822 112.019C89.4312 111.545 89.0688 111.081 88.695 110.626C88.3212 110.17 87.9366 109.723 87.5405 109.287C87.1449 108.851 86.739 108.424 86.3221 108.007C85.9052 107.591 85.479 107.184 85.0423 106.789C84.6056 106.393 84.1596 106.008 83.7041 105.634C83.2486 105.26 82.7842 104.898 82.3109 104.547C81.8376 104.196 81.3559 103.857 80.8658 103.529C80.3757 103.202 79.8781 102.887 79.3726 102.584C78.8671 102.281 78.3547 101.991 77.8349 101.713C77.3156 101.435 76.7893 101.17 76.2566 100.918C75.7239 100.666 75.1852 100.428 74.6411 100.202C74.0965 99.9768 73.547 99.7644 72.992 99.5658C72.437 99.3673 71.8781 99.1826 71.3142 99.0118C70.7503 98.8405 70.1824 98.6836 69.6106 98.5405C69.0393 98.397 68.4645 98.2682 67.8862 98.1529C67.3084 98.038 66.7282 97.9375 66.145 97.8509C65.5623 97.7647 64.9776 97.6924 64.3914 97.6345C63.8047 97.5771 63.2171 97.5335 62.6289 97.5048C62.0403 97.4756 61.4511 97.4612 60.862 97.4612C60.2728 97.4612 59.6838 97.4756 59.0953 97.5048C58.5067 97.5335 57.9192 97.5771 57.3328 97.6345C56.7463 97.6924 56.1617 97.7647 55.5788 97.8509C54.9959 97.9375 54.4155 98.038 53.8376 98.1529C53.2596 98.2682 52.6848 98.397 52.1132 98.5405C51.5416 98.6836 50.9739 98.8405 50.41 99.0118C49.8461 99.1826 49.2868 99.3673 48.7319 99.5658C48.1771 99.7644 47.6274 99.9768 47.0831 100.202C46.5387 100.428 46.0001 100.666 45.4674 100.918C44.9347 101.17 44.4086 101.435 43.8889 101.713C43.3692 101.991 42.8566 102.281 42.3512 102.584C41.8458 102.887 41.3481 103.202 40.8581 103.529C40.3681 103.857 39.8865 104.196 39.4132 104.547C38.9399 104.898 38.4755 105.26 38.02 105.634C37.5645 106.008 37.1184 106.393 36.6818 106.789C36.2452 107.184 35.8186 107.591 35.4019 108.007C34.9852 108.424 34.579 108.851 34.1833 109.287C33.7876 109.723 33.4028 110.17 33.029 110.626C32.6551 111.081 32.2927 111.545 31.9417 112.019C31.5906 112.492 31.2514 112.973 30.9241 113.463C30.5967 113.953 30.2815 114.451 29.9786 114.956C29.6756 115.462 29.3853 115.974 29.1075 116.494C28.8297 117.014 28.5649 117.54 28.3129 118.073C28.061 118.605 27.8222 119.144 27.5967 119.688C27.3712 120.233 27.1592 120.783 26.9607 121.337C26.7622 121.892 26.5774 122.452 26.4064 123.015C26.2353 123.579 26.0782 124.147 25.935 124.719C25.7918 125.29 25.6627 125.865 25.5478 126.443C25.4328 127.021 25.3321 127.601 25.2457 128.184C25.1592 128.767 25.0871 129.352 25.0293 129.938C24.9716 130.524 24.9282 131.112 24.8993 131.701C24.8704 132.289 24.856 132.878 24.856 133.467C24.856 134.056 24.8704 134.645 24.8993 135.234C24.9282 135.823 24.9716 136.41 25.0293 136.997C25.0871 137.583 25.1592 138.167 25.2457 138.751C25.3321 139.333 25.4328 139.914 25.5478 140.492C25.6627 141.07 25.7918 141.644 25.935 142.216C26.0782 142.788 26.2353 143.355 26.4064 143.919C26.5774 144.483 26.7622 145.043 26.9607 145.597C27.1592 146.152 27.3712 146.702 27.5967 147.246C27.8222 147.79 28.061 148.329 28.3129 148.862C28.5649 149.394 28.8297 149.921 29.1075 150.441C29.3853 150.96 29.6756 151.473 29.9786 151.978C30.2815 152.483 30.5967 152.981 30.9241 153.471C31.2514 153.961 31.5906 154.443 31.9417 154.916C32.2927 155.389 32.6551 155.854 33.029 156.309C33.4028 156.765 33.7876 157.211 34.1833 157.647C34.579 158.084 34.9852 158.511 35.4019 158.927C35.8186 159.344 36.2452 159.75 36.6818 160.146C37.1184 160.542 37.5645 160.926 38.02 161.3C38.4755 161.674 38.9399 162.036 39.4132 162.387C39.8865 162.738 40.3681 163.078 40.8581 163.405C41.3481 163.733 41.8458 164.048 42.3512 164.35C42.8566 164.653 43.3692 164.944 43.8889 165.222C44.4086 165.5 44.9347 165.764 45.4674 166.016C46.0001 166.268 46.5387 166.507 47.0831 166.733C47.6274 166.958 48.1771 167.17 48.7319 167.368C49.2868 167.567 49.8461 167.752 50.41 167.923C50.9739 168.094 51.5416 168.251 52.1132 168.394C52.6848 168.537 53.2596 168.667 53.8376 168.781C54.4155 168.896 54.9959 168.997 55.5788 169.083C56.1617 169.17 56.7463 169.242 57.3328 169.3C57.9192 169.358 58.5067 169.401 59.0953 169.43C59.6838 169.459 60.2728 169.474 60.862 169.474H118.472V133.467H96.8679Z" fill="white"/>
|
||||
<path d="M118.474 169.474C146.314 169.474 168.883 146.905 168.883 119.065C168.883 91.2252 146.314 68.6568 118.474 68.6568C90.6343 68.6568 68.0654 91.2252 68.0654 119.065C68.0654 146.905 90.6343 169.474 118.474 169.474Z" fill="white"/>
|
||||
<svg width="1312" height="218" viewBox="0 0 1312 218" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M798.32 57.6602H839.913C853.001 57.6602 863.981 60.1557 872.855 65.1469C881.839 70.138 888.549 77.0147 892.986 85.7769C897.422 94.5391 899.64 104.632 899.64 116.056C899.64 127.37 897.422 137.407 892.986 146.17C888.549 154.932 881.839 161.809 872.855 166.8C863.981 171.68 853.001 174.12 839.913 174.12H798.32V57.6602ZM837.085 153.157C850.173 153.157 859.822 149.83 866.033 143.175C872.355 136.409 875.517 127.37 875.517 116.056C875.517 104.743 872.355 95.7037 866.033 88.938C859.822 82.0613 850.173 78.6229 837.085 78.6229H821.612V153.157H837.085Z" fill="url(#paint0_linear_58327_154)"/>
|
||||
<path d="M910.387 87.607H932.182V104.078C933.734 97.7556 936.729 92.9863 941.166 89.7698C945.713 86.5533 951.647 85.1669 958.967 85.6105V106.74H955.806C949.151 106.74 943.661 108.847 939.335 113.062C935.01 117.166 932.847 122.767 932.847 129.865V174.12H910.387V87.607Z" fill="url(#paint1_linear_58327_154)"/>
|
||||
<path d="M966.44 87.607H988.9V174.12H966.44V87.607ZM964.11 67.1433C964.11 63.4832 965.386 60.3776 967.937 57.8265C970.599 55.2755 973.815 54 977.587 54C981.469 54 984.685 55.2755 987.236 57.8265C989.787 60.3776 991.063 63.4832 991.063 67.1433C991.063 70.9144 989.787 74.0755 987.236 76.6265C984.685 79.1775 981.469 80.453 977.587 80.453C973.815 80.453 970.599 79.1775 967.937 76.6265C965.386 73.9646 964.11 70.8035 964.11 67.1433Z" fill="url(#paint2_linear_58327_154)"/>
|
||||
<path d="M993.033 87.607H1019.65L1036.96 137.019C1038.51 141.234 1039.73 145.837 1040.62 150.828C1041.5 145.837 1042.72 141.234 1044.28 137.019L1061.58 87.607H1087.7L1051.76 174.12H1029.14L993.033 87.607Z" fill="url(#paint3_linear_58327_154)"/>
|
||||
<path d="M1127.77 176.283C1119.01 176.283 1111.24 174.286 1104.48 170.293C1097.71 166.19 1092.44 160.699 1088.67 153.823C1084.9 146.946 1083.02 139.348 1083.02 131.03C1083.02 122.822 1084.96 115.225 1088.84 108.237C1092.72 101.249 1098.05 95.7037 1104.81 91.5999C1111.69 87.4961 1119.34 85.4442 1127.77 85.4442C1136.2 85.4442 1143.74 87.4961 1150.4 91.5999C1157.16 95.7037 1162.38 101.249 1166.04 108.237C1169.81 115.114 1171.69 122.711 1171.69 131.03C1171.69 133.803 1171.47 136.465 1171.03 139.016H1106.31C1107.64 144.229 1110.14 148.443 1113.8 151.66C1117.57 154.765 1122.22 156.318 1127.77 156.318C1132.43 156.318 1136.59 155.265 1140.25 153.157C1143.91 150.939 1146.79 148.111 1148.9 144.672L1166.37 157.816C1162.82 163.361 1157.61 167.853 1150.73 171.292C1143.85 174.619 1136.2 176.283 1127.77 176.283ZM1149.07 122.212C1147.73 117.221 1145.13 113.062 1141.25 109.734C1137.36 106.407 1132.76 104.743 1127.44 104.743C1122.22 104.743 1117.68 106.351 1113.8 109.568C1110.02 112.784 1107.53 116.999 1106.31 122.212H1149.07Z" fill="url(#paint4_linear_58327_154)"/>
|
||||
<path d="M263.085 70.9632H227.234V48.3775H324.03V70.9632H288.18V173.854H263.085V70.9632Z" fill="white"/>
|
||||
<path d="M306.59 80.6428H334.911L346.921 133.522C348.236 138.9 349.192 143.62 349.789 147.683C350.626 142.544 351.641 137.764 352.836 133.343L366.46 80.6428H394.244L408.763 133.343C409.958 137.764 410.974 142.544 411.81 147.683C412.408 143.62 413.364 138.9 414.678 133.522L427.584 80.6428H453.934L424.896 173.854H398.725L383.489 120.795C382.054 116.493 380.979 111.833 380.262 106.814C379.425 112.311 378.469 116.971 377.394 120.795L363.412 173.854H335.628L306.59 80.6428Z" fill="white"/>
|
||||
<path d="M497.212 176.184C488.847 176.184 481.14 174.033 474.089 169.731C467.038 165.309 461.422 159.394 457.239 151.985C453.176 144.576 451.145 136.45 451.145 127.607C451.145 118.764 453.176 110.638 457.239 103.229C461.422 95.7 467.038 89.7249 474.089 85.3034C481.14 80.8818 488.847 78.6711 497.212 78.6711C504.86 78.6711 511.015 80.1051 515.675 82.9731C520.455 85.8411 524.16 89.9639 526.789 95.3414V80.6428H550.809V173.854H527.327V158.617C524.578 164.234 520.814 168.596 516.034 171.703C511.373 174.69 505.099 176.184 497.212 176.184ZM475.344 127.427C475.344 132.208 476.419 136.689 478.57 140.871C480.841 144.934 483.888 148.221 487.712 150.73C491.656 153.12 496.137 154.315 501.156 154.315C506.294 154.315 510.836 153.12 514.779 150.73C518.842 148.34 521.949 145.114 524.1 141.051C526.251 136.988 527.327 132.506 527.327 127.607C527.327 122.707 526.251 118.226 524.1 114.163C521.949 109.98 518.842 106.694 514.779 104.304C510.836 101.795 506.294 100.54 501.156 100.54C496.137 100.54 491.656 101.795 487.712 104.304C483.769 106.694 480.721 109.921 478.57 113.984C476.419 118.047 475.344 122.528 475.344 127.427Z" fill="white"/>
|
||||
<path d="M589.385 129.578V173.854H565.187V43H589.385V118.286L624.34 80.6428H658.756L614.839 124.022L658.935 173.854H626.849L589.385 129.578Z" fill="white"/>
|
||||
<path d="M698.046 176.184C688.605 176.184 680.24 174.033 672.95 169.731C665.661 165.309 659.984 159.394 655.921 151.985C651.858 144.576 649.827 136.39 649.827 127.427C649.827 118.584 651.918 110.399 656.101 102.87C660.283 95.3414 666.019 89.3664 673.309 84.9449C680.718 80.5233 688.963 78.3125 698.046 78.3125C707.128 78.3125 715.254 80.5233 722.424 84.9449C729.713 89.3664 735.33 95.3414 739.273 102.87C743.336 110.279 745.368 118.465 745.368 127.427C745.368 130.415 745.129 133.283 744.651 136.032H674.922C676.356 141.648 679.045 146.189 682.988 149.655C687.051 153.001 692.07 154.674 698.046 154.674C703.065 154.674 707.546 153.538 711.489 151.268C715.433 148.878 718.54 145.831 720.81 142.126L739.632 156.287C735.808 162.262 730.191 167.102 722.782 170.806C715.373 174.391 707.128 176.184 698.046 176.184ZM720.99 117.927C719.556 112.55 716.747 108.068 712.565 104.483C708.382 100.898 703.423 99.1057 697.687 99.1057C692.07 99.1057 687.171 100.838 682.988 104.304C678.925 107.77 676.237 112.311 674.922 117.927H720.99Z" fill="white"/>
|
||||
<rect y="10.9999" width="196.105" height="196.105" rx="64.7641" fill="white"/>
|
||||
<rect y="10.9999" width="196.105" height="196.105" rx="64.7641" fill="url(#paint5_linear_58327_154)"/>
|
||||
<g filter="url(#filter0_d_58327_154)">
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M98.0023 122.503C98.0023 121.971 97.9894 121.44 97.9635 120.908C97.9371 120.377 97.8982 119.847 97.8459 119.317C97.7936 118.788 97.7288 118.26 97.6506 117.734C97.5729 117.208 97.4817 116.684 97.378 116.162C97.2744 115.64 97.1577 115.122 97.0286 114.606C96.8994 114.09 96.7573 113.578 96.6031 113.068C96.4485 112.559 96.2818 112.054 96.1026 111.554C95.9234 111.053 95.7321 110.557 95.5283 110.065C95.325 109.574 95.1096 109.088 94.8821 108.607C94.6547 108.126 94.4156 107.651 94.1649 107.182C93.9142 106.713 93.6519 106.25 93.3784 105.794C93.1049 105.338 92.8206 104.889 92.5252 104.446C92.2294 104.004 91.9233 103.569 91.6064 103.142C91.2896 102.715 90.9624 102.296 90.625 101.885C90.2876 101.473 89.9404 101.07 89.5829 100.677C89.2258 100.282 88.8594 99.8972 88.4831 99.521C88.1068 99.1451 87.722 98.7782 87.3279 98.4212C86.9337 98.0641 86.5311 97.7164 86.1199 97.379C85.7088 97.0416 85.2896 96.7145 84.8624 96.3976C84.4351 96.0808 84.0003 95.7747 83.5579 95.4793C83.1155 95.1834 82.6663 94.8992 82.2101 94.6257C81.7538 94.3522 81.2913 94.0903 80.822 93.8396C80.3532 93.5885 79.8782 93.3494 79.3973 93.1224C78.9165 92.8949 78.4303 92.6795 77.9391 92.4757C77.4475 92.2724 76.9515 92.0807 76.4505 91.9014C75.9496 91.7222 75.445 91.5556 74.936 91.4014C74.427 91.2468 73.9144 91.1051 73.3983 90.9759C72.8825 90.8463 72.3637 90.7301 71.8417 90.626C71.3202 90.5223 70.7964 90.4316 70.27 90.3534C69.744 90.2756 69.2162 90.2104 68.6871 90.1581C68.1575 90.1063 67.6271 90.067 67.0962 90.041C66.5648 90.0147 66.033 90.0017 65.5012 90.0017C64.9694 90.0017 64.4377 90.0147 63.9065 90.041C63.3752 90.067 62.8449 90.1063 62.3155 90.1581C61.7862 90.2104 61.2585 90.2756 60.7323 90.3534C60.2062 90.4316 59.6822 90.5223 59.1606 90.626C58.6389 90.7301 58.12 90.8463 57.6041 90.9759C57.0881 91.1051 56.5756 91.2468 56.0667 91.4014C55.5576 91.5556 55.0527 91.7222 54.5519 91.9014C54.0511 92.0807 53.5549 92.2724 53.0635 92.4757C52.5721 92.6795 52.086 92.8949 51.6051 93.1224C51.1243 93.3494 50.6494 93.5885 50.1803 93.8396C49.7112 94.0903 49.2485 94.3522 48.7923 94.6257C48.336 94.8992 47.8868 95.1834 47.4445 95.4793C47.0022 95.7747 46.5675 96.0808 46.1402 96.3976C45.713 96.7145 45.2938 97.0416 44.8826 97.379C44.4715 97.7164 44.0688 98.0641 43.6747 98.4212C43.2806 98.7782 42.8955 99.1451 42.5194 99.521C42.1433 99.8972 41.7766 100.282 41.4194 100.677C41.0622 101.07 40.7149 101.473 40.3775 101.885C40.04 102.296 39.7129 102.715 39.396 103.142C39.0791 103.569 38.773 104.004 38.4775 104.446C38.1819 104.889 37.8974 105.338 37.624 105.794C37.3505 106.25 37.0884 106.713 36.8377 107.182C36.587 107.651 36.3479 108.126 36.1205 108.607C35.893 109.088 35.6776 109.574 35.474 110.065C35.2704 110.557 35.0791 111.053 34.8999 111.554C34.7207 112.054 34.5539 112.559 34.3995 113.068C34.2451 113.578 34.1033 114.09 33.974 114.606C33.8448 115.122 33.7283 115.64 33.6245 116.162C33.5207 116.684 33.4298 117.208 33.3518 117.734C33.2737 118.26 33.2087 118.788 33.1565 119.317C33.1043 119.847 33.0652 120.377 33.0391 120.908C33.013 121.44 33 121.971 33 122.503C33 123.035 33.013 123.566 33.0391 124.098C33.0652 124.629 33.1043 125.159 33.1565 125.689C33.2087 126.218 33.2737 126.746 33.3518 127.272C33.4298 127.798 33.5207 128.322 33.6245 128.844C33.7283 129.365 33.8448 129.884 33.974 130.4C34.1033 130.916 34.2451 131.429 34.3995 131.938C34.5539 132.447 34.7207 132.952 34.8999 133.452C35.0791 133.953 35.2704 134.449 35.474 134.941C35.6776 135.432 35.893 135.918 36.1205 136.399C36.3479 136.88 36.587 137.355 36.8377 137.824C37.0884 138.293 37.3505 138.756 37.624 139.212C37.8974 139.668 38.1819 140.118 38.4775 140.56C38.773 141.002 39.0791 141.437 39.396 141.864C39.7129 142.291 40.04 142.71 40.3775 143.122C40.7149 143.533 41.0622 143.935 41.4194 144.329C41.7766 144.724 42.1433 145.109 42.5194 145.485C42.8955 145.861 43.2806 146.227 43.6747 146.585C44.0688 146.942 44.4715 147.289 44.8826 147.627C45.2938 147.964 45.713 148.291 46.1402 148.608C46.5675 148.925 47.0022 149.231 47.4445 149.527C47.8868 149.822 48.336 150.107 48.7923 150.38C49.2485 150.653 49.7112 150.916 50.1803 151.166C50.6494 151.417 51.1243 151.656 51.6051 151.884C52.086 152.111 52.5721 152.327 53.0635 152.53C53.5549 152.734 54.0511 152.925 54.5519 153.104C55.0527 153.283 55.5576 153.45 56.0667 153.605C56.5756 153.759 57.0881 153.901 57.6041 154.03C58.12 154.159 58.6389 154.276 59.1606 154.38C59.6822 154.483 60.2062 154.574 60.7323 154.652C61.2585 154.73 61.7862 154.796 62.3155 154.848C62.8449 154.9 63.3752 154.939 63.9065 154.965C64.4377 154.991 64.9694 155.004 65.5012 155.004H117.503V122.503H98.0023Z" fill="white"/>
|
||||
<path d="M117.498 155.003C142.628 155.003 163 134.632 163 109.502C163 84.3716 142.628 64 117.498 64C92.3681 64 71.9961 84.3716 71.9961 109.502C71.9961 134.632 92.3681 155.003 117.498 155.003Z" fill="white"/>
|
||||
</g>
|
||||
<path d="M1202.45 176V144.568H1213.96C1216.19 144.568 1218.04 144.936 1219.5 145.673C1220.97 146.399 1222.06 147.387 1222.79 148.635C1223.52 149.873 1223.88 151.27 1223.88 152.825C1223.88 154.135 1223.64 155.24 1223.16 156.14C1222.68 157.03 1222.03 157.746 1221.22 158.289C1220.43 158.821 1219.55 159.21 1218.58 159.455V159.762C1219.63 159.813 1220.65 160.151 1221.64 160.775C1222.64 161.389 1223.47 162.264 1224.12 163.4C1224.78 164.535 1225.11 165.917 1225.11 167.543C1225.11 169.15 1224.73 170.592 1223.97 171.871C1223.22 173.14 1222.07 174.148 1220.5 174.895C1218.94 175.632 1216.94 176 1214.5 176H1202.45ZM1207.2 171.933H1214.04C1216.31 171.933 1217.94 171.493 1218.92 170.613C1219.9 169.733 1220.39 168.633 1220.39 167.313C1220.39 166.321 1220.14 165.41 1219.64 164.581C1219.14 163.753 1218.43 163.093 1217.49 162.601C1216.57 162.11 1215.48 161.865 1214.21 161.865H1207.2V171.933ZM1207.2 158.166H1213.55C1214.61 158.166 1215.57 157.961 1216.42 157.552C1217.28 157.143 1217.96 156.57 1218.46 155.833C1218.97 155.086 1219.23 154.206 1219.23 153.193C1219.23 151.894 1218.77 150.804 1217.86 149.924C1216.95 149.044 1215.56 148.604 1213.67 148.604H1207.2V158.166ZM1232.03 176V144.568H1251.73V148.65H1236.77V158.227H1250.71V162.295H1236.77V171.918H1251.92V176H1232.03ZM1257.82 148.65V144.568H1282.14V148.65H1272.33V176H1267.61V148.65H1257.82ZM1287.75 176H1282.72L1294.03 144.568H1299.51L1310.82 176H1305.79L1296.9 150.277H1296.66L1287.75 176ZM1288.6 163.691H1304.93V167.682H1288.6V163.691Z" fill="#97A3B7"/>
|
||||
<defs>
|
||||
<linearGradient id="paint0_linear_56372_2846" x1="843.679" y1="30.2683" x2="945.965" y2="274.383" gradientUnits="userSpaceOnUse">
|
||||
<filter id="filter0_d_58327_154" x="23" y="56" width="150" height="111.004" 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 dy="2"/>
|
||||
<feGaussianBlur stdDeviation="5"/>
|
||||
<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.1 0"/>
|
||||
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_58327_154"/>
|
||||
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_58327_154" result="shape"/>
|
||||
</filter>
|
||||
<linearGradient id="paint0_linear_58327_154" x1="970.502" y1="23" x2="970.502" y2="191.5" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#FF6372"/>
|
||||
<stop offset="1" stop-color="#FF3347"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint1_linear_56372_2846" x1="843.679" y1="30.2683" x2="945.965" y2="274.383" gradientUnits="userSpaceOnUse">
|
||||
<linearGradient id="paint1_linear_58327_154" x1="970.502" y1="23" x2="970.502" y2="191.5" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#FF6372"/>
|
||||
<stop offset="1" stop-color="#FF3347"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint2_linear_56372_2846" x1="843.679" y1="30.2683" x2="945.965" y2="274.383" gradientUnits="userSpaceOnUse">
|
||||
<linearGradient id="paint2_linear_58327_154" x1="970.502" y1="23" x2="970.502" y2="191.5" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#FF6372"/>
|
||||
<stop offset="1" stop-color="#FF3347"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint3_linear_56372_2846" x1="843.679" y1="30.2683" x2="945.965" y2="274.383" gradientUnits="userSpaceOnUse">
|
||||
<linearGradient id="paint3_linear_58327_154" x1="970.502" y1="23" x2="970.502" y2="191.5" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#FF6372"/>
|
||||
<stop offset="1" stop-color="#FF3347"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint4_linear_56372_2846" x1="843.679" y1="30.2683" x2="945.965" y2="274.383" gradientUnits="userSpaceOnUse">
|
||||
<linearGradient id="paint4_linear_58327_154" x1="970.502" y1="23" x2="970.502" y2="191.5" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#FF6372"/>
|
||||
<stop offset="1" stop-color="#FF3347"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint5_linear_56372_2846" x1="194.226" y1="133.179" x2="141.819" y2="99.7205" gradientUnits="userSpaceOnUse">
|
||||
<stop offset="0.12998" stop-color="#A033FF"/>
|
||||
<stop offset="0.610381" stop-color="#0094FF"/>
|
||||
<stop offset="1" stop-color="#FF4759"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint6_linear_56372_2846" x1="89.3764" y1="80.7546" x2="28.8864" y2="201.735" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#FFD600" stop-opacity="0"/>
|
||||
<stop offset="0.563347" stop-color="#FFC700"/>
|
||||
<linearGradient id="paint5_linear_58327_154" x1="21.5" y1="188.5" x2="235.5" y2="-26.0001" gradientUnits="userSpaceOnUse">
|
||||
<stop offset="0.248154" stop-color="#FF4759"/>
|
||||
<stop offset="1" stop-color="#FFD600"/>
|
||||
</linearGradient>
|
||||
</defs>
|
||||
</svg>
|
||||
|
||||
|
Before Width: | Height: | Size: 13 KiB After Width: | Height: | Size: 14 KiB |
@@ -47,7 +47,7 @@ export default function Avatar(props: AvatarProps) {
|
||||
|
||||
className +=
|
||||
' border border-gray flex items-center justify-center bg-center bg-cover ' +
|
||||
(props.nogradient ? ' bg-zinc-100 dark:bg-zinc-800 text-zinc-900 dark:text-white ' : '');
|
||||
(props.nogradient ? ' bg-zinc-100 dark:bg-zinc-900 text-zinc-900 dark:text-white ' : '');
|
||||
|
||||
const spl_title = avatarTitle.split(' ');
|
||||
|
||||
|
||||
@@ -18,10 +18,10 @@ export const Badge = (props: BadgeProps) => {
|
||||
if (props.theme === 'danger') className = 'text-white bg-rose-500 border-transparent ';
|
||||
|
||||
if (props.theme === 'default')
|
||||
className = 'text-black dark:text-white bg-white dark:bg-zinc-800 border-gray-300';
|
||||
className = 'text-black dark:text-white bg-white dark:bg-zinc-900 border-gray-300';
|
||||
|
||||
if (props.theme === 'outline')
|
||||
className = 'text-blue-500 bg-white dark:bg-zinc-800 border-blue-500';
|
||||
className = 'text-blue-500 bg-white dark:bg-zinc-900 border-blue-500';
|
||||
|
||||
if (props.size === 'lg') className = className + ' text-lg h-11';
|
||||
else if (props.size === 'sm') className = className + ' text-sm h-7 px-3';
|
||||
|
||||
@@ -28,7 +28,7 @@ export const Button = (props: ButtonProps) => {
|
||||
|
||||
if (props.theme === 'default')
|
||||
className =
|
||||
'text-black dark:text-white bg-white dark:bg-zinc-800 dark:hover:bg-zinc-700 dark:active:bg-zinc-900 hover:bg-zinc-50 active:bg-zinc-200 border-zinc-300';
|
||||
'text-black dark:text-white bg-white dark:bg-zinc-900 dark:hover:bg-zinc-700 dark:active:bg-zinc-900 hover:bg-zinc-50 active:bg-zinc-200 border-zinc-300';
|
||||
|
||||
if (props.theme === 'white')
|
||||
className =
|
||||
@@ -36,7 +36,7 @@ export const Button = (props: ButtonProps) => {
|
||||
|
||||
if (props.theme === 'outline')
|
||||
className =
|
||||
'text-blue-500 bg-white dark:bg-zinc-800 dark:hover:bg-zinc-700 dark:active:bg-zinc-900 hover:bg-zinc-50 active:bg-zinc-200 border-blue-500';
|
||||
'text-blue-500 bg-white dark:bg-zinc-900 dark:hover:bg-zinc-700 dark:active:bg-zinc-900 hover:bg-zinc-50 active:bg-zinc-200 border-blue-500';
|
||||
|
||||
if (props.theme === 'dark')
|
||||
className =
|
||||
|
||||
@@ -27,10 +27,10 @@ const baseTextClassName = ' dark:text-white text-black ';
|
||||
|
||||
export const defaultInputClassName = (theme: ThemeName = 'plain') => {
|
||||
const themeClasses = {
|
||||
'plain': 'bg-zinc-100 border-zinc-100 dark:bg-zinc-800 dark:border-zinc-800' + baseTextClassName,
|
||||
'blue': 'bg-zinc-100 border-zinc-100 dark:bg-zinc-800 dark:border-zinc-800 text-blue-700 dark:text-blue-500',
|
||||
'plain': 'bg-zinc-100 border-zinc-100 dark:bg-zinc-900 dark:border-zinc-800' + baseTextClassName,
|
||||
'blue': 'bg-zinc-100 border-zinc-100 dark:bg-zinc-900 dark:border-zinc-800 text-blue-700 dark:text-blue-500',
|
||||
'rose': 'text-rose-500 bg-rose-100 dark:text-rose-300 dark:bg-rose-900 border-rose-500',
|
||||
'outline': 'bg-zinc-50 border-zinc-300 dark:bg-zinc-800 dark:border-zinc-700' + baseTextClassName,
|
||||
'outline': 'bg-zinc-50 border-zinc-300 dark:bg-zinc-900 dark:border-zinc-700' + baseTextClassName,
|
||||
};
|
||||
return (
|
||||
baseInputClassName +
|
||||
|
||||
@@ -367,7 +367,7 @@ export default class AutoComplete extends Component<Props, State> {
|
||||
{!this.props.hideResult && this.state.currentList.length > 0 ? (
|
||||
<div
|
||||
className={
|
||||
'menu-list as_frame bg-white text-black dark:bg-zinc-800 dark:text-white rounded-lg inline ' +
|
||||
'menu-list as_frame bg-white text-black dark:bg-zinc-900 dark:text-white rounded-lg inline ' +
|
||||
(this.state.focused && this.state.currentList.length ? 'fade_in ' : '') +
|
||||
this.state.resultPosition
|
||||
}
|
||||
|
||||
@@ -57,7 +57,7 @@ export default class MenuComponent extends React.Component {
|
||||
<div
|
||||
ref={node => (this.original_menu = node)}
|
||||
className={
|
||||
'menu-list ' + (this.props.withFrame ? 'as_frame text-black bg-white dark:bg-zinc-800 dark:text-white rounded-lg ' : '') + this.props.animationClass
|
||||
'menu-list ' + (this.props.withFrame ? 'as_frame text-black bg-white dark:bg-zinc-900 dark:text-white rounded-lg ' : '') + this.props.animationClass
|
||||
}
|
||||
>
|
||||
{(this.props.menu || [])
|
||||
@@ -81,7 +81,12 @@ export default class MenuComponent extends React.Component {
|
||||
this.hoverMenu(item.ref, item);
|
||||
}}
|
||||
>
|
||||
{item.text}
|
||||
{item.icon && (
|
||||
<div className="icon">
|
||||
{typeof item.icon === 'string' ? <Icon type={item.icon} /> : item.icon}
|
||||
</div>
|
||||
)}
|
||||
<div className="text">{item.text}</div>
|
||||
</div>
|
||||
);
|
||||
} else if (item.type == 'react-element') {
|
||||
|
||||
@@ -45,13 +45,17 @@
|
||||
font-size: 12px;
|
||||
font-weight: 500;
|
||||
margin: 8px 16px;
|
||||
color: var(--grey-dark);
|
||||
display: flex;
|
||||
|
||||
.icon {
|
||||
color: var(--grey-dark);
|
||||
}
|
||||
}
|
||||
|
||||
.menu-custom {
|
||||
font-size: 12px;
|
||||
font-weight: 500;
|
||||
margin: 8px 8px;
|
||||
margin: 0.875rem 0.625rem;
|
||||
padding: 0 8px;
|
||||
|
||||
.menu-cancel-margin,
|
||||
|
||||
@@ -188,8 +188,8 @@ export default class MenusBodyLayer extends React.Component {
|
||||
zIndex: 1050,
|
||||
position: 'absolute',
|
||||
transform: item.positionType === 'bottom' ? '' : 'translateY(-50%)',
|
||||
left: item.position.x,
|
||||
top: item.position.y,
|
||||
left: item.position.x - 140,
|
||||
top: item.position.y + 2,
|
||||
marginTop: item.position.marginTop,
|
||||
marginLeft: item.position.marginLeft,
|
||||
}}
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
export default {
|
||||
version: /* @VERSION */ '1.0.4-hf2',
|
||||
version_detail: /* @VERSION_DETAIL */ '1.0.4-hf2',
|
||||
version: /* @VERSION */ '1.0.4-hf3',
|
||||
version_detail: /* @VERSION_DETAIL */ '1.0.4-hf3',
|
||||
version_name: /* @VERSION_NAME */ 'Ghost-Dog',
|
||||
};
|
||||
@@ -59,7 +59,7 @@ export const EndOfInputBox = {
|
||||
<div className="shrink-0">
|
||||
<AccessLevelDropdown
|
||||
{...props}
|
||||
className="rounded-l-none !p-0 leading-tight text-end !pr-8 border-none bg-zinc-100 dark:bg-zinc-800"
|
||||
className="rounded-l-none !p-0 leading-tight text-end !pr-8 border-none bg-zinc-100 dark:bg-zinc-900"
|
||||
size="md"
|
||||
/>
|
||||
</div>
|
||||
|
||||
@@ -175,7 +175,7 @@ const CreateModalOption = (props: { icon: ReactNode; text: string; onClick: () =
|
||||
return (
|
||||
<div
|
||||
onClick={props.onClick}
|
||||
className="flex flex-row p-4 dark:bg-zinc-800 dark:text-white bg-zinc-100 hover:bg-opacity-75 cursor-pointer rounded-md m-2"
|
||||
className="flex flex-row p-4 dark:bg-zinc-900 dark:text-white bg-zinc-100 hover:bg-opacity-75 cursor-pointer rounded-md m-2"
|
||||
>
|
||||
<div className="flex items-center justify-center">{props.icon}</div>
|
||||
<div className="grow flex items-center ml-2">
|
||||
|
||||
@@ -119,7 +119,7 @@ export const InternalUsersAccessManager = ({
|
||||
</div>
|
||||
<div className="shrink-0">
|
||||
<AccessLevelDropdown
|
||||
className="rounded-l-none !p-0 leading-tight text-end !pr-8 !pl-2 border-none bg-zinc-100 dark:bg-zinc-800"
|
||||
className="rounded-l-none !p-0 leading-tight text-end !pr-8 !pl-2 border-none bg-zinc-100 dark:bg-zinc-900"
|
||||
noRedWhenLevelNone={true}
|
||||
disabled={loading || disabled}
|
||||
hiddenLevels={['remove']}
|
||||
@@ -146,7 +146,7 @@ export const InternalUsersAccessManager = ({
|
||||
/>
|
||||
)}
|
||||
{!loading && resultFooterText && <>
|
||||
<div className={(result.length == 0 ? 'rounded-md' : 'rounded-b-md') + ' grow text-center text-zinc-700 dark:text-white dark:opacity-75 py-2 dark:border-zinc-700 border-t bg-zinc-100 dark:bg-zinc-800'}>
|
||||
<div className={(result.length == 0 ? 'rounded-md' : 'rounded-b-md') + ' grow text-center text-zinc-700 dark:text-white dark:opacity-75 py-2 dark:border-zinc-700 border-t bg-zinc-100 dark:bg-zinc-900'}>
|
||||
{resultFooterText}
|
||||
</div>
|
||||
</>}
|
||||
|
||||
@@ -99,7 +99,7 @@ const CreateModalOption = (props: { icon: ReactNode; text: string; onClick: () =
|
||||
return (
|
||||
<div
|
||||
onClick={props.onClick}
|
||||
className="flex flex-row p-4 dark:bg-zinc-800 dark:text-white bg-zinc-100 hover:bg-opacity-75 cursor-pointer rounded-md m-2"
|
||||
className="flex flex-row p-4 dark:bg-zinc-900 dark:text-white bg-zinc-100 hover:bg-opacity-75 cursor-pointer rounded-md m-2"
|
||||
>
|
||||
<div className="flex items-center justify-center">{props.icon}</div>
|
||||
<div className="grow flex items-center ml-2">
|
||||
|
||||
@@ -141,7 +141,7 @@ const AccessChecker = ({
|
||||
return (
|
||||
<div className="text-center">
|
||||
<div style={{ height: '20vh' }} />
|
||||
<div className="inline-block text-left max-w-sm margin-auto bg-zinc-50 dark:bg-zinc-800 rounded-md p-4">
|
||||
<div className="inline-block text-left max-w-sm margin-auto bg-zinc-50 dark:bg-zinc-900 rounded-md p-4">
|
||||
<Title>You don't have access to this document or folder.</Title>
|
||||
<br />
|
||||
<Base>The public link you are using may be invalid or expired.</Base>
|
||||
|
||||
@@ -1,5 +1,4 @@
|
||||
import Avatar from '@atoms/avatar';
|
||||
import { Base, Info } from '@atoms/text';
|
||||
import Menu from '@components/menus/menu';
|
||||
import LoginService from '@features/auth/login-service';
|
||||
import { useCurrentUser } from '@features/users/hooks/use-current-user';
|
||||
@@ -21,6 +20,18 @@ export default ({ sidebar }: { sidebar?: boolean }): JSX.Element => {
|
||||
className="flex flex-row items-center max-w-xs cursor-pointer"
|
||||
position="bottom"
|
||||
menu={[
|
||||
// user name / email
|
||||
{
|
||||
type: 'text',
|
||||
text: currentUserService.getFullName(user),
|
||||
},
|
||||
{
|
||||
type: 'text',
|
||||
text: user.email,
|
||||
icon: 'envelope-info',
|
||||
hide: !FeatureTogglesService.isActiveFeatureName(FeatureNames.COMPANY_DISPLAY_EMAIL),
|
||||
},
|
||||
{ type: 'separator' },
|
||||
{
|
||||
type: 'menu',
|
||||
icon: 'user',
|
||||
@@ -47,19 +58,6 @@ export default ({ sidebar }: { sidebar?: boolean }): JSX.Element => {
|
||||
avatar={user.thumbnail}
|
||||
title={currentUserService.getFullName(user)}
|
||||
/>
|
||||
<div
|
||||
className={'sm:block ml-2 mr-2 flex flex-col overflow-hidden ' + (sidebar ? '' : 'hidden')}
|
||||
>
|
||||
<Base className="font-bold overflow-hidden text-ellipsis whitespace-nowrap w-full block -mb-1">
|
||||
{currentUserService.getFullName(user)}
|
||||
</Base>
|
||||
|
||||
{ !FeatureTogglesService.isActiveFeatureName(FeatureNames.COMPANY_DISPLAY_EMAIL) && (
|
||||
<Info className="font-semibold overflow-hidden text-ellipsis whitespace-nowrap w-full">
|
||||
{user.email}
|
||||
</Info>
|
||||
)}
|
||||
</div>
|
||||
</Menu>
|
||||
);
|
||||
};
|
||||
|
||||
@@ -27,10 +27,13 @@ export default ({ className }: { className?: string }): JSX.Element => {
|
||||
target="_blank"
|
||||
rel="noreferrer"
|
||||
href={app.url}
|
||||
className="inline-block flex flex-col items-center justify-center cursor-pointer hover:bg-zinc-100 dark:hover:bg-zinc-900 rounded-md p-2 pb-1"
|
||||
className="inline-block flex flex-col items-center justify-center cursor-pointer hover:bg-zinc-100 dark:hover:bg-zinc-800 rounded-md p-2 pb-1"
|
||||
>
|
||||
<img src={app.logo} className="w-10 h-10 mb-1" />
|
||||
<Base>{app.name}</Base>
|
||||
<img src={app.logo} className="w-11 h-11 mb-1" />
|
||||
<Base style={{
|
||||
fontSize: '0.75rem',
|
||||
lineHeight: '1.4rem',
|
||||
}}>{app.name}</Base>
|
||||
</a>
|
||||
);
|
||||
})}
|
||||
|
||||
@@ -35,7 +35,7 @@ const DiskUsage = () => {
|
||||
return (
|
||||
<>
|
||||
{FeatureTogglesService.isActiveFeatureName(FeatureNames.COMPANY_USER_QUOTA) && (
|
||||
<div className="bg-zinc-500 dark:bg-zinc-800 bg-opacity-10 rounded-md p-4 w-auto max-w-md">
|
||||
<div className="bg-zinc-500 dark:bg-zinc-900 bg-opacity-10 rounded-md p-4 w-auto max-w-md">
|
||||
<div className="w-full">
|
||||
<div className="overflow-hidden h-4 mb-4 text-xs flex rounded bg-emerald-200">
|
||||
{used > 90 && (
|
||||
@@ -62,7 +62,7 @@ const DiskUsage = () => {
|
||||
</div>
|
||||
)}
|
||||
{!FeatureTogglesService.isActiveFeatureName(FeatureNames.COMPANY_USER_QUOTA) && (
|
||||
<div className="bg-zinc-500 dark:bg-zinc-800 bg-opacity-10 rounded-md p-4 w-auto max-w-md">
|
||||
<div className="bg-zinc-500 dark:bg-zinc-900 bg-opacity-10 rounded-md p-4 w-auto max-w-md">
|
||||
<div className="w-full">
|
||||
<Base>
|
||||
{formatBytesToInt(usedBytes)}
|
||||
|
||||
@@ -7,7 +7,13 @@ import version from '../../../environment/version';
|
||||
|
||||
export default ({ openSideMenu }: { openSideMenu: () => void }) => {
|
||||
return (
|
||||
<div className="bg-white dark:bg-zinc-900 h-16 sm:h-20 p-4 sm:p-6 flex space-between items-center">
|
||||
<div
|
||||
className="bg-white dark:bg-zinc-900 h-16 sm:h-20 p-4 sm:p-6 flex space-between items-center"
|
||||
style={{
|
||||
paddingLeft: '1.875rem',
|
||||
paddingRight: '1.875rem',
|
||||
}}
|
||||
>
|
||||
<div className="sm:block hidden shrink-0 w-2/6 max-w-xs" style={{ minWidth: 100 }}>
|
||||
<div className="sm:inline-grid">
|
||||
<img
|
||||
@@ -21,7 +27,7 @@ export default ({ openSideMenu }: { openSideMenu: () => void }) => {
|
||||
alt="Tdrive"
|
||||
/>
|
||||
</div>
|
||||
<div className="sm:inline-grid">
|
||||
<div className="sm:inline-grid pl-3">
|
||||
<Info className="font-bold overflow-hidden text-ellipsis whitespace-nowrap w-full block -mb-1">
|
||||
v{version.version}
|
||||
</Info>
|
||||
|
||||
@@ -37,7 +37,7 @@ export default () => {
|
||||
);
|
||||
const active = false;
|
||||
const { sharedWithMe, inTrash, path } = useDriveItem(parentId);
|
||||
const activeClass = 'bg-zinc-50 dark:bg-zinc-800 !text-blue-500';
|
||||
const activeClass = 'bg-zinc-50 dark:bg-zinc-900 !text-blue-500';
|
||||
let folderType = 'home';
|
||||
if ((path || [])[0]?.id === 'user_' + user?.id) folderType = 'personal';
|
||||
if (inTrash) folderType = 'trash';
|
||||
|
||||
@@ -22,7 +22,7 @@ export default () => {
|
||||
}
|
||||
|
||||
return (
|
||||
<div className="full_page_error dark:bg-zinc-700 dark:text-white">
|
||||
<div className="full_page_error dark:bg-zinc-800 dark:text-white">
|
||||
<div className="error_message skew_in_top_nobounce">
|
||||
<div className="title">
|
||||
<Emojione type="👨🚀" size={32} />{' '}
|
||||
|
||||