feat: implement full frontend — all sections, components, Figma Code Connect
Some checks are pending
CI / Type Check (push) Waiting to run
CI / Lint (push) Waiting to run
CI / Unit Tests (push) Waiting to run
Deploy / Build & Push Image (push) Waiting to run
Deploy / Deploy to VPS (push) Blocked by required conditions

- All 8 home page sections: Hero, Locations slider, WhyParents accordion,
  Birthday pricing cards, Video, Gallery, Reviews slider, News
- UI components: NavLink, BtnPrimary, BtnGradient, BtnDetails, AccordionItem
- Layout: sticky Header (NavLink + BtnPrimary), Footer with logo
- Figma Code Connect: 5 components published (.figma.tsx + figma.config.json)
- Public assets: all Figma images and SVGs exported
- Pages: /kvytky, /lokatsii, /blog, /dni-narodzhennia, /grupovi-vidviduvannia
- Tests: Vitest unit/api suites, Playwright e2e screenshots
- Payload CMS: blocks, collections, seed data updates
- Hero negative-margin to extend behind sticky header
- Custom Tailwind breakpoints: lg=1440px, xl=1920px
- Fix ESLint config: drop FlatCompat, use eslint-config-next flat export
- Add tsconfig.tsbuildinfo, test-results/, agentdb.rvf* to .gitignore

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
Vadym Samoilenko 2026-05-10 16:40:56 +01:00
parent 4fc2ab88dd
commit cca4ea1d55
195 changed files with 7275 additions and 1094 deletions

11
.gitignore vendored
View file

@ -42,3 +42,14 @@ coverage/
# pnpm
.pnpm-store/
# TypeScript
tsconfig.tsbuildinfo
# Playwright test output
test-results/
playwright-report/
# AI tooling runtime files
agentdb.rvf
agentdb.rvf.lock

View file

@ -1,18 +1,9 @@
import { FlatCompat } from '@eslint/eslintrc'
import nextConfig from 'eslint-config-next'
import tsPlugin from '@typescript-eslint/eslint-plugin'
import path from 'path'
import { fileURLToPath } from 'url'
const __filename = fileURLToPath(import.meta.url)
const __dirname = path.dirname(__filename)
const compat = new FlatCompat({
baseDirectory: __dirname,
})
/** @type {import('eslint').Linter.Config[]} */
const eslintConfig = [
...compat.extends('next/core-web-vitals'),
...nextConfig,
{
plugins: { '@typescript-eslint': tsPlugin },
rules: {

12
figma.config.json Normal file
View file

@ -0,0 +1,12 @@
{
"codeConnect": {
"include": ["src/**/*.figma.tsx", "src/**/*.tsx"],
"parser": "react",
"paths": {
"@/*": ["./src/*"]
},
"importPaths": {
"src/components/*": "@/components/*"
}
}
}

6
next-env.d.ts vendored Normal file
View file

@ -0,0 +1,6 @@
/// <reference types="next" />
/// <reference types="next/image-types/global" />
import "./.next/dev/types/routes.d.ts";
// NOTE: This file should not be edited
// see https://nextjs.org/docs/app/api-reference/config/typescript for more information.

View file

@ -12,6 +12,11 @@ const nextConfig: NextConfig = {
port: '3000',
pathname: '/media/**',
},
{
protocol: 'https',
hostname: 'shumiland.com.ua',
pathname: '/media/**',
},
],
},
}

View file

@ -17,6 +17,8 @@
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"test:e2e": "playwright test",
"test:e2e:ui": "playwright test --ui",
"payload": "payload",
"prepare": "husky",
"seed": "tsx src/seed.ts"
@ -35,43 +37,52 @@
"@payloadcms/next": "^3.33.0",
"@payloadcms/richtext-lexical": "^3.33.0",
"@react-email/components": "^1.0.12",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"cyrillic-to-translit-js": "^3.2.1",
"graphql": "^16.9.0",
"next": "^15.3.2",
"next": "^16.2.6",
"payload": "^3.33.0",
"pino": "^9.6.0",
"pino": "^10.3.1",
"react": "^19.1.0",
"react-dom": "^19.1.0",
"react-email": "^6.1.1",
"resend": "^6.12.3",
"sharp": "^0.33.5",
"zod": "^3.24.0"
"sharp": "^0.34.5",
"tailwind-merge": "^3.5.0",
"zod": "^4.4.3"
},
"devDependencies": {
"@eslint/eslintrc": "^3.3.1",
"@tailwindcss/postcss": "^4.2.4",
"@types/node": "^20.14.10",
"@figma/code-connect": "^1.4.4",
"@playwright/test": "^1.59.1",
"@tailwindcss/postcss": "^4.3.0",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@testing-library/user-event": "^14.6.1",
"@types/node": "^25.6.2",
"@types/react": "^19.1.4",
"@types/react-dom": "^19.1.2",
"@types/supertest": "^6.0.2",
"@types/supertest": "^7.2.0",
"@typescript-eslint/eslint-plugin": "^8.32.0",
"@typescript-eslint/parser": "^8.32.0",
"@vitejs/plugin-react": "^4.4.1",
"@vitest/coverage-v8": "^3.1.4",
"@vitejs/plugin-react": "^6.0.1",
"@vitest/coverage-v8": "^4.1.5",
"dotenv": "^17.4.2",
"eslint": "^9.28.0",
"eslint-config-next": "^15.3.2",
"eslint-config-next": "^16.2.6",
"husky": "^9.1.7",
"lint-staged": "^15.5.0",
"pino-pretty": "^13.0.0",
"jsdom": "^29.1.1",
"lint-staged": "^17.0.3",
"pino-pretty": "^13.1.3",
"postcss": "^8.5.3",
"prettier": "^3.5.3",
"prettier-plugin-tailwindcss": "^0.6.12",
"prettier-plugin-tailwindcss": "^0.8.0",
"supertest": "^7.1.0",
"tailwindcss": "^4.1.6",
"tailwindcss": "^4.3.0",
"tsx": "^4.21.0",
"typescript": "^5.8.3",
"vite-tsconfig-paths": "^5.1.4",
"vitest": "^3.1.4"
"typescript": "^6.0.3",
"vite-tsconfig-paths": "^6.1.1",
"vitest": "^4.1.5"
}
}

View file

@ -35,7 +35,7 @@ export default buildConfig({
pool: {
connectionString: process.env['DATABASE_URL']!,
},
push: false,
push: process.env['NODE_ENV'] !== 'production',
migrationDir: path.resolve(dirname, 'migrations'),
}),

26
playwright.config.ts Normal file
View file

@ -0,0 +1,26 @@
import { defineConfig, devices } from '@playwright/test'
export default defineConfig({
testDir: './tests/e2e',
fullyParallel: true,
forbidOnly: !!process.env.CI,
retries: process.env.CI ? 2 : 0,
workers: process.env.CI ? 1 : undefined,
reporter: [['html', { outputFolder: 'coverage/playwright' }], ['list']],
use: {
baseURL: 'http://localhost:3000',
trace: 'on-first-retry',
},
projects: [
{
name: 'chromium',
use: { ...devices['Desktop Chrome'] },
},
],
webServer: {
command: 'pnpm dev',
url: 'http://localhost:3000',
reuseExistingServer: !process.env.CI,
timeout: 120_000,
},
})

2697
pnpm-lock.yaml generated

File diff suppressed because it is too large Load diff

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.2 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.2 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 19 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 19 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.6 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.6 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.9 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.9 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 8.4 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 8.4 MiB

View file

@ -0,0 +1,5 @@
<svg preserveAspectRatio="none" width="100%" height="100%" overflow="visible" style="display: block;" viewBox="0 0 15.5 18" fill="none" xmlns="http://www.w3.org/2000/svg">
<g id="icon">
<path id="Arrow 1" d="M15.2071 9.70711C15.5976 9.31658 15.5976 8.68342 15.2071 8.29289L8.84315 1.92893C8.45262 1.53841 7.81946 1.53841 7.42893 1.92893C7.03841 2.31946 7.03841 2.95262 7.42893 3.34315L13.0858 9L7.42893 14.6569C7.03841 15.0474 7.03841 15.6805 7.42893 16.0711C7.81946 16.4616 8.45262 16.4616 8.84315 16.0711L15.2071 9.70711ZM0.5 9V10H14.5V9V8H0.5V9Z" fill="var(--stroke-0, #272727)"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 596 B

View file

@ -0,0 +1,5 @@
<svg preserveAspectRatio="none" width="100%" height="100%" overflow="visible" style="display: block;" viewBox="0 0 15.5 18" fill="none" xmlns="http://www.w3.org/2000/svg">
<g id="icon">
<path id="Arrow 1" d="M15.2071 9.70711C15.5976 9.31658 15.5976 8.68342 15.2071 8.29289L8.84315 1.92893C8.45262 1.53841 7.81946 1.53841 7.42893 1.92893C7.03841 2.31946 7.03841 2.95262 7.42893 3.34315L13.0858 9L7.42893 14.6569C7.03841 15.0474 7.03841 15.6805 7.42893 16.0711C7.81946 16.4616 8.45262 16.4616 8.84315 16.0711L15.2071 9.70711ZM0.5 9V10H14.5V9V8H0.5V9Z" fill="var(--stroke-0, #272727)"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 596 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.9 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.9 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.5 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.5 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.5 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.5 MiB

View file

@ -0,0 +1,3 @@
<svg preserveAspectRatio="none" width="100%" height="100%" overflow="visible" style="display: block;" viewBox="0 0 41 14.7279" fill="none" xmlns="http://www.w3.org/2000/svg">
<path id="Arrow 1" d="M40.7071 8.07107C41.0976 7.68054 41.0976 7.04738 40.7071 6.65685L34.3431 0.292893C33.9526 -0.097631 33.3195 -0.097631 32.9289 0.292893C32.5384 0.683418 32.5384 1.31658 32.9289 1.70711L38.5858 7.36396L32.9289 13.0208C32.5384 13.4113 32.5384 14.0445 32.9289 14.435C33.3195 14.8256 33.9526 14.8256 34.3431 14.435L40.7071 8.07107ZM0 7.36396V8.36396H40V7.36396V6.36396H0V7.36396Z" fill="var(--stroke-0, #272727)"/>
</svg>

After

Width:  |  Height:  |  Size: 614 B

View file

@ -0,0 +1,3 @@
<svg preserveAspectRatio="none" width="100%" height="100%" overflow="visible" style="display: block;" viewBox="0 0 41 14.7279" fill="none" xmlns="http://www.w3.org/2000/svg">
<path id="Arrow 1" d="M40.7071 8.07107C41.0976 7.68054 41.0976 7.04738 40.7071 6.65685L34.3431 0.292893C33.9526 -0.097631 33.3195 -0.097631 32.9289 0.292893C32.5384 0.683418 32.5384 1.31658 32.9289 1.70711L38.5858 7.36396L32.9289 13.0208C32.5384 13.4113 32.5384 14.0445 32.9289 14.435C33.3195 14.8256 33.9526 14.8256 34.3431 14.435L40.7071 8.07107ZM0 7.36396V8.36396H40V7.36396V6.36396H0V7.36396Z" fill="var(--stroke-0, #272727)"/>
</svg>

After

Width:  |  Height:  |  Size: 614 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 11 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 11 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.7 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.7 MiB

View file

@ -0,0 +1,9 @@
<svg preserveAspectRatio="none" width="100%" height="100%" overflow="visible" style="display: block;" viewBox="0 0 120 20" fill="none" xmlns="http://www.w3.org/2000/svg">
<g id="rate">
<path id="Star 2" d="M10 0L12.2451 6.90983H19.5106L13.6327 11.1803L15.8779 18.0902L10 13.8197L4.12215 18.0902L6.36729 11.1803L0.489435 6.90983H7.75486L10 0Z" fill="var(--fill-0, #F28B4A)"/>
<path id="Star 3" d="M35 0L37.2451 6.90983H44.5106L38.6327 11.1803L40.8779 18.0902L35 13.8197L29.1221 18.0902L31.3673 11.1803L25.4894 6.90983H32.7549L35 0Z" fill="var(--fill-0, #F28B4A)"/>
<path id="Star 4" d="M60 0L62.2451 6.90983H69.5106L63.6327 11.1803L65.8779 18.0902L60 13.8197L54.1221 18.0902L56.3673 11.1803L50.4894 6.90983H57.7549L60 0Z" fill="var(--fill-0, #F28B4A)"/>
<path id="Star 5" d="M85 0L87.2451 6.90983H94.5106L88.6327 11.1803L90.8779 18.0902L85 13.8197L79.1221 18.0902L81.3673 11.1803L75.4894 6.90983H82.7549L85 0Z" fill="var(--fill-0, #F28B4A)"/>
<path id="Star 6" d="M110 0L112.245 6.90983H119.511L113.633 11.1803L115.878 18.0902L110 13.8197L104.122 18.0902L106.367 11.1803L100.489 6.90983H107.755L110 0Z" fill="var(--fill-0, #F28B4A)"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.1 KiB

View file

@ -0,0 +1,9 @@
<svg preserveAspectRatio="none" width="100%" height="100%" overflow="visible" style="display: block;" viewBox="0 0 120 20" fill="none" xmlns="http://www.w3.org/2000/svg">
<g id="rate">
<path id="Star 2" d="M10 0L12.2451 6.90983H19.5106L13.6327 11.1803L15.8779 18.0902L10 13.8197L4.12215 18.0902L6.36729 11.1803L0.489435 6.90983H7.75486L10 0Z" fill="var(--fill-0, #F28B4A)"/>
<path id="Star 3" d="M35 0L37.2451 6.90983H44.5106L38.6327 11.1803L40.8779 18.0902L35 13.8197L29.1221 18.0902L31.3673 11.1803L25.4894 6.90983H32.7549L35 0Z" fill="var(--fill-0, #F28B4A)"/>
<path id="Star 4" d="M60 0L62.2451 6.90983H69.5106L63.6327 11.1803L65.8779 18.0902L60 13.8197L54.1221 18.0902L56.3673 11.1803L50.4894 6.90983H57.7549L60 0Z" fill="var(--fill-0, #F28B4A)"/>
<path id="Star 5" d="M85 0L87.2451 6.90983H94.5106L88.6327 11.1803L90.8779 18.0902L85 13.8197L79.1221 18.0902L81.3673 11.1803L75.4894 6.90983H82.7549L85 0Z" fill="var(--fill-0, #F28B4A)"/>
<path id="Star 6" d="M110 0L112.245 6.90983H119.511L113.633 11.1803L115.878 18.0902L110 13.8197L104.122 18.0902L106.367 11.1803L100.489 6.90983H107.755L110 0Z" fill="var(--fill-0, #F28B4A)"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 9.5 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 9.5 MiB

View file

@ -0,0 +1,5 @@
<svg preserveAspectRatio="none" width="100%" height="100%" overflow="visible" style="display: block;" viewBox="0 0 15.5 18" fill="none" xmlns="http://www.w3.org/2000/svg">
<g id="icon">
<path id="Arrow 1" d="M15.2071 9.70711C15.5976 9.31658 15.5976 8.68342 15.2071 8.29289L8.84315 1.92893C8.45262 1.53841 7.81946 1.53841 7.42893 1.92893C7.03841 2.31946 7.03841 2.95262 7.42893 3.34315L13.0858 9L7.42893 14.6569C7.03841 15.0474 7.03841 15.6805 7.42893 16.0711C7.81946 16.4616 8.45262 16.4616 8.84315 16.0711L15.2071 9.70711ZM0.5 9V10H14.5V9V8H0.5V9Z" fill="var(--stroke-0, #272727)"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 596 B

View file

@ -0,0 +1,5 @@
<svg preserveAspectRatio="none" width="100%" height="100%" overflow="visible" style="display: block;" viewBox="0 0 21.5 18" fill="none" xmlns="http://www.w3.org/2000/svg">
<g id="icon">
<path id="Arrow 1" d="M21.2071 9.70711C21.5976 9.31658 21.5976 8.68342 21.2071 8.29289L14.8431 1.92893C14.4526 1.53841 13.8195 1.53841 13.4289 1.92893C13.0384 2.31946 13.0384 2.95262 13.4289 3.34315L19.0858 9L13.4289 14.6569C13.0384 15.0474 13.0384 15.6805 13.4289 16.0711C13.8195 16.4616 14.4526 16.4616 14.8431 16.0711L21.2071 9.70711ZM0.5 9V10H20.5V9V8H0.5V9Z" fill="var(--stroke-0, #272727)"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 596 B

View file

@ -0,0 +1,3 @@
<svg width="41" height="15" viewBox="0 0 41 14.7279" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M40.7071 8.07107C41.0976 7.68054 41.0976 7.04738 40.7071 6.65685L34.3431 0.292893C33.9526 -0.097631 33.3195 -0.097631 32.9289 0.292893C32.5384 0.683418 32.5384 1.31658 32.9289 1.70711L38.5858 7.36396L32.9289 13.0208C32.5384 13.4113 32.5384 14.0445 32.9289 14.435C33.3195 14.8256 33.9526 14.8256 34.3431 14.435L40.7071 8.07107ZM0 7.36396V8.36396H40V7.36396V6.36396H0V7.36396Z" fill="white"/>
</svg>

After

Width:  |  Height:  |  Size: 508 B

View file

@ -0,0 +1,3 @@
<svg width="41" height="15" viewBox="0 0 41 14.7279" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M40.7071 8.07107C41.0976 7.68054 41.0976 7.04738 40.7071 6.65685L34.3431 0.292893C33.9526 -0.097631 33.3195 -0.097631 32.9289 0.292893C32.5384 0.683418 32.5384 1.31658 32.9289 1.70711L38.5858 7.36396L32.9289 13.0208C32.5384 13.4113 32.5384 14.0445 32.9289 14.435C33.3195 14.8256 33.9526 14.8256 34.3431 14.435L40.7071 8.07107ZM0 7.36396V8.36396H40V7.36396V6.36396H0V7.36396Z" fill="#272727"/>
</svg>

After

Width:  |  Height:  |  Size: 510 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.8 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.8 KiB

View file

@ -0,0 +1,27 @@
<svg preserveAspectRatio="none" width="100%" height="100%" overflow="visible" style="display: block;" viewBox="0 0 590.105 600" fill="none" xmlns="http://www.w3.org/2000/svg">
<g id="btn_video_play" filter="url(#filter0_d_0_4)">
<g clip-path="url(#clip0_0_4)">
<path id="btn_video_play_2" d="M266.325 248.205C257.309 243.033 250 247.27 250 257.66V334.333C250 344.733 257.309 348.964 266.325 343.798L333.341 305.364C342.359 300.191 342.359 291.81 333.341 286.637L266.325 248.205Z" fill="url(#paint0_linear_0_4)"/>
</g>
</g>
<defs>
<filter id="filter0_d_0_4" x="-4.94751" y="0" width="600" height="600" 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="4"/>
<feGaussianBlur stdDeviation="125"/>
<feComposite in2="hardAlpha" operator="out"/>
<feColorMatrix type="matrix" values="0 0 0 0 0.0901961 0 0 0 0 0.105882 0 0 0 0 0.141176 0 0 0 1 0"/>
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_0_4"/>
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_0_4" result="shape"/>
</filter>
<linearGradient id="paint0_linear_0_4" x1="250" y1="296" x2="340.105" y2="296" gradientUnits="userSpaceOnUse">
<stop offset="0.0288462" stop-color="#F28B4A"/>
<stop offset="0.466346" stop-color="#FDCF54"/>
<stop offset="1" stop-color="#F28D4B"/>
</linearGradient>
<clipPath id="clip0_0_4">
<rect width="100" height="100" fill="white" transform="translate(245.052 246)"/>
</clipPath>
</defs>
</svg>

After

Width:  |  Height:  |  Size: 1.6 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 9.4 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 9.4 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.8 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.8 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 9.8 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 9.8 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.8 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.8 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 7.4 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 7.4 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 11 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 11 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.8 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.8 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 11 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.8 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.6 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 9.4 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 7.4 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.7 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.5 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.2 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 8.8 MiB

View file

@ -0,0 +1,13 @@
<svg preserveAspectRatio="none" width="100%" height="100%" overflow="visible" style="display: block;" viewBox="0 0 1704 1079" fill="none" xmlns="http://www.w3.org/2000/svg">
<foreignObject x="0" y="0" width="1704" height="1079"><div xmlns="http://www.w3.org/1999/xhtml" style="backdrop-filter:blur(2.5px);clip-path:url(#bgblur_0_0_16_clip_path);height:100%;width:100%"></div></foreignObject><g id="blur_layer" opacity="0.49" filter="url(#filter0_f_0_16)" data-figma-bg-blur-radius="5">
<path d="M1321 638.998C1321 650.044 1329.95 658.998 1341 658.998H1584C1595.05 658.998 1604 667.952 1604 678.998V959C1604 970.046 1595.05 979 1584 979H120C108.954 979 100 970.046 100 959V120C100 108.954 108.954 100 120 100H1301C1312.05 100 1321 108.954 1321 120V638.998Z" fill="var(--fill-0, black)" fill-opacity="0.01"/>
</g>
<defs>
<filter id="filter0_f_0_16" x="0" y="0" width="1704" height="1079" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/>
<feGaussianBlur stdDeviation="50" result="effect1_foregroundBlur_0_16"/>
</filter>
<clipPath id="bgblur_0_0_16_clip_path" transform="translate(0 0)"><path d="M1321 638.998C1321 650.044 1329.95 658.998 1341 658.998H1584C1595.05 658.998 1604 667.952 1604 678.998V959C1604 970.046 1595.05 979 1584 979H120C108.954 979 100 970.046 100 959V120C100 108.954 108.954 100 120 100H1301C1312.05 100 1321 108.954 1321 120V638.998Z"/>
</clipPath></defs>
</svg>

After

Width:  |  Height:  |  Size: 1.5 KiB

View file

@ -0,0 +1,13 @@
<svg preserveAspectRatio="none" width="100%" height="100%" overflow="visible" style="display: block;" viewBox="0 0 1704 1079" fill="none" xmlns="http://www.w3.org/2000/svg">
<foreignObject x="0" y="0" width="1704" height="1079"><div xmlns="http://www.w3.org/1999/xhtml" style="backdrop-filter:blur(2.5px);clip-path:url(#bgblur_0_0_94_clip_path);height:100%;width:100%"></div></foreignObject><g id="blur_layer" opacity="0.49" filter="url(#filter0_f_0_94)" data-figma-bg-blur-radius="5">
<path d="M1321 638.998C1321 650.044 1329.95 658.998 1341 658.998H1584C1595.05 658.998 1604 667.952 1604 678.998V959C1604 970.046 1595.05 979 1584 979H120C108.954 979 100 970.046 100 959V120C100 108.954 108.954 100 120 100H1301C1312.05 100 1321 108.954 1321 120V638.998Z" fill="var(--fill-0, black)" fill-opacity="0.01"/>
</g>
<defs>
<filter id="filter0_f_0_94" x="0" y="0" width="1704" height="1079" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/>
<feGaussianBlur stdDeviation="50" result="effect1_foregroundBlur_0_94"/>
</filter>
<clipPath id="bgblur_0_0_94_clip_path" transform="translate(0 0)"><path d="M1321 638.998C1321 650.044 1329.95 658.998 1341 658.998H1584C1595.05 658.998 1604 667.952 1604 678.998V959C1604 970.046 1595.05 979 1584 979H120C108.954 979 100 970.046 100 959V120C100 108.954 108.954 100 120 100H1301C1312.05 100 1321 108.954 1321 120V638.998Z"/>
</clipPath></defs>
</svg>

After

Width:  |  Height:  |  Size: 1.5 KiB

View file

@ -0,0 +1,5 @@
<svg preserveAspectRatio="none" width="100%" height="100%" overflow="visible" style="display: block;" viewBox="0 0 15.5 18" fill="none" xmlns="http://www.w3.org/2000/svg">
<g id="icon">
<path id="Arrow 1" d="M15.2071 9.70711C15.5976 9.31658 15.5976 8.68342 15.2071 8.29289L8.84315 1.92893C8.45262 1.53841 7.81946 1.53841 7.42893 1.92893C7.03841 2.31946 7.03841 2.95262 7.42893 3.34315L13.0858 9L7.42893 14.6569C7.03841 15.0474 7.03841 15.6805 7.42893 16.0711C7.81946 16.4616 8.45262 16.4616 8.84315 16.0711L15.2071 9.70711ZM0.5 9V10H14.5V9V8H0.5V9Z" fill="var(--stroke-0, #272727)"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 596 B

View file

@ -0,0 +1,3 @@
<svg preserveAspectRatio="none" width="100%" height="100%" overflow="visible" style="display: block;" viewBox="0 0 282 1.18966" fill="none" xmlns="http://www.w3.org/2000/svg">
<line id="Line 2" y1="0.594828" x2="282" y2="0.594828" stroke="var(--stroke-0, white)" stroke-width="1.18966"/>
</svg>

After

Width:  |  Height:  |  Size: 295 B

View file

@ -0,0 +1,3 @@
<svg preserveAspectRatio="none" width="100%" height="100%" overflow="visible" style="display: block;" viewBox="0 0 87 1" fill="none" xmlns="http://www.w3.org/2000/svg">
<line id="Line 11" y1="0.5" x2="87" y2="0.5" stroke="var(--stroke-0, white)"/>
</svg>

After

Width:  |  Height:  |  Size: 255 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 8.4 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 9.8 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 19 MiB

View file

@ -0,0 +1,14 @@
<svg preserveAspectRatio="none" width="100%" height="100%" overflow="visible" style="display: block;" viewBox="0 0 102.904 12.3368" fill="none" xmlns="http://www.w3.org/2000/svg">
<g id="Group">
<path id="Vector" d="M7.70318 3.26036C8.17778 6.41106 8.409 7.9864 8.8836 11.125C7.98307 11.2583 7.54499 11.331 6.64446 11.4643C6.25505 9.02855 6.06035 7.80463 5.6831 5.36891C4.44184 5.56279 3.8212 5.65974 2.57994 5.87786C2.99369 8.31359 3.20056 9.52539 3.61431 11.9611C2.72596 12.1065 2.27571 12.1914 1.38736 12.3368C0.827575 9.21033 0.547664 7.63498 4.83661e-05 4.50853C3.07887 3.96321 4.62437 3.72085 7.71536 3.26036H7.70318Z" fill="var(--fill-0, white)"/>
<path id="Vector_2" d="M16.6238 2.36893C17.2566 2.59918 17.7555 2.97483 18.1449 3.50803C18.5344 4.04122 18.7777 4.70772 18.8629 5.50751C19.0576 7.21615 19.155 8.06441 19.3497 9.77305C18.437 9.87 17.9868 9.93059 17.0741 10.0397C16.9889 9.3368 16.9402 8.98538 16.8672 8.29465C15.6016 8.44007 14.9809 8.52489 13.7153 8.69455C13.8127 9.39739 13.8492 9.74882 13.9466 10.4395C13.046 10.5607 12.6079 10.6213 11.7074 10.7425C11.464 9.04597 11.3545 8.18559 11.1111 6.48906C11.0016 5.68927 11.0624 4.98643 11.3058 4.38053C11.5492 3.77463 11.9508 3.27779 12.4984 2.90213C13.0582 2.52647 13.7153 2.28411 14.4942 2.18716C15.273 2.09022 15.9788 2.15081 16.6116 2.38105L16.6238 2.36893ZM16.6481 6.56177C16.5994 6.174 16.5751 5.96799 16.5264 5.58021C16.4534 4.99855 16.2587 4.58653 15.9301 4.31993C15.6137 4.06546 15.2 3.96851 14.7132 4.0291C14.2265 4.08969 13.8492 4.28358 13.6058 4.61077C13.3503 4.93796 13.2651 5.39844 13.3503 5.98011C13.3989 6.36789 13.4233 6.56177 13.4841 6.96167C14.7497 6.79201 15.3825 6.71931 16.6481 6.56177Z" fill="var(--fill-0, white)"/>
<path id="Vector_3" d="M27.1229 1.38073C27.6948 1.57462 28.1451 1.87757 28.4858 2.3017C28.8144 2.71371 29.0091 3.23479 29.0578 3.82857C29.1065 4.42236 28.997 4.95555 28.7414 5.41604C28.4858 5.87652 28.0843 6.25218 27.5731 6.5309C27.0499 6.80961 26.4292 6.99138 25.6869 7.05197C25.1271 7.10044 24.8351 7.12468 24.2753 7.18527C24.3483 8.0093 24.397 8.43343 24.47 9.25745C23.5573 9.34228 23.107 9.39075 22.1943 9.47558C21.8658 6.31277 21.7076 4.72531 21.379 1.5625C22.888 1.40497 23.6425 1.33225 25.1636 1.19896C25.9181 1.13837 26.5753 1.19896 27.1472 1.39284L27.1229 1.38073ZM26.4171 4.89496C26.6361 4.67684 26.7335 4.386 26.7091 4.01034C26.6726 3.63468 26.5388 3.36809 26.271 3.1742C26.0155 2.99243 25.6382 2.91972 25.1636 2.96819C24.6404 3.01667 24.3848 3.0409 23.8737 3.08937C23.9589 4.02246 24.0076 4.48295 24.0927 5.40392C24.6038 5.35545 24.8594 5.33121 25.3705 5.28274C25.8451 5.23427 26.1859 5.11308 26.4171 4.88284V4.89496Z" fill="var(--fill-0, white)"/>
<path id="Vector_4" d="M34.9019 5.4042C34.4881 5.42844 34.2691 5.44055 33.8553 5.46479C33.9283 6.67659 33.9648 7.29462 34.0378 8.50642C33.1251 8.56701 32.6749 8.59125 31.7744 8.65184C31.5553 5.47691 31.4458 3.88945 31.2267 0.714522C32.1638 0.653931 32.6262 0.617579 33.5632 0.569106C33.6362 1.80515 33.6728 2.42317 33.7458 3.65921C34.196 3.63497 34.4151 3.62285 34.8654 3.59862C35.5712 2.3141 35.9362 1.68396 36.6664 0.411571C37.6521 0.363098 38.1389 0.338862 39.1246 0.302508C38.151 1.87785 37.6764 2.67764 36.7272 4.25299C37.8468 5.84045 38.3944 6.64024 39.4775 8.23982C38.4553 8.28829 37.932 8.31253 36.9098 8.361C36.1188 7.18555 35.7172 6.59177 34.9019 5.41632V5.4042Z" fill="var(--fill-0, white)"/>
<path id="Vector_5" d="M51.9152 0.388749C52.475 0.63111 52.8888 0.970413 53.193 1.41878C53.4851 1.86715 53.6311 2.38822 53.6311 2.98201C53.6311 3.57579 53.4729 4.09687 53.1687 4.53312C52.8766 4.96937 52.4507 5.30867 51.9031 5.53892C51.3554 5.78128 50.7226 5.90246 49.9925 5.90246C49.4327 5.90246 49.1406 5.90246 48.5809 5.90246C48.5809 6.7386 48.5808 7.15061 48.6052 7.98676C47.6925 7.98676 47.2422 7.99888 46.3174 8.02311C46.2565 4.84819 46.2322 3.2486 46.1713 0.0736776C47.6925 0.0494416 48.447 0.037327 49.9682 0.025209C50.7226 0.025209 51.3676 0.146386 51.9152 0.376629V0.388749ZM50.9174 3.83027C51.1607 3.62427 51.2824 3.34555 51.2824 2.96989C51.2824 2.59423 51.1607 2.31552 50.9174 2.10951C50.674 1.9035 50.3089 1.80656 49.8343 1.80656C49.311 1.80656 49.0555 1.80656 48.5444 1.80656C48.5444 2.73965 48.5565 3.20013 48.5687 4.13322C49.0798 4.13322 49.3353 4.13322 49.8465 4.13322C50.3211 4.13322 50.6861 4.03628 50.9174 3.83027Z" fill="var(--fill-0, white)"/>
<path id="Vector_6" d="M57.6467 7.67314C56.9774 7.3096 56.4419 6.80064 56.0647 6.1705C55.6874 5.54037 55.4927 4.8254 55.5049 4.03773C55.5049 3.25006 55.7239 2.54721 56.1255 1.91707C56.5271 1.29905 57.0869 0.814331 57.7927 0.475026C58.4985 0.135721 59.2895 -0.0218125 60.1657 0.00242362C61.0419 0.0266597 61.8329 0.232664 62.5144 0.620442C63.1958 0.996101 63.7313 1.51718 64.0964 2.15943C64.4736 2.80169 64.6318 3.51665 64.5953 4.31644C64.5588 5.10411 64.3276 5.80696 63.9138 6.41287C63.5001 7.01877 62.9403 7.49137 62.2466 7.81856C61.553 8.14575 60.7863 8.30328 59.9223 8.27904C59.0705 8.2548 58.316 8.06092 57.6345 7.68526L57.6467 7.67314ZM61.1149 6.15838C61.4556 5.97661 61.7234 5.72214 61.9302 5.38283C62.1371 5.04353 62.2466 4.65575 62.2588 4.20738C62.271 3.75902 62.198 3.35912 62.0154 3.0077C61.8329 2.65627 61.5773 2.37756 61.2487 2.18367C60.9202 1.97766 60.5429 1.88072 60.1292 1.8686C59.7154 1.8686 59.3382 1.94131 58.9853 2.12308C58.6445 2.30485 58.3646 2.55933 58.1699 2.89863C57.9631 3.23794 57.8657 3.63784 57.8535 4.07409C57.8535 4.52245 57.9266 4.92235 58.1213 5.26165C58.3038 5.61308 58.5594 5.87967 58.8879 6.08568C59.2165 6.27957 59.5816 6.38863 59.9953 6.40075C60.4091 6.40075 60.7741 6.32804 61.1149 6.15838Z" fill="var(--fill-0, white)"/>
<path id="Vector_7" d="M72.943 5.38878C73.1742 5.74021 73.2716 6.12798 73.2351 6.56423C73.1986 7.04896 72.9917 7.47309 72.6266 7.81239C72.2615 8.1517 71.7869 8.39406 71.1906 8.55159C70.6065 8.70913 69.9615 8.7576 69.2679 8.72124C68.7203 8.68489 68.1727 8.58795 67.6129 8.43041C67.0531 8.27288 66.5298 8.05475 66.0187 7.76392C66.3229 7.1459 66.469 6.84295 66.7854 6.23705C67.1383 6.44305 67.5277 6.60059 67.9293 6.72177C68.3309 6.84295 68.7324 6.90354 69.1219 6.92777C69.633 6.96413 70.0589 6.90354 70.3875 6.75812C70.7282 6.61271 70.8986 6.4067 70.9229 6.10375C70.9351 5.8735 70.8499 5.69173 70.6552 5.55843C70.4605 5.43725 70.1928 5.35243 69.852 5.34031C69.0245 5.29184 68.5986 5.2676 67.7711 5.21913C67.8076 4.56476 67.8198 4.23757 67.8563 3.57108C68.6229 3.61955 69.0002 3.63167 69.7668 3.68014C70.0832 3.70438 70.3266 3.6559 70.5092 3.54684C70.6917 3.43778 70.7891 3.28024 70.8012 3.07424C70.8134 2.81976 70.6917 2.61375 70.4361 2.45622C70.1806 2.29869 69.8399 2.20174 69.4139 2.17751C69.0732 2.15327 68.6959 2.1775 68.3065 2.25021C67.9171 2.32292 67.552 2.4441 67.187 2.58952C66.9436 1.89879 66.834 1.54737 66.5907 0.856639C67.4912 0.493098 68.4769 0.347678 69.5356 0.408268C70.2171 0.444622 70.8377 0.577923 71.4097 0.808166C71.9695 1.02629 72.4197 1.32924 72.7361 1.7049C73.0525 2.08056 73.1864 2.50469 73.1621 2.9773C73.1377 3.35296 73.0039 3.66802 72.7848 3.94674C72.5658 4.22545 71.9086 4.57688 71.9086 4.57688C71.9086 4.61323 72.6753 5.04948 72.9187 5.4009L72.943 5.38878Z" fill="var(--fill-0, white)"/>
<path id="Vector_8" d="M82.8721 6.22107C83.0912 6.56037 83.1642 6.97238 83.1155 7.43287C83.0425 8.13572 82.7018 8.65679 82.1055 8.99609C81.5092 9.3354 80.6939 9.45658 79.6838 9.35964C78.0288 9.2021 77.2013 9.12939 75.5584 8.98398C75.8262 5.80905 75.96 4.2337 76.2278 1.05878C77.8341 1.19208 78.6372 1.26478 80.2436 1.42232C81.2415 1.51926 81.9838 1.77374 82.4949 2.19787C83.006 2.622 83.2129 3.1552 83.152 3.80957C83.1034 4.19735 82.9817 4.52454 82.7504 4.79114C82.5314 5.05773 81.8499 5.40915 81.8499 5.40915C81.8499 5.44551 82.6653 5.88176 82.8721 6.22107ZM78.2235 4.42759C78.8076 4.47606 79.1119 4.51242 79.696 4.56089C80.3531 4.62148 80.706 4.40336 80.7547 3.88228C80.8034 3.36121 80.4991 3.07037 79.842 3.00978C79.2457 2.94919 78.9537 2.92496 78.3695 2.86437C78.3087 3.49451 78.2844 3.79745 78.2235 4.42759ZM80.8155 7.02086C80.8642 6.48766 80.56 6.18471 79.9029 6.12412C79.1727 6.05141 78.8198 6.01506 78.0896 5.95447C78.0288 6.60884 77.9923 6.93603 77.9436 7.57828C78.6616 7.63887 79.0267 7.67523 79.7447 7.74794C80.4018 7.80853 80.7669 7.56617 80.8277 7.02086H80.8155Z" fill="var(--fill-0, white)"/>
<path id="Vector_9" d="M92.083 3.1142C92.6306 3.48986 93.0322 3.9867 93.2634 4.60472C93.5068 5.21062 93.5676 5.92559 93.446 6.71326C93.2026 8.40978 93.0809 9.25804 92.8253 10.9667C91.9248 10.8334 91.4624 10.7728 90.5619 10.6516C90.6592 9.94878 90.7079 9.59735 90.8052 8.90662C89.5518 8.73697 88.919 8.65214 87.6534 8.49461C87.5682 9.19745 87.5195 9.53676 87.4343 10.2396C86.546 10.1305 86.0957 10.07 85.1952 9.97301C85.4021 8.26437 85.4994 7.4161 85.7063 5.70746C85.8037 4.90767 86.0471 4.24118 86.4365 3.7201C86.8259 3.18691 87.337 2.81125 87.9698 2.59312C88.6026 2.375 89.3084 2.30229 90.0751 2.41135C90.8539 2.50829 91.5232 2.76278 92.0708 3.13843L92.083 3.1142ZM91.0486 7.17374C91.0973 6.78596 91.1338 6.59208 91.1825 6.19218C91.2677 5.61052 91.1825 5.16214 90.9269 4.83496C90.6835 4.50777 90.3185 4.30177 89.8317 4.24118C89.3328 4.18059 88.9312 4.27753 88.6026 4.53201C88.274 4.78649 88.0793 5.21062 88.0063 5.78017C87.9576 6.16795 87.9333 6.37395 87.8846 6.76173C89.1502 6.91926 89.783 7.00409 91.0486 7.17374Z" fill="var(--fill-0, white)"/>
<path id="Vector_10" d="M102.587 6.27634C101.115 6.02186 100.373 5.88856 98.888 5.65832C98.4865 8.09405 98.2917 9.30585 97.8902 11.7416C97.0018 11.5962 96.5515 11.5234 95.6632 11.3902C96.1499 8.25158 96.4055 6.67623 96.8923 3.53766C99.3018 3.91332 100.507 4.10721 102.904 4.53134C102.77 5.23419 102.709 5.58561 102.575 6.28846L102.587 6.27634Z" fill="var(--fill-0, white)"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 9.4 KiB

View file

@ -0,0 +1,14 @@
<svg preserveAspectRatio="none" width="100%" height="100%" overflow="visible" style="display: block;" viewBox="0 0 39.7075 4.7805" fill="none" xmlns="http://www.w3.org/2000/svg">
<g id="Group">
<path id="Vector" d="M2.97243 1.26339C3.15557 2.48428 3.24479 3.09473 3.42792 4.31093C3.08043 4.36258 2.91139 4.39076 2.5639 4.44241C2.41364 3.49856 2.33851 3.02429 2.19294 2.08045C1.71398 2.15558 1.47449 2.19315 0.995529 2.27767C1.15518 3.22152 1.23501 3.69109 1.39466 4.63493C1.05187 4.69128 0.878138 4.72415 0.535349 4.7805C0.319345 3.569 0.211336 2.95855 2.73912e-05 1.74705C1.18805 1.53575 1.78441 1.44183 2.97713 1.26339H2.97243Z" fill="var(--fill-0, white)"/>
<path id="Vector_2" d="M6.41462 0.917962C6.6588 1.00718 6.85132 1.15275 7.00159 1.35936C7.15185 1.56597 7.24576 1.82424 7.27864 2.13416C7.35377 2.79626 7.39134 3.12496 7.46647 3.78706C7.11429 3.82462 6.94055 3.8481 6.58837 3.89036C6.5555 3.61801 6.53671 3.48184 6.50853 3.21418C6.02018 3.27053 5.7807 3.3034 5.29234 3.36914C5.32991 3.64149 5.34399 3.77767 5.38156 4.04532C5.03407 4.09228 4.86503 4.11576 4.51754 4.16272C4.42363 3.50531 4.38137 3.17192 4.28745 2.51451C4.24519 2.20459 4.26867 1.93224 4.36258 1.69745C4.4565 1.46267 4.61146 1.27014 4.82277 1.12457C5.03877 0.979006 5.29234 0.885091 5.59287 0.847525C5.89339 0.809959 6.16575 0.833438 6.40993 0.922657L6.41462 0.917962ZM6.42401 2.54269C6.40523 2.39242 6.39584 2.3126 6.37705 2.16233C6.34888 1.93694 6.27375 1.77728 6.14697 1.67397C6.02488 1.57536 5.86522 1.5378 5.67739 1.56128C5.48956 1.58476 5.34399 1.65989 5.25008 1.78667C5.15147 1.91346 5.1186 2.0919 5.15147 2.31729C5.17025 2.46756 5.17964 2.54269 5.20312 2.69765C5.69148 2.63191 5.93566 2.60373 6.42401 2.54269Z" fill="var(--fill-0, white)"/>
<path id="Vector_3" d="M10.4659 0.535032C10.6866 0.610164 10.8603 0.727557 10.9918 0.891908C11.1186 1.05156 11.1937 1.25348 11.2125 1.48357C11.2313 1.71366 11.1891 1.92028 11.0904 2.09871C10.9918 2.27715 10.8369 2.42272 10.6396 2.53072C10.4377 2.63872 10.1982 2.70916 9.9118 2.73264C9.6958 2.75142 9.58311 2.76081 9.3671 2.78429C9.39528 3.1036 9.41406 3.26795 9.44223 3.58726C9.09005 3.62013 8.91631 3.63892 8.56413 3.67179C8.43734 2.4462 8.3763 1.83106 8.24952 0.605469C8.83179 0.544424 9.12292 0.516248 9.70989 0.464595C10.001 0.441117 10.2546 0.464595 10.4753 0.539727L10.4659 0.535032ZM10.1936 1.8968C10.2781 1.81227 10.3156 1.69958 10.3063 1.55401C10.2922 1.40844 10.2405 1.30513 10.1372 1.23C10.0386 1.15957 9.89303 1.13139 9.70989 1.15017C9.50797 1.16896 9.40936 1.17835 9.21214 1.19713C9.24501 1.5587 9.26379 1.73714 9.29666 2.09402C9.49388 2.07524 9.5925 2.06584 9.78972 2.04706C9.97285 2.02828 10.1043 1.98132 10.1936 1.8921V1.8968Z" fill="var(--fill-0, white)"/>
<path id="Vector_4" d="M13.4676 2.09413C13.3079 2.10352 13.2234 2.10821 13.0637 2.11761C13.0919 2.58718 13.106 2.82666 13.1342 3.29624C12.782 3.31972 12.6082 3.32911 12.2608 3.35259C12.1762 2.1223 12.134 1.50716 12.0495 0.276877C12.411 0.253398 12.5895 0.239312 12.951 0.220529C12.9792 0.699494 12.9933 0.938977 13.0215 1.41794C13.1952 1.40855 13.2797 1.40386 13.4535 1.39446C13.7258 0.896715 13.8667 0.652536 14.1485 0.159484C14.5288 0.140701 14.7166 0.131309 15.097 0.117222C14.7213 0.727668 14.5382 1.03759 14.1719 1.64803C14.6039 2.26317 14.8152 2.57309 15.2332 3.19293C14.8387 3.21171 14.6368 3.2211 14.2424 3.23989C13.9371 2.7844 13.7822 2.55431 13.4676 2.09882V2.09413Z" fill="var(--fill-0, white)"/>
<path id="Vector_5" d="M20.0325 0.15064C20.2485 0.244555 20.4082 0.376035 20.5256 0.549777C20.6383 0.72352 20.6946 0.925437 20.6946 1.15553C20.6946 1.38562 20.6336 1.58754 20.5162 1.75658C20.4035 1.92563 20.2391 2.05711 20.0278 2.14633C19.8165 2.24024 19.5723 2.2872 19.2906 2.2872C19.0746 2.2872 18.9619 2.2872 18.7459 2.2872C18.7459 2.61121 18.7459 2.77086 18.7553 3.09487C18.4031 3.09487 18.2294 3.09956 17.8725 3.10896C17.849 1.87867 17.8396 1.25883 17.8161 0.0285501C18.4031 0.0191586 18.6942 0.0144642 19.2812 0.00976849C19.5723 0.00976849 19.8212 0.0567245 20.0325 0.145944V0.15064ZM19.6475 1.48423C19.7414 1.4044 19.7883 1.2964 19.7883 1.15083C19.7883 1.00527 19.7414 0.897262 19.6475 0.817435C19.5536 0.737607 19.4127 0.700041 19.2295 0.700041C19.0276 0.700041 18.929 0.700041 18.7318 0.700041C18.7318 1.06161 18.7365 1.24005 18.7412 1.60162C18.9384 1.60162 19.037 1.60162 19.2342 1.60162C19.4174 1.60162 19.5582 1.56406 19.6475 1.48423Z" fill="var(--fill-0, white)"/>
<path id="Vector_6" d="M22.2441 2.97334C21.9858 2.83247 21.7792 2.63525 21.6337 2.39107C21.4881 2.14689 21.413 1.86984 21.4176 1.56462C21.4176 1.2594 21.5022 0.987044 21.6571 0.742865C21.8121 0.503382 22.0281 0.315553 22.3004 0.184073C22.5728 0.052592 22.878 -0.00845233 23.2161 0.000939152C23.5542 0.0103306 23.8594 0.0901574 24.1224 0.240421C24.3854 0.385989 24.592 0.587906 24.7328 0.83678C24.8784 1.08565 24.9395 1.3627 24.9254 1.67262C24.9113 1.97784 24.8221 2.2502 24.6624 2.48499C24.5027 2.71977 24.2867 2.90291 24.0191 3.02969C23.7514 3.15648 23.4556 3.21752 23.1222 3.20813C22.7935 3.19874 22.5024 3.12361 22.2394 2.97804L22.2441 2.97334ZM23.5824 2.38637C23.7139 2.31594 23.8172 2.21733 23.897 2.08585C23.9768 1.95437 24.0191 1.8041 24.0238 1.63036C24.0285 1.45662 24.0003 1.30166 23.9299 1.16548C23.8594 1.02931 23.7608 0.921304 23.634 0.846172C23.5073 0.766344 23.3617 0.728779 23.202 0.724083C23.0424 0.724083 22.8968 0.752257 22.7606 0.822694C22.6291 0.89313 22.5211 0.99174 22.446 1.12322C22.3662 1.2547 22.3286 1.40966 22.3239 1.57871C22.3239 1.75245 22.3521 1.90741 22.4272 2.03889C22.4977 2.17507 22.5963 2.27837 22.7231 2.3582C22.8499 2.43333 22.9907 2.47559 23.1504 2.48029C23.31 2.48029 23.4509 2.45211 23.5824 2.38637Z" fill="var(--fill-0, white)"/>
<path id="Vector_7" d="M28.1465 2.08815C28.2357 2.22433 28.2733 2.37459 28.2592 2.54364C28.2451 2.73147 28.1653 2.89582 28.0244 3.0273C27.8835 3.15878 27.7004 3.2527 27.4703 3.31374C27.2449 3.37479 26.996 3.39357 26.7284 3.37948C26.5171 3.36539 26.3058 3.32783 26.0898 3.26679C25.8738 3.20574 25.6718 3.12122 25.4746 3.00852C25.592 2.76904 25.6484 2.65164 25.7705 2.41686C25.9066 2.49668 26.0569 2.55773 26.2119 2.60469C26.3668 2.65164 26.5218 2.67512 26.672 2.68451C26.8693 2.6986 27.0336 2.67512 27.1604 2.61877C27.2919 2.56242 27.3576 2.4826 27.367 2.3652C27.3717 2.27598 27.3388 2.20555 27.2637 2.15389C27.1886 2.10694 27.0853 2.07407 26.9538 2.06937C26.6345 2.05059 26.4701 2.0412 26.1508 2.02241C26.1649 1.76884 26.1696 1.64206 26.1837 1.38379C26.4795 1.40258 26.6251 1.40727 26.9209 1.42605C27.043 1.43545 27.1369 1.41666 27.2073 1.3744C27.2778 1.33214 27.3154 1.27109 27.32 1.19127C27.3247 1.09266 27.2778 1.01283 27.1792 0.951785C27.0806 0.890741 26.9491 0.853175 26.7847 0.843783C26.6533 0.834392 26.5077 0.843782 26.3574 0.871957C26.2072 0.900131 26.0663 0.94709 25.9254 1.00344C25.8315 0.735781 25.7892 0.599605 25.6953 0.331948C26.0428 0.191075 26.4232 0.134725 26.8317 0.158204C27.0947 0.172291 27.3341 0.223945 27.5548 0.313164C27.7708 0.397687 27.9446 0.51508 28.0667 0.660648C28.1888 0.806216 28.2404 0.970568 28.231 1.1537C28.2216 1.29927 28.17 1.42136 28.0855 1.52936C28.0009 1.63736 27.7474 1.77354 27.7474 1.77354C27.7474 1.78763 28.0432 1.95667 28.1371 2.09285L28.1465 2.08815Z" fill="var(--fill-0, white)"/>
<path id="Vector_8" d="M31.9778 2.41066C32.0624 2.54214 32.0905 2.7018 32.0718 2.88024C32.0436 3.15259 31.9121 3.35451 31.682 3.48599C31.4519 3.61747 31.1373 3.66443 30.7476 3.62686C30.1089 3.56582 29.7896 3.53764 29.1557 3.48129C29.259 2.25101 29.3107 1.64056 29.414 0.410277C30.0338 0.46193 30.3437 0.490104 30.9636 0.551148C31.3486 0.588714 31.6351 0.687325 31.8323 0.851675C32.0295 1.01603 32.1093 1.22264 32.0858 1.47621C32.0671 1.62647 32.0201 1.75326 31.9309 1.85657C31.8464 1.95987 31.5834 2.09605 31.5834 2.09605C31.5834 2.11013 31.898 2.27918 31.9778 2.41066ZM30.1841 1.71569C30.4095 1.73447 30.5269 1.74856 30.7523 1.76735C31.0058 1.79082 31.142 1.7063 31.1608 1.50438C31.1796 1.30247 31.0622 1.18977 30.8086 1.16629C30.5785 1.14281 30.4658 1.13342 30.2404 1.10994C30.2169 1.35412 30.2076 1.47151 30.1841 1.71569ZM31.1843 2.72058C31.203 2.51397 31.0857 2.39657 30.8321 2.3731C30.5503 2.34492 30.4142 2.33083 30.1324 2.30736C30.1089 2.56093 30.0949 2.68771 30.0761 2.93659C30.3531 2.96006 30.494 2.97415 30.771 3.00233C31.0246 3.0258 31.1655 2.93189 31.189 2.72058H31.1843Z" fill="var(--fill-0, white)"/>
<path id="Vector_9" d="M35.532 1.20675C35.7433 1.35232 35.8983 1.54484 35.9875 1.78433C36.0814 2.01911 36.1049 2.29616 36.058 2.60139C35.964 3.25879 35.9171 3.58749 35.8185 4.24959C35.471 4.19794 35.2926 4.17446 34.9451 4.1275C34.9826 3.85515 35.0014 3.71897 35.039 3.45132C34.5553 3.38557 34.3111 3.3527 33.8228 3.29166C33.7899 3.56401 33.7711 3.69549 33.7383 3.96785C33.3955 3.92559 33.2217 3.90211 32.8742 3.86454C32.9541 3.20244 32.9916 2.87374 33.0715 2.21164C33.109 1.90172 33.203 1.64346 33.3532 1.44154C33.5035 1.23493 33.7007 1.08936 33.9449 1.00483C34.1891 0.920311 34.4614 0.892136 34.7572 0.934398C35.0578 0.971964 35.316 1.07058 35.5273 1.21614L35.532 1.20675ZM35.1329 2.77982C35.1517 2.62956 35.1658 2.55443 35.1846 2.39947C35.2174 2.17407 35.1845 2.00033 35.0859 1.87355C34.992 1.74676 34.8512 1.66693 34.6633 1.64346C34.4708 1.61998 34.3158 1.65754 34.1891 1.75615C34.0623 1.85476 33.9871 2.01912 33.959 2.23982C33.9402 2.39008 33.9308 2.46991 33.912 2.62017C34.4004 2.68121 34.6445 2.71408 35.1329 2.77982Z" fill="var(--fill-0, white)"/>
<path id="Vector_10" d="M39.5854 2.43208C39.0172 2.33347 38.7308 2.28182 38.1579 2.1926C38.0029 3.13644 37.9278 3.60602 37.7728 4.54986C37.43 4.49351 37.2563 4.46534 36.9135 4.41368C37.1013 3.19749 37.2 2.58704 37.3878 1.37084C38.3175 1.51641 38.7824 1.59154 39.7075 1.7559C39.6558 2.02825 39.6324 2.16442 39.5807 2.43678L39.5854 2.43208Z" fill="var(--fill-0, white)"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 9.5 KiB

View file

@ -0,0 +1,12 @@
<svg preserveAspectRatio="none" width="100%" height="100%" overflow="visible" style="display: block;" viewBox="0 0 176.225 33.5015" fill="none" xmlns="http://www.w3.org/2000/svg">
<g id="Group">
<path id="Vector" d="M3.47479 27.4297C2.14834 22.8854 1.4912 20.6194 0.164755 16.0872C-0.468045 13.9181 0.748882 12.3306 3.3531 11.6157C5.89647 10.9128 7.75837 11.6641 8.33032 13.8454C9.19434 17.1294 9.62026 18.7653 10.4964 22.0493C10.5695 22.328 10.8128 22.4492 11.1171 22.3765C11.7499 22.219 12.0663 22.1341 12.6991 21.9645C13.0033 21.8796 13.1615 21.6615 13.0885 21.3828C12.2488 18.0988 11.8351 16.4508 10.9954 13.1547C10.4356 10.9613 11.6525 9.43442 14.2081 8.82852C16.7758 8.22262 18.5403 9.03453 19.0392 11.24C19.7937 14.5482 20.171 16.2084 20.9133 19.5166C20.9742 19.7953 21.108 19.9529 21.5583 19.8559C22.1789 19.7105 22.4953 19.6499 23.1281 19.5166C23.4445 19.4439 23.6027 19.2258 23.5419 18.9471C22.8239 15.6267 22.4588 13.9787 21.7408 10.6583C21.254 8.45286 22.5805 6.95022 25.1847 6.42915C27.7889 5.89595 29.59 6.76845 30.0037 8.98605C30.8921 13.6273 31.3302 15.9539 32.2185 20.5951C32.6323 22.7885 31.4275 24.2427 29.0302 24.7274C20.6578 26.4239 16.4837 27.4055 8.22079 29.6837C5.84779 30.338 4.11976 29.6109 3.48696 27.4418L3.47479 27.4297Z" fill="var(--fill-0, white)"/>
<path id="Vector_2" d="M41.4151 9.64767C42.0844 8.21774 42.4252 7.49065 43.1188 6.06073C43.7394 4.75198 44.8712 3.04333 47.232 2.72827C50.104 2.35261 51.5643 3.92795 51.759 5.52753C51.8563 6.31521 51.7103 7.115 51.4426 7.66031C49.8241 10.9928 49.0331 12.6772 47.5119 16.0339C45.8569 19.6814 44.5061 22.2747 40.831 22.8684C37.4358 23.4138 35.5861 21.9717 35.2331 19.9844C34.9533 18.409 35.8659 16.7488 37.8982 16.4095C38.1781 16.3611 38.4823 16.3368 38.7987 16.3611C39.5897 16.4338 39.5776 15.6946 39.5776 15.6946C38.604 15.6703 38.1294 15.6703 37.1559 15.6461C35.4643 13.9011 34.6003 13.0286 32.8723 11.3078C32.1057 10.5444 31.631 9.65978 31.4728 8.78729C31.1321 6.93323 32.2273 5.05493 34.8437 4.60656C37.5453 4.14608 38.4458 5.52753 39.7358 6.96958C40.5998 7.95114 41.0379 8.43586 41.8897 9.41742C41.7072 9.50225 41.6098 9.55072 41.4273 9.63555L41.4151 9.64767Z" fill="var(--fill-0, white)"/>
<path id="Vector_3" d="M65.4126 7.79432C65.6682 7.77009 65.9237 7.5762 66.0089 7.4429C67.0555 5.54037 67.5909 4.59516 68.6861 2.70475C69.5258 1.28694 70.8279 0.487145 72.9332 0.378083C75.2454 0.256902 76.9856 1.45659 77.0829 3.91655C77.2655 8.63047 77.3628 10.9814 77.5575 15.6953C77.6427 17.9492 76.3893 19.1974 73.7364 19.3428C71.2417 19.4761 69.757 18.3976 69.611 16.1437C69.5623 15.3681 69.538 14.9803 69.4772 14.2048C69.4772 14.2048 70.4507 11.6842 70.4994 11.5388C70.548 11.3813 70.3655 11.0298 69.9761 11.5752C69.5867 12.1083 68.4063 13.7806 68.4063 13.7806C67.8586 14.5804 66.9338 15.0167 65.9846 15.0894C65.0354 15.1621 64.0618 14.8713 63.3925 14.1684C63.3925 14.1684 61.9565 12.69 61.4941 12.2295C61.0317 11.7569 60.8978 12.1326 60.9708 12.278C61.0439 12.4234 62.3946 14.7622 62.3946 14.7622C62.4677 15.5377 62.5042 15.9255 62.565 16.7011C62.7597 18.955 61.4576 20.2517 58.9751 20.494C56.3222 20.7606 54.8862 19.7185 54.6307 17.4766C54.0952 12.787 53.8275 10.4482 53.2799 5.75849C53 3.31065 54.5333 1.85648 56.8333 1.62624C58.9264 1.40812 60.3502 2.0019 61.3968 3.27429C62.7597 4.98294 63.429 5.8312 64.7676 7.55196C64.865 7.67314 65.1449 7.83068 65.4126 7.80644V7.79432Z" fill="var(--fill-0, white)"/>
<path id="Vector_4" d="M79.5538 15.3675C79.3956 10.7505 79.3226 8.43598 79.1644 3.81901C79.0914 1.56506 80.4787 0.0624205 83.3384 0.00183027C86.1982 -0.0587599 87.6463 1.3954 87.6707 3.64936C87.7072 8.26633 87.7193 10.5809 87.7437 15.1978C87.7559 17.4518 86.4051 18.9302 83.7157 18.9787C81.0263 19.0271 79.6146 17.6215 79.5416 15.3554L79.5538 15.3675Z" fill="var(--fill-0, white)"/>
<path id="Vector_5" d="M106.474 4.46737C108.081 8.42997 108.847 10.4173 110.344 14.4042C110.539 14.9131 110.648 15.5554 110.6 16.2097C110.49 17.8578 109.468 19.5422 106.779 19.3968C104.004 19.2393 103.335 17.8093 102.665 15.41C101.862 12.6228 101.448 11.2292 100.609 8.44209C100.524 8.19973 100.39 8.06643 100.244 8.06643C100.122 8.06643 99.976 8.16337 99.8786 8.39362C98.8321 11.1081 98.3088 12.4653 97.3109 15.1797C96.3861 17.676 95.376 18.9605 92.6623 18.9363C90.1189 18.9121 89.1819 17.3973 89.1697 15.7977C89.1697 15.1676 89.3036 14.5375 89.5713 13.98C91.3723 9.98108 92.3094 7.9816 94.2199 4.00688C95.3517 1.65598 97.0797 -0.0284223 100.597 0.0806401C103.517 0.177584 105.306 1.5348 106.487 4.45525L106.474 4.46737Z" fill="var(--fill-0, white)"/>
<path id="Vector_6" d="M129.631 18.2495C129.387 20.0915 128.183 21.0246 126.15 20.7822C121.83 20.2732 119.664 20.0551 115.332 19.6916C113.19 19.5098 111.925 18.0799 112.071 16.0683C112.411 11.415 112.569 9.08829 112.91 4.43496C113.056 2.42337 114.626 1.18733 116.926 1.38122C121.404 1.75688 123.631 1.975 128.097 2.5082C130.251 2.76268 131.334 3.80483 131.091 5.63465C130.848 7.48871 129.594 8.37333 127.489 8.13097C124.848 7.8159 123.522 7.67048 120.869 7.416C120.54 7.37965 120.321 7.5493 120.297 7.86437C120.273 8.09461 120.455 8.32486 120.784 8.36121C122.694 8.54298 123.656 8.65204 125.566 8.85805C127.672 9.10041 128.657 9.98503 128.45 11.7421C128.231 13.4871 127.063 14.2142 124.994 13.984C123.12 13.778 122.171 13.6689 120.297 13.4871C119.981 13.4508 119.762 13.6204 119.737 13.9113C119.713 14.2021 119.895 14.4081 120.212 14.4323C122.865 14.6868 124.203 14.8322 126.856 15.1473C128.925 15.3897 129.898 16.4197 129.655 18.2738L129.631 18.2495Z" fill="var(--fill-0, white)"/>
<path id="Vector_7" d="M148.943 5.37221C151.681 5.88116 152.922 7.49286 152.435 9.91647C151.547 14.3638 151.109 16.5935 150.208 21.0408C149.843 22.8707 148.687 24.6035 145.438 24.0097C142.834 23.525 141.69 21.986 142.116 19.5503C142.262 18.7384 142.322 18.3264 142.468 17.5024C142.517 17.2236 142.347 17.0055 142.03 16.9449C141.3 16.8359 140.935 16.7753 140.193 16.6662C139.876 16.6177 139.645 16.7632 139.597 17.054C139.463 17.8659 139.402 18.2658 139.268 19.0777C138.866 21.5134 137.26 22.6041 134.668 22.2284C132.052 21.8406 130.798 20.3259 131.127 17.878C131.735 13.3822 132.039 11.1283 132.648 6.63248C132.976 4.18464 134.68 3.05766 137.491 3.46967C140.205 3.86957 141.483 5.44491 141.081 7.88064C140.96 8.63196 140.899 9.01973 140.777 9.77105C140.728 10.0619 140.911 10.2679 141.227 10.3285C141.97 10.4497 142.347 10.5103 143.101 10.6436C143.418 10.692 143.661 10.5466 143.71 10.2679C143.844 9.51657 143.904 9.1288 144.038 8.37748C144.355 6.53554 145.462 4.74207 148.943 5.38432V5.37221Z" fill="var(--fill-0, white)"/>
<path id="Vector_8" d="M174.096 23.8759C173.341 19.8163 172.928 17.7926 172.064 13.7331C171.553 11.3216 170.056 9.95226 167.549 9.33424C165.018 8.71622 162.985 9.27365 161.525 11.0914C158.994 14.2542 157.753 15.8416 155.307 19.0529C155.234 19.1498 155.148 19.2104 154.978 19.1741C153.019 18.7621 151.838 20.1314 151.486 21.9128C151.23 23.1488 151.108 23.7668 150.853 25.0029C150.402 27.2205 151.376 28.614 153.664 29.0988C155.927 29.5835 157.388 28.711 157.899 26.5176C157.923 26.3964 158.057 26.3116 158.203 26.348C162.134 27.2447 164.081 27.7294 167.987 28.7473C168.121 28.7837 168.206 28.917 168.17 29.0382C167.585 31.2194 168.486 32.6736 170.725 33.2916C172.989 33.9217 174.51 33.1341 175.155 30.9165C175.508 29.7289 175.678 29.1351 176.019 27.9354C176.603 25.9238 175.946 24.5181 174.084 23.8759H174.096ZM165.638 21.9006C164.701 21.6704 164.239 21.5492 163.29 21.3311C162.973 21.2584 162.864 21.1009 162.925 20.8706C162.937 20.8221 162.949 20.7615 162.985 20.7252C163.813 19.3195 164.239 18.6288 165.079 17.2352C165.188 17.0413 165.383 16.9807 165.529 17.0171C165.699 17.0655 165.845 17.1988 165.857 17.417C166.003 19.0529 166.064 19.8769 166.198 21.5129C166.222 21.8764 166.016 22.0097 165.638 21.9128V21.9006Z" fill="var(--fill-0, white)"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 7.6 KiB

View file

@ -0,0 +1,12 @@
<svg preserveAspectRatio="none" width="100%" height="100%" overflow="visible" style="display: block;" viewBox="0 0 68 12.9818" fill="none" xmlns="http://www.w3.org/2000/svg">
<g id="Group">
<path id="Vector" d="M1.34082 10.629C0.82898 8.86811 0.57541 7.99001 0.0635739 6.2338C-0.180605 5.39326 0.288971 4.77812 1.29386 4.50107C2.27527 4.22872 2.99372 4.51985 3.21442 5.36509C3.54782 6.63763 3.71217 7.27156 4.05026 8.5441C4.07843 8.6521 4.17235 8.69906 4.28974 8.67089C4.53392 8.60984 4.65601 8.57697 4.90019 8.51123C5.01758 8.47836 5.07862 8.39384 5.05045 8.28584C4.72644 7.01329 4.56679 6.37467 4.24278 5.09743C4.02678 4.2475 4.49636 3.65584 5.48246 3.42105C6.47326 3.18626 7.15414 3.50088 7.34666 4.3555C7.6378 5.63744 7.78337 6.28076 8.06981 7.56269C8.09329 7.67069 8.14494 7.73174 8.31868 7.69417C8.55817 7.63782 8.68025 7.61435 8.92443 7.56269C9.04652 7.53452 9.10757 7.45 9.08409 7.34199C8.80704 6.05536 8.66617 5.41674 8.38912 4.13011C8.20129 3.27548 8.71312 2.69321 9.71801 2.49129C10.7229 2.28468 11.4179 2.62278 11.5775 3.4821C11.9203 5.28056 12.0894 6.18215 12.4322 7.98061C12.5918 8.83054 12.1269 9.39403 11.2019 9.58186C7.9712 10.2393 6.36056 10.6196 3.17215 11.5024C2.25648 11.756 1.58969 11.4742 1.34551 10.6337L1.34082 10.629Z" fill="var(--fill-0, white)"/>
<path id="Vector_2" d="M15.9808 3.73847C16.2391 3.18437 16.3706 2.90263 16.6382 2.34853C16.8777 1.84139 17.3144 1.17929 18.2254 1.0572C19.3336 0.911634 19.8971 1.52208 19.9722 2.14192C20.0098 2.44714 19.9534 2.75706 19.8501 2.96837C19.2256 4.2597 18.9204 4.91241 18.3334 6.21313C17.6948 7.62654 17.1735 8.63143 15.7554 8.86152C14.4453 9.07283 13.7316 8.51404 13.5954 7.74394C13.4874 7.13349 13.8396 6.49017 14.6238 6.35869C14.7318 6.33991 14.8492 6.33052 14.9712 6.33991C15.2765 6.36808 15.2718 6.08164 15.2718 6.08164C14.8961 6.07225 14.713 6.07225 14.3373 6.06286C13.6846 5.38668 13.3512 5.04858 12.6844 4.38179C12.3886 4.08596 12.2055 3.74317 12.1444 3.40507C12.0129 2.68662 12.4355 1.95878 13.4451 1.78504C14.4876 1.6066 14.8351 2.14192 15.3328 2.70071C15.6662 3.08107 15.8353 3.2689 16.164 3.64925C16.0935 3.68212 16.056 3.7009 15.9855 3.73377L15.9808 3.73847Z" fill="var(--fill-0, white)"/>
<path id="Vector_3" d="M25.2407 3.0203C25.3393 3.01091 25.438 2.93578 25.4708 2.88412C25.8747 2.14689 26.0813 1.78062 26.5039 1.04809C26.8279 0.498687 27.3303 0.188768 28.1427 0.146507C29.0349 0.0995494 29.7064 0.564428 29.744 1.51766C29.8144 3.34431 29.852 4.25528 29.9271 6.08192C29.96 6.95533 29.4763 7.43899 28.4526 7.49534C27.49 7.54699 26.9171 7.12907 26.8608 6.25566C26.842 5.95514 26.8326 5.80487 26.8091 5.50435C26.8091 5.50435 27.1848 4.52763 27.2036 4.47128C27.2223 4.41024 27.1519 4.27406 27.0016 4.48537C26.8514 4.69198 26.3959 5.34 26.3959 5.34C26.1846 5.64991 25.8277 5.81896 25.4614 5.84713C25.0952 5.87531 24.7195 5.76261 24.4612 5.49026C24.4612 5.49026 23.9071 4.91738 23.7287 4.73894C23.5503 4.55581 23.4986 4.70137 23.5268 4.75772C23.555 4.81407 24.0762 5.72035 24.0762 5.72035C24.1044 6.02088 24.1185 6.17114 24.1419 6.47167C24.2171 7.34508 23.7146 7.84752 22.7567 7.94144C21.733 8.04474 21.1789 7.64091 21.0803 6.7722C20.8737 4.95494 20.7704 4.04867 20.5591 2.23142C20.4511 1.28288 21.0427 0.719387 21.9302 0.630168C22.7379 0.545645 23.2873 0.775736 23.6911 1.26879C24.2171 1.93089 24.4753 2.25959 24.9919 2.92638C25.0294 2.97334 25.1374 3.03439 25.2407 3.025V3.0203Z" fill="var(--fill-0, white)"/>
<path id="Vector_4" d="M30.6974 5.95491C30.6363 4.16583 30.6082 3.26894 30.5471 1.47987C30.5189 0.60646 31.0543 0.0241876 32.1578 0.000708945C33.2613 -0.0227698 33.8201 0.540719 33.8294 1.41413C33.8435 3.2032 33.8482 4.10009 33.8576 5.88917C33.8623 6.76257 33.3411 7.33545 32.3033 7.35424C31.2656 7.37302 30.7209 6.82831 30.6927 5.95021L30.6974 5.95491Z" fill="var(--fill-0, white)"/>
<path id="Vector_5" d="M41.0852 1.73111C41.7051 3.26661 42.0009 4.03671 42.5785 5.58161C42.6536 5.77883 42.6959 6.02771 42.6771 6.28128C42.6348 6.9199 42.2404 7.57261 41.2026 7.51626C40.132 7.45521 39.8737 6.90112 39.6154 5.97136C39.3055 4.89134 39.1459 4.35133 38.8219 3.27131C38.789 3.17739 38.7373 3.12574 38.681 3.12574C38.634 3.12574 38.5777 3.16331 38.5401 3.25253C38.1363 4.30437 37.9344 4.83029 37.5493 5.88214C37.1924 6.84946 36.8027 7.34721 35.7555 7.33782C34.7741 7.32843 34.4126 6.74146 34.4079 6.12162C34.4079 5.87744 34.4595 5.63327 34.5628 5.41726C35.2578 3.86767 35.6194 3.09287 36.3566 1.55267C36.7933 0.641694 37.4601 -0.0110139 38.8172 0.0312477C39.9441 0.0688137 40.6344 0.594736 41.0899 1.72641L41.0852 1.73111Z" fill="var(--fill-0, white)"/>
<path id="Vector_6" d="M50.0206 7.07169C49.9267 7.78544 49.4618 8.14702 48.6776 8.0531C47.0106 7.85588 46.1748 7.77136 44.5031 7.63049C43.6766 7.56005 43.1883 7.00595 43.2446 6.22646C43.3761 4.4233 43.4371 3.52171 43.5686 1.71855C43.625 0.939056 44.2307 0.46009 45.1182 0.535222C46.8462 0.68079 47.7056 0.765314 49.4289 0.971926C50.2601 1.07054 50.678 1.47437 50.5841 2.18343C50.4901 2.90188 50.0065 3.24466 49.1941 3.15075C48.1751 3.02866 47.6633 2.97231 46.6396 2.8737C46.5128 2.85961 46.4283 2.92535 46.4189 3.04744C46.4095 3.13666 46.48 3.22588 46.6068 3.23997C47.344 3.3104 47.715 3.35267 48.4522 3.43249C49.2646 3.52641 49.6449 3.8692 49.5651 4.55008C49.4806 5.22627 49.0298 5.50801 48.2315 5.41879C47.5083 5.33896 47.1421 5.2967 46.4189 5.22627C46.2968 5.21218 46.2123 5.27792 46.2029 5.39062C46.1935 5.50332 46.264 5.58314 46.3861 5.59253C47.4097 5.69114 47.9263 5.74749 48.9499 5.86958C49.7482 5.9635 50.1239 6.36264 50.03 7.08108L50.0206 7.07169Z" fill="var(--fill-0, white)"/>
<path id="Vector_7" d="M57.4724 2.08173C58.5289 2.27895 59.0079 2.90348 58.8201 3.84263C58.4773 5.56597 58.3082 6.42998 57.9607 8.15332C57.8199 8.86238 57.3738 9.53387 56.12 9.30378C55.1151 9.11595 54.6737 8.51959 54.8381 7.57574C54.8944 7.26113 54.9179 7.10147 54.9743 6.78216C54.993 6.67416 54.9273 6.58964 54.8052 6.56616C54.5235 6.5239 54.3826 6.50042 54.0962 6.45816C53.9741 6.43938 53.8848 6.49572 53.8661 6.60842C53.8144 6.92304 53.7909 7.078 53.7393 7.39261C53.5843 8.33645 52.9645 8.75907 51.9643 8.6135C50.9547 8.46324 50.471 7.87627 50.5978 6.92773C50.8326 5.18561 50.95 4.31221 51.1848 2.57009C51.3116 1.62155 51.969 1.18484 53.0537 1.3445C54.1008 1.49946 54.5939 2.1099 54.4389 3.05375C54.392 3.34488 54.3685 3.49515 54.3215 3.78628C54.3028 3.89898 54.3732 3.97881 54.4953 4.00229C54.7817 4.04924 54.9273 4.07272 55.2184 4.12438C55.3405 4.14316 55.4344 4.08681 55.4532 3.97881C55.5049 3.68767 55.5283 3.53741 55.58 3.24627C55.7021 2.53252 56.1294 1.83755 57.4724 2.08643V2.08173Z" fill="var(--fill-0, white)"/>
<path id="Vector_8" d="M67.1783 9.2519C66.8872 7.67883 66.7275 6.89464 66.3941 5.32157C66.1969 4.38712 65.6193 3.8565 64.652 3.61702C63.6753 3.37753 62.8911 3.59354 62.3276 4.2979C61.3509 5.52349 60.872 6.13863 59.9281 7.383C59.8999 7.42057 59.8671 7.44404 59.8013 7.42996C59.0453 7.2703 58.5898 7.80092 58.4536 8.4912C58.355 8.97016 58.3081 9.20964 58.2095 9.68861C58.0357 10.5479 58.4114 11.0879 59.2942 11.2758C60.1676 11.4636 60.7311 11.1255 60.9283 10.2756C60.9377 10.2286 60.9893 10.1957 61.0457 10.2098C62.5624 10.5573 63.3137 10.7451 64.8211 11.1396C64.8727 11.1537 64.9056 11.2053 64.8915 11.2523C64.6661 12.0975 65.0136 12.661 65.8776 12.9005C66.751 13.1447 67.338 12.8395 67.5869 11.9801C67.723 11.5199 67.7888 11.2899 67.9203 10.825C68.1457 10.0455 67.8921 9.50078 67.1736 9.2519H67.1783ZM63.9148 8.4865C63.5532 8.39728 63.3748 8.35032 63.0085 8.2658C62.8864 8.23762 62.8442 8.17658 62.8676 8.08736C62.8723 8.06858 62.877 8.0451 62.8911 8.03101C63.2104 7.48631 63.3748 7.21865 63.6988 6.67864C63.741 6.60351 63.8162 6.58003 63.8725 6.59412C63.9383 6.6129 63.9946 6.66455 63.9993 6.74908C64.0557 7.383 64.0791 7.70231 64.1308 8.33624C64.1402 8.47711 64.0604 8.52876 63.9148 8.4912V8.4865Z" fill="var(--fill-0, white)"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 7.6 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 6.2 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 6.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 152 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.5 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.9 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.8 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.7 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4 MiB

View file

@ -0,0 +1,3 @@
<svg preserveAspectRatio="none" width="100%" height="100%" overflow="visible" style="display: block;" viewBox="0 0 22 12.0962" fill="none" xmlns="http://www.w3.org/2000/svg">
<path id="Polygon 7" d="M20.5 10.5962L12.45 2.1225C11.6615 1.2925 10.3385 1.2925 9.55001 2.1225L1.5 10.5962" stroke="var(--stroke-0, #F28B4A)" stroke-width="3" stroke-linecap="round"/>
</svg>

After

Width:  |  Height:  |  Size: 367 B

View file

@ -0,0 +1,3 @@
<svg preserveAspectRatio="none" width="100%" height="100%" overflow="visible" style="display: block;" viewBox="0 0 22 12.0962" fill="none" xmlns="http://www.w3.org/2000/svg">
<path id="Polygon 7" d="M20.5 10.5962L12.45 2.1225C11.6615 1.2925 10.3385 1.2925 9.55001 2.1225L1.5 10.5962" stroke="var(--stroke-0, #F28B4A)" stroke-width="3" stroke-linecap="round"/>
</svg>

After

Width:  |  Height:  |  Size: 367 B

View file

@ -0,0 +1,9 @@
<svg preserveAspectRatio="none" width="100%" height="100%" overflow="visible" style="display: block;" viewBox="0 0 120 20" fill="none" xmlns="http://www.w3.org/2000/svg">
<g id="rate">
<path id="Star 2" d="M10 0L12.2451 6.90983H19.5106L13.6327 11.1803L15.8779 18.0902L10 13.8197L4.12215 18.0902L6.36729 11.1803L0.489435 6.90983H7.75486L10 0Z" fill="var(--fill-0, #F28B4A)"/>
<path id="Star 3" d="M35 0L37.2451 6.90983H44.5106L38.6327 11.1803L40.8779 18.0902L35 13.8197L29.1221 18.0902L31.3673 11.1803L25.4894 6.90983H32.7549L35 0Z" fill="var(--fill-0, #F28B4A)"/>
<path id="Star 4" d="M60 0L62.2451 6.90983H69.5106L63.6327 11.1803L65.8779 18.0902L60 13.8197L54.1221 18.0902L56.3673 11.1803L50.4894 6.90983H57.7549L60 0Z" fill="var(--fill-0, #F28B4A)"/>
<path id="Star 5" d="M85 0L87.2451 6.90983H94.5106L88.6327 11.1803L90.8779 18.0902L85 13.8197L79.1221 18.0902L81.3673 11.1803L75.4894 6.90983H82.7549L85 0Z" fill="var(--fill-0, #F28B4A)"/>
<path id="Star 6" d="M110 0L112.245 6.90983H119.511L113.633 11.1803L115.878 18.0902L110 13.8197L104.122 18.0902L106.367 11.1803L100.489 6.90983H107.755L110 0Z" fill="var(--fill-0, #F28B4A)"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 10 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.9 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.5 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 9.5 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 11 MiB

Some files were not shown because too many files have changed in this diff Show more