Added shortcodes for courses (#1862)
@@ -422,6 +422,166 @@ Parameters for banner shortcode:
|
||||
|
||||
<hr>
|
||||
|
||||
#### 🧩 Congratulations-banner
|
||||
|
||||

|
||||
|
||||
Example:
|
||||
```
|
||||
{{< congratulations-banner
|
||||
title="Congratulations!"
|
||||
description="You’ve reached the end of Day 0!" >}}
|
||||
```
|
||||
|
||||
Parameters for congratulations-banner shortcode:
|
||||
- `title` - required
|
||||
- `description` - required
|
||||
- `image` - optional, default "/img/congratulations.svg"
|
||||
|
||||
<hr>
|
||||
|
||||
#### 🧩 List
|
||||
|
||||
- List - variant 1
|
||||
|
||||

|
||||
|
||||
Example:
|
||||
```
|
||||
{{< list isCompleted="false" >}}
|
||||
- Set up your Qdrant Cloud account
|
||||
- Created your first Qdrant collection
|
||||
- Inserted vectors with metadata
|
||||
- Performed a similarity search
|
||||
{{< /list >}}
|
||||
```
|
||||
|
||||
- List - variant 2
|
||||
|
||||

|
||||
|
||||
Example:
|
||||
```
|
||||
{{< list isCompleted="true" >}}
|
||||
- Set up your Qdrant Cloud account
|
||||
- Created your first Qdrant collection
|
||||
- Inserted vectors with metadata
|
||||
- Performed a similarity search
|
||||
{{< /list >}}
|
||||
```
|
||||
|
||||
Parameters for list shortcode:
|
||||
- `isCompleted` - optional, default "false"
|
||||
|
||||
<hr>
|
||||
|
||||
#### 🧩 Course card
|
||||
|
||||
- Course-card - variant 1
|
||||
|
||||

|
||||
|
||||
Example:
|
||||
```
|
||||
{{< course-card
|
||||
title="Skills you’ll gain:"
|
||||
image="/icons/outline/training-white.svg"
|
||||
isWideList="true">}}
|
||||
- Vector search fundamentals
|
||||
- Performance optimization
|
||||
- Hybrid and similarity search
|
||||
- Portfolio project development
|
||||
{{< /course-card >}}
|
||||
```
|
||||
|
||||
- Course-card - variant 2
|
||||
|
||||

|
||||
|
||||
Example:
|
||||
```
|
||||
{{< course-card
|
||||
title="Why Start Today"
|
||||
image="/icons/outline/rocket-white-light.svg"
|
||||
link="/course/day-0/">}}
|
||||
- Seeing practical examples (e.g., hybrid search, sparse+dense vectors)
|
||||
- Learning key deployment tactics (multi-node clusters, on-disk indexing, RBAC)
|
||||
- Building a final portfolio-grade project to showcase
|
||||
{{< /course-card >}}
|
||||
```
|
||||
|
||||
Parameters for course card shortcode:
|
||||
- `title` - required
|
||||
- `isWideList` - optional, default "false"
|
||||
- `image` - optional, default "/icons/outline/training-white.svg"
|
||||
- `link` - optional, default null
|
||||
|
||||
<hr>
|
||||
|
||||
#### 🧩 Date
|
||||
|
||||

|
||||
|
||||
Example:
|
||||
```
|
||||
{{< date >}} Day 1 {{< /date >}}
|
||||
```
|
||||
|
||||
Parameters for date shortcode:
|
||||
- `image` - optional, default "/icons/outline/date-blue.svg"
|
||||
|
||||
<hr>
|
||||
|
||||
#### 🧩 Cards list
|
||||
|
||||

|
||||
|
||||
Example:
|
||||
```
|
||||
{{< cards-list >}}
|
||||
- icon: /courses/course-integrations/quotient.svg
|
||||
title: Quotient
|
||||
content: Qdrant is compatible with Cohere co.embed API.
|
||||
|
||||
- icon: /courses/course-integrations/superlinked.svg
|
||||
title: Superlinked
|
||||
content: Qdrant is compatible with Cohere co.embed API.
|
||||
|
||||
- icon: /courses/course-integrations/twelveLabs.svg
|
||||
title: TwelveLabs
|
||||
content: Qdrant is compatible with Cohere co.embed API.
|
||||
|
||||
- icon: /courses/course-integrations/aparavi.svg
|
||||
title: APARAVI
|
||||
content: Qdrant is compatible with Cohere co.embed API.
|
||||
{{< /cards-list >}}
|
||||
```
|
||||
|
||||
<hr>
|
||||
|
||||
#### 🧩 Accordion
|
||||
|
||||

|
||||
|
||||
Example:
|
||||
```
|
||||
{{< accordion >}}
|
||||
- title: "Days 0: Setup, Orientation & “Hello Qdrant!”"
|
||||
content: |
|
||||
- Welcome & Course Orientation
|
||||
- Environment Setup
|
||||
- Mini “Hello Qdrant!” Demo
|
||||
|
||||
- title: "Day 1: Core Qdrant Data Model & Vector Search 101"
|
||||
content: Content
|
||||
|
||||
- title: "Days 2: Indexing & Vector Storage Architecture"
|
||||
content: Content
|
||||
{{< /accordion >}}
|
||||
```
|
||||
|
||||
<hr>
|
||||
|
||||
#### 🧩 Code Snippets Widget
|
||||
|
||||

|
||||
@@ -509,4 +669,4 @@ When use `seo_schema` and `seo_schema_json` together, `seo_schema` will be used
|
||||
|
||||
Use `seo_schema_json` if you want to reuse the same schema for multiple pages to avoid duplication and make it easier to maintain.
|
||||
|
||||
[To Index](#index)
|
||||
[To Index](#index)
|
||||
|
||||
@@ -26,13 +26,11 @@ From your first vector upsert to optimizing high-performance retrieval at scale,
|
||||
{{< course-card
|
||||
title="Skills you’ll gain:"
|
||||
image="/icons/outline/training-white.svg"
|
||||
type="wide-list">}}
|
||||
|
||||
isWideList="true">}}
|
||||
- Vector search fundamentals
|
||||
- Performance optimization
|
||||
- Hybrid and similarity search
|
||||
- Portfolio project development
|
||||
|
||||
{{< /course-card >}}
|
||||
|
||||
## What Is the Course?
|
||||
@@ -101,9 +99,7 @@ Optional but helpful:
|
||||
title="Why Start Today"
|
||||
image="/icons/outline/rocket-white-light.svg"
|
||||
link="/course/day-0/">}}
|
||||
|
||||
- Seeing practical examples (e.g., hybrid search, sparse+dense vectors)
|
||||
- Learning key deployment tactics (multi-node clusters, on-disk indexing, RBAC)
|
||||
- Building a final portfolio-grade project to showcase
|
||||
|
||||
{{< /course-card >}}
|
||||
|
||||
@@ -33,7 +33,8 @@
|
||||
top: calc(50% - pxToRem(9));
|
||||
height: pxToRem(18);
|
||||
width: pxToRem(16);
|
||||
background-image: url("data:image/svg+xml,%3Csvg width='17' height='19' viewBox='0 0 17 19' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg clip-path='url(%23clip0_10609_1497)'%3E%3Cpath d='M1.81787 6.50513L8.63605 13.3233L15.4542 6.50513' stroke='%23E1E5F0' stroke-width='1.36364' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0_10609_1497'%3E%3Crect width='16.3636' height='16.3636' fill='white' transform='translate(0.63623 1.91431)'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E%0A");background-position: center;
|
||||
background-image: url("data:image/svg+xml,%3Csvg width='17' height='19' viewBox='0 0 17 19' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg clip-path='url(%23clip0_10609_1497)'%3E%3Cpath d='M1.81787 6.50513L8.63605 13.3233L15.4542 6.50513' stroke='%23E1E5F0' stroke-width='1.36364' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0_10609_1497'%3E%3Crect width='16.3636' height='16.3636' fill='white' transform='translate(0.63623 1.91431)'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E%0A");
|
||||
background-position: center;
|
||||
background-repeat: no-repeat;
|
||||
background-size: cover;
|
||||
}
|
||||
@@ -48,6 +49,10 @@
|
||||
padding: 0 $spacer * 2 $spacer * 2 $spacer * 2;
|
||||
color: $neutral-70;
|
||||
|
||||
[data-theme='light'] & {
|
||||
color: $neutral-70;
|
||||
}
|
||||
|
||||
ul {
|
||||
li:not(:last-of-type) {
|
||||
margin-bottom: pxToRem(10);
|
||||
@@ -57,8 +62,8 @@
|
||||
}
|
||||
|
||||
&.active {
|
||||
.accordion__item-header:after {
|
||||
background-image: url("data:image/svg+xml,%3Csvg width='17' height='19' viewBox='0 0 17 19' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg clip-path='url(%23clip0_10609_1581)'%3E%3Cpath d='M15.4546 13.3232L8.63641 6.50506L1.81823 13.3232' stroke='%23E1E5F0' stroke-width='1.36364' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0_10609_1581'%3E%3Crect width='16.3636' height='16.3636' fill='white' transform='translate(0.63623 1.91418)'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E%0A");
|
||||
.accordion-dark__item-header:after {
|
||||
background-image: url("data:image/svg+xml,%3Csvg width='17' height='19' viewBox='0 0 17 19' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg clip-path='url(%23clip0_10854_1606)'%3E%3Cpath d='M15.4546 13.3232L8.63641 6.50506L1.81823 13.3232' stroke='%23E1E5F0' stroke-width='1.36364' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0_10854_1606'%3E%3Crect width='16.3636' height='16.3636' fill='white' transform='translate(0.63623 1.91418)'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E%0A");
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -29,20 +29,8 @@
|
||||
}
|
||||
|
||||
&__content {
|
||||
color: $neutral-70;
|
||||
|
||||
&.wide {
|
||||
ul {
|
||||
-webkit-column-count: 2;
|
||||
-moz-column-count: 2;
|
||||
column-count: 2;
|
||||
column-gap: $spacer * 6;
|
||||
margin-bottom: -$spacer * 1.5;
|
||||
|
||||
li {
|
||||
margin-bottom: $spacer * 1.5;
|
||||
}
|
||||
}
|
||||
[data-theme='light'] & {
|
||||
color: $neutral-70;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
@@ -30,4 +30,37 @@
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
&.list-completed {
|
||||
ul {
|
||||
li {
|
||||
padding-left: pxToRem(26);
|
||||
|
||||
&:before {
|
||||
top: pxToRem(3);
|
||||
width: pxToRem(18);
|
||||
height: pxToRem(18);
|
||||
background-image: url("data:image/svg+xml,%3Csvg width='18' height='18' viewBox='0 0 18 18' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M16.3125 4.875V13.125L9 17.25L1.6875 13.125V4.875L9 0.75L16.3125 4.875ZM12.2559 6.56055L7.7832 10.4727L5.25 7.93945L4.18945 9L7.71582 12.5264L8.24414 12.0645L13.2441 7.68945L13.8086 7.19531L12.8203 6.06641L12.2559 6.56055Z' fill='%23008A53'/%3E%3C/svg%3E%0A");
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
&.list-wide {
|
||||
ul {
|
||||
-webkit-column-count: 2;
|
||||
-moz-column-count: 2;
|
||||
column-count: 2;
|
||||
column-gap: $spacer * 6;
|
||||
margin-bottom: -$spacer * 1.5;
|
||||
|
||||
li {
|
||||
margin-bottom: $spacer * 1.5;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
[data-theme='light'] & {
|
||||
color: $neutral-30;
|
||||
}
|
||||
}
|
||||
|
||||
@@ -100,6 +100,13 @@
|
||||
text-align: center;
|
||||
z-index: 2;
|
||||
|
||||
h1 {
|
||||
font-size: $spacer * 2;
|
||||
line-height: $spacer * 2.5;
|
||||
padding: 0;
|
||||
margin-bottom: math.div($spacer, 2);
|
||||
}
|
||||
|
||||
h3 {
|
||||
font-size: pxToRem(20);
|
||||
line-height: pxToRem(30);
|
||||
@@ -108,6 +115,12 @@
|
||||
margin-bottom: $spacer * 1.5;
|
||||
}
|
||||
|
||||
p {
|
||||
font-size: pxToRem(18);
|
||||
line-height: pxToRem(27);
|
||||
margin-bottom: 0;
|
||||
}
|
||||
|
||||
a {
|
||||
font-size: pxToRem(14);
|
||||
font-weight: 500;
|
||||
@@ -207,6 +220,8 @@
|
||||
text-align: left;
|
||||
|
||||
h3,
|
||||
h1,
|
||||
p,
|
||||
a {
|
||||
margin-left: $spacer * 2.5;
|
||||
}
|
||||
@@ -256,9 +271,12 @@
|
||||
}
|
||||
}
|
||||
.docs-core__developing-block {
|
||||
h3 {
|
||||
h1, h3 {
|
||||
color: $neutral-98;
|
||||
}
|
||||
p {
|
||||
color: $neutral-70;
|
||||
}
|
||||
.button_outlined {
|
||||
color: $neutral-100;
|
||||
box-shadow: 0 0 0 1px $neutral-60;
|
||||
|
||||
@@ -0,0 +1,15 @@
|
||||
{{ $title := .Get "title" }}
|
||||
{{ $description := .Get "description" }}
|
||||
{{ $image := default "/img/congratulations.svg" (.Get "image") }}
|
||||
<div class="docs-core__developing-block mb-4">
|
||||
<div class="row align-items-center">
|
||||
<div class="docs-core__developing-block-text col-12 col-lg-7">
|
||||
<h1 class="docs-core__developing-bloc-title">{{ $title }}</h1>
|
||||
<p class="docs-core__developing-bloc-description">{{ $description }}</p>
|
||||
</div>
|
||||
<div class="docs-core__developing-block-image col-12 col-lg-5">
|
||||
<img src="{{ $image }}" alt="" />
|
||||
</div>
|
||||
<div class="docs-core__overlay"></div>
|
||||
</div>
|
||||
</div>
|
||||
@@ -1,5 +1,5 @@
|
||||
{{ $title := .Get "title" }}
|
||||
{{ $type := .Get "type" }}
|
||||
{{ $isWideList := .Get "isWideList" }}
|
||||
{{ $image := default "/icons/outline/training-white.svg" (.Get "image") }}
|
||||
{{ $link := .Get "link" }}
|
||||
<div class="course-card">
|
||||
@@ -7,7 +7,7 @@
|
||||
<img src="{{ $image }}" alt="Icon">
|
||||
{{ $title }}
|
||||
</h6>
|
||||
<div class="course-card__content list{{ if eq $type "wide-list" }} wide{{ end }}">
|
||||
<div class="course-card__content list{{ if eq $isWideList "true" }} list-wide{{ end }}">
|
||||
{{ .Inner | markdownify }}
|
||||
</div>
|
||||
{{ with $link }}
|
||||
|
||||
@@ -0,0 +1,5 @@
|
||||
{{ $isCompleted := .Get "isCompleted" }}
|
||||
<div class="list{{ if eq $isCompleted "true"}} list-completed{{ end}}">
|
||||
{{ .Inner | markdownify }}
|
||||
</div>
|
||||
|
||||
@@ -0,0 +1,67 @@
|
||||
<svg width="260" height="160" viewBox="0 0 260 160" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<g clip-path="url(#clip0_10232_52179)">
|
||||
<path opacity="0.2" d="M160.071 151.838C160.252 153.595 173.137 153.712 188.851 152.101C204.566 150.488 217.159 147.757 216.979 146C216.798 144.243 203.913 144.126 188.199 145.738C172.485 147.35 159.892 150.081 160.071 151.838Z" fill="#28324D"/>
|
||||
<path opacity="0.2" d="M172.281 72.9781C172.281 72.9781 156.947 67.1865 161.065 58.7732C168.015 44.5744 151.945 32.8973 146.679 44.1569C137.784 63.178 115.994 48.3565 123.654 39.145C131.313 29.9337 185.667 27.7264 162.769 15.9096C139.871 4.09292 115.994 4.53637 111.549 25.7551C107.104 46.9741 131.26 59.454 109.966 62.7857C88.6718 66.1175 90.2553 47.8099 84.1922 29.7959C80.7858 19.6769 28.1325 10.3932 48.3886 33.4094C68.6447 56.4255 111.665 73.51 87.7735 74.2853C63.8818 75.0606 62.0719 50.6632 48.5074 50.5219C34.9441 50.3815 -3.58265 71.9989 25.5314 75.8555C54.6455 79.7121 126.613 80.8687 105.209 91.3452C83.804 101.822 79.223 88.6654 59.8505 90.3674C40.4781 92.0695 30.6649 110.695 55.2684 105.341C79.8718 99.987 116.352 111.407 80.8485 119.878C45.345 128.349 46.0627 137.446 52.9439 148.491C60.5224 160.655 82.1675 157.098 85.953 139.79C89.7385 122.481 121.135 111.04 144.038 124.358L172.281 72.9781Z" fill="#28324D"/>
|
||||
<path d="M216.505 146.005L184.491 78.9258L143.812 131.057L216.505 146.005Z" fill="url(#paint0_linear_10232_52179)"/>
|
||||
<path d="M152.18 95.1283C140.864 109.804 136.293 125.449 141.969 130.073C147.646 134.697 161.42 126.549 172.736 111.874C184.052 97.1991 188.623 81.5528 182.948 76.929C177.271 72.3053 163.497 80.4526 152.18 95.1283Z" fill="url(#paint1_linear_10232_52179)"/>
|
||||
<path d="M150.911 94.835C163.32 79.6074 178.427 71.1538 184.652 75.9514C190.877 80.7502 185.864 96.9836 173.453 112.21C161.044 127.438 145.937 135.891 139.713 131.094C133.488 126.296 138.501 110.063 150.911 94.835ZM141.859 128.413C147.099 132.459 160.445 124.596 171.669 110.85C182.893 97.1031 187.744 82.6788 182.505 78.6331C177.265 74.5873 163.919 82.45 152.695 96.1966C141.471 109.943 136.62 124.367 141.859 128.413Z" fill="url(#paint2_linear_10232_52179)"/>
|
||||
<path d="M121.897 20.9624C123.962 23.8026 124.847 26.7106 123.874 27.4606C122.901 28.2094 120.438 26.5155 118.372 23.6753C116.307 20.8364 115.422 17.9272 116.395 17.1771C117.368 16.4283 119.831 18.1222 121.897 20.9624Z" fill="#FF8792"/>
|
||||
<path d="M66.2528 37.6944C69.2941 39.3677 71.2933 41.6165 70.719 42.7179C70.1447 43.8194 67.2136 43.3565 64.1724 41.6832C61.1311 40.0099 59.1318 37.761 59.7061 36.6596C60.2805 35.5582 63.2115 36.021 66.2516 37.6944H66.2528Z" fill="#FF516B"/>
|
||||
<path d="M60.6766 102.12C63.8681 103.466 66.0794 105.493 65.6178 106.649C65.1549 107.805 62.1936 107.651 59.002 106.305C55.8105 104.959 53.5992 102.931 54.0609 101.776C54.5237 100.62 57.485 100.773 60.6766 102.12Z" fill="#FF8792"/>
|
||||
<path d="M96.9531 107.05C106.789 81.3144 121.165 86.258 118.729 97.1752C116.293 108.094 125.272 119.219 131.792 105.967C138.312 92.715 142.477 126.49 148.758 112.299C155.039 98.1094 157.658 110.353 157.658 110.353C158.867 114.263 157.254 114.746 157.254 114.746C157.254 114.746 154.636 102.502 148.355 116.692C142.073 130.881 137.908 97.1073 131.388 110.359C124.868 123.611 113.445 112.127 115.881 101.209C118.316 90.2905 107.92 84.5581 98.6409 110.511C98.6409 110.511 95.8989 109.809 96.9531 107.05Z" fill="#FF516B"/>
|
||||
<path d="M173.001 22.319C172.948 24.2044 174.434 25.7771 176.325 25.8316C178.214 25.885 179.789 24.4007 179.843 22.5141C179.897 20.6287 178.41 19.056 176.52 19.0015C174.631 18.9469 173.056 20.4324 173.001 22.319Z" fill="#8547FF"/>
|
||||
<path d="M20.002 67.9457C19.9221 70.7543 22.0946 73.0953 24.8536 73.174C27.6138 73.2528 29.9159 71.039 29.9959 68.2304C30.0759 65.4217 27.9046 63.0808 25.1444 63.002C22.3842 62.9233 20.082 65.137 20.002 67.9457Z" fill="#1FC7C7"/>
|
||||
<path d="M97.0012 78.2826C96.9479 80.1486 98.4261 81.7044 100.303 81.7577C102.18 81.811 103.744 80.3424 103.797 78.4765C103.851 76.6105 102.373 75.0547 100.496 75.0014C98.6187 74.9481 97.0545 76.4166 97.0012 78.2826Z" fill="#8547FF"/>
|
||||
<path d="M23.0013 17.3989C22.9468 19.3279 24.4226 20.9358 26.2994 20.9903C28.1763 21.0436 29.7418 19.5229 29.7963 17.5928C29.8521 15.6626 28.375 14.0559 26.4982 14.0014C24.6213 13.948 23.0558 15.4687 23.0001 17.3989H23.0013Z" fill="#1FC7C7"/>
|
||||
<path d="M189 50.5817C189 50.5817 191.841 35.1753 203.825 35.8551L196.676 34C196.676 34 189.988 37.0328 189 50.5817Z" fill="#DC244C"/>
|
||||
<path d="M101.558 125C101.558 125 93.122 126.221 87.0854 140.984L85.0001 133.774C85.0001 133.774 90.6562 127.095 101.558 125Z" fill="#DC244C"/>
|
||||
<path d="M91.3547 9.60663C91.3547 9.60663 84.0483 2.73525 86.5044 11.3054L88.9604 19.8755C88.9604 19.8755 90.5683 13.4549 92.6924 19.2176L91.3547 9.60663Z" fill="#FF8792"/>
|
||||
<path d="M66.2006 62.4498C66.2006 62.4498 65.8698 65.7722 67.9551 66.3259C67.9551 66.3259 59.2068 67.9278 57.2148 64.1062C55.2241 60.2846 60.3761 59.7793 60.3761 59.7793C60.3761 59.7793 58.9306 62.5516 66.1994 62.4498H66.2006Z" fill="#2F6FF0"/>
|
||||
<path d="M178.269 93.4772L176.08 86L174 89.6483L178.269 93.4772Z" fill="#8547FF"/>
|
||||
<path d="M168.361 107.497L162 103L162.637 107.151L168.361 107.497Z" fill="#8547FF"/>
|
||||
<path d="M157.78 120.763L150 121.17L152.755 118L157.78 120.763Z" fill="#8547FF"/>
|
||||
<path d="M137.944 125.058C137.944 125.058 132.037 124.273 129.492 127.285C129.492 127.285 131.058 123.836 126.819 124.69C126.819 124.69 131.502 119.605 137.944 125.058Z" fill="#FF516B"/>
|
||||
<path d="M130.32 51.7575L130.472 46.4467L127.095 45L127 48.3309L130.32 51.7575Z" fill="#2F6FF0"/>
|
||||
<path d="M102.389 38.6262L100.712 34.1018L97.1143 34L97.0004 37.9767L102.389 38.6262Z" fill="#FF516B"/>
|
||||
<path d="M81.6777 93.3733L76.5427 94.5498L72.9997 92.5154L77.4223 90L81.6777 93.3733Z" fill="#FF516B"/>
|
||||
<path d="M46.5811 136.582C46.5811 136.582 45.0859 133.278 40.2864 133.21C35.487 133.142 35.6373 137.686 36.5363 138.065C37.4354 138.443 40.742 133.986 46.5811 136.583V136.582Z" fill="#FF516B"/>
|
||||
<path d="M21.6973 102.858C21.6973 102.858 12.3686 103.745 12.2281 108.676C12.0875 113.608 1.89371 100.328 13.676 100.003C17.8805 99.887 21.6973 102.858 21.6973 102.858Z" fill="#DC244C"/>
|
||||
<path d="M126.045 94.0698C125.773 95.0004 126.772 96.1103 128.273 96.5477C129.775 96.9863 131.212 96.5865 131.484 95.6559C131.755 94.7253 130.757 93.6155 129.256 93.178C127.753 92.7394 126.316 93.1393 126.045 94.0698Z" fill="#2F6FF0"/>
|
||||
<path d="M144.302 69.2307C143.726 69.7517 143.997 70.9888 144.907 71.9933C145.817 72.9978 147.022 73.3879 147.597 72.8669C148.173 72.3447 147.901 71.1088 146.992 70.1043C146.082 69.101 144.877 68.7097 144.302 69.2307Z" fill="#1FC7C7"/>
|
||||
<path d="M144 94.7424C144.833 98.7033 147.905 93 147.905 93L158.894 97.0215L144 94.7424Z" fill="#FF8792"/>
|
||||
<path d="M158.894 97.1282L145.009 96.1407C145.009 96.1407 146.092 96.0837 147.905 93L158.894 97.1282Z" fill="#FF516B"/>
|
||||
<path d="M143.589 27.7965C143.589 27.7965 136.441 27.9455 133.434 24.4014C133.434 24.4014 133.017 28.5114 135.34 29.9399C137.663 31.3697 143.568 31.446 143.568 31.446L143.589 27.7953V27.7965Z" fill="#DC244C"/>
|
||||
<path d="M145.985 43.7146C145.985 43.7146 144.809 38.0404 149.265 31.4561C149.265 31.4561 145.837 28.3397 143.589 33.8625C141.343 39.3853 141.895 43.8285 142.482 44.8003C142.482 44.8003 144.29 45.0983 145.983 43.7158L145.985 43.7146Z" fill="#DC244C"/>
|
||||
<path d="M145.401 30.7953C145.401 30.7953 152.186 27.7492 156.901 46.3665C158.51 52.7193 156.213 60.0438 150.325 56.6402C150.325 56.6402 150.749 60.5188 154.555 60.6339C158.361 60.7502 164.407 54.1018 159.174 40.5917C153.941 27.0815 149.31 26.9931 145.4 30.7953H145.401Z" fill="#FF8792"/>
|
||||
<path d="M142.482 44.8005C142.482 44.8005 144.791 45.8874 148.739 40.9414C152.688 35.9965 154.02 32.7577 153.465 28.0043C152.91 23.251 148.131 21.1148 144.11 20.7464C140.09 20.3781 135.96 26.2741 135.96 26.2741C135.96 26.2741 133.645 25.1533 133.405 23.944C133.405 23.944 137.586 15.1473 147.899 17.6518C158.213 20.1564 158.256 31.4285 156.576 34.3014C156.576 34.3014 147.821 54.9301 142.482 44.7993V44.8005Z" fill="#FF516B"/>
|
||||
<path d="M166.494 97.2656C166.494 97.2656 174.639 76.5097 165.804 65.0231C162.857 61.1918 161.946 59.1137 158.386 60.8161C158.386 60.8161 162.251 52.0424 168.857 62.3174C176.265 73.8392 173.986 83.85 170.224 98.4773L166.494 97.2656Z" fill="#FF8792"/>
|
||||
<path d="M160.942 46.9421C160.942 46.9421 165.095 50.0658 164.344 61.6324C163.593 73.199 158.641 76.708 157.396 76.2427C157.396 76.2427 160.318 80.9707 163.209 76.9746C166.098 72.9785 174.566 47.1032 159.686 41.9912C159.686 41.9912 159.838 45.9546 160.942 46.9421Z" fill="#FF8792"/>
|
||||
<path d="M162.457 60.8381C162.457 60.8381 159.162 67.2575 160.787 73.8393C160.787 73.8393 158.638 76.9727 157.395 75.8979C157.395 75.8979 155.113 69.7778 158.616 60.5861C158.616 60.5861 159.776 59.0109 162.457 60.8381Z" fill="#DC244C"/>
|
||||
<path d="M157.11 47.3148C157.11 47.3148 156.214 42.2355 155.567 43.1769C154.92 44.1172 149.508 49.2886 150.325 56.6398C150.325 56.6398 152.321 57.8769 152.763 57.1402C153.205 56.4035 154.459 50.0883 157.11 47.3148Z" fill="#DC244C"/>
|
||||
<path d="M119.424 64.3746C114.618 65.9958 111.114 69.3328 112.594 73.118C111.3 72.6564 110.168 71.8215 110.168 71.8215L110.542 72.0929C109.303 71.2569 108.497 70.1737 108.308 68.9123C107.765 65.2943 112.498 61.5841 118.881 60.6269C118.973 60.6136 119.066 60.6002 119.158 60.5869L119.424 64.3758V64.3746Z" fill="#DC244C"/>
|
||||
<path d="M130.852 87.0794C132.065 88.1238 133.405 88.6352 134.734 88.4364C138.352 87.8936 140.509 82.2787 139.551 75.8969C139.041 72.4993 137.751 69.5695 136.111 67.6527L136.151 67.7011C134.285 65.5771 130.95 62.3576 127.23 61.2744C129.671 62.3879 132.357 64.9627 133.578 66.8299C134.055 67.4697 134.475 68.2258 134.824 69.1224C135.293 70.3595 135.653 71.7251 135.871 73.1754C136.829 79.5573 134.673 85.1722 131.055 85.715C129.769 85.9077 128.471 85.4351 127.29 84.4573L130.853 87.0782L130.852 87.0794Z" fill="#FF8792"/>
|
||||
<path d="M111.448 49.7139C114.027 50.8746 118.086 53.115 120.214 56.3514C121.482 58.2198 122.455 60.7364 122.882 63.5802C123.84 69.9621 121.683 75.577 118.065 76.1198C116.843 76.3028 115.611 75.8847 114.478 75.0039L110.169 71.8196C110.169 71.8196 111.299 72.6544 112.595 73.1161C113.188 73.3281 113.816 73.4614 114.386 73.4008C118.023 73.0107 120.16 67.2431 119.202 60.8612C119.202 60.8612 118.448 54.6005 111.507 49.7381L111.448 49.7139Z" fill="#FF8792"/>
|
||||
<path d="M110.479 51.4004C113.337 51.6112 115.057 52.7902 116.307 54.3896C115.185 52.8544 113.637 51.2307 111.507 49.7392C109.194 48.7335 106.014 48.3615 102.616 48.8704C96.2341 49.8288 91.5001 53.5378 92.0429 57.1558C92.1459 57.8428 92.6682 58.3978 93.2885 58.8243C94.3621 59.561 95.7276 59.9099 95.7228 59.876C95.18 56.258 99.9127 52.5478 106.296 51.5906C107.746 51.3725 109.158 51.3156 110.479 51.4004Z" fill="#DC244C"/>
|
||||
<path d="M93.2904 58.8232C94.3639 59.5599 95.7295 59.9089 95.7246 59.875C97.5882 60.4953 100.331 59.8944 103.409 59.4327L107.089 62.1517C102.297 62.8714 98.6011 63.2664 96.826 61.8876L93.2916 58.8232H93.2904Z" fill="#FF516B"/>
|
||||
<path d="M130.854 87.0795C128.764 85.2802 127.057 81.902 126.45 77.8635L122.77 75.1445C123.388 79.2582 125.149 82.6872 127.291 84.4599L127.284 84.4683L130.842 87.0952L130.854 87.0807V87.0795Z" fill="#FF516B"/>
|
||||
<path d="M122.844 63.551C124.294 63.3329 125.705 63.2759 127.025 63.3607C129.502 63.7666 131.893 64.5676 133.578 66.831C132.357 64.9626 129.67 62.3878 127.23 61.2754C125.785 60.7375 124.053 60.4285 122.169 60.3994L122.843 63.551H122.844Z" fill="#DC244C"/>
|
||||
<path d="M198.243 68.1567C199.084 69.3684 201.858 68.8994 204.439 67.1086C207.019 65.3177 208.43 62.8847 207.589 61.673C206.748 60.4614 203.974 60.9303 201.394 62.7211C198.813 64.512 197.402 66.945 198.243 68.1567Z" fill="#1FC7C7"/>
|
||||
</g>
|
||||
<defs>
|
||||
<linearGradient id="paint0_linear_10232_52179" x1="180.158" y1="95.2543" x2="180.158" y2="146.005" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#2861D3"/>
|
||||
<stop offset="1" stop-color="#7335F0"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint1_linear_10232_52179" x1="162.454" y1="91.0647" x2="162.454" y2="131.368" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#779CE6"/>
|
||||
<stop offset="1" stop-color="#2567EB"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint2_linear_10232_52179" x1="162.183" y1="88.6845" x2="162.183" y2="132.438" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#2861D3"/>
|
||||
<stop offset="1" stop-color="#7335F0"/>
|
||||
</linearGradient>
|
||||
<clipPath id="clip0_10232_52179">
|
||||
<rect width="260" height="160" fill="white"/>
|
||||
</clipPath>
|
||||
</defs>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 12 KiB |
|
After Width: | Height: | Size: 157 KiB |
|
After Width: | Height: | Size: 109 KiB |
|
After Width: | Height: | Size: 142 KiB |
|
After Width: | Height: | Size: 78 KiB |
|
After Width: | Height: | Size: 124 KiB |
|
After Width: | Height: | Size: 7.7 KiB |
|
After Width: | Height: | Size: 48 KiB |
|
After Width: | Height: | Size: 48 KiB |