@npm_leadtech/legal-lib-components 5.43.9 → 5.44.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (21) hide show
  1. package/dist/css/styles.css +5 -4
  2. package/dist/src/components/molecules/MidBannerRatafiaSample/MidBannerRatafiaSample.styled.js +1 -1
  3. package/dist/src/components/molecules/MidBannerRatafiaSample/MidBannerRatafiaSample.styled.ts +1 -1
  4. package/dist/src/components/molecules/TextInput/Input.d.ts +1 -1
  5. package/dist/src/components/molecules/TextInput/Input.js +10 -5
  6. package/dist/src/components/molecules/TextInput/Input.tsx +23 -10
  7. package/dist/src/components/molecules/TextInput/TextInput.scss +5 -4
  8. package/dist/src/components/pages/EsignatureLandingPage/EsignatureLandingPage.js +3 -3
  9. package/dist/src/components/pages/EsignatureLandingPage/EsignatureLandingPage.tsx +1 -3
  10. package/dist/src/components/pages/EsignatureLandingPage/EsignatureLandingPageProps.types.d.ts +1 -2
  11. package/dist/src/components/pages/EsignatureLandingPage/EsignatureLandingPageProps.types.ts +1 -2
  12. package/dist/src/components/sections/BenefitsRatafiaSection/BenefitsRatafiaSection.js +2 -7
  13. package/dist/src/components/sections/BenefitsRatafiaSection/BenefitsRatafiaSection.styled.js +0 -41
  14. package/dist/src/components/sections/BenefitsRatafiaSection/BenefitsRatafiaSection.styled.ts +0 -41
  15. package/dist/src/components/sections/BenefitsRatafiaSection/BenefitsRatafiaSection.tsx +3 -13
  16. package/dist/src/components/sections/BenefitsRatafiaSection/BenefitsRatafiaSectionProps.types.d.ts +0 -2
  17. package/dist/src/components/sections/BenefitsRatafiaSection/BenefitsRatafiaSectionProps.types.ts +0 -2
  18. package/package.json +1 -1
  19. package/dist/images/svg/benefit-bckground-l.svg +0 -15
  20. package/dist/images/svg/benefit-bckground-m.svg +0 -15
  21. package/dist/images/svg/benefit-bckground-s.svg +0 -15
@@ -2242,12 +2242,13 @@ h2.react-datepicker__current-month {
2242
2242
  right: 0;
2243
2243
  bottom: 0;
2244
2244
  }
2245
- .e-text .input-icon-password {
2245
+ .e-text .input-icon-password-button {
2246
2246
  cursor: pointer;
2247
2247
  position: absolute;
2248
- transform: translate(-40%, -65%);
2249
- right: 0;
2250
- bottom: 0;
2248
+ right: 0px;
2249
+ bottom: 6px;
2250
+ background: none;
2251
+ border: none;
2251
2252
  }
2252
2253
  .e-text .formgroup--input__button {
2253
2254
  align-self: flex-start;
@@ -9,7 +9,7 @@ export const MidBannerRatafiaSampleStyled = styled.div `
9
9
  img {
10
10
  border-radius: 8px 8px 0 0;
11
11
  box-shadow: var(--box-shadow-small);
12
- width: 727px;
12
+ max-width: $sm;
13
13
  }
14
14
  }
15
15
  &__sumarized-tag {
@@ -10,7 +10,7 @@ export const MidBannerRatafiaSampleStyled = styled.div`
10
10
  img {
11
11
  border-radius: 8px 8px 0 0;
12
12
  box-shadow: var(--box-shadow-small);
13
- width: 727px;
13
+ max-width: $sm;
14
14
  }
15
15
  }
16
16
  &__sumarized-tag {
@@ -3,7 +3,7 @@ interface InputProps {
3
3
  name: string;
4
4
  placeholder: string;
5
5
  maxLength: number;
6
- value: any;
6
+ value: string;
7
7
  type: 'password' | 'text' | 'number' | 'tel';
8
8
  disabled: boolean;
9
9
  className: string;
@@ -1,16 +1,21 @@
1
1
  import { jsx as _jsx, Fragment as _Fragment, jsxs as _jsxs } from "react/jsx-runtime";
2
- /* eslint-disable @typescript-eslint/no-explicit-any */
3
- /* eslint-disable jsx-a11y/no-noninteractive-element-interactions */
4
- /* eslint-disable jsx-a11y/click-events-have-key-events */
5
- import React, { useState } from 'react';
2
+ import React, { useCallback, useState } from 'react';
6
3
  import eyeCloseIcon from '../../../../images/svg/eye-close.svg';
7
4
  import eyeIcon from '../../../../images/svg/eye-24-px.svg';
8
5
  export const Input = React.forwardRef(({ value, name, placeholder, className, onChange, onClick, onBlur, onKeyDown, onKeyUp, disabled, type = 'text', maxLength }, ref) => {
6
+ const [currentValue, setCurrentValue] = useState(value);
9
7
  const [hidden, setHidden] = useState(true);
10
8
  const showPassword = () => {
11
9
  if (value !== null)
12
10
  setHidden(!hidden);
13
11
  };
14
- return (_jsxs(_Fragment, { children: [_jsx("input", { type: !hidden && type === 'password' ? 'text' : type, name: name, id: name, className: className, maxLength: maxLength, placeholder: placeholder, onChange: onChange, onClick: onClick, onKeyDown: onKeyDown, onKeyUp: onKeyUp, onBlur: onBlur, value: value, "data-qa": name, disabled: disabled, ref: ref }), type === 'password' && (_jsx("img", { className: 'input-icon-password', src: hidden ? eyeIcon : eyeCloseIcon, onClick: showPassword, alt: '' }))] }));
12
+ const handleChange = useCallback((event) => {
13
+ setCurrentValue(event.target.value);
14
+ onChange(event);
15
+ }, [currentValue]);
16
+ return (_jsxs(_Fragment, { children: [_jsx("input", { type: !hidden && type === 'password' ? 'text' : type, name: name, id: name, className: className, maxLength: maxLength, placeholder: placeholder, onChange: handleChange, onClick: onClick, onKeyDown: onKeyDown, onKeyUp: onKeyUp, onBlur: onBlur, value: currentValue, "data-qa": name, disabled: disabled, ref: ref }), type === 'password' && (_jsx("button", { className: 'input-icon-password-button', onClick: showPassword, onKeyDown: (e) => {
17
+ if (e.key === 'Enter')
18
+ showPassword();
19
+ }, children: _jsx("img", { src: hidden ? eyeIcon : eyeCloseIcon, alt: '' }) }))] }));
15
20
  });
16
21
  Input.displayName = 'Input';
@@ -1,8 +1,4 @@
1
- /* eslint-disable @typescript-eslint/no-explicit-any */
2
-
3
- /* eslint-disable jsx-a11y/no-noninteractive-element-interactions */
4
- /* eslint-disable jsx-a11y/click-events-have-key-events */
5
- import React, { useState } from 'react'
1
+ import React, { useCallback, useState } from 'react'
6
2
 
7
3
  import eyeCloseIcon from '../../../../images/svg/eye-close.svg'
8
4
  import eyeIcon from '../../../../images/svg/eye-24-px.svg'
@@ -11,7 +7,7 @@ interface InputProps {
11
7
  name: string
12
8
  placeholder: string
13
9
  maxLength: number
14
- value: any
10
+ value: string
15
11
  type: 'password' | 'text' | 'number' | 'tel'
16
12
  disabled: boolean
17
13
  className: string
@@ -40,12 +36,21 @@ export const Input = React.forwardRef<HTMLInputElement, InputProps>(
40
36
  }: InputProps,
41
37
  ref
42
38
  ) => {
39
+ const [currentValue, setCurrentValue] = useState(value)
43
40
  const [hidden, setHidden] = useState(true)
44
41
 
45
- const showPassword = (): any => {
42
+ const showPassword = (): void => {
46
43
  if (value !== null) setHidden(!hidden)
47
44
  }
48
45
 
46
+ const handleChange = useCallback(
47
+ (event: React.ChangeEvent<HTMLInputElement>) => {
48
+ setCurrentValue(event.target.value)
49
+ onChange(event)
50
+ },
51
+ [currentValue]
52
+ )
53
+
49
54
  return (
50
55
  <>
51
56
  <input
@@ -55,18 +60,26 @@ export const Input = React.forwardRef<HTMLInputElement, InputProps>(
55
60
  className={className}
56
61
  maxLength={maxLength}
57
62
  placeholder={placeholder}
58
- onChange={onChange}
63
+ onChange={handleChange}
59
64
  onClick={onClick}
60
65
  onKeyDown={onKeyDown}
61
66
  onKeyUp={onKeyUp}
62
67
  onBlur={onBlur}
63
- value={value}
68
+ value={currentValue}
64
69
  data-qa={name}
65
70
  disabled={disabled}
66
71
  ref={ref}
67
72
  />
68
73
  {type === 'password' && (
69
- <img className='input-icon-password' src={hidden ? eyeIcon : eyeCloseIcon} onClick={showPassword} alt='' />
74
+ <button
75
+ className='input-icon-password-button'
76
+ onClick={showPassword}
77
+ onKeyDown={(e) => {
78
+ if (e.key === 'Enter') showPassword()
79
+ }}
80
+ >
81
+ <img src={hidden ? eyeIcon : eyeCloseIcon} alt='' />
82
+ </button>
70
83
  )}
71
84
  </>
72
85
  )
@@ -155,12 +155,13 @@
155
155
  bottom: 0;
156
156
  }
157
157
 
158
- .input-icon-password {
158
+ .input-icon-password-button {
159
159
  cursor: pointer;
160
160
  position: absolute;
161
- transform: translate(-40%, -65%);
162
- right: 0;
163
- bottom: 0;
161
+ right: 0px;
162
+ bottom: 6px;
163
+ background: none;
164
+ border: none;
164
165
  }
165
166
 
166
167
  .formgroup--input__button {
@@ -1,5 +1,5 @@
1
1
  import { jsx as _jsx, Fragment as _Fragment, jsxs as _jsxs } from "react/jsx-runtime";
2
- import { BenefitsRatafiaSection, FaqSection, JumbotronRatafiaSection, StepsRatafiaSection } from '../../sections';
3
- export const EsignatureLandingPage = ({ jumbotronSectionProps, stepsSectionProps, benefitsSectionProps, trustPilotBox, faqGroupProps }) => {
4
- return (_jsxs(_Fragment, { children: [_jsx(JumbotronRatafiaSection, { content: jumbotronSectionProps.content, alternativeStyles: jumbotronSectionProps.alternativeStyles, children: jumbotronSectionProps.children }), _jsx(StepsRatafiaSection, { ...stepsSectionProps }), _jsx(BenefitsRatafiaSection, { ...benefitsSectionProps }), trustPilotBox ?? trustPilotBox, _jsx(FaqSection, { groups: faqGroupProps, givenClass: 'faq-ratafia-section' })] }));
2
+ import { FaqSection, JumbotronRatafiaSection, StepsRatafiaSection } from '../../sections';
3
+ export const EsignatureLandingPage = ({ jumbotronSectionProps, stepsSectionProps, trustPilotBox, faqGroupProps }) => {
4
+ return (_jsxs(_Fragment, { children: [_jsx(JumbotronRatafiaSection, { content: jumbotronSectionProps.content, alternativeStyles: jumbotronSectionProps.alternativeStyles, children: jumbotronSectionProps.children }), _jsx(StepsRatafiaSection, { ...stepsSectionProps }), trustPilotBox ?? trustPilotBox, _jsx(FaqSection, { groups: faqGroupProps, givenClass: 'faq-ratafia-section' })] }));
5
5
  };
@@ -1,12 +1,11 @@
1
1
  import React from 'react'
2
2
 
3
- import { BenefitsRatafiaSection, FaqSection, JumbotronRatafiaSection, StepsRatafiaSection } from '../../sections'
3
+ import { FaqSection, JumbotronRatafiaSection, StepsRatafiaSection } from '../../sections'
4
4
  import { type EsignatureLandingPageProps } from './EsignatureLandingPageProps.types'
5
5
 
6
6
  export const EsignatureLandingPage: React.FC<EsignatureLandingPageProps> = ({
7
7
  jumbotronSectionProps,
8
8
  stepsSectionProps,
9
- benefitsSectionProps,
10
9
  trustPilotBox,
11
10
  faqGroupProps
12
11
  }) => {
@@ -19,7 +18,6 @@ export const EsignatureLandingPage: React.FC<EsignatureLandingPageProps> = ({
19
18
  {jumbotronSectionProps.children}
20
19
  </JumbotronRatafiaSection>
21
20
  <StepsRatafiaSection {...stepsSectionProps} />
22
- <BenefitsRatafiaSection {...benefitsSectionProps} />
23
21
  {trustPilotBox ?? trustPilotBox}
24
22
  <FaqSection groups={faqGroupProps} givenClass='faq-ratafia-section' />
25
23
  </>
@@ -1,9 +1,8 @@
1
- import { BenefitsRatafiaSectionProps, JumbotronRatafiaSectionProps, StepsRatafiaSectionProps } from '../../sections';
1
+ import { JumbotronRatafiaSectionProps, StepsRatafiaSectionProps } from '../../sections';
2
2
  import type { FaqGroupProps } from '../../organisms';
3
3
  export interface EsignatureLandingPageProps {
4
4
  jumbotronSectionProps: JumbotronRatafiaSectionProps;
5
5
  stepsSectionProps: StepsRatafiaSectionProps;
6
- benefitsSectionProps: BenefitsRatafiaSectionProps;
7
6
  faqGroupProps: FaqGroupProps[];
8
7
  trustPilotBox?: React.ReactNode;
9
8
  }
@@ -1,10 +1,9 @@
1
- import { BenefitsRatafiaSectionProps, JumbotronRatafiaSectionProps, StepsRatafiaSectionProps } from '../../sections'
1
+ import { JumbotronRatafiaSectionProps, StepsRatafiaSectionProps } from '../../sections'
2
2
  import type { FaqGroupProps } from '../../organisms'
3
3
 
4
4
  export interface EsignatureLandingPageProps {
5
5
  jumbotronSectionProps: JumbotronRatafiaSectionProps
6
6
  stepsSectionProps: StepsRatafiaSectionProps
7
- benefitsSectionProps: BenefitsRatafiaSectionProps
8
7
  faqGroupProps: FaqGroupProps[]
9
8
  trustPilotBox?: React.ReactNode
10
9
  }
@@ -1,12 +1,7 @@
1
1
  import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
2
2
  import { BenefitRatafiaCardList } from '../../molecules';
3
3
  import { BenefitsRatafiaSectionStyled } from './BenefitsRatafiaSection.styled';
4
- import classNames from 'classnames';
5
- const BenefitsRatafiaSection = ({ title, description, benefits, descriptionRichtext }) => {
6
- const isEsignatureLanding = descriptionRichtext !== undefined;
7
- const classnames = classNames({
8
- '--is-esignature': isEsignatureLanding
9
- });
10
- return (_jsx(BenefitsRatafiaSectionStyled, { className: 'benefit-ratafia-section', children: _jsxs("div", { className: `benefit-ratafia-section__wrapper background-ratafia-animation ${classnames}`, children: [_jsxs("div", { className: 'benefit-ratafia-section__wrapper__title', children: [_jsx("h2", { className: 'sans-serif --super-large --bold-weight benefit-ratafia-section__wrapper__title__text', children: title }), _jsx("p", { className: 'sans-serif --super-medium benefit-ratafia-section__wrapper__title__description', children: isEsignatureLanding ? descriptionRichtext : description })] }), _jsx(BenefitRatafiaCardList, { benefits: benefits })] }) }));
4
+ const BenefitsRatafiaSection = ({ title, description, benefits }) => {
5
+ return (_jsx(BenefitsRatafiaSectionStyled, { className: 'benefit-ratafia-section', children: _jsxs("div", { className: 'benefit-ratafia-section__wrapper background-ratafia-animation', children: [_jsxs("div", { className: 'benefit-ratafia-section__wrapper__title', children: [_jsx("h2", { className: 'sans-serif --super-large --bold-weight benefit-ratafia-section__wrapper__title__text', children: title }), _jsx("p", { className: 'sans-serif --super-medium benefit-ratafia-section__wrapper__title__description', children: description })] }), _jsx(BenefitRatafiaCardList, { benefits: benefits })] }) }));
11
6
  };
12
7
  export default BenefitsRatafiaSection;
@@ -1,5 +1,3 @@
1
- import backElementL from '../../../../images/svg/benefit-bckground-l.svg';
2
- import backElementS from '../../../../images/svg/benefit-bckground-s.svg';
3
1
  import { device } from '../../../globalStyles/breakpoints';
4
2
  import styled from 'styled-components';
5
3
  export const BenefitsRatafiaSectionStyled = styled.section `
@@ -51,45 +49,6 @@ export const BenefitsRatafiaSectionStyled = styled.section `
51
49
  color: var(--others-white);
52
50
  }
53
51
  }
54
-
55
- &.--is-esignature {
56
- background-image: url(${backElementS});
57
- background-size: cover;
58
- background-position: center;
59
- background-repeat: no-repeat;
60
- animation: none;
61
-
62
- @media ${device['landscape-tablets']} {
63
- background-image: url(${backElementL});
64
- background-size: cover, cover;
65
- background-position: center, center;
66
- background-repeat: no-repeat, no-repeat;
67
- }
68
- }
69
-
70
- .benefit-ratafia-card {
71
- box-shadow: none;
72
- }
73
- }
74
- }
75
-
76
- .--is-esignature {
77
- .benefit-ratafia-section {
78
- &__wrapper {
79
- &__title {
80
- &__text {
81
- color: var(--primary-main-dark-2);
82
- }
83
- &__description {
84
- color: var(--neutral-neutral-1);
85
-
86
- a {
87
- color: var(--primary-main);
88
- text-decoration: underline;
89
- }
90
- }
91
- }
92
- }
93
52
  }
94
53
  }
95
54
  `;
@@ -1,5 +1,3 @@
1
- import backElementL from '../../../../images/svg/benefit-bckground-l.svg'
2
- import backElementS from '../../../../images/svg/benefit-bckground-s.svg'
3
1
  import { device } from '../../../globalStyles/breakpoints'
4
2
  import styled from 'styled-components'
5
3
 
@@ -52,45 +50,6 @@ export const BenefitsRatafiaSectionStyled = styled.section`
52
50
  color: var(--others-white);
53
51
  }
54
52
  }
55
-
56
- &.--is-esignature {
57
- background-image: url(${backElementS});
58
- background-size: cover;
59
- background-position: center;
60
- background-repeat: no-repeat;
61
- animation: none;
62
-
63
- @media ${device['landscape-tablets']} {
64
- background-image: url(${backElementL});
65
- background-size: cover, cover;
66
- background-position: center, center;
67
- background-repeat: no-repeat, no-repeat;
68
- }
69
- }
70
-
71
- .benefit-ratafia-card {
72
- box-shadow: none;
73
- }
74
- }
75
- }
76
-
77
- .--is-esignature {
78
- .benefit-ratafia-section {
79
- &__wrapper {
80
- &__title {
81
- &__text {
82
- color: var(--primary-main-dark-2);
83
- }
84
- &__description {
85
- color: var(--neutral-neutral-1);
86
-
87
- a {
88
- color: var(--primary-main);
89
- text-decoration: underline;
90
- }
91
- }
92
- }
93
- }
94
53
  }
95
54
  }
96
55
  `
@@ -3,27 +3,17 @@ import React, { type FC } from 'react'
3
3
  import { BenefitRatafiaCardList } from '../../molecules'
4
4
  import { type BenefitsRatafiaSectionProps } from './BenefitsRatafiaSectionProps.types'
5
5
  import { BenefitsRatafiaSectionStyled } from './BenefitsRatafiaSection.styled'
6
- import classNames from 'classnames'
7
6
 
8
- const BenefitsRatafiaSection: FC<BenefitsRatafiaSectionProps> = ({
9
- title,
10
- description,
11
- benefits,
12
- descriptionRichtext
13
- }) => {
14
- const isEsignatureLanding = descriptionRichtext !== undefined
15
- const classnames = classNames({
16
- '--is-esignature': isEsignatureLanding
17
- })
7
+ const BenefitsRatafiaSection: FC<BenefitsRatafiaSectionProps> = ({ title, description, benefits }) => {
18
8
  return (
19
9
  <BenefitsRatafiaSectionStyled className='benefit-ratafia-section'>
20
- <div className={`benefit-ratafia-section__wrapper background-ratafia-animation ${classnames}`}>
10
+ <div className='benefit-ratafia-section__wrapper background-ratafia-animation'>
21
11
  <div className='benefit-ratafia-section__wrapper__title'>
22
12
  <h2 className='sans-serif --super-large --bold-weight benefit-ratafia-section__wrapper__title__text'>
23
13
  {title}
24
14
  </h2>
25
15
  <p className='sans-serif --super-medium benefit-ratafia-section__wrapper__title__description'>
26
- {isEsignatureLanding ? descriptionRichtext : description}
16
+ {description}
27
17
  </p>
28
18
  </div>
29
19
  <BenefitRatafiaCardList benefits={benefits} />
@@ -1,8 +1,6 @@
1
1
  import { type BenefitRatafiaCardProps } from '../../atoms';
2
- import React from 'react';
3
2
  export interface BenefitsRatafiaSectionProps {
4
3
  title: string;
5
4
  description: string;
6
- descriptionRichtext: React.ReactNode;
7
5
  benefits: BenefitRatafiaCardProps[];
8
6
  }
@@ -1,9 +1,7 @@
1
1
  import { type BenefitRatafiaCardProps } from '../../atoms'
2
- import React from 'react'
3
2
 
4
3
  export interface BenefitsRatafiaSectionProps {
5
4
  title: string
6
5
  description: string
7
- descriptionRichtext: React.ReactNode
8
6
  benefits: BenefitRatafiaCardProps[]
9
7
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@npm_leadtech/legal-lib-components",
3
- "version": "5.43.9",
3
+ "version": "5.44.0",
4
4
  "license": "ISC",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -1,15 +0,0 @@
1
- <svg width="1192" height="466" viewBox="0 0 1192 466" fill="none" xmlns="http://www.w3.org/2000/svg">
2
- <g clip-path="url(#clip0_8137_9144)">
3
- <rect width="1192" height="466" fill="#F3F7FA"/>
4
- <path d="M1055.81 -136.303C1063.7 -147.627 1079.29 -150.403 1090.61 -142.504C1101.94 -134.604 1104.71 -119.021 1096.81 -107.697L1055.81 -136.303ZM934.507 367.932L952.529 342.097L993.537 370.703L975.516 396.538L934.507 367.932ZM935.29 245.333L909.455 227.311L938.061 186.302L963.896 204.324L935.29 245.333ZM1010.15 82.9614L1061.82 119.005L1033.21 160.014L981.542 123.97L1010.15 82.9614ZM1105.3 56.6725L1079.47 38.6506L1108.07 -2.35778L1133.91 15.6641L1105.3 56.6725ZM1049.82 -127.728L1055.81 -136.303L1096.81 -107.697L1090.83 -99.122L1049.82 -127.728ZM1079.47 38.6506C1025.34 0.891513 1012.07 -73.5988 1049.82 -127.728L1090.83 -99.122C1068.87 -67.6409 1076.59 -24.3181 1108.07 -2.35778L1079.47 38.6506ZM1133.91 15.6641C1173.77 43.47 1183.54 98.3248 1155.73 138.186L1114.73 109.58C1126.73 92.3669 1122.51 68.6796 1105.3 56.6725L1133.91 15.6641ZM1061.82 119.005C1079.03 131.012 1102.72 126.792 1114.73 109.58L1155.73 138.186C1127.93 178.047 1073.07 187.819 1033.21 160.014L1061.82 119.005ZM887.627 104.789C915.433 64.9281 970.288 55.1555 1010.15 82.9614L981.542 123.97C964.33 111.963 940.642 116.183 928.635 133.395L887.627 104.789ZM909.455 227.311C869.594 199.505 859.821 144.65 887.627 104.789L928.635 133.395C916.628 150.608 920.848 174.295 938.061 186.302L909.455 227.311ZM952.529 342.097C974.489 310.616 966.771 267.293 935.29 245.333L963.896 204.324C1018.03 242.083 1031.3 316.574 993.537 370.703L952.529 342.097Z" fill="url(#paint0_linear_8137_9144)"/>
5
- </g>
6
- <defs>
7
- <linearGradient id="paint0_linear_8137_9144" x1="1165.81" y1="-85.1219" x2="877.506" y2="328.169" gradientUnits="userSpaceOnUse">
8
- <stop stop-color="#02374A" stop-opacity="0.2"/>
9
- <stop offset="1" stop-color="#02374A" stop-opacity="0"/>
10
- </linearGradient>
11
- <clipPath id="clip0_8137_9144">
12
- <rect width="1192" height="466" fill="white"/>
13
- </clipPath>
14
- </defs>
15
- </svg>
@@ -1,15 +0,0 @@
1
- <svg width="720" height="804" viewBox="0 0 720 804" fill="none" xmlns="http://www.w3.org/2000/svg">
2
- <g clip-path="url(#clip0_8137_9145)">
3
- <rect width="720" height="804" fill="#F3F7FA"/>
4
- <path d="M715.806 320.697C723.705 309.373 739.289 306.597 750.613 314.496C761.937 322.396 764.713 337.979 756.814 349.303L715.806 320.697ZM594.507 824.932L612.529 799.097L653.537 827.703L635.516 853.538L594.507 824.932ZM595.29 702.333L569.455 684.311L598.061 643.302L623.896 661.324L595.29 702.333ZM670.149 539.961L721.819 576.005L693.213 617.014L641.542 580.97L670.149 539.961ZM765.301 513.672L739.465 495.651L768.072 454.642L793.907 472.664L765.301 513.672ZM709.824 329.272L715.806 320.697L756.814 349.303L750.833 357.878L709.824 329.272ZM739.465 495.651C685.336 457.892 672.065 383.401 709.824 329.272L750.833 357.878C728.872 389.359 736.59 432.682 768.072 454.642L739.465 495.651ZM793.907 472.664C833.768 500.47 843.54 555.325 815.735 595.186L774.726 566.58C786.733 549.367 782.513 525.68 765.301 513.672L793.907 472.664ZM721.819 576.005C739.032 588.012 762.719 583.792 774.726 566.58L815.735 595.186C787.929 635.047 733.074 644.819 693.213 617.014L721.819 576.005ZM547.627 561.789C575.433 521.928 630.288 512.156 670.149 539.961L641.542 580.97C624.33 568.963 600.642 573.183 588.635 590.395L547.627 561.789ZM569.455 684.311C529.594 656.505 519.821 601.65 547.627 561.789L588.635 590.395C576.628 607.608 580.848 631.295 598.061 643.302L569.455 684.311ZM612.529 799.097C634.489 767.616 626.771 724.293 595.29 702.333L623.896 661.324C678.026 699.083 691.296 773.574 653.537 827.703L612.529 799.097Z" fill="url(#paint0_linear_8137_9145)"/>
5
- </g>
6
- <defs>
7
- <linearGradient id="paint0_linear_8137_9145" x1="825.805" y1="371.878" x2="537.506" y2="785.169" gradientUnits="userSpaceOnUse">
8
- <stop stop-color="#02374A" stop-opacity="0.2"/>
9
- <stop offset="1" stop-color="#02374A" stop-opacity="0"/>
10
- </linearGradient>
11
- <clipPath id="clip0_8137_9145">
12
- <rect width="720" height="804" fill="white"/>
13
- </clipPath>
14
- </defs>
15
- </svg>
@@ -1,15 +0,0 @@
1
- <svg width="327" height="1050" viewBox="0 0 327 1050" fill="none" xmlns="http://www.w3.org/2000/svg">
2
- <g clip-path="url(#clip0_8137_9146)">
3
- <rect width="327" height="1050" fill="#F3F7FA"/>
4
- <path d="M318.806 400.696C326.705 389.372 342.289 386.596 353.613 394.495C364.937 402.395 367.713 417.978 359.814 429.303L318.806 400.696ZM197.507 904.931L215.529 879.096L256.537 907.702L238.516 933.537L197.507 904.931ZM198.29 782.332L172.455 764.31L201.061 723.301L226.896 741.323L198.29 782.332ZM273.149 619.96L324.819 656.004L296.213 697.013L244.542 660.969L273.149 619.96ZM368.301 593.672L342.465 575.65L371.072 534.641L396.907 552.663L368.301 593.672ZM312.824 409.271L318.806 400.696L359.814 429.303L353.833 437.877L312.824 409.271ZM342.465 575.65C288.336 537.891 275.065 463.4 312.824 409.271L353.833 437.877C331.872 469.358 339.59 512.681 371.072 534.641L342.465 575.65ZM396.907 552.663C436.768 580.469 446.54 635.324 418.735 675.185L377.726 646.579C389.733 629.366 385.513 605.679 368.301 593.672L396.907 552.663ZM324.819 656.004C342.032 668.011 365.719 663.791 377.726 646.579L418.735 675.185C390.929 715.046 336.074 724.818 296.213 697.013L324.819 656.004ZM150.627 641.788C178.433 601.927 233.288 592.155 273.149 619.96L244.542 660.969C227.33 648.962 203.642 653.182 191.635 670.394L150.627 641.788ZM172.455 764.31C132.594 736.504 122.821 681.649 150.627 641.788L191.635 670.394C179.628 687.607 183.848 711.294 201.061 723.301L172.455 764.31ZM215.529 879.096C237.489 847.615 229.771 804.292 198.29 782.332L226.896 741.323C281.026 779.082 294.296 853.573 256.537 907.702L215.529 879.096Z" fill="url(#paint0_linear_8137_9146)"/>
5
- </g>
6
- <defs>
7
- <linearGradient id="paint0_linear_8137_9146" x1="428.805" y1="451.877" x2="140.506" y2="865.168" gradientUnits="userSpaceOnUse">
8
- <stop stop-color="#02374A" stop-opacity="0.2"/>
9
- <stop offset="1" stop-color="#02374A" stop-opacity="0"/>
10
- </linearGradient>
11
- <clipPath id="clip0_8137_9146">
12
- <rect width="327" height="1050" fill="white"/>
13
- </clipPath>
14
- </defs>
15
- </svg>