feat: add assets
All checks were successful
Deploy to VPS (dist) / deploy (push) Successful in 1m37s
All checks were successful
Deploy to VPS (dist) / deploy (push) Successful in 1m37s
This commit is contained in:
24
src/components/icons/DropIcon.tsx
Normal file
24
src/components/icons/DropIcon.tsx
Normal file
@@ -0,0 +1,24 @@
|
||||
import { motion, type SVGMotionProps } from "motion/react";
|
||||
import clsx, { type ClassValue } from "clsx";
|
||||
|
||||
type Props = Omit<SVGMotionProps<SVGElement>, "className"> & {
|
||||
className?: ClassValue;
|
||||
};
|
||||
|
||||
export default function DropIcon(props: Props) {
|
||||
return (
|
||||
<motion.svg
|
||||
viewBox="0 0 14 20"
|
||||
fill="none"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
{...props}
|
||||
className={clsx(props.className)}
|
||||
>
|
||||
<path
|
||||
d="M6.8252 0.513672C7.38191 1.88158 8.36208 4.18891 10.5693 6.89551C11.8956 8.52269 13.1503 10.7528 13.1504 13.0781C13.1504 16.8876 10.4264 19.4443 6.8252 19.4443C3.22384 19.4443 0.5 16.8892 0.5 13.0781C0.500102 10.8451 1.75697 8.51999 3.08105 6.89551C5.28831 4.18891 6.26848 1.88157 6.8252 0.513672Z"
|
||||
fill="#EAB550"
|
||||
stroke="#956405"
|
||||
/>
|
||||
</motion.svg>
|
||||
);
|
||||
}
|
||||
564
src/components/icons/HoneyIcon.tsx
Normal file
564
src/components/icons/HoneyIcon.tsx
Normal file
File diff suppressed because one or more lines are too long
38
src/components/icons/LockIcon.tsx
Normal file
38
src/components/icons/LockIcon.tsx
Normal file
@@ -0,0 +1,38 @@
|
||||
import { motion, type SVGMotionProps } from "motion/react";
|
||||
import clsx, { type ClassValue } from "clsx";
|
||||
|
||||
type Props = Omit<SVGMotionProps<SVGElement>, "className"> & {
|
||||
className?: ClassValue;
|
||||
};
|
||||
|
||||
export default function LockIcon(props: Props) {
|
||||
return (
|
||||
<motion.svg
|
||||
viewBox="0 0 24 28"
|
||||
fill="none"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
{...props}
|
||||
className={clsx(props.className)}
|
||||
>
|
||||
<g clip-path="url(#clip0_228_3886)">
|
||||
<path
|
||||
fill-rule="evenodd"
|
||||
clip-rule="evenodd"
|
||||
d="M1.19681 12.2759C0.654665 12.2759 0.214844 12.6979 0.214844 13.2193V26.7736C0.214844 27.2945 0.65413 27.7171 1.19681 27.7171H22.8043C23.3465 27.7171 23.7863 27.295 23.7863 26.7736V13.2193C23.7863 12.6985 23.347 12.2759 22.8043 12.2759H1.19681ZM13.6077 21.5406C13.3977 21.7477 13.1469 21.9127 12.8699 22.026C12.593 22.1392 12.2954 22.1985 11.9944 22.2004C11.6934 22.2023 11.3951 22.1467 11.1166 22.0369C10.8382 21.9271 10.5852 21.7653 10.3724 21.5608C10.1595 21.3563 9.99109 21.1133 9.87681 20.8457C9.76253 20.5782 9.70469 20.2915 9.70665 20.0024C9.70861 19.7132 9.77033 19.4272 9.88822 19.1612C10.0061 18.8951 10.1778 18.6542 10.3934 18.4523C10.8215 18.0516 11.3967 17.829 11.9944 17.8327C12.5921 17.8365 13.1643 18.0662 13.5869 18.4723C14.0096 18.8784 14.2487 19.4281 14.2526 20.0024C14.2565 20.5766 14.0248 21.1293 13.6077 21.5406Z"
|
||||
fill="#F2C94C"
|
||||
/>
|
||||
<path
|
||||
fill-rule="evenodd"
|
||||
clip-rule="evenodd"
|
||||
d="M11.9989 -0.0771484C7.41317 -0.0771484 3.69531 3.49491 3.69531 7.90079V12.2758H5.83817V7.90079C5.83817 4.6319 8.59656 1.98168 11.9989 1.98168C15.4012 1.98168 18.1596 4.6319 18.1596 7.90079V12.2758H20.3025V7.90079C20.3025 3.49491 16.5846 -0.0771484 11.9989 -0.0771484Z"
|
||||
fill="#828282"
|
||||
/>
|
||||
</g>
|
||||
<defs>
|
||||
<clipPath id="clip0_228_3886">
|
||||
<rect width="24" height="28" fill="white" />
|
||||
</clipPath>
|
||||
</defs>
|
||||
</motion.svg>
|
||||
);
|
||||
}
|
||||
207
src/components/icons/MoneyIcon.tsx
Normal file
207
src/components/icons/MoneyIcon.tsx
Normal file
@@ -0,0 +1,207 @@
|
||||
import { motion, type SVGMotionProps } from "motion/react";
|
||||
import clsx, { type ClassValue } from "clsx";
|
||||
|
||||
type Props = Omit<SVGMotionProps<SVGElement>, "className"> & {
|
||||
className?: ClassValue;
|
||||
};
|
||||
|
||||
export default function MoneyIcon(props: Props) {
|
||||
return (
|
||||
<motion.svg
|
||||
viewBox="0 0 17 17"
|
||||
fill="none"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
{...props}
|
||||
className={clsx(props.className)}
|
||||
>
|
||||
<path
|
||||
d="M6.12027 7.89636C7.85103 7.10208 9.55531 6.31951 11.3243 5.62451C11.4951 5.77344 11.6687 5.91945 11.8424 6.06838L11.8159 6.07711C12.7578 6.89183 13.7233 7.5372 14.7358 8.21175C14.9448 8.35192 14.724 8.6819 14.571 8.76074L13.7851 9.16665C12.3074 9.92588 10.8534 10.6501 9.27273 11.2049C9.09318 11.1173 8.91656 11.0268 8.78411 10.8983L7.15932 9.30096C6.84731 8.97683 6.53823 8.64978 6.22623 8.32564C6.12026 8.21468 6.01725 8.10663 5.91129 7.99567C5.97605 7.96354 6.04668 7.92848 6.12027 7.89636ZM8.49565 10.0982C9.10789 9.78862 9.82021 9.85871 10.2588 10.3989C11.2684 9.98428 12.2633 9.56961 13.2464 9.0031C12.8873 8.60596 12.9521 8.09203 13.3465 7.77081C12.6783 7.27147 12.0573 6.79256 11.4244 6.23481L10.4854 6.58814C10.1352 7.80584 8.75173 8.15335 7.62732 7.84381L6.72662 8.28768C7.30648 8.93303 7.87458 9.49953 8.49565 10.0982Z"
|
||||
fill="#49852E"
|
||||
/>
|
||||
<path
|
||||
d="M1.8905 2.97907C1.91699 2.89147 2.05533 2.81263 2.1819 2.76299L6.55885 1.11894C6.75311 1.04594 6.93856 1.14231 7.05924 1.2708L9.62889 4.04493L9.68187 4.02158C9.72602 4.07707 9.77607 4.13253 9.82611 4.18802L6.44405 5.63059L4.4572 6.50078C4.34829 6.39274 4.24234 6.2847 4.13343 6.17665C3.34752 5.25973 2.6146 4.37782 1.94643 3.37913C1.89639 3.30321 1.86401 3.06668 1.8905 2.97907ZM4.41011 5.92549C4.46604 5.99265 4.56317 6.08902 4.62498 6.14742L5.37558 5.83206C5.37558 5.20131 5.76118 4.73991 6.31455 4.46542C7.01215 4.11792 7.83042 4.16467 8.56335 4.49172L9.22563 4.21721L7.31532 2.14099C6.76783 2.43009 6.14971 2.24319 5.7965 1.77013L3.24156 2.73671C3.45938 3.25358 3.3593 3.71497 2.90306 4.05955L4.41011 5.92549Z"
|
||||
fill="#49852E"
|
||||
/>
|
||||
<path
|
||||
d="M0.186098 6.41835C0.239082 5.65911 0.180214 4.90571 0.150778 4.14939C0.133118 3.70845 0.218462 3.33176 0.318541 2.91417C0.392128 2.60756 0.386242 2.37101 0.742401 2.2396L3.27085 1.29056L5.21061 0.595562C5.6904 0.423274 6.15545 0.274371 6.62935 0.0728807C6.86188 -0.023484 7.11798 -0.0497567 7.30636 0.154653L9.00768 2.02059C9.49335 2.55498 9.95548 3.07478 10.4794 3.56536C10.6707 3.69093 10.9857 3.78146 11.1623 3.94207L12.2131 4.89112L12.8136 5.68247C13.4935 6.58187 16.8403 8.08575 16.8756 8.17336C16.9256 8.29308 16.8844 8.51209 16.8785 8.64934C16.8726 8.76615 16.9904 9.02604 16.9639 9.15744C16.7902 9.93712 16.8932 11.0877 16.9904 11.8936C17.011 12.0425 17.0169 13.2573 16.8108 13.3683L15.8866 13.8647L13.1874 15.1846L10.7973 16.3264L9.55516 16.8929C9.21666 17.0477 8.93703 17.0535 8.67212 16.7849L7.94214 16.0519L5.38132 13.4734C5.04871 13.4909 4.79263 13.3829 4.58365 13.1551L3.48277 11.9608L3.22082 11.4731L1.16039 9.3268L0.339148 8.45952C-0.317247 7.76745 0.180212 6.48843 0.186098 6.41835ZM16.5135 9.00267C16.5135 9.00267 16.5253 8.99101 16.5253 8.98809C16.5312 8.97933 16.5341 8.96765 16.54 8.95305C16.6283 8.63183 15.0447 9.68015 14.9476 9.77651C14.9064 9.99844 16.4458 9.01729 16.5224 8.98809C16.5224 8.99393 16.5194 8.99683 16.5135 9.00267ZM16.0485 10.454C15.604 10.6671 15.1919 10.8394 14.7504 11.1957L16.5606 10.527C16.4017 10.3167 16.2192 10.3722 16.0485 10.454ZM15.3185 13.1259C15.7806 12.9157 16.2898 12.7521 16.696 12.3667C16.1221 12.5244 15.6364 12.8485 15.1242 13.1026C14.718 13.3011 14.3324 13.4588 13.9498 13.6983C14.4354 13.5348 14.8622 13.3332 15.3185 13.1259ZM10.6825 14.6415C11.0505 14.4926 11.4184 14.367 11.7539 14.0399L10.4147 14.5101L10.6825 14.6415ZM12.3309 11.66L9.05184 13.0909L9.04005 13.4238L9.60227 13.1668C10.5324 12.6908 11.4419 12.2236 12.3309 11.66ZM9.043 15.4124L10.1144 14.8926C9.75532 14.6356 9.59637 14.8371 9.22844 15.0094L8.79281 14.7261L8.93115 14.8926C8.96647 14.9335 8.95175 15.0503 8.91349 15.1437L8.54261 14.8663C8.6574 15.0737 8.82813 15.2518 9.043 15.4124ZM8.4543 14.8167L8.54555 14.4458L8.01573 13.9377C7.94214 13.9786 7.90093 14.0107 7.88032 14.002L7.71844 13.9436C7.94803 14.2502 8.17467 14.5159 8.4543 14.8167ZM3.73003 6.63151L4.22748 6.28695C4.1951 6.24899 4.16272 6.21103 4.13329 6.17599C4.2422 6.28403 4.34816 6.39207 4.45706 6.50012L4.06559 6.6724L3.98317 7.21262C4.17155 7.3119 4.32756 7.38782 4.46885 7.53967L5.2783 8.39821C5.49906 8.223 5.68451 8.1062 5.90821 7.99523C6.01418 8.1062 6.11718 8.21424 6.22315 8.32521C6.53516 8.64935 6.84423 8.97639 7.15624 9.30053L6.35561 8.51503C6.17605 8.52087 6.02888 8.62307 5.81989 8.80704C6.06126 9.09321 6.25259 9.3239 6.50867 9.56627C7.36522 10.3927 8.21884 11.1753 9.12543 11.9637C9.12543 12.1739 9.12247 12.3842 9.11659 12.5945V12.7083C9.11364 12.7317 9.25494 12.6937 9.25494 12.6704L9.2726 11.9579L11.3948 11.1432C13.2286 10.4365 14.9123 9.46113 16.5577 8.34563C14.8475 7.61852 13.8026 7.04324 12.3838 5.85182L11.8393 6.06794C11.6656 5.91902 11.492 5.773 11.3213 5.62408C11.4449 5.57443 11.5714 5.52479 11.6951 5.47807C11.8864 5.40507 12.0777 5.37585 12.2926 5.31452C11.7804 4.88526 11.3389 4.52316 10.8886 4.10558C10.712 3.93913 10.5265 3.88952 10.291 3.9888L9.82597 4.18735C9.77593 4.13187 9.72588 4.0764 9.68173 4.02092L10.2145 3.80191C9.0695 2.66305 8.04516 1.54462 7.00317 0.318163L6.2732 0.589752L2.26419 2.02059C1.71082 2.21916 1.21925 2.42649 0.671761 2.67763C1.20747 3.66463 2.36426 5.28533 3.10307 6.01244L3.73003 6.63151ZM2.11407 5.27071C1.83444 4.70129 1.45179 4.25161 1.10151 3.72891L0.874861 4.02092L2.11407 5.27071ZM0.474554 3.55659L0.639387 3.72014C0.754183 3.60917 0.795389 3.57706 0.913128 3.51282C0.913128 3.51282 0.889585 3.396 0.880754 3.3522C0.857206 3.25291 0.398024 3.48359 0.474554 3.55659Z"
|
||||
fill="#0E3D06"
|
||||
/>
|
||||
<path
|
||||
d="M10.9204 4.03194C10.682 3.91514 10.3994 3.89178 10.1433 3.96771C9.94903 4.02611 9.77537 4.14001 9.59581 4.23637C9.34268 4.37362 9.07188 4.47581 8.80402 4.58093C7.5295 5.07736 6.26087 5.59131 5.004 6.1257C4.72437 6.24542 4.44179 6.36516 4.18865 6.53745C3.99733 6.66885 4.01499 7.00174 3.98261 7.21491C4.17099 7.31419 4.327 7.39303 4.46829 7.54196L5.27774 8.4005C5.56326 8.17273 5.79579 8.04714 6.11957 7.89821C7.97102 7.04845 9.79303 6.21039 11.6975 5.48036C11.8858 5.40735 12.0801 5.37814 12.295 5.31681C11.7799 4.88755 11.3413 4.52545 10.8909 4.10787C10.7143 3.94434 10.5289 3.89177 10.2934 3.99398L6.44629 5.63218L4.07091 6.67469V6.69511"
|
||||
fill="#DB5555"
|
||||
/>
|
||||
<path
|
||||
d="M7.62601 7.84142C8.75042 8.15096 10.1339 7.80345 10.4841 6.58575L11.4231 6.23242C12.0559 6.79017 12.677 7.26908 13.3452 7.76842C12.9508 8.08964 12.886 8.60357 13.2451 9.00071C12.262 9.56722 11.2671 9.98189 10.2575 10.3966C9.8189 9.85632 9.10658 9.78623 8.49434 10.0958C7.87327 9.49714 7.30517 8.93064 6.72531 8.28529L7.62601 7.84142ZM10.3428 9.09418C10.7314 9.30443 11.167 9.22848 11.4319 8.91894C11.5938 8.73205 11.5556 8.49844 11.3672 8.33491C11.0993 8.10422 10.7049 8.05458 10.3546 8.19183C10.1868 8.25899 10.0514 8.44297 10.0426 8.60065C10.0338 8.78754 10.1515 8.99197 10.3428 9.09418Z"
|
||||
fill="#99CF54"
|
||||
/>
|
||||
<path
|
||||
d="M5.375 5.83195C5.375 5.2012 5.7606 4.73981 6.31397 4.46531C7.01157 4.11782 7.82984 4.16457 8.56277 4.49454L9.228 4.22003L7.31769 2.14381C6.7702 2.43291 6.15208 2.24601 5.79886 1.77295L3.24391 2.73953C3.45879 3.25932 3.35872 3.71776 2.90542 4.06525L4.41248 5.93123C4.46841 5.99839 4.56259 6.09476 4.62735 6.15316L5.37793 5.83488L5.375 5.83195ZM5.2131 3.88128C4.93935 3.83164 4.74804 3.63892 4.73038 3.41699C4.71272 3.18046 4.88343 2.97607 5.12479 2.88554C5.34261 2.80378 5.62519 2.80086 5.82534 2.92058C5.97252 3.01111 6.17857 3.27393 6.12558 3.47834C6.02256 3.86672 5.58103 3.94845 5.21604 3.88128H5.2131Z"
|
||||
fill="#99CF54"
|
||||
/>
|
||||
<path
|
||||
d="M5.81998 8.80873C6.06135 9.09783 6.25268 9.3256 6.50582 9.57089C7.36237 10.3973 8.21892 11.1799 9.12257 11.9654C9.12846 12.1756 9.12256 12.3888 9.11373 12.5962V12.71C9.11079 12.7363 9.25208 12.6954 9.25208 12.6721L9.26974 11.9625L11.392 11.1448C13.2258 10.4411 14.9094 9.46575 16.5548 8.35025C14.8447 7.62022 13.7998 7.04785 12.381 5.85352L11.807 6.07837C12.7489 6.89309 13.7144 7.53846 14.7269 8.21301C14.9359 8.35318 14.7181 8.68316 14.565 8.762L13.7762 9.16791C12.2986 9.92714 10.8445 10.6543 9.26385 11.2091C9.0843 11.1186 8.91064 11.0309 8.77819 10.8995L6.34982 8.51672C6.17027 8.52256 6.02604 8.62477 5.81705 8.80873H5.81998Z"
|
||||
fill="#A1D95D"
|
||||
/>
|
||||
<path
|
||||
d="M4.22922 6.28955C3.41093 5.33175 2.64269 4.42067 1.95097 3.3811C1.89799 3.30226 1.86561 3.06573 1.89504 2.98105C1.92448 2.89636 2.05988 2.8146 2.18644 2.76788L6.56339 1.12384C6.75766 1.05084 6.9431 1.14429 7.06378 1.27569L9.63343 4.04983L10.2192 3.80743C9.07417 2.66566 8.04985 1.55018 7.00786 0.320801L6.27788 0.595277L2.26887 2.02615C1.7155 2.22472 1.22098 2.43205 0.676441 2.68319C1.21215 3.67019 2.36894 5.29089 3.10775 6.018L3.73471 6.63707L4.22922 6.29248V6.28955Z"
|
||||
fill="#A1D95D"
|
||||
/>
|
||||
<path
|
||||
d="M9.04107 13.4278L9.60328 13.1709C10.5334 12.6949 11.443 12.2277 12.3319 11.6641L9.05286 13.0949L9.04107 13.4308V13.4278Z"
|
||||
fill="white"
|
||||
/>
|
||||
<path
|
||||
d="M8.91249 15.1437L8.54161 14.8663C8.65641 15.0736 8.82713 15.2517 9.04201 15.4123L10.1134 14.8955C9.75433 14.6385 9.59538 14.84 9.22745 15.0123L8.79182 14.7261L8.92721 14.8925C8.96253 14.9363 8.94781 15.0502 8.90955 15.1437H8.91249Z"
|
||||
fill="white"
|
||||
/>
|
||||
<path
|
||||
d="M0.876408 4.02394L2.11267 5.27081C1.83304 4.70138 1.45039 4.25463 1.10012 3.729L0.876408 4.02394Z"
|
||||
fill="white"
|
||||
/>
|
||||
<path
|
||||
d="M13.9492 13.7002C14.4349 13.5367 14.8587 13.3352 15.315 13.1279C15.7771 12.9176 16.2863 12.7541 16.6925 12.3687C16.1186 12.5263 15.6358 12.8476 15.1207 13.1016C14.7145 13.3031 14.3289 13.4608 13.9492 13.7002Z"
|
||||
fill="white"
|
||||
/>
|
||||
<path
|
||||
d="M14.7495 11.1958L16.5597 10.53C16.4008 10.3169 16.2183 10.3724 16.0476 10.4541C15.6031 10.6702 15.191 10.8396 14.7465 11.1958H14.7495Z"
|
||||
fill="white"
|
||||
/>
|
||||
<path
|
||||
d="M8.455 14.8189L8.54919 14.448L8.01643 13.9399C7.94578 13.9808 7.90457 14.0129 7.88102 14.0042L7.71913 13.9429C7.95167 14.2495 8.17831 14.5181 8.455 14.8189Z"
|
||||
fill="white"
|
||||
/>
|
||||
<path
|
||||
d="M14.949 9.77661C14.9048 10.0161 16.7033 8.85676 16.5149 9.00277C16.5326 8.98817 16.5355 8.97651 16.5414 8.95315C16.6297 8.63485 15.0491 9.68025 14.949 9.77661Z"
|
||||
fill="white"
|
||||
/>
|
||||
<path
|
||||
d="M10.4146 14.5102L10.6825 14.6416C11.0504 14.4927 11.4184 14.3671 11.7539 14.043L10.4146 14.5102Z"
|
||||
fill="white"
|
||||
/>
|
||||
<path
|
||||
d="M0.640671 3.72293C0.755467 3.61197 0.796676 3.57982 0.917358 3.51558C0.917358 3.51558 0.893812 3.3988 0.882038 3.35499C0.861434 3.25571 0.399307 3.48639 0.475837 3.55939L0.640671 3.72293Z"
|
||||
fill="white"
|
||||
/>
|
||||
<path
|
||||
d="M10.3416 9.09911C10.7302 9.30936 11.1658 9.23341 11.4307 8.92387C11.5926 8.73406 11.5544 8.50337 11.366 8.33984C11.0981 8.10623 10.7037 8.05951 10.3534 8.19676C10.1856 8.26392 10.0502 8.4479 10.0414 8.60559C10.0326 8.79248 10.1503 8.9969 10.3416 9.09911Z"
|
||||
fill="#49852E"
|
||||
/>
|
||||
<path
|
||||
d="M5.21024 3.88066C5.57817 3.94782 6.01675 3.86609 6.11978 3.47771C6.1757 3.2733 5.96671 3.01048 5.81954 2.91996C5.62232 2.79731 5.33681 2.80023 5.11899 2.88492C4.87762 2.97544 4.70691 3.17984 4.72457 3.41637C4.74223 3.6383 4.93356 3.83102 5.20731 3.88066H5.21024Z"
|
||||
fill="#49852E"
|
||||
/>
|
||||
<path
|
||||
d="M7.13655 7.71121C6.71564 7.90978 6.29473 8.10833 5.87381 8.30982C5.6295 8.42662 5.36752 8.55805 5.25567 8.80042C5.18503 8.95518 5.18208 9.13038 5.18208 9.29975C5.18503 10.6167 5.19093 11.9367 5.19387 13.2536C4.66404 12.874 4.17837 12.4331 3.75451 11.9396C3.63677 11.8023 3.51903 11.6534 3.46605 11.4811C3.41896 11.3322 3.4219 11.1716 3.42778 11.0139C3.45133 10.0853 3.47487 9.15665 3.49548 8.22804C3.5102 7.6411 3.56024 6.97824 4.01353 6.60446C3.95761 6.83223 3.937 7.06585 3.95171 7.29946C4.06651 7.22061 4.21662 7.32865 4.31376 7.43085C4.64342 7.77543 4.97605 8.11709 5.30572 8.46167C5.35282 8.30982 5.4882 8.20468 5.62066 8.11415C6.26234 7.68489 6.98349 7.38707 7.69875 7.08922C9.03509 6.53731 10.3714 5.98539 11.7078 5.43641C11.8343 5.38384 12.1081 5.25826 12.2405 5.34879C12.4289 5.47727 12.27 5.55905 12.1375 5.61453C11.7401 5.78682 11.2986 5.89486 10.8924 6.04963C10.0624 6.365 9.24702 6.72417 8.44051 7.09795C8.00193 7.29944 7.5663 7.50677 7.13066 7.7141L7.13655 7.71121Z"
|
||||
fill="#9E3636"
|
||||
/>
|
||||
<path
|
||||
d="M11.4799 5.03168C11.2768 4.83019 11.0767 4.62869 10.8736 4.43012C10.8382 4.39508 10.8 4.35713 10.7499 4.33961C10.697 4.31917 10.641 4.325 10.5851 4.33084C10.382 4.35128 10.1789 4.37171 9.97581 4.39215C9.78154 4.4126 9.58726 4.43304 9.39299 4.46808C9.09865 4.52648 8.81608 4.62288 8.5335 4.71925C8.08904 4.87109 7.64457 5.02292 7.20305 5.17477C7.46502 5.06088 7.72405 4.94698 7.98602 4.83018C8.77487 4.48268 9.56372 4.13811 10.3732 3.84901C10.4291 3.82857 10.488 3.80814 10.5439 3.81982C10.5969 3.82858 10.641 3.86362 10.6822 3.89574C10.9942 4.14104 11.3063 4.38926 11.6183 4.63455C11.8096 4.78348 11.998 4.93532 12.1687 5.10761C12.2629 5.20398 12.3718 5.34123 12.3218 5.48432C12.2776 5.28283 12.1746 5.312 12.0127 5.30908C11.7831 5.30616 11.6389 5.18937 11.4799 5.03168Z"
|
||||
fill="#E57A7A"
|
||||
/>
|
||||
<path
|
||||
d="M12.3278 5.71199C12.1895 5.85508 11.9364 5.84634 11.748 5.91935C10.3557 6.46249 8.97228 7.03484 7.60356 7.63639C7.12083 7.84956 6.64105 8.06272 6.17599 8.31093C5.89636 8.45986 5.61379 8.63215 5.44896 8.89788C5.26352 9.19281 5.2488 9.56074 5.24291 9.91116C5.22231 11.0062 5.23114 12.1042 5.26352 13.1992C5.26352 13.2752 5.26056 13.3657 5.19286 13.4008C5.13104 13.4329 5.05158 13.392 5.01626 13.3336C4.98094 13.2752 4.97799 13.2022 4.97799 13.135C4.94561 11.7509 4.95151 10.3696 5.09868 8.9855C5.11046 8.87745 5.12517 8.76647 5.18404 8.67302C5.25174 8.5679 5.36948 8.5095 5.48133 8.45401C7.08258 7.66849 8.72209 6.96181 10.3616 6.25806C10.8738 6.03613 11.3918 5.84925 11.9246 5.68865C12.0364 5.6536 12.1571 5.61856 12.2454 5.53972C12.2807 5.50759 12.4103 5.34408 12.3337 5.29443C12.4103 5.347 12.4368 5.44919 12.4162 5.53679C12.3985 5.61272 12.3691 5.66819 12.3278 5.71199Z"
|
||||
fill="#734623"
|
||||
/>
|
||||
<path
|
||||
d="M5.98563 7.89542C5.94148 7.91294 5.90029 7.92755 5.8738 7.94215C5.60888 8.07648 5.38223 8.28675 5.238 8.54664C5.09377 8.497 4.99663 8.33928 5.01429 8.18743C5.0084 8.24 4.82296 8.10569 4.80824 8.09401C4.71405 8.01224 4.62576 7.91586 4.54039 7.82534C4.41677 7.69685 4.29315 7.56253 4.17541 7.4282C4.11065 7.3552 4.09298 7.33184 4.01645 7.31431C3.93992 7.29679 3.90755 7.34646 3.87811 7.23258C3.8369 7.06905 3.81925 6.88506 3.90461 6.73613C3.98114 6.6018 4.12536 6.52297 4.26371 6.45581C4.72289 6.23388 5.20562 6.06741 5.69718 5.92725C5.4823 6.03237 5.26743 6.14044 5.05256 6.24557C4.93187 6.30397 4.873 6.3828 4.79353 6.485C4.73466 6.55801 4.6758 6.63684 4.65814 6.73029C4.63754 6.83833 4.6758 6.95223 4.74644 7.03399C4.81708 7.11576 4.92304 7.16833 5.029 7.19461C5.0761 7.20629 5.1232 7.21211 5.16441 7.23839C5.22034 7.27635 5.24388 7.34353 5.27626 7.40193C5.33513 7.50998 5.42638 7.59757 5.51763 7.68518C5.53235 7.69686 5.54706 7.71146 5.56472 7.7173C5.58238 7.72022 5.60299 7.71733 5.62359 7.71149C5.80609 7.67644 6.00919 7.85162 6.1652 7.75234C6.19169 7.73481 6.21228 7.72315 6.24466 7.72899C6.227 7.80199 6.09454 7.85746 5.98858 7.89834L5.98563 7.89542Z"
|
||||
fill="#DF6A6A"
|
||||
/>
|
||||
<path
|
||||
d="M5.07729 13.4665C4.87713 13.4694 4.70346 13.3292 4.55923 13.192C4.15892 12.8153 3.79098 12.4035 3.4672 11.9597C3.373 11.8312 3.27882 11.6939 3.23172 11.5421C3.18168 11.3815 3.18756 11.2121 3.19051 11.0427C3.22583 9.7199 3.26116 8.39418 3.45248 7.08596C3.48192 6.89323 3.51724 6.69174 3.64087 6.53989C3.75861 6.3968 3.93815 6.32377 4.11182 6.25661C4.69168 6.03176 5.28039 5.83611 5.85437 5.60542C7.38792 4.99511 8.83021 4.15995 10.4079 3.66937C10.5168 3.63433 10.6346 3.60221 10.7464 3.63433C10.8288 3.65769 10.8965 3.71319 10.9613 3.76868C11.6471 4.34395 12.3506 4.94255 12.7303 5.75143C12.6067 5.81859 12.4713 5.68719 12.3889 5.57331C12.0239 5.07396 11.5588 4.65929 11.0967 4.24463C10.9731 4.13366 10.8436 4.01978 10.6905 3.95846C10.299 3.80369 9.86631 4.01397 9.48955 4.2067C7.95306 4.99806 6.32237 5.58209 4.74467 6.28584C4.47682 6.40557 4.20601 6.53111 3.99996 6.73844C3.53784 7.1969 3.50841 7.91818 3.50841 8.56645C3.50841 9.40453 3.50841 10.2426 3.50546 11.0807C3.50546 11.2559 3.50547 11.4369 3.582 11.5917C3.63498 11.7027 3.72329 11.7961 3.80865 11.8867C4.15598 12.2488 4.5033 12.6108 4.85063 12.9729C4.90656 13.0313 4.97426 13.1102 5.05079 13.1394C5.10671 13.1598 5.28039 13.1335 5.30394 13.1511C5.45406 13.2796 5.24212 13.4606 5.07729 13.4635V13.4665Z"
|
||||
fill="#56290A"
|
||||
/>
|
||||
<path
|
||||
d="M11.7992 5.91085C9.84771 6.75769 7.89325 7.60452 5.94173 8.45136C5.82399 8.501 5.7033 8.5565 5.61793 8.64702C5.46193 8.80763 5.44429 9.05 5.43251 9.27194C5.38247 10.2502 5.32948 11.2284 5.27945 12.2067C5.26179 12.525 5.24707 12.8491 5.32066 13.1616C5.35009 13.2842 5.36775 13.4594 5.24413 13.4945C5.13227 11.9497 5.1617 10.3933 5.32948 8.85434C5.33831 8.76965 5.35009 8.68206 5.39425 8.61198C5.44428 8.53606 5.52375 8.48642 5.60322 8.4397C7.60184 7.29793 9.88598 6.72847 11.9582 5.71519C12.1054 5.6451 12.2584 5.56918 12.4203 5.57502C12.5616 5.58086 12.7323 5.68307 12.7353 5.83492C12.5969 5.832 12.4674 5.74731 12.3085 5.75899C12.1348 5.7736 11.9611 5.84076 11.8022 5.90792L11.7992 5.91085Z"
|
||||
fill="#53280A"
|
||||
/>
|
||||
<path
|
||||
d="M0.812102 3.18026C0.77678 3.13645 0.744388 3.09263 0.706123 3.04883C0.632536 3.12183 0.243998 3.36421 0.246942 3.45766C0.252829 3.56278 0.617828 3.82268 0.697302 3.90152C1.00637 4.20522 1.30954 4.51765 1.60977 4.83011C2.20141 5.44918 2.78717 6.09163 3.36703 6.71362C2.85487 6.16756 2.4104 5.53973 1.98065 4.92942C1.58034 4.35707 1.23596 3.72924 0.806209 3.18026H0.812102Z"
|
||||
fill="#95CC55"
|
||||
/>
|
||||
<path
|
||||
d="M3.40864 7.92811C2.7493 7.02286 2.08408 6.11178 1.27462 5.33502C1.06269 5.13061 0.836038 4.93493 0.680034 4.68672C0.52403 4.43851 0.435723 4.12898 0.529914 3.85156C1.16865 4.49399 1.80149 5.14228 2.42551 5.79931C2.72869 6.11761 3.0407 6.43296 3.33211 6.76586C3.5146 6.97319 3.50871 7.01409 3.47928 7.2915C3.46751 7.40247 3.34975 7.84635 3.41157 7.93103L3.40864 7.92811Z"
|
||||
fill="#44722F"
|
||||
/>
|
||||
<path
|
||||
d="M0.554629 5.13574C0.666481 5.85701 1.18453 6.44395 1.67904 6.98417C1.27284 6.66296 0.88135 6.31841 0.513416 5.95339C0.475151 6.15488 0.616431 6.33884 0.745944 6.49653C1.58778 7.50398 2.38545 8.54939 3.1331 9.62692C2.2059 8.68371 1.34052 7.68209 0.504577 6.65712C0.35446 6.74472 0.31326 6.95207 0.366242 7.1156C0.419225 7.27913 0.545788 7.41051 0.672357 7.53024C1.51125 8.34788 2.46199 9.06916 3.14194 10.0211C2.16176 9.19473 1.21102 8.33329 0.295602 7.43681C0.174919 7.80183 0.469267 8.16102 0.737123 8.43551C1.57896 9.29111 2.41785 10.1467 3.25968 10.9994C3.17432 10.3161 3.24202 9.62108 3.30972 8.93485C2.80049 8.45886 2.34719 7.92739 1.95571 7.35504C2.10582 7.57697 2.40607 7.76972 2.5974 7.96245C2.8211 8.1873 3.03598 8.46471 3.295 8.64575C3.36859 8.45302 3.3627 8.19897 3.38625 7.98872C3.38919 7.9566 3.39213 7.92157 3.3833 7.89237C3.37153 7.85441 3.33915 7.82811 3.31266 7.80183C3.20081 7.70254 2.57385 6.95498 2.46199 6.95498C1.86447 6.30963 1.22868 5.69932 0.554629 5.13281V5.13574Z"
|
||||
fill="#44722F"
|
||||
/>
|
||||
<path
|
||||
d="M7.53329 10.8571L7.40083 10.971C6.81508 10.4687 6.24112 9.94894 5.6848 9.41455C5.63771 10.3081 5.59354 11.2017 5.54645 12.0952C5.54351 12.1741 5.53762 12.2529 5.56411 12.3288C5.5906 12.4019 5.64064 12.4632 5.69068 12.5216C6.29998 13.2283 6.90928 13.9349 7.51858 14.6387C6.77682 14.0751 6.08805 13.4473 5.45815 12.7639C5.38751 12.9917 5.45815 13.2399 5.58766 13.4414C5.71718 13.6429 5.89967 13.7977 6.07922 13.9554C7.12121 14.8694 8.11023 15.8447 9.03742 16.8726C9.03742 16.5164 9.03742 16.1572 9.03742 15.8009C8.05136 14.8635 7.18008 13.8094 6.44715 12.6676C7.34197 13.383 8.18675 14.1598 8.97266 14.9949L8.99326 13.9495C8.99326 13.8765 8.99326 13.8006 8.97266 13.7276C8.93733 13.6196 8.85197 13.5349 8.76661 13.456C7.80409 12.5391 6.91811 11.5433 6.11748 10.4833C6.29704 10.6264 6.47659 10.7695 6.6532 10.9126C6.45304 10.7199 6.27938 10.5008 6.14104 10.2585C6.95344 10.9447 7.75701 11.6368 8.55469 12.3405C8.69892 12.469 8.84315 12.6909 8.99326 12.4953C9.17576 12.2587 8.8137 12.0339 8.67242 11.9084C8.57528 11.8237 7.54802 10.8542 7.53919 10.86L7.53329 10.8571Z"
|
||||
fill="#44722F"
|
||||
/>
|
||||
<path
|
||||
d="M12.5089 13.7719C11.5611 14.3442 10.5633 14.8319 9.52721 15.229C9.36826 15.2904 9.20048 15.3517 9.0798 15.4772C8.19087 14.6158 7.37848 13.6697 6.61906 12.6973C7.38142 13.2842 8.09374 13.9296 8.75013 14.6304C8.90319 14.7939 9.09451 14.9779 9.31822 14.9428C9.40652 14.9282 9.48306 14.8815 9.55959 14.8406C9.95695 14.6187 10.3926 14.4786 10.8282 14.3384C11.4081 14.1515 11.9291 13.9617 12.5089 13.7748V13.7719Z"
|
||||
fill="#6DA844"
|
||||
/>
|
||||
<path
|
||||
d="M12.9738 11.3623C12.5911 11.5901 12.2114 11.8178 11.8258 12.0398C10.8869 12.58 9.92434 13.0793 8.94416 13.5378C7.93455 12.5917 7.02503 11.5346 6.1567 10.457C7.06035 11.3214 7.964 12.1828 8.86765 13.0472C8.88825 13.0676 8.9118 13.0881 8.94123 13.0969C8.9795 13.1056 9.01776 13.091 9.05014 13.0735C10.3659 12.4749 11.6404 11.92 12.9738 11.3594V11.3623Z"
|
||||
fill="#83BD55"
|
||||
/>
|
||||
<path
|
||||
d="M8.99306 11.9456C8.91653 11.8259 8.8135 11.7295 8.71048 11.6302C7.97461 10.9294 7.24169 10.2285 6.50582 9.52771C7.17104 10.103 7.85687 10.652 8.56036 11.1776C8.79289 11.3499 9.04604 11.528 9.33744 11.5368C9.50816 11.5397 9.67594 11.4842 9.83783 11.4287C11.704 10.7834 13.6055 10.1205 15.1832 8.94075C15.3892 8.78891 15.61 8.54945 15.5158 8.31292C15.4746 8.21363 15.3863 8.14064 15.3009 8.07348C14.621 7.55077 13.941 7.02515 13.2611 6.50244C14.2884 7.2208 15.3451 7.95083 16.5548 8.28957C15.2891 9.17145 13.9881 10.0212 12.5664 10.6315C11.5362 11.0754 10.4501 11.3878 9.44929 11.8901C9.38159 11.9251 9.31684 11.9719 9.25503 12.0128C9.27269 12.0916 9.25797 12.1704 9.24619 12.2493C9.21381 12.4478 9.1785 12.6464 9.14612 12.845C9.12552 12.5471 9.16084 12.2055 8.99306 11.9427V11.9456Z"
|
||||
fill="#C2EF84"
|
||||
/>
|
||||
<path
|
||||
d="M13.5844 10.6935C14.123 10.4686 14.6499 9.99557 15.1415 9.67436C15.5506 9.37942 15.9774 9.12243 16.3777 8.81582C16.3954 8.80121 16.416 8.78662 16.4396 8.78662C16.466 8.78662 16.4896 8.80414 16.5102 8.81874C16.5867 8.87714 16.6603 8.93846 16.7368 8.99686C16.3159 9.3502 15.8126 9.56921 15.3358 9.83787C14.7706 10.1562 14.1849 10.4423 13.5844 10.6906V10.6935Z"
|
||||
fill="#81BF59"
|
||||
/>
|
||||
<path
|
||||
d="M13.5539 11.8055C14.3751 11.3558 15.1934 10.909 16.0146 10.4593C16.3355 10.2841 16.4503 10.3308 16.7122 10.5674C16.2766 10.6725 15.8409 10.8828 15.423 11.0521C14.799 11.3033 14.1749 11.5544 13.5539 11.8055Z"
|
||||
fill="#81BF59"
|
||||
/>
|
||||
<path
|
||||
d="M12.5257 14.4481C13.0144 14.2028 13.4765 13.9429 13.9357 13.6509C14.5479 13.2654 15.2426 13.0172 15.8489 12.623C16.1021 12.4565 16.3493 12.2638 16.6466 12.2054C16.6554 12.2054 16.6672 12.2025 16.6731 12.2054C16.679 12.2112 16.6819 12.22 16.6819 12.2288C16.6937 12.331 16.6937 12.4361 16.676 12.5383C16.4582 12.6288 16.2345 12.7077 16.0255 12.8157C15.637 13.0172 15.2455 13.2128 14.854 13.4085C14.0917 13.7823 13.2793 14.0655 12.5257 14.4481Z"
|
||||
fill="#81BF59"
|
||||
/>
|
||||
<path
|
||||
d="M15.6041 9.09021C14.8005 9.58371 13.994 10.0772 13.161 10.5211C12.0101 11.1314 10.8003 11.6424 9.53462 11.9519C9.45809 11.9694 9.36684 11.9987 9.34329 12.0746C9.33446 12.1038 9.33446 12.1359 9.3374 12.168C9.35212 12.3724 9.36979 12.5769 9.3845 12.7813C9.52873 12.6353 9.72595 12.5623 9.92022 12.4893C12.275 11.6074 14.5532 10.5269 16.7196 9.25956C16.7049 9.18656 16.6873 9.11355 16.6725 9.04055C15.6629 9.68298 14.6062 10.2495 13.5083 10.7313C14.4355 10.0334 15.451 9.46689 16.3841 8.78358C16.284 8.55288 15.7453 9.00552 15.607 9.09021H15.6041Z"
|
||||
fill="#4B8535"
|
||||
/>
|
||||
<path
|
||||
d="M13.392 14.7755C13.027 14.942 12.662 15.1084 12.297 15.2778C11.2403 15.7625 10.1836 16.2443 9.11511 16.7028C9.16515 16.3787 9.19165 16.0487 9.19753 15.7216C10.684 15.0237 12.1469 14.2703 13.5745 13.4614C13.0917 13.5753 12.6267 13.7535 12.1645 13.9345C11.1579 14.3258 10.1483 14.7171 9.14161 15.1113L9.12689 14.6967C9.9805 14.4689 10.7693 14.0542 11.5494 13.6425C12.3029 13.2453 13.0594 12.8453 13.7364 12.3313C12.1969 13.0176 10.6575 13.7009 9.121 14.3871L9.14455 13.6863C10.5869 13.1198 11.8967 12.27 13.1948 11.429C11.7966 11.9284 10.4544 12.562 9.11218 13.1957C10.9695 12.3547 12.818 11.4903 14.6577 10.6085C15.2993 10.2989 15.944 9.98646 16.5268 9.57764C16.933 10.1441 15.32 10.6464 14.9873 10.8012C14.2632 11.1399 13.5362 11.4816 12.8651 11.9225C13.0711 11.9868 13.289 11.9108 13.4921 11.8378C14.2456 11.5575 14.9991 11.2772 15.7526 10.9969C16.0323 10.8917 16.3119 10.7895 16.5739 10.6464C16.6327 10.8537 16.5592 11.0844 16.4267 11.2567C16.2942 11.429 16.1117 11.5575 15.9351 11.6831C16.153 11.6072 16.359 11.4903 16.5415 11.3473C16.5709 11.5517 16.6298 11.7532 16.7122 11.943C15.0727 12.7519 13.4214 13.587 12.0292 14.7638C13.6216 14.1418 15.1787 13.4264 16.6916 12.6292C16.7004 12.9884 16.7004 13.1227 16.3914 13.2921C16.0617 13.4731 15.732 13.6571 15.3965 13.8294C14.7371 14.1623 14.066 14.4718 13.3949 14.7784L13.392 14.7755Z"
|
||||
fill="#468131"
|
||||
/>
|
||||
<path
|
||||
opacity="0.51"
|
||||
d="M9.14414 13.9013C9.09116 14.8824 9.30603 15.8694 9.1618 16.8418C9.06467 15.227 9.04995 13.6063 9.12354 11.9915C8.43771 11.4717 7.79309 10.8994 7.19262 10.2832C7.69595 10.5606 8.16985 10.8906 8.60254 11.2673C8.81741 11.4542 9.05289 11.6673 9.34135 11.6673C9.45615 11.6673 9.56801 11.6323 9.67986 11.5973C10.3892 11.3724 11.0986 11.1505 11.808 10.9256C11.4548 10.9256 10.8955 11.3024 10.5629 11.4338C10.3215 11.5301 10.0272 11.5768 9.80053 11.7112C9.18829 12.0703 9.17947 13.2764 9.14709 13.9013H9.14414Z"
|
||||
fill="#BAE874"
|
||||
/>
|
||||
<path
|
||||
opacity="0.51"
|
||||
d="M12.0294 13.9753C11.1169 14.4425 10.1485 14.7988 9.14769 15.0295C8.43537 14.2206 7.63475 13.4877 6.76643 12.8481C7.53467 13.7067 8.35001 14.5272 9.20361 15.304C9.8865 14.9769 10.5694 14.6499 11.2523 14.3228"
|
||||
fill="#BAE874"
|
||||
/>
|
||||
<path
|
||||
opacity="0.51"
|
||||
d="M9.09054 13.1253C8.20456 12.3632 7.31856 11.601 6.43258 10.8389C7.29207 11.7208 8.15451 12.6026 9.01401 13.4816C9.00223 13.4699 10.3238 12.7954 10.4445 12.7399C10.8654 12.5472 11.463 12.3369 11.7514 11.9631C10.8654 12.3573 10.003 12.7866 9.09054 13.1282V13.1253Z"
|
||||
fill="#BAE874"
|
||||
/>
|
||||
<path
|
||||
opacity="0.51"
|
||||
d="M0.328472 3.49707L0.758208 3.04443C0.625752 3.19336 0.6287 3.42699 0.708174 3.60804C0.787648 3.78909 0.937768 3.93509 1.07905 4.07525C1.92089 4.91333 2.62733 5.8069 3.40146 6.70923C2.44777 5.59665 1.34397 4.55708 0.328472 3.49415V3.49707Z"
|
||||
fill="#BAE874"
|
||||
/>
|
||||
<path
|
||||
opacity="0.51"
|
||||
d="M3.33014 7.54785C2.84741 7.03974 2.36467 6.52872 1.88194 6.02062C1.51106 5.62932 0.7958 5.10954 0.616248 4.60436C1.02539 4.56055 1.74655 5.61179 2.00558 5.89796C2.47359 6.41775 2.8533 7.04266 3.33014 7.54492V7.54785Z"
|
||||
fill="#BAE874"
|
||||
/>
|
||||
<path
|
||||
opacity="0.51"
|
||||
d="M1.18399 6.40887C1.44596 6.72133 1.73736 7.00459 2.02877 7.29076C2.47323 7.72586 2.91769 8.16096 3.36215 8.59606C2.69104 7.75506 1.97577 6.95201 1.22224 6.18402C1.03975 5.99713 0.883749 5.71096 0.677706 5.56787C0.748349 5.87741 0.980893 6.1665 1.18399 6.40887Z"
|
||||
fill="#BAE874"
|
||||
/>
|
||||
<path
|
||||
opacity="0.51"
|
||||
d="M15.0351 12.0534C14.4111 12.3717 13.7812 12.6754 13.1425 12.9645C13.7135 12.7046 14.2463 12.2198 14.7967 11.9015C15.1411 11.7 15.7945 11.1656 16.2155 11.2941C15.9976 11.6445 15.4001 11.8694 15.0351 12.0534Z"
|
||||
fill="#BAE874"
|
||||
/>
|
||||
<path
|
||||
opacity="0.51"
|
||||
d="M9.22179 16.3264C8.53008 15.6956 7.83542 15.0619 7.1437 14.4312C7.78832 14.8809 8.43293 15.3277 9.07755 15.7774C9.1217 15.8066 9.16586 15.8387 9.2159 15.8504C9.2836 15.865 9.35425 15.8474 9.419 15.827C10.1225 15.6167 10.8054 15.3568 11.4735 15.059C10.7082 15.462 9.95177 15.865 9.21885 16.3264H9.22179Z"
|
||||
fill="#BAE874"
|
||||
/>
|
||||
</motion.svg>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user