odaptos_design_system 1.4.151 → 1.4.153
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.
- package/dist/Form/FormQuestions/FormQuestions.d.ts +21 -0
- package/dist/Form/QuestionButton/QuestionButton.d.ts +12 -0
- package/dist/LogoSlider/LogoSlider.d.ts +5 -1
- package/dist/PricingCard/PricingCard.d.ts +1 -2
- package/dist/SquareText/SquareText.d.ts +10 -0
- package/dist/odaptos_design_system.cjs.development.js +51 -52
- package/dist/odaptos_design_system.cjs.development.js.map +1 -1
- package/dist/odaptos_design_system.cjs.production.min.js +1 -1
- package/dist/odaptos_design_system.cjs.production.min.js.map +1 -1
- package/dist/odaptos_design_system.esm.js +51 -52
- package/dist/odaptos_design_system.esm.js.map +1 -1
- package/package.json +1 -1
- package/src/FeaturesTable/components/TableHeader/components/HeaderCell.tsx +2 -2
- package/src/Form/FormQuestions/FormQuestions.module.scss +45 -0
- package/src/Form/FormQuestions/FormQuestions.tsx +55 -0
- package/src/Form/QuestionButton/QuestionButton.module.scss +30 -0
- package/src/Form/QuestionButton/QuestionButton.tsx +26 -0
- package/src/Icons/Logos/ap-logo 1.svg +21 -0
- package/src/Icons/Partners/Partner2.tsx +40 -47
- package/src/LogoSlider/LogoSlider.module.scss +5 -7
- package/src/LogoSlider/LogoSlider.tsx +14 -2
- package/src/PricingCard/PricingCard.module.scss +82 -82
- package/src/PricingCard/PricingCard.tsx +2 -4
- package/src/SquareText/SquareText.module.scss +8 -0
- package/src/SquareText/SquareText.tsx +21 -0
- package/src/__mocks__/PricingPageData/pricingPageMockedData.js +1 -0
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
import React, { HTMLAttributes } from 'react';
|
|
2
|
+
interface FormQuestionsProps extends HTMLAttributes<HTMLParagraphElement> {
|
|
3
|
+
/** Text display */
|
|
4
|
+
answers: {
|
|
5
|
+
text: string;
|
|
6
|
+
isSelected: boolean;
|
|
7
|
+
}[];
|
|
8
|
+
question: string;
|
|
9
|
+
hint: string;
|
|
10
|
+
optionText: string;
|
|
11
|
+
onClick: () => void;
|
|
12
|
+
nextAction?: () => void;
|
|
13
|
+
backAction?: () => void;
|
|
14
|
+
nextText?: string;
|
|
15
|
+
backText?: string;
|
|
16
|
+
}
|
|
17
|
+
/** This text should be use to display basic text
|
|
18
|
+
* Figma link : https://www.figma.com/file/fjnhhbL12HvKccPmJchVnr/Atomic-Library?type=design&node-id=52-751&mode=dev
|
|
19
|
+
*/
|
|
20
|
+
export declare const FormQuestions: ({ answers, question, hint, optionText, onClick, backAction, backText, nextAction, nextText, }: FormQuestionsProps) => React.JSX.Element;
|
|
21
|
+
export {};
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import React, { HTMLAttributes } from 'react';
|
|
2
|
+
interface QuestionButtonProps extends HTMLAttributes<HTMLParagraphElement> {
|
|
3
|
+
/** Text display */
|
|
4
|
+
text: string;
|
|
5
|
+
onClick: () => void;
|
|
6
|
+
clicked?: boolean;
|
|
7
|
+
}
|
|
8
|
+
/** This text should be use to display basic text
|
|
9
|
+
* Figma link : https://www.figma.com/file/fjnhhbL12HvKccPmJchVnr/Atomic-Library?type=design&node-id=52-751&mode=dev
|
|
10
|
+
*/
|
|
11
|
+
export declare const QuestionButton: ({ text, onClick, clicked, }: QuestionButtonProps) => React.JSX.Element;
|
|
12
|
+
export {};
|
|
@@ -1,2 +1,6 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
|
-
export
|
|
2
|
+
export interface LogoSliderProps {
|
|
3
|
+
logoWidth?: number;
|
|
4
|
+
logoHeight?: number;
|
|
5
|
+
}
|
|
6
|
+
export declare const LogoSlider: ({ logoWidth, logoHeight, }: LogoSliderProps) => React.JSX.Element;
|
|
@@ -18,8 +18,7 @@ interface PricingCardProps {
|
|
|
18
18
|
isHighlighted: boolean;
|
|
19
19
|
highlightMessage?: string;
|
|
20
20
|
onClick: () => void;
|
|
21
|
-
currency?: string;
|
|
22
21
|
tier: 1 | 2 | 3 | 4;
|
|
23
22
|
}
|
|
24
|
-
export declare const PricingCard: ({ cardInfo: { title, description, monthlyPrice, yearlyPrice }, cmsContent, isYearlyOrMonthly, interviewsNumber, featuresList, isDark, isHighlighted, highlightMessage, onClick,
|
|
23
|
+
export declare const PricingCard: ({ cardInfo: { title, description, monthlyPrice, yearlyPrice }, cmsContent, isYearlyOrMonthly, interviewsNumber, featuresList, isDark, isHighlighted, highlightMessage, onClick, tier, }: PricingCardProps) => React.JSX.Element;
|
|
25
24
|
export {};
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import React, { HTMLAttributes } from 'react';
|
|
2
|
+
interface SquareTextProps extends HTMLAttributes<HTMLParagraphElement> {
|
|
3
|
+
/** Text display */
|
|
4
|
+
text: string;
|
|
5
|
+
}
|
|
6
|
+
/** This text should be use to display basic text
|
|
7
|
+
* Figma link : https://www.figma.com/file/fjnhhbL12HvKccPmJchVnr/Atomic-Library?type=design&node-id=52-751&mode=dev
|
|
8
|
+
*/
|
|
9
|
+
export declare const SquareText: ({ text, }: SquareTextProps) => React.JSX.Element;
|
|
10
|
+
export {};
|
|
@@ -7722,81 +7722,75 @@ function Partner2({
|
|
|
7722
7722
|
...rest
|
|
7723
7723
|
}) {
|
|
7724
7724
|
return /*#__PURE__*/React__default.createElement(material.SvgIcon, Object.assign({}, rest), /*#__PURE__*/React__default.createElement("svg", {
|
|
7725
|
-
width: "
|
|
7726
|
-
height: "
|
|
7727
|
-
viewBox: "0 0
|
|
7725
|
+
width: "176",
|
|
7726
|
+
height: "25",
|
|
7727
|
+
viewBox: "0 0 176 25",
|
|
7728
7728
|
fill: "none",
|
|
7729
7729
|
xmlns: "http://www.w3.org/2000/svg"
|
|
7730
7730
|
}, /*#__PURE__*/React__default.createElement("g", {
|
|
7731
|
-
|
|
7732
|
-
"clip-path": "url(#clip0_1969_93180)"
|
|
7731
|
+
"clip-path": "url(#clip0_87_2425)"
|
|
7733
7732
|
}, /*#__PURE__*/React__default.createElement("path", {
|
|
7734
|
-
id: "Subtract",
|
|
7735
7733
|
"fill-rule": "evenodd",
|
|
7736
7734
|
"clip-rule": "evenodd",
|
|
7737
|
-
d: "
|
|
7738
|
-
fill: "#
|
|
7735
|
+
d: "M12.6093 0H12.2998C5.50631 0 0 5.57555 0 12.4546C0 19.3335 5.50631 24.9091 12.2998 24.9091H12.6093C19.4028 24.9091 24.9091 19.3335 24.9091 12.4546C24.9091 5.57555 19.4028 0 12.6093 0ZM20.0479 10.6434C19.8959 10.1386 19.6663 9.70954 19.3608 9.35488C19.0662 8.99096 18.7095 8.70909 18.2923 8.50618C17.8751 8.30486 17.4067 8.20264 16.8887 8.20264C16.3707 8.20264 15.8915 8.31413 15.5147 8.53562C15.1487 8.75706 14.8385 9.04048 14.5842 9.38432H14.5376V8.41481H12.5386V18.7356H14.6152V15.3113H14.6462C14.8695 15.6443 15.1657 15.9123 15.5318 16.1152C15.8978 16.3165 16.3568 16.4187 16.9058 16.4187C17.4036 16.4187 17.8627 16.3227 18.2799 16.1307C18.6971 15.9386 19.0537 15.666 19.3484 15.3129C19.6539 14.9598 19.8881 14.5292 20.051 14.0243C20.2138 13.5086 20.296 12.9387 20.296 12.3114C20.296 11.6842 20.2154 11.1499 20.051 10.645L20.0479 10.6434ZM17.7122 14.0987C17.4067 14.5029 16.9895 14.7043 16.4607 14.7043C15.8404 14.7043 15.3674 14.4921 15.0417 14.0677C14.7268 13.6434 14.5687 13.078 14.5687 12.3703C14.5687 12.0265 14.5997 11.7028 14.6601 11.4008C14.7315 11.088 14.8385 10.82 14.9812 10.597C15.1332 10.3755 15.3224 10.1974 15.5457 10.0673C15.7799 9.93566 16.059 9.8706 16.3847 9.8706C17.0252 9.8706 17.4843 10.103 17.7588 10.5676C18.0441 11.0322 18.1868 11.6331 18.1868 12.3703C18.1868 13.1075 18.0286 13.6836 17.7138 14.0971L17.7122 14.0987ZM11.6299 15.0492V11.0806C11.6299 10.1676 11.3719 9.46156 10.8576 8.96572C10.3526 8.45902 9.51856 8.2041 8.35705 8.2041C7.79176 8.2041 7.3006 8.27519 6.88666 8.41727C6.47277 8.55941 6.12833 8.74632 5.85647 8.97962C5.58312 9.21287 5.37613 9.48632 5.23559 9.80142C5.09351 10.1058 5.01783 10.4302 5.00857 10.7747H6.84188C6.87276 10.3993 7.00872 10.1258 7.25118 9.95282C7.4937 9.77054 7.85662 9.67942 8.34161 9.67942C8.77562 9.67942 9.09999 9.7659 9.31157 9.93738C9.534 10.0996 9.6452 10.3236 9.6452 10.6063C9.6452 10.889 9.4938 11.0991 9.1911 11.1995C8.88836 11.3014 8.41265 11.3972 7.76705 11.4884C7.33304 11.5486 6.92373 11.6351 6.53918 11.7464C6.1654 11.8483 5.8364 11.9951 5.55378 12.1882C5.27111 12.3813 5.04872 12.6238 4.88653 12.9189C4.72436 13.2124 4.64404 13.5739 4.64404 13.9987C4.64404 14.7804 4.89734 15.3736 5.40238 15.7799C5.90744 16.1862 6.55926 16.3885 7.35775 16.3885C7.69138 16.3885 7.97863 16.3576 8.22114 16.2974C8.46361 16.2464 8.6706 16.1754 8.84203 16.0842C9.02431 15.9931 9.17566 15.8865 9.29612 15.7644C9.42739 15.6331 9.54327 15.491 9.6452 15.3381H9.67609C9.69616 15.5111 9.72705 15.6779 9.7672 15.8401C9.80736 16.0023 9.85832 16.1243 9.91855 16.2047H11.9033V16.129C11.721 15.9977 11.6299 15.6377 11.6299 15.0492ZM9.68999 13.4549C9.68999 13.648 9.64983 13.835 9.56952 14.0188C9.48917 14.1918 9.36716 14.3478 9.20655 14.49C9.0552 14.6213 8.86365 14.734 8.63045 14.8252C8.40801 14.907 8.1501 14.9472 7.85817 14.9472C7.49524 14.9472 7.20176 14.8762 6.97933 14.734C6.75694 14.5811 6.64574 14.3231 6.64574 13.9586C6.64574 13.594 6.77701 13.3298 7.03961 13.1676C7.30215 13.0054 7.70682 12.8632 8.25203 12.7412C8.50696 12.6827 8.75747 12.6228 9.00224 12.5642L9.02431 12.559C9.28686 12.4879 9.50929 12.3968 9.69153 12.2855V13.458L9.68999 13.4549Z",
|
|
7736
|
+
fill: "#00040A"
|
|
7739
7737
|
}), /*#__PURE__*/React__default.createElement("path", {
|
|
7740
|
-
|
|
7741
|
-
|
|
7742
|
-
fill: "#26292E"
|
|
7738
|
+
d: "M61.4941 6.11914H65.2255V19.6833H61.4941V6.11914Z",
|
|
7739
|
+
fill: "#00040A"
|
|
7743
7740
|
}), /*#__PURE__*/React__default.createElement("path", {
|
|
7744
|
-
|
|
7745
|
-
|
|
7746
|
-
fill: "#26292E"
|
|
7741
|
+
d: "M61.4941 0.778564H65.2255V4.00412H61.4941V0.778564Z",
|
|
7742
|
+
fill: "#00040A"
|
|
7747
7743
|
}), /*#__PURE__*/React__default.createElement("path", {
|
|
7748
|
-
id: "Vector_3",
|
|
7749
7744
|
"fill-rule": "evenodd",
|
|
7750
7745
|
"clip-rule": "evenodd",
|
|
7751
|
-
d: "
|
|
7752
|
-
fill: "#
|
|
7746
|
+
d: "M47.727 22.9963C48.8778 23.7511 50.4383 24.1293 52.4081 24.1293L52.4096 24.1307C53.4687 24.1307 54.4437 24.0076 55.3359 23.7614C56.2282 23.5151 56.971 23.1297 57.5658 22.6021C58.1048 22.1448 58.5218 21.5819 58.8192 20.9151C59.1166 20.2482 59.2646 19.4392 59.2646 18.4909V6.00046H55.6144V7.42361H55.5586C55.1302 6.86082 54.5837 6.42257 53.9141 6.10597C53.2645 5.78938 52.5127 5.6311 51.6015 5.6311C50.6904 5.6311 49.8544 5.78938 49.0928 6.10597C48.3499 6.40498 47.7005 6.84323 47.1431 7.42361C46.6042 8.00255 46.1775 8.70608 45.8614 9.53122C45.564 10.3403 45.416 11.227 45.416 12.2457C45.416 13.2643 45.592 14.1789 45.9455 14.9865C46.3177 15.7764 46.7911 16.4521 47.3673 17.0149C47.9606 17.5602 48.6302 17.9808 49.373 18.2798C50.1344 18.5612 50.9146 18.7019 51.7136 18.7019C52.6228 18.7019 53.3661 18.5524 53.942 18.2534C54.5184 17.9544 55.0196 17.5778 55.4465 17.1205H55.5307V18.5964C55.5307 20.4768 54.4716 21.4163 52.3538 21.4163C51.463 21.4163 50.7935 21.2668 50.3481 20.9678C49.9197 20.6864 49.6315 20.3361 49.4836 19.914H45.7213C45.9253 21.2317 46.5933 22.2591 47.727 22.9963ZM53.8842 15.539C53.4578 15.7325 52.9471 15.8292 52.3523 15.8292C51.3679 15.8292 50.5783 15.5126 49.9834 14.8809C49.4073 14.2478 49.1192 13.3346 49.1192 12.1929C49.1192 11.0511 49.4073 10.1541 49.9834 9.50487C50.5783 8.838 51.3584 8.50382 52.3239 8.50382C52.8988 8.50382 53.4015 8.60057 53.8284 8.79401C54.2549 8.98601 54.6086 9.24985 54.8876 9.58403C55.166 9.91816 55.3718 10.3124 55.5008 10.7698C55.6488 11.2094 55.7235 11.6565 55.7235 12.1665C55.7235 12.6765 55.6597 13.15 55.5287 13.5897C55.3982 14.0294 55.1939 14.4148 54.9155 14.749C54.6554 15.0817 54.3112 15.3456 53.8842 15.539Z",
|
|
7747
|
+
fill: "#00040A"
|
|
7753
7748
|
}), /*#__PURE__*/React__default.createElement("path", {
|
|
7754
|
-
id: "Vector_4",
|
|
7755
7749
|
"fill-rule": "evenodd",
|
|
7756
7750
|
"clip-rule": "evenodd",
|
|
7757
|
-
d: "
|
|
7758
|
-
fill: "#
|
|
7751
|
+
d: "M40.556 18.9862C40.6308 19.2662 40.7226 19.4773 40.8347 19.618L40.8332 19.6195H44.4832V19.4875C44.1484 19.2603 43.9818 18.6358 43.9818 17.617V10.7388C43.9818 9.15706 43.5068 7.93592 42.5601 7.07541C41.632 6.19731 40.0998 5.75757 37.9634 5.75757C36.9232 5.75757 36.0215 5.88067 35.2601 6.12697C34.4987 6.37327 33.8664 6.69724 33.365 7.10181C32.8621 7.50644 32.4821 7.97991 32.2221 8.52527C31.962 9.05299 31.8234 9.61589 31.8047 10.2126H35.176C35.2321 9.56169 35.4828 9.08816 35.9281 8.78911C36.3735 8.47246 37.0415 8.31414 37.9338 8.31414C38.7325 8.31414 39.3258 8.46369 39.7167 8.76275C40.1262 9.04418 40.3302 9.41363 40.3302 9.92227C40.3302 10.431 40.0515 10.774 39.494 10.9499C38.9366 11.1258 38.063 11.2929 36.8749 11.4512C36.076 11.5568 35.3239 11.7063 34.6186 11.8999C33.9318 12.0758 33.3277 12.3293 32.8076 12.6636C32.2875 12.9978 31.8795 13.4186 31.582 13.9287C31.2846 14.4374 31.1367 15.0619 31.1367 15.7992C31.1367 17.1508 31.6008 18.1799 32.5304 18.8821C33.4584 19.5843 34.6575 19.9361 36.1243 19.9361C36.7378 19.9361 37.2673 19.8833 37.7126 19.7778C38.1595 19.6898 38.5395 19.5667 38.8556 19.4084C39.1904 19.25 39.4691 19.0654 39.6918 18.8542C39.9332 18.627 40.148 18.3808 40.3334 18.1169H40.3894C40.4252 18.4159 40.4813 18.7047 40.556 18.9862ZM38.4663 17.2197C38.0568 17.3605 37.5834 17.4308 37.0446 17.4308L37.0462 17.4323C36.3766 17.4323 35.8378 17.3092 35.4298 17.0629C35.0203 16.799 34.8163 16.3519 34.8163 15.7186C34.8163 15.0853 35.0577 14.6294 35.5404 14.348C36.0247 14.0679 36.7674 13.8217 37.7703 13.6106C38.253 13.505 38.7263 13.3995 39.1904 13.294C39.6731 13.1708 40.0811 13.0125 40.4159 12.819V14.8478C40.4159 15.1821 40.3411 15.506 40.1932 15.8227C40.0453 16.1203 39.8226 16.393 39.5252 16.6392C39.2464 16.8679 38.893 17.0614 38.4663 17.2197Z",
|
|
7752
|
+
fill: "#00040A"
|
|
7759
7753
|
}), /*#__PURE__*/React__default.createElement("path", {
|
|
7760
|
-
|
|
7761
|
-
|
|
7762
|
-
fill: "#26292E"
|
|
7754
|
+
d: "M71.249 0.778564H67.5176V19.6833H71.249V0.778564Z",
|
|
7755
|
+
fill: "#00040A"
|
|
7763
7756
|
}), /*#__PURE__*/React__default.createElement("path", {
|
|
7764
|
-
id: "Vector_6",
|
|
7765
7757
|
"fill-rule": "evenodd",
|
|
7766
7758
|
"clip-rule": "evenodd",
|
|
7767
|
-
d: "
|
|
7768
|
-
fill: "#
|
|
7759
|
+
d: "M80.2319 20.0541C79.0452 20.0541 77.9886 19.869 77.063 19.5003C76.1543 19.1302 75.3851 18.6293 74.7564 17.9948C74.1257 17.3441 73.644 16.5774 73.3102 15.6976C72.9948 14.8178 72.8379 13.8762 72.8379 12.8716C72.8379 11.8669 73.0043 10.9357 73.3381 10.072C73.6908 9.19218 74.172 8.4343 74.7828 7.80126C75.4135 7.16817 76.1543 6.66585 77.0072 6.2957C77.8785 5.92555 78.832 5.74048 79.8697 5.74048C81.0195 5.74048 82.0289 5.94319 82.8987 6.34711C83.7705 6.7349 84.5018 7.28863 85.0952 8.01129C85.6885 8.73246 86.1329 9.59611 86.4298 10.5993C86.7451 11.5849 86.9021 12.685 86.9021 13.8998H76.5613C76.7088 14.9559 77.0799 15.7828 77.6732 16.382C78.2855 16.9799 79.1274 17.2795 80.2025 17.2795C80.9433 17.2795 81.5366 17.1297 81.981 16.83C82.4249 16.5304 82.7497 16.1265 82.9535 15.6153H86.6784C86.5479 16.2146 86.3067 16.786 85.956 17.3324C85.6217 17.8611 85.1779 18.3267 84.6214 18.7322C84.0839 19.1375 83.4442 19.4533 82.7034 19.6825C81.9621 19.9293 81.1376 20.0526 80.2304 20.0526L80.2319 20.0541ZM79.926 8.5151C78.9257 8.5151 78.1659 8.77949 77.6468 9.30676C77.1282 9.8179 76.785 10.5215 76.6186 11.4189H82.9565C82.9007 10.5568 82.5943 9.86049 82.0383 9.33322C81.5008 8.78681 80.7973 8.5151 79.926 8.5151Z",
|
|
7760
|
+
fill: "#00040A"
|
|
7769
7761
|
}), /*#__PURE__*/React__default.createElement("path", {
|
|
7770
|
-
id: "Vector_7",
|
|
7771
7762
|
"fill-rule": "evenodd",
|
|
7772
7763
|
"clip-rule": "evenodd",
|
|
7773
|
-
d: "
|
|
7774
|
-
fill: "#
|
|
7764
|
+
d: "M92.092 6.10953H88.4453V24.0376H92.23V18.0879H92.2863C92.6953 18.6678 93.2333 19.132 93.9004 19.4834C94.569 19.8349 95.4039 20.0106 96.4053 20.0106C97.3135 20.0106 98.1484 19.8437 98.9086 19.5098C99.6689 19.1759 100.319 18.7015 100.857 18.0879C101.413 17.4744 101.839 16.7275 102.136 15.8504C102.434 14.9557 102.581 13.9306 102.581 12.8763C102.581 11.8219 102.434 10.857 102.136 9.97981C101.858 9.10266 101.441 8.35583 100.885 7.74227C100.347 7.10968 99.6968 6.61912 98.9365 6.26765C98.1763 5.91619 97.3598 5.74048 96.3774 5.74048C95.3945 5.74048 94.5595 5.93377 93.8735 6.32036C93.2049 6.70695 92.639 7.19901 92.1757 7.79498H92.092V6.10953ZM97.8794 15.9822C97.3224 16.6836 96.5622 17.0351 95.5982 17.0351L95.5997 17.038C94.4678 17.038 93.6065 16.6689 93.0121 15.9324C92.4367 15.1943 92.1493 14.2118 92.1493 12.9832C92.1493 12.3857 92.2036 11.8249 92.3157 11.2977C92.4462 10.753 92.6405 10.2888 92.9006 9.90219C93.1785 9.51705 93.5223 9.20952 93.9298 8.9811C94.3557 8.75269 94.8659 8.63845 95.4597 8.63845C96.6275 8.63845 97.4624 9.04263 97.9631 9.84948C98.4827 10.6563 98.7422 11.7019 98.7422 12.9817C98.7422 14.2615 98.4543 15.2632 97.8794 15.9822Z",
|
|
7765
|
+
fill: "#00040A"
|
|
7775
7766
|
}), /*#__PURE__*/React__default.createElement("path", {
|
|
7776
|
-
id: "Vector_8",
|
|
7777
7767
|
"fill-rule": "evenodd",
|
|
7778
7768
|
"clip-rule": "evenodd",
|
|
7779
|
-
d: "
|
|
7780
|
-
fill: "#
|
|
7769
|
+
d: "M113.12 19.6305C113.009 19.4898 112.916 19.2787 112.841 18.9986C112.766 18.7172 112.71 18.4284 112.675 18.1294H112.619C112.433 18.3933 112.22 18.6395 111.977 18.8667C111.754 19.0778 111.475 19.2625 111.141 19.4209C110.825 19.5792 110.445 19.7023 109.998 19.7903C109.553 19.8958 109.023 19.9486 108.41 19.9486C106.943 19.9486 105.744 19.5968 104.816 18.8946C103.888 18.1924 103.422 17.1633 103.422 15.8117C103.422 15.0744 103.571 14.4498 103.867 13.9412C104.165 13.431 104.573 13.0103 105.093 12.6761C105.613 12.3418 106.217 12.0882 106.904 11.9123C107.609 11.7188 108.361 11.5693 109.16 11.4637C110.35 11.3054 111.222 11.1383 111.779 10.9624C112.337 10.7865 112.615 10.4435 112.615 9.93477C112.615 9.42608 112.412 9.05668 112.002 8.7752C111.611 8.47614 111.018 8.32664 110.219 8.32664C109.327 8.32664 108.659 8.48496 108.213 8.80161C107.768 9.10067 107.517 9.57414 107.461 10.225H104.09C104.109 9.62839 104.247 9.06549 104.507 8.53772C104.767 7.99241 105.149 7.51889 105.65 7.11431C106.152 6.70969 106.784 6.38572 107.545 6.13947C108.307 5.89317 109.208 5.77002 110.248 5.77002C112.385 5.77002 113.917 6.20981 114.847 7.08791C115.794 7.94842 116.267 9.16956 116.267 10.7513V17.6295C116.267 18.6483 116.433 19.2728 116.769 19.5V19.6319H113.118L113.12 19.6305ZM109.331 17.4433C109.87 17.4433 110.344 17.3729 110.752 17.2322C111.178 17.0739 111.532 16.8804 111.81 16.6517C112.108 16.4054 112.33 16.1328 112.478 15.8352C112.626 15.5185 112.701 15.1946 112.701 14.8603V12.8315C112.366 13.025 111.958 13.1833 111.475 13.3064C111.012 13.412 110.538 13.5175 110.054 13.6231C109.051 13.8342 108.309 14.0804 107.824 14.3604C107.342 14.6419 107.1 15.0978 107.1 15.7311C107.1 16.3644 107.304 16.8115 107.714 17.0754C108.122 17.3216 108.66 17.4448 109.33 17.4448L109.331 17.4433Z",
|
|
7770
|
+
fill: "#00040A"
|
|
7781
7771
|
}), /*#__PURE__*/React__default.createElement("path", {
|
|
7782
|
-
|
|
7783
|
-
|
|
7784
|
-
fill: "#26292E"
|
|
7772
|
+
d: "M122.155 8.26611H122.071V6.10978H118.435V19.5903H122.211V13.0204C122.211 11.6023 122.61 10.576 123.406 9.94588C124.202 9.31583 125.219 9.06141 126.459 9.18421H126.543V6.05717C126.338 5.98698 126.043 5.9519 125.654 5.9519C124.821 5.9519 124.136 6.14485 123.6 6.53079C123.063 6.91678 122.58 7.49567 122.155 8.26611Z",
|
|
7773
|
+
fill: "#00040A"
|
|
7785
7774
|
}), /*#__PURE__*/React__default.createElement("path", {
|
|
7786
|
-
|
|
7787
|
-
|
|
7788
|
-
fill: "#26292E"
|
|
7775
|
+
d: "M127.246 6.10162H129.212V1.88696H132.9V6.10162H135.341V8.47272H132.9V15.6388C132.9 16.1488 133.03 16.499 133.289 16.6925C133.548 16.8859 133.89 16.9827 134.315 16.9827H135.036C135.166 16.9827 135.294 16.9738 135.424 16.9563V19.5911C135.24 19.6087 135.036 19.6175 134.814 19.6175C134.611 19.6351 134.362 19.6439 134.065 19.6439H133.067C132.606 19.6439 132.144 19.6 131.681 19.512C131.238 19.4065 130.83 19.2307 130.461 18.9845C130.091 18.7383 129.787 18.4041 129.547 17.9836C129.326 17.5615 129.214 17.0354 129.214 16.4023V8.47272H127.246V6.10162Z",
|
|
7776
|
+
fill: "#00040A"
|
|
7789
7777
|
}), /*#__PURE__*/React__default.createElement("path", {
|
|
7790
|
-
|
|
7791
|
-
|
|
7792
|
-
|
|
7778
|
+
d: "M140.874 7.95873H140.79L140.788 7.95729V6.11043H137.073V19.649H140.872V11.9695C140.872 11.0373 141.142 10.29 141.682 9.72628C142.241 9.1464 142.977 8.85571 143.777 8.85571C144.578 8.85571 145.193 9.08328 145.621 9.54131C146.048 9.99789 146.262 10.5969 146.262 11.3353V19.649H150.061V10.8083C150.061 10.0698 149.939 9.39156 149.698 8.77645C149.456 8.15985 149.12 7.63282 148.692 7.19243C148.264 6.73435 147.743 6.38348 147.129 6.13688C146.534 5.8726 145.863 5.74048 145.118 5.74048C144.131 5.74048 143.294 5.92545 142.605 6.2954C141.936 6.66535 141.358 7.22033 140.874 7.95873Z",
|
|
7779
|
+
fill: "#00040A"
|
|
7780
|
+
}), /*#__PURE__*/React__default.createElement("path", {
|
|
7781
|
+
"fill-rule": "evenodd",
|
|
7782
|
+
"clip-rule": "evenodd",
|
|
7783
|
+
d: "M158.817 19.9865C157.632 19.9865 156.576 19.8024 155.649 19.4355C154.74 19.067 153.971 18.5685 153.342 17.937C152.712 17.2894 152.23 16.5263 151.898 15.6506C151.583 14.775 151.426 13.8379 151.426 12.8379C151.426 11.838 151.592 10.9112 151.926 10.0516C152.279 9.17594 152.76 8.42159 153.37 7.79149C154.001 7.16144 154.742 6.66147 155.595 6.29306C156.466 5.92471 157.419 5.74048 158.457 5.74048C159.606 5.74048 160.616 5.94224 161.488 6.34423C162.359 6.73017 163.09 7.28131 163.682 8.00058C164.275 8.71836 164.721 9.57792 165.016 10.5764C165.332 11.5574 165.49 12.6523 165.49 13.8612H155.15C155.298 14.9124 155.669 15.7354 156.263 16.3318C156.873 16.9269 157.716 17.2251 158.791 17.2251C159.532 17.2251 160.125 17.076 160.569 16.7777C161.015 16.4795 161.338 16.0775 161.543 15.5688H165.266C165.137 16.1652 164.897 16.7339 164.544 17.2777C164.21 17.804 163.766 18.2674 163.21 18.6708C162.672 19.0744 162.034 19.3887 161.293 19.6167C160.551 19.8623 159.727 19.9851 158.819 19.9851L158.817 19.9865ZM158.511 8.502C157.511 8.502 156.752 8.76514 156.233 9.28993C155.714 9.79867 155.371 10.4989 155.205 11.3922H161.542C161.486 10.534 161.18 9.84106 160.624 9.31628C160.086 8.77246 159.383 8.502 158.511 8.502Z",
|
|
7784
|
+
fill: "#00040A"
|
|
7785
|
+
}), /*#__PURE__*/React__default.createElement("path", {
|
|
7786
|
+
d: "M170.755 8.26611H170.671V6.10978H167.034V19.5903H170.811V13.0204C170.811 11.6023 171.208 10.576 172.005 9.94588C172.801 9.31583 173.818 9.06141 175.058 9.18421H175.142V6.05717C174.939 5.98698 174.642 5.9519 174.253 5.9519C173.421 5.9519 172.735 6.14485 172.198 6.53079C171.662 6.91678 171.181 7.49567 170.755 8.26611Z",
|
|
7787
|
+
fill: "#00040A"
|
|
7793
7788
|
})), /*#__PURE__*/React__default.createElement("defs", null, /*#__PURE__*/React__default.createElement("clipPath", {
|
|
7794
|
-
id: "
|
|
7789
|
+
id: "clip0_87_2425"
|
|
7795
7790
|
}, /*#__PURE__*/React__default.createElement("rect", {
|
|
7796
7791
|
width: "175.161",
|
|
7797
7792
|
height: "24.9091",
|
|
7798
|
-
fill: "white"
|
|
7799
|
-
transform: "translate(0.944336 0.545471)"
|
|
7793
|
+
fill: "white"
|
|
7800
7794
|
})))));
|
|
7801
7795
|
}
|
|
7802
7796
|
|
|
@@ -8849,7 +8843,7 @@ const HeaderCell = ({
|
|
|
8849
8843
|
}, /*#__PURE__*/React__default.createElement(Title, {
|
|
8850
8844
|
size: "base",
|
|
8851
8845
|
weight: "bold",
|
|
8852
|
-
text: isYearlyOrMonthly === 'yearly' ?
|
|
8846
|
+
text: isYearlyOrMonthly === 'yearly' ? `${cmsContent.Currency || '$'}${yearlyPrice}` : `${cmsContent.Currency || '$'}${monthlyPrice}`
|
|
8853
8847
|
}), /*#__PURE__*/React__default.createElement(Text, {
|
|
8854
8848
|
size: "sm",
|
|
8855
8849
|
text: isYearlyOrMonthly === 'yearly' ? `/ ${cmsContent.Year}` : `/ ${cmsContent.Month}`
|
|
@@ -9814,7 +9808,7 @@ const LateralMenu = ({
|
|
|
9814
9808
|
}), content);
|
|
9815
9809
|
};
|
|
9816
9810
|
|
|
9817
|
-
var css_248z$o = ".LogoSlider-module_logoSlider__DzSpR .LogoSlider-module_partner__s7oA6{height:2rem;width:
|
|
9811
|
+
var css_248z$o = ".LogoSlider-module_logoSlider__DzSpR .LogoSlider-module_partner__s7oA6{height:2rem;width:20rem}";
|
|
9818
9812
|
var styles$o = {"logoSlider":"LogoSlider-module_logoSlider__DzSpR","partner":"LogoSlider-module_partner__s7oA6"};
|
|
9819
9813
|
styleInject(css_248z$o);
|
|
9820
9814
|
|
|
@@ -9829,7 +9823,10 @@ const partnersSVGs = {
|
|
|
9829
9823
|
'8': Partner8,
|
|
9830
9824
|
'9': Partner9
|
|
9831
9825
|
};
|
|
9832
|
-
const LogoSlider = (
|
|
9826
|
+
const LogoSlider = ({
|
|
9827
|
+
logoWidth = 15,
|
|
9828
|
+
logoHeight = 2.5
|
|
9829
|
+
}) => {
|
|
9833
9830
|
const partners = Object.keys(partnersSVGs);
|
|
9834
9831
|
return /*#__PURE__*/React__default.createElement("div", {
|
|
9835
9832
|
className: styles$o.logoSlider
|
|
@@ -9839,7 +9836,10 @@ const LogoSlider = () => {
|
|
|
9839
9836
|
const PartnerSVG = partnersSVGs[partner];
|
|
9840
9837
|
return /*#__PURE__*/React__default.createElement(PartnerSVG, {
|
|
9841
9838
|
key: `partner-${index}`,
|
|
9842
|
-
|
|
9839
|
+
style: {
|
|
9840
|
+
width: `${logoWidth}rem`,
|
|
9841
|
+
height: `${logoHeight}rem`
|
|
9842
|
+
}
|
|
9843
9843
|
});
|
|
9844
9844
|
})));
|
|
9845
9845
|
};
|
|
@@ -10799,7 +10799,7 @@ const PopoverBeta = ({
|
|
|
10799
10799
|
});
|
|
10800
10800
|
};
|
|
10801
10801
|
|
|
10802
|
-
var css_248z$x = ".PricingCard-module_pricingCard__jSupc{background-color:#fff;border:1px solid #d5d5d6;border-radius:.5rem;box-shadow:0 4px 8px 3px rgba(0,0,0,.078);box-shadow:0 1px 3px 0 rgba(0,0,0,.149);
|
|
10802
|
+
var css_248z$x = ".PricingCard-module_pricingCard__jSupc{background-color:#fff;border:1px solid #d5d5d6;border-radius:.5rem;box-shadow:0 4px 8px 3px rgba(0,0,0,.078);box-shadow:0 1px 3px 0 rgba(0,0,0,.149);position:relative;width:22.75rem}.PricingCard-module_pricingCard__jSupc.PricingCard-module_dark__wehVh{background:linear-gradient(180deg,#4b4e52,#26292e),linear-gradient(0deg,#00040a,#00040a)}.PricingCard-module_pricingCard__jSupc.PricingCard-module_highlighted__J29RS{border:1px solid #07f;border-radius:0 0 .5rem .5rem;border-top:none}.PricingCard-module_pricingCard__jSupc.PricingCard-module_highlighted__J29RS .PricingCard-module_highlightMessage__LYZRF{align-items:center;background:linear-gradient(135.07deg,#07f,#9024f6 98.4%);border:1px solid #07f;border-bottom:none;border-radius:.5rem .5rem 0 0;box-sizing:border-box;display:flex;height:2.5rem;justify-content:center;left:-1px;position:absolute;top:-2.5rem;width:calc(100% + 2px)}.PricingCard-module_pricingCard__jSupc .PricingCard-module_mainContent__W22qI{display:flex;flex-direction:column;gap:1rem;padding:1.5rem}.PricingCard-module_pricingCard__jSupc .PricingCard-module_mainContent__W22qI .PricingCard-module_header__Z7H-L .PricingCard-module_description__2Gn2y{min-height:4.8rem}.PricingCard-module_pricingCard__jSupc .PricingCard-module_mainContent__W22qI .PricingCard-module_pricing__-0cI1{display:flex;flex-direction:column}.PricingCard-module_pricingCard__jSupc .PricingCard-module_mainContent__W22qI .PricingCard-module_pricing__-0cI1 .PricingCard-module_lineThrough__9zaav{text-decoration:line-through}.PricingCard-module_pricingCard__jSupc .PricingCard-module_mainContent__W22qI .PricingCard-module_pricing__-0cI1 .PricingCard-module_price__oEUYG .PricingCard-module_amount__1SMoQ{align-items:center;display:flex;gap:.5rem}.PricingCard-module_pricingCard__jSupc .PricingCard-module_mainContent__W22qI .PricingCard-module_pricing__-0cI1 .PricingCard-module_interviews__vFA04{margin-bottom:1rem}.PricingCard-module_pricingCard__jSupc .PricingCard-module_mainContent__W22qI .PricingCard-module_features__LmzjL{display:flex;flex-direction:column;gap:.5rem}.PricingCard-module_pricingCard__jSupc .PricingCard-module_mainContent__W22qI .PricingCard-module_features__LmzjL .PricingCard-module_featuresList__1PyxA{display:flex;flex-direction:column;gap:.15rem;list-style:none;margin:0;padding:0}.PricingCard-module_pricingCard__jSupc .PricingCard-module_mainContent__W22qI .PricingCard-module_features__LmzjL .PricingCard-module_featuresList__1PyxA .PricingCard-module_feature__X0CDa{align-items:center;display:flex;gap:.5rem;margin-bottom:.5rem}.PricingCard-module_pricingCard__jSupc .PricingCard-module_mainContent__W22qI .PricingCard-module_features__LmzjL .PricingCard-module_featuresList__1PyxA .PricingCard-module_feature__X0CDa .PricingCard-module_icon__DAwOs{fill:#5cbb65}.PricingCard-module_pricingCard__jSupc .PricingCard-module_mainContent__W22qI .PricingCard-module_features__LmzjL .PricingCard-module_featuresList__1PyxA .PricingCard-module_feature__X0CDa .PricingCard-module_tooltipButton__Wh2Ts{margin-left:auto}";
|
|
10803
10803
|
var styles$x = {"pricingCard":"PricingCard-module_pricingCard__jSupc","dark":"PricingCard-module_dark__wehVh","highlighted":"PricingCard-module_highlighted__J29RS","highlightMessage":"PricingCard-module_highlightMessage__LYZRF","mainContent":"PricingCard-module_mainContent__W22qI","header":"PricingCard-module_header__Z7H-L","description":"PricingCard-module_description__2Gn2y","pricing":"PricingCard-module_pricing__-0cI1","lineThrough":"PricingCard-module_lineThrough__9zaav","price":"PricingCard-module_price__oEUYG","amount":"PricingCard-module_amount__1SMoQ","interviews":"PricingCard-module_interviews__vFA04","features":"PricingCard-module_features__LmzjL","featuresList":"PricingCard-module_featuresList__1PyxA","feature":"PricingCard-module_feature__X0CDa","icon":"PricingCard-module_icon__DAwOs","tooltipButton":"PricingCard-module_tooltipButton__Wh2Ts"};
|
|
10804
10804
|
styleInject(css_248z$x);
|
|
10805
10805
|
|
|
@@ -10818,7 +10818,6 @@ const PricingCard = ({
|
|
|
10818
10818
|
isHighlighted = false,
|
|
10819
10819
|
highlightMessage = '',
|
|
10820
10820
|
onClick,
|
|
10821
|
-
currency = '$',
|
|
10822
10821
|
tier = 1
|
|
10823
10822
|
}) => {
|
|
10824
10823
|
//Map the tier to the button text and variant
|
|
@@ -10870,7 +10869,7 @@ const PricingCard = ({
|
|
|
10870
10869
|
}, /*#__PURE__*/React__default.createElement(Text, {
|
|
10871
10870
|
size: "base",
|
|
10872
10871
|
weight: "bold",
|
|
10873
|
-
text: isYearlyOrMonthly === 'yearly' && tier !== 4 ?
|
|
10872
|
+
text: isYearlyOrMonthly === 'yearly' && tier !== 4 ? `${cmsContent.Currency || '$'}${monthlyPrice} / ${cmsContent.Month}` : '-',
|
|
10874
10873
|
color: isYearlyOrMonthly === 'yearly' && tier !== 4 ? colors.neutral_800 : 'transparent',
|
|
10875
10874
|
className: styles$x.lineThrough
|
|
10876
10875
|
}), /*#__PURE__*/React__default.createElement("div", {
|
|
@@ -10886,7 +10885,7 @@ const PricingCard = ({
|
|
|
10886
10885
|
size: "xxxl",
|
|
10887
10886
|
weight: "bold",
|
|
10888
10887
|
text: `
|
|
10889
|
-
${
|
|
10888
|
+
${cmsContent.Currency || '$'}${isYearlyOrMonthly === 'yearly' ? yearlyPrice : monthlyPrice}
|
|
10890
10889
|
`,
|
|
10891
10890
|
color: isDark ? '#fff' : ''
|
|
10892
10891
|
}), /*#__PURE__*/React__default.createElement(Text, {
|