diy-template-components 2.0.46 → 2.0.48
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/build/index.es.js +68 -96
- package/build/index.es.js.map +1 -1
- package/build/index.js +68 -96
- package/build/index.js.map +1 -1
- package/package.json +1 -1
package/build/index.js
CHANGED
|
@@ -1099,11 +1099,12 @@ function OptionList({
|
|
|
1099
1099
|
const downloadAppText = countryCode === 'KR' ? '앱다운로드' : 'Download App';
|
|
1100
1100
|
const renderDownloadAppButton = () => {
|
|
1101
1101
|
return /*#__PURE__*/React__default["default"].createElement(React__default["default"].Fragment, null, apkURL && /*#__PURE__*/React__default["default"].createElement("a", {
|
|
1102
|
+
download: true,
|
|
1102
1103
|
href: headerData?.apkURL,
|
|
1103
1104
|
target: "_blank",
|
|
1104
1105
|
className: classes.socialBtnItems,
|
|
1105
1106
|
onClick: () => {
|
|
1106
|
-
if (typeof onDownloadAppTriggered ==
|
|
1107
|
+
if (typeof onDownloadAppTriggered == "function") {
|
|
1107
1108
|
onDownloadAppTriggered(isAndroidDelisted, headerData?.apkURL);
|
|
1108
1109
|
}
|
|
1109
1110
|
}
|
|
@@ -1432,7 +1433,7 @@ function MobileHeader({
|
|
|
1432
1433
|
onClick: () => {
|
|
1433
1434
|
let url = getAppDownloadLink(apkURL, iosDownloadLink);
|
|
1434
1435
|
window.open(url, '_blank');
|
|
1435
|
-
if (
|
|
1436
|
+
if (!header?.iosUrl && typeof onDownloadAppTriggered == 'function') {
|
|
1436
1437
|
onDownloadAppTriggered(header?.isAndroidDelisted, header?.apkURL);
|
|
1437
1438
|
}
|
|
1438
1439
|
}
|
|
@@ -1467,7 +1468,7 @@ function MobileHeader({
|
|
|
1467
1468
|
onClick: () => {
|
|
1468
1469
|
let url = getAppDownloadLink(apkURL, iosDownloadLink);
|
|
1469
1470
|
window.open(url, '_blank');
|
|
1470
|
-
if (
|
|
1471
|
+
if (!header?.iosUrl && typeof onDownloadAppTriggered == 'function') {
|
|
1471
1472
|
onDownloadAppTriggered(header?.isAndroidDelisted, header?.apkURL);
|
|
1472
1473
|
}
|
|
1473
1474
|
}
|
|
@@ -1563,13 +1564,13 @@ function Header({
|
|
|
1563
1564
|
header: data,
|
|
1564
1565
|
isTutorWebsite: isTutorWebsite,
|
|
1565
1566
|
isLandingPage: isLandingPage,
|
|
1566
|
-
onDownloadAppTriggered: extraProps
|
|
1567
|
+
onDownloadAppTriggered: extraProps.DownloadAppButtonTriggered
|
|
1567
1568
|
}) : /*#__PURE__*/React__default["default"].createElement(DesktopHeader, {
|
|
1568
1569
|
navData: filterHiddenNavs(),
|
|
1569
1570
|
header: data,
|
|
1570
1571
|
isTutorWebsite: isTutorWebsite,
|
|
1571
1572
|
isLandingPage: isLandingPage,
|
|
1572
|
-
onDownloadAppTriggered: extraProps
|
|
1573
|
+
onDownloadAppTriggered: extraProps.DownloadAppButtonTriggered
|
|
1573
1574
|
});
|
|
1574
1575
|
}
|
|
1575
1576
|
|
|
@@ -1608,6 +1609,7 @@ const useSectionStyles$9 = createUseStyles(theme => ({
|
|
|
1608
1609
|
|
|
1609
1610
|
// '& img': { maxHeight: '55px' }
|
|
1610
1611
|
},
|
|
1612
|
+
|
|
1611
1613
|
upperContainerItem1Img: {
|
|
1612
1614
|
maxHeight: '55px',
|
|
1613
1615
|
paddingBottom: '84px',
|
|
@@ -2034,6 +2036,7 @@ const mobilePadding = {
|
|
|
2034
2036
|
// 24px
|
|
2035
2037
|
medium: baseFactor * 6 // 48px
|
|
2036
2038
|
};
|
|
2039
|
+
|
|
2037
2040
|
const padding = {
|
|
2038
2041
|
minute: baseFactor * 2,
|
|
2039
2042
|
// 16px
|
|
@@ -2499,6 +2502,7 @@ const useSectionStyles$8 = createUseStyles(theme => ({
|
|
|
2499
2502
|
// }
|
|
2500
2503
|
// }
|
|
2501
2504
|
},
|
|
2505
|
+
|
|
2502
2506
|
sectionContainer: {
|
|
2503
2507
|
margin: '0 auto',
|
|
2504
2508
|
maxWidth: ({
|
|
@@ -3068,6 +3072,7 @@ const useSectionStyles$7 = createUseStyles(theme => ({
|
|
|
3068
3072
|
// padding: '0'
|
|
3069
3073
|
}
|
|
3070
3074
|
},
|
|
3075
|
+
|
|
3071
3076
|
'&:nth-child(2n+1)': {
|
|
3072
3077
|
marginRight: '0',
|
|
3073
3078
|
'& $contentText': {
|
|
@@ -3077,6 +3082,7 @@ const useSectionStyles$7 = createUseStyles(theme => ({
|
|
|
3077
3082
|
}
|
|
3078
3083
|
}
|
|
3079
3084
|
},
|
|
3085
|
+
|
|
3080
3086
|
contentNumber: {
|
|
3081
3087
|
width: '100%',
|
|
3082
3088
|
padding: '24px',
|
|
@@ -3469,6 +3475,7 @@ const useSectionStyles$5 = createUseStyles(theme => {
|
|
|
3469
3475
|
// }
|
|
3470
3476
|
// }
|
|
3471
3477
|
},
|
|
3478
|
+
|
|
3472
3479
|
sectionContainer: {
|
|
3473
3480
|
margin: '0 auto',
|
|
3474
3481
|
maxWidth: ({
|
|
@@ -3482,6 +3489,7 @@ const useSectionStyles$5 = createUseStyles(theme => {
|
|
|
3482
3489
|
|
|
3483
3490
|
// padding: `${theme?.spacing?.padding?.regular}px ${theme?.spacing?.padding?.medium}px 0px ${theme?.spacing?.padding?.medium}px`
|
|
3484
3491
|
},
|
|
3492
|
+
|
|
3485
3493
|
imageContainerDiv: {
|
|
3486
3494
|
width: '50%',
|
|
3487
3495
|
position: 'relative'
|
|
@@ -3553,6 +3561,7 @@ const useSectionStyles$5 = createUseStyles(theme => {
|
|
|
3553
3561
|
width: '100%'
|
|
3554
3562
|
// padding: `${theme?.spacing?.padding?.medium}px ${theme?.spacing?.padding?.regular}px`
|
|
3555
3563
|
},
|
|
3564
|
+
|
|
3556
3565
|
imageContainer: {
|
|
3557
3566
|
height: 'unset !important',
|
|
3558
3567
|
'& img': {
|
|
@@ -4559,6 +4568,7 @@ const useVideoTestimonialStyles = createUseStyles(theme => {
|
|
|
4559
4568
|
fontFamily: theme?.typography?.fontFamily
|
|
4560
4569
|
// boxSizing: 'border-box'
|
|
4561
4570
|
},
|
|
4571
|
+
|
|
4562
4572
|
'& h2,& h3,& p': {
|
|
4563
4573
|
marginTop: '0'
|
|
4564
4574
|
}
|
|
@@ -4583,6 +4593,7 @@ const useVideoTestimonialStyles = createUseStyles(theme => {
|
|
|
4583
4593
|
wordBreak: 'break-word'
|
|
4584
4594
|
// marginBottom: '8px'
|
|
4585
4595
|
},
|
|
4596
|
+
|
|
4586
4597
|
videoTestimonialTitle: {
|
|
4587
4598
|
fontSize: theme.typography.fontSize.h2,
|
|
4588
4599
|
// lineHeight: '71px',
|
|
@@ -5023,6 +5034,7 @@ const useSectionStyles$3 = createUseStyles(theme => ({
|
|
|
5023
5034
|
// }
|
|
5024
5035
|
// }
|
|
5025
5036
|
},
|
|
5037
|
+
|
|
5026
5038
|
sectionContainer: {
|
|
5027
5039
|
margin: '0 auto',
|
|
5028
5040
|
maxWidth: ({
|
|
@@ -5380,6 +5392,7 @@ const usePhotoGalleryStyles = createUseStyles(theme => {
|
|
|
5380
5392
|
// }
|
|
5381
5393
|
// }
|
|
5382
5394
|
},
|
|
5395
|
+
|
|
5383
5396
|
sectionContainer: {
|
|
5384
5397
|
margin: '0 auto',
|
|
5385
5398
|
maxWidth: ({
|
|
@@ -5410,6 +5423,7 @@ const usePhotoGalleryStyles = createUseStyles(theme => {
|
|
|
5410
5423
|
position: 'relative',
|
|
5411
5424
|
paddingBottom: '59.83%' // keeping aspect ratio 585x350
|
|
5412
5425
|
},
|
|
5426
|
+
|
|
5413
5427
|
contentRow: {
|
|
5414
5428
|
display: 'grid',
|
|
5415
5429
|
gridTemplateColumns: ({
|
|
@@ -5956,6 +5970,7 @@ const useCourseStyles = createUseStyles(theme => {
|
|
|
5956
5970
|
// }
|
|
5957
5971
|
// }
|
|
5958
5972
|
},
|
|
5973
|
+
|
|
5959
5974
|
sectionContainer: {
|
|
5960
5975
|
margin: '0 auto',
|
|
5961
5976
|
maxWidth: ({
|
|
@@ -5988,6 +6003,7 @@ const useCourseStyles = createUseStyles(theme => {
|
|
|
5988
6003
|
// textAlign: 'center',
|
|
5989
6004
|
// wordBreak: 'break-word'
|
|
5990
6005
|
},
|
|
6006
|
+
|
|
5991
6007
|
slickContainer: {
|
|
5992
6008
|
marginRight: '-20px'
|
|
5993
6009
|
},
|
|
@@ -6035,6 +6051,7 @@ const useCourseStyles = createUseStyles(theme => {
|
|
|
6035
6051
|
justifyContent: 'space-between'
|
|
6036
6052
|
//alignItems: 'center',
|
|
6037
6053
|
},
|
|
6054
|
+
|
|
6038
6055
|
courseCardTags: {
|
|
6039
6056
|
display: 'flex',
|
|
6040
6057
|
justifyContent: 'flex-start',
|
|
@@ -6065,6 +6082,7 @@ const useCourseStyles = createUseStyles(theme => {
|
|
|
6065
6082
|
// whiteSpace: 'nowrap',
|
|
6066
6083
|
// textOverflow: 'ellipsis'
|
|
6067
6084
|
},
|
|
6085
|
+
|
|
6068
6086
|
courseCardDiscount: {
|
|
6069
6087
|
display: 'flex',
|
|
6070
6088
|
justifyContent: 'flex-start',
|
|
@@ -6171,6 +6189,7 @@ const useCourseStyles = createUseStyles(theme => {
|
|
|
6171
6189
|
// whiteSpace: 'nowrap',
|
|
6172
6190
|
// textOverflow: 'ellipsis'
|
|
6173
6191
|
},
|
|
6192
|
+
|
|
6174
6193
|
singleCard: {
|
|
6175
6194
|
margin: '6px 2px'
|
|
6176
6195
|
// width: 'calc(100% - 12px)'
|
|
@@ -6494,8 +6513,7 @@ const useTeamStyles = createUseStyles(theme => {
|
|
|
6494
6513
|
marginBottom: '8px',
|
|
6495
6514
|
color: theme?.colors?.font2,
|
|
6496
6515
|
// wordBreak: 'break-word',
|
|
6497
|
-
position: 'relative'
|
|
6498
|
-
textAlign: 'center'
|
|
6516
|
+
position: 'relative'
|
|
6499
6517
|
},
|
|
6500
6518
|
teamTitle: {
|
|
6501
6519
|
fontSize: theme.typography.fontSize.h2,
|
|
@@ -6504,9 +6522,7 @@ const useTeamStyles = createUseStyles(theme => {
|
|
|
6504
6522
|
letterSpacing: '-3px',
|
|
6505
6523
|
wordBreak: 'break-word',
|
|
6506
6524
|
color: theme?.colors?.font2,
|
|
6507
|
-
position: 'relative'
|
|
6508
|
-
textAlign: 'center',
|
|
6509
|
-
marginBottom: '10px !important'
|
|
6525
|
+
position: 'relative'
|
|
6510
6526
|
},
|
|
6511
6527
|
sliderContainer: {
|
|
6512
6528
|
margin: '0 -20px'
|
|
@@ -6521,71 +6537,47 @@ const useTeamStyles = createUseStyles(theme => {
|
|
|
6521
6537
|
backgroundColor: theme?.palette?.background?.default,
|
|
6522
6538
|
margin: '20px',
|
|
6523
6539
|
width: 'calc(100% - 24px)',
|
|
6524
|
-
|
|
6540
|
+
// height: 'calc(100% - 40px)',
|
|
6541
|
+
border: '3px solid #D8E0F0',
|
|
6542
|
+
borderRadius: theme?.shape?.borderRadius?.regular,
|
|
6543
|
+
padding: theme.spacing.padding.tiny,
|
|
6525
6544
|
boxShadow: theme?.shadows?.primary,
|
|
6526
|
-
minHeight: '
|
|
6545
|
+
minHeight: '320px'
|
|
6527
6546
|
},
|
|
6528
6547
|
imageContainer: {
|
|
6529
6548
|
minWidth: '100%',
|
|
6549
|
+
borderRadius: theme?.shape?.borderRadius?.regular,
|
|
6550
|
+
paddingBottom: '100%',
|
|
6530
6551
|
position: 'relative'
|
|
6531
6552
|
},
|
|
6532
6553
|
image: {
|
|
6533
6554
|
width: '100%',
|
|
6534
|
-
height: '
|
|
6555
|
+
height: '100%',
|
|
6556
|
+
position: 'absolute',
|
|
6557
|
+
borderRadius: '50%',
|
|
6535
6558
|
top: '0',
|
|
6536
6559
|
left: '0',
|
|
6537
|
-
borderRadius: '
|
|
6560
|
+
borderRadius: '50%',
|
|
6538
6561
|
objectFit: 'cover'
|
|
6539
6562
|
},
|
|
6540
6563
|
teamDetailsContainer: {
|
|
6541
|
-
textAlign: '
|
|
6542
|
-
|
|
6564
|
+
textAlign: 'center',
|
|
6565
|
+
margin: '20px 0 0'
|
|
6543
6566
|
// overflowWrap: 'break-word'
|
|
6544
6567
|
},
|
|
6568
|
+
|
|
6545
6569
|
teamDetailsHeading: {
|
|
6546
6570
|
fontSize: theme.typography.fontSize.h6,
|
|
6547
6571
|
fontWeight: theme.typography.fontWeight.bold,
|
|
6548
6572
|
lineHeight: '24px',
|
|
6549
6573
|
margin: '0',
|
|
6550
|
-
color: theme?.palette?.font?.default
|
|
6551
|
-
textOverflow: 'ellipsis',
|
|
6552
|
-
overflow: 'hidden',
|
|
6553
|
-
display: '-webkit-box',
|
|
6554
|
-
WebkitLineClamp: 2,
|
|
6555
|
-
WebkitBoxOrient: 'vertical',
|
|
6556
|
-
minHeight: '2.1em'
|
|
6574
|
+
color: theme?.palette?.font?.default
|
|
6557
6575
|
},
|
|
6558
6576
|
teamDetailsSubHeading: {
|
|
6559
|
-
fontSize:
|
|
6560
|
-
lineHeight: '
|
|
6561
|
-
|
|
6562
|
-
|
|
6563
|
-
textOverflow: 'ellipsis',
|
|
6564
|
-
overflow: 'hidden',
|
|
6565
|
-
display: '-webkit-box',
|
|
6566
|
-
WebkitLineClamp: 1,
|
|
6567
|
-
WebkitBoxOrient: 'vertical'
|
|
6568
|
-
},
|
|
6569
|
-
subHeadingWrapper: {
|
|
6570
|
-
display: 'flex',
|
|
6571
|
-
alignItems: 'center',
|
|
6572
|
-
margin: '10px 0px 0px',
|
|
6573
|
-
gap: '6px'
|
|
6574
|
-
},
|
|
6575
|
-
starTag: {
|
|
6576
|
-
display: 'flex',
|
|
6577
|
-
alignItems: 'center',
|
|
6578
|
-
gap: '6px',
|
|
6579
|
-
position: 'absolute',
|
|
6580
|
-
marginTop: '16px',
|
|
6581
|
-
background: 'rgba(22, 118, 243, 1)',
|
|
6582
|
-
borderRadius: '0px 6px 6px 0px',
|
|
6583
|
-
padding: '2px 16px'
|
|
6584
|
-
},
|
|
6585
|
-
starTagText: {
|
|
6586
|
-
color: 'white',
|
|
6587
|
-
fontSize: '12px',
|
|
6588
|
-
lineHeight: '20px'
|
|
6577
|
+
fontSize: theme.typography.fontSize.body,
|
|
6578
|
+
lineHeight: '24px',
|
|
6579
|
+
margin: '6px 0 0',
|
|
6580
|
+
color: theme?.palette?.font?.primary
|
|
6589
6581
|
},
|
|
6590
6582
|
'@media (max-width: 767px)': {
|
|
6591
6583
|
// teamSuperContainer: {
|
|
@@ -6613,10 +6605,11 @@ const useTeamStyles = createUseStyles(theme => {
|
|
|
6613
6605
|
minHeight: '260px'
|
|
6614
6606
|
},
|
|
6615
6607
|
teamDetailsContainer: {
|
|
6616
|
-
|
|
6608
|
+
textAlign: 'center'
|
|
6617
6609
|
// margin: '15px 0 0',
|
|
6618
6610
|
// paddingBottom: '0'
|
|
6619
6611
|
},
|
|
6612
|
+
|
|
6620
6613
|
teamDetailsHeading: {
|
|
6621
6614
|
fontSize: '16px',
|
|
6622
6615
|
lineHeight: '24px',
|
|
@@ -6629,14 +6622,6 @@ const useTeamStyles = createUseStyles(theme => {
|
|
|
6629
6622
|
};
|
|
6630
6623
|
});
|
|
6631
6624
|
|
|
6632
|
-
var RankIcon = "data:image/svg+xml,%3Csvg%20width%3D%2214%22%20height%3D%2214%22%20viewBox%3D%220%200%2014%2014%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M7.00033%209.77085C6.76699%209.77085%206.53366%209.75335%206.31199%209.71252C5.07533%209.53168%203.94949%208.82002%203.23783%207.76419C2.74199%207.01752%202.47949%206.14835%202.47949%205.25002C2.47949%202.75919%204.50949%200.729187%207.00033%200.729187C9.49116%200.729187%2011.5212%202.75919%2011.5212%205.25002C11.5212%206.14835%2011.2587%207.01752%2010.7628%207.76419C10.0453%208.82585%208.91949%209.53169%207.67116%209.71836C7.46699%209.75336%207.23366%209.77085%207.00033%209.77085ZM7.00033%201.60419C4.98783%201.60419%203.35449%203.23752%203.35449%205.25002C3.35449%205.97919%203.56449%206.67919%203.96116%207.27419C4.53866%208.12585%205.44283%208.69752%206.44616%208.84336C6.81949%208.90752%207.18699%208.90752%207.53116%208.84336C8.55199%208.69752%209.45616%208.12002%2010.0337%207.26835C10.4303%206.67335%2010.6403%205.97335%2010.6403%205.24418C10.6462%203.23751%209.01283%201.60419%207.00033%201.60419Z%22%20fill%3D%22%230A1629%22%2F%3E%3Cpath%20d%3D%22M3.77426%2013.1775C3.6926%2013.1775%203.61676%2013.1658%203.5351%2013.1483C3.15593%2013.0608%202.86426%2012.7691%202.77676%2012.39L2.5726%2011.5325C2.56093%2011.48%202.5201%2011.4391%202.46176%2011.4216L1.49926%2011.1941C1.1376%2011.1066%200.851764%2010.8383%200.752597%2010.4825C0.65343%2010.1266%200.752597%209.74163%201.0151%209.47913L3.2901%207.20413C3.38343%207.1108%203.51176%207.06413%203.6401%207.0758C3.76843%207.08746%203.8851%207.15746%203.96093%207.26829C4.53843%208.11996%205.4426%208.69746%206.45176%208.8433C6.8251%208.90746%207.1926%208.90746%207.53676%208.8433C8.5576%208.69746%209.46176%208.11996%2010.0393%207.26829C10.1093%207.15746%2010.2318%207.08746%2010.3601%207.0758C10.4884%207.06413%2010.6168%207.1108%2010.7101%207.20413L12.9851%209.47913C13.2476%209.74163%2013.3468%2010.1266%2013.2476%2010.4825C13.1484%2010.8383%2012.8568%2011.1125%2012.5009%2011.1941L11.5384%2011.4216C11.4859%2011.4333%2011.4451%2011.4741%2011.4276%2011.5325L11.2234%2012.39C11.1359%2012.7691%2010.8443%2013.0608%2010.4651%2013.1483C10.0859%2013.2416%209.6951%2013.1075%209.4501%2012.81L7.0001%209.99246L4.5501%2012.8158C4.35176%2013.0491%204.07176%2013.1775%203.77426%2013.1775ZM3.5526%208.18413L1.63343%2010.1033C1.58093%2010.1558%201.58676%2010.2141%201.59843%2010.2491C1.60426%2010.2783%201.63343%2010.3366%201.70343%2010.3483L2.66593%2010.5758C3.0451%2010.6633%203.33676%2010.955%203.42426%2011.3341L3.62843%2012.1916C3.64593%2012.2675%203.70426%2012.2908%203.73926%2012.3025C3.77426%2012.3083%203.8326%2012.3141%203.8851%2012.2558L6.11926%209.6833C5.1276%209.4908%204.2176%208.95996%203.5526%208.18413ZM7.88093%209.67746L10.1151%2012.2441C10.1676%2012.3083%2010.2318%2012.3083%2010.2668%2012.2966C10.3018%2012.2908%2010.3543%2012.2616%2010.3776%2012.1858L10.5818%2011.3283C10.6693%2010.9491%2010.9609%2010.6575%2011.3401%2010.57L12.3026%2010.3425C12.3726%2010.325%2012.4018%2010.2725%2012.4076%2010.2433C12.4193%2010.2141%2012.4251%2010.15%2012.3726%2010.0975L10.4534%208.17829C9.7826%208.95412%208.87843%209.48496%207.88093%209.67746Z%22%20fill%3D%22%230A1629%22%2F%3E%3Cpath%20d%3D%22M8.1025%207.51932C7.95083%207.51932%207.77%207.47848%207.55417%207.35015L7%207.01764L6.44583%207.34431C5.93833%207.64764%205.60583%207.47264%205.48333%207.38514C5.36083%207.29764%205.09833%207.03515%205.2325%206.45765L5.3725%205.85681L4.90583%205.42514C4.64917%205.16847%204.55583%204.85931%204.64333%204.57931C4.73083%204.29931%204.9875%204.10097%205.34917%204.04264L5.97333%203.93764L6.27083%203.28431C6.44%202.95181%206.7025%202.76514%207%202.76514C7.2975%202.76514%207.56583%202.95765%207.72917%203.29015L8.07333%203.97848L8.65083%204.04848C9.00667%204.10681%209.26334%204.30513%209.35667%204.58513C9.44417%204.86513%209.35083%205.17431%209.09417%205.43097L8.61%205.91515L8.76167%206.45765C8.89584%207.03515%208.63333%207.29764%208.51083%207.38514C8.44667%207.43764%208.30667%207.51932%208.1025%207.51932ZM5.60583%204.89432L6.00833%205.2968C6.195%205.48347%206.28833%205.79848%206.23%206.05515L6.11917%206.52181L6.58583%206.24764C6.83667%206.1018%207.175%206.1018%207.42%206.24764L7.88667%206.52181L7.78167%206.05515C7.72333%205.79265%207.81083%205.48347%207.9975%205.2968L8.4%204.89432L7.8925%204.8068C7.6475%204.76597%207.4025%204.58515%207.29167%204.36348L7%203.79181L6.70833%204.37514C6.60333%204.59098%206.35833%204.77765%206.11333%204.81848L5.60583%204.89432Z%22%20fill%3D%22%230A1629%22%2F%3E%3C%2Fsvg%3E";
|
|
6633
|
-
|
|
6634
|
-
var Book = "data:image/svg+xml,%3Csvg%20width%3D%2214%22%20height%3D%2215%22%20viewBox%3D%220%200%2014%2015%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M7.00035%2013.38C6.82535%2013.38%206.65036%2013.3392%206.50453%2013.2575C5.41369%2012.6625%203.50035%2012.0325%202.29868%2011.875L2.12953%2011.8517C1.36536%2011.7583%200.735352%2011.0408%200.735352%2010.265V3.21831C0.735352%202.75747%200.916188%202.33749%201.24869%202.03416C1.58119%201.73082%202.01283%201.58498%202.46783%201.62582C3.74533%201.73082%205.68201%202.37249%206.77868%203.05499L6.91867%203.13667C6.9595%203.15417%207.04702%203.16%207.08202%203.13667L7.17534%203.07831C7.56617%202.83331%208.05617%202.59414%208.59284%202.3783C8.727%202.3258%208.87868%202.34331%209.00118%202.42498C9.12368%202.50665%209.19369%202.64081%209.19369%202.78664V4.34997L9.67786%204.02915C9.8237%203.92998%2010.0162%203.92998%2010.162%204.02915L10.6462%204.34997V2.12167C10.6462%201.91167%2010.7978%201.73081%2011.002%201.68998C11.1712%201.66081%2011.3404%201.63748%2011.492%201.62582C11.5037%201.62582%2011.5504%201.62582%2011.562%201.62582C11.9879%201.59082%2012.4253%201.73666%2012.752%202.04C13.0845%202.34333%2013.2653%202.76331%2013.2653%203.22414V10.265C13.2653%2011.0466%2012.6354%2011.7583%2011.8654%2011.8517L11.6729%2011.875C10.4712%2012.0325%208.54618%2012.6683%207.47868%2013.2575C7.35035%2013.3392%207.17535%2013.38%207.00035%2013.38ZM2.322%202.48914C2.13533%202.48914%201.96619%202.55331%201.83202%202.67581C1.68619%202.80998%201.60451%203.00247%201.60451%203.21831V10.265C1.60451%2010.6091%201.90202%2010.9416%202.23452%2010.9883L2.40952%2011.0117C3.72202%2011.1867%205.73452%2011.8458%206.90119%2012.4875C6.95369%2012.5108%207.0295%2012.5167%207.05867%2012.505C8.23117%2011.8575%2010.2495%2011.1925%2011.5679%2011.0175L11.7662%2010.9942C12.0987%2010.9533%2012.3962%2010.615%2012.3962%2010.2708V3.22998C12.3962%203.01415%2012.3145%202.82749%2012.1687%202.68749C12.0228%202.55332%2011.8187%202.48915%2011.6087%202.50082C11.5912%202.50082%2011.5387%202.50082%2011.527%202.50082V5.16666C11.527%205.32999%2011.4395%205.47581%2011.2937%205.55164C11.1478%205.62747%2010.9787%205.62165%2010.8445%205.52832L9.92285%204.91583L9.00118%205.52832C8.86701%205.61582%208.69783%205.62747%208.552%205.55164C8.412%205.47581%208.31869%205.32999%208.31869%205.16666V3.45749C8.06785%203.57999%207.84033%203.70249%207.642%203.81916L7.54868%203.87748C7.22785%204.07581%206.77286%204.07581%206.46369%203.88331L6.3237%203.79584C5.33786%203.1775%203.54117%202.58247%202.39784%202.48914C2.36867%202.48914%202.34533%202.48914%202.322%202.48914Z%22%20fill%3D%22%230A1629%22%2F%3E%3Cpath%20d%3D%22M7%2012.8901C6.76083%2012.8901%206.5625%2012.6918%206.5625%2012.4526V3.70264C6.5625%203.46347%206.76083%203.26514%207%203.26514C7.23917%203.26514%207.4375%203.46347%207.4375%203.70264V12.4526C7.4375%2012.6976%207.23917%2012.8901%207%2012.8901Z%22%20fill%3D%22%230A1629%22%2F%3E%3Cpath%20d%3D%22M11.0833%205.60416C10.9958%205.60416%2010.9142%205.58082%2010.8383%205.52832L9.91667%204.91583L8.99499%205.52832C8.86082%205.61582%208.69168%205.62748%208.54585%205.55164C8.40585%205.47581%208.3125%205.32999%208.3125%205.16666V2.78665C8.3125%202.60582%208.42332%202.44831%208.58665%202.37831C9.39165%202.05748%2010.2725%201.80665%2011.0133%201.68998C11.1417%201.66665%2011.27%201.70751%2011.3692%201.78917C11.4683%201.87084%2011.5208%201.99334%2011.5208%202.12168V5.16666C11.5208%205.32999%2011.4333%205.47581%2011.2875%205.55164C11.2233%205.58664%2011.1533%205.60416%2011.0833%205.60416ZM9.91667%203.95332C9.99833%203.95332%2010.0858%203.97665%2010.1617%204.02915L10.6458%204.34998V2.65249C10.1792%202.75749%209.67167%202.90916%209.1875%203.08999V4.34998L9.67168%204.02915C9.74751%203.97665%209.835%203.95332%209.91667%203.95332Z%22%20fill%3D%22%230A1629%22%2F%3E%3C%2Fsvg%3E";
|
|
6635
|
-
|
|
6636
|
-
var Teacher = "data:image/svg+xml,%3Csvg%20width%3D%2214%22%20height%3D%2214%22%20viewBox%3D%220%200%2014%2014%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M7.00569%209.91681C6.50986%209.91681%206.00819%209.78848%205.61736%209.53764L2.10569%207.24514C1.45236%206.81931%201.06152%206.10181%201.06152%205.32014C1.06152%204.53848%201.45236%203.82098%202.10569%203.39514L5.62319%201.10848C6.40486%200.600976%207.62402%200.600976%208.39986%201.11431L11.894%203.40681C12.5415%203.83264%2012.9324%204.55014%2012.9324%205.32598C12.9324%206.10181%2012.5415%206.81931%2011.894%207.24514L8.39986%209.53764C8.00902%209.79431%207.50736%209.91681%207.00569%209.91681ZM7.00569%201.60431C6.67319%201.60431%206.34069%201.68014%206.10152%201.84348L2.58986%204.13014C2.18152%204.39848%201.94236%204.83014%201.94236%205.32014C1.94236%205.81014%202.17569%206.24181%202.58986%206.51014L6.10152%208.80264C6.58569%209.11764%207.43736%209.11764%207.92152%208.80264L11.4157%206.51014C11.824%206.24181%2012.0574%205.81014%2012.0574%205.32014C12.0574%204.83014%2011.824%204.39848%2011.4157%204.13014L7.92152%201.83764C7.67652%201.68598%207.34402%201.60431%207.00569%201.60431Z%22%20fill%3D%22%230A1629%22%2F%3E%3Cpath%20d%3D%22M7.00002%2013.2708C6.74336%2013.2708%206.48086%2013.2358%206.27086%2013.1658L4.41002%2012.5475C3.52919%2012.2558%202.83502%2011.2933%202.84086%2010.3658L2.84669%207.63C2.84669%207.39084%203.04502%207.1925%203.28419%207.1925C3.52336%207.1925%203.72169%207.39084%203.72169%207.63L3.71586%2010.3658C3.71586%2010.9142%204.17086%2011.5442%204.69002%2011.7192L6.55086%2012.3375C6.78419%2012.4133%207.21586%2012.4133%207.44919%2012.3375L9.31002%2011.7192C9.82919%2011.5442%2010.2842%2010.9142%2010.2842%2010.3717V7.66501C10.2842%207.42584%2010.4825%207.22751%2010.7217%207.22751C10.9609%207.22751%2011.1592%207.42584%2011.1592%207.66501V10.3717C11.1592%2011.2992%2010.4709%2012.2558%209.59002%2012.5533L7.72919%2013.1717C7.51919%2013.2358%207.25669%2013.2708%207.00002%2013.2708Z%22%20fill%3D%22%230A1629%22%2F%3E%3Cpath%20d%3D%22M12.4834%209.1875C12.2442%209.1875%2012.0459%208.98917%2012.0459%208.75V5.25C12.0459%205.01083%2012.2442%204.8125%2012.4834%204.8125C12.7226%204.8125%2012.9209%205.01083%2012.9209%205.25V8.75C12.9209%208.98917%2012.7226%209.1875%2012.4834%209.1875Z%22%20fill%3D%22%230A1629%22%2F%3E%3C%2Fsvg%3E";
|
|
6637
|
-
|
|
6638
|
-
var StarIcon = "data:image/svg+xml,%3Csvg%20width%3D%2213%22%20height%3D%2213%22%20viewBox%3D%220%200%2013%2013%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M9.33006%2011.8352C9.06506%2011.8352%208.72506%2011.7502%208.30006%2011.5002L6.80506%2010.6152C6.65006%2010.5252%206.35006%2010.5252%206.20006%2010.6152L4.70006%2011.5002C3.81506%2012.0252%203.29506%2011.8152%203.06006%2011.6452C2.83006%2011.4752%202.47006%2011.0402%202.70506%2010.0402L3.06006%208.50516C3.10006%208.34516%203.02006%208.07016%202.90006%207.95016L1.66006%206.71016C1.04006%206.09016%201.09006%205.56016%201.17506%205.30016C1.26006%205.04016%201.53006%204.58016%202.39006%204.43516L3.98506%204.17016C4.13506%204.14516%204.35006%203.98516%204.41506%203.85016L5.30006%202.08516C5.70006%201.28016%206.22506%201.16016%206.50006%201.16016C6.77506%201.16016%207.30006%201.28016%207.70006%202.08516L8.58006%203.84516C8.65006%203.98016%208.86506%204.14016%209.01506%204.16516L10.6101%204.43016C11.4751%204.57516%2011.7451%205.03516%2011.8251%205.29516C11.9051%205.55516%2011.9551%206.08516%2011.3401%206.70516L10.1001%207.95016C9.98006%208.07016%209.90506%208.34016%209.94006%208.50516L10.2951%2010.0402C10.5251%2011.0402%2010.1701%2011.4752%209.94006%2011.6452C9.81506%2011.7352%209.61506%2011.8352%209.33006%2011.8352ZM6.50006%209.79516C6.74506%209.79516%206.99006%209.85516%207.18506%209.97016L8.68006%2010.8552C9.11506%2011.1152%209.39006%2011.1152%209.49506%2011.0402C9.60006%2010.9652%209.67506%2010.7002%209.56506%2010.2102L9.21006%208.67516C9.11506%208.26016%209.27006%207.72516%209.57006%207.42016L10.8101%206.18016C11.0551%205.93516%2011.1651%205.69516%2011.1151%205.53016C11.0601%205.36516%2010.8301%205.23016%2010.4901%205.17516L8.89506%204.91016C8.51006%204.84516%208.09006%204.53516%207.91506%204.18516L7.03506%202.42516C6.87506%202.10516%206.67506%201.91516%206.50006%201.91516C6.32506%201.91516%206.12506%202.10516%205.97006%202.42516L5.08506%204.18516C4.91006%204.53516%204.49006%204.84516%204.10506%204.91016L2.51506%205.17516C2.17506%205.23016%201.94506%205.36516%201.89006%205.53016C1.83506%205.69516%201.95006%205.94016%202.19506%206.18016L3.43506%207.42016C3.73506%207.72016%203.89006%208.26016%203.79506%208.67516L3.44006%2010.2102C3.32506%2010.7052%203.40506%2010.9652%203.51006%2011.0402C3.61506%2011.1152%203.88506%2011.1102%204.32506%2010.8552L5.82006%209.97016C6.01006%209.85516%206.25506%209.79516%206.50006%209.79516Z%22%20fill%3D%22white%22%2F%3E%3C%2Fsvg%3E";
|
|
6639
|
-
|
|
6640
6625
|
const SingleSlide = ({
|
|
6641
6626
|
data,
|
|
6642
6627
|
sectionIndex
|
|
@@ -6646,13 +6631,7 @@ const SingleSlide = ({
|
|
|
6646
6631
|
className: classes.singleSlideContainer
|
|
6647
6632
|
}, /*#__PURE__*/React__default["default"].createElement("div", {
|
|
6648
6633
|
className: classes.imageContainer
|
|
6649
|
-
},
|
|
6650
|
-
className: classes.starTag
|
|
6651
|
-
}, /*#__PURE__*/React__default["default"].createElement("img", {
|
|
6652
|
-
src: StarIcon
|
|
6653
|
-
}), /*#__PURE__*/React__default["default"].createElement("span", {
|
|
6654
|
-
className: classes.starTagText
|
|
6655
|
-
}, "Star Tutor")) : null, /*#__PURE__*/React__default["default"].createElement(NextImageRenderer, {
|
|
6634
|
+
}, /*#__PURE__*/React__default["default"].createElement(NextImageRenderer, {
|
|
6656
6635
|
ref: data?.image?.refSetter,
|
|
6657
6636
|
className: classes.image,
|
|
6658
6637
|
alt: "Hero Image",
|
|
@@ -6667,36 +6646,12 @@ const SingleSlide = ({
|
|
|
6667
6646
|
__html: data.teamSlideTitle.metadata.value
|
|
6668
6647
|
}
|
|
6669
6648
|
}), /*#__PURE__*/React__default["default"].createElement("div", {
|
|
6670
|
-
|
|
6671
|
-
}, /*#__PURE__*/React__default["default"].createElement("img", {
|
|
6672
|
-
src: RankIcon
|
|
6673
|
-
}), /*#__PURE__*/React__default["default"].createElement("div", {
|
|
6674
|
-
ref: data?.teamSlideYearOfExperience?.refSetter,
|
|
6675
|
-
className: classes.teamDetailsSubHeading,
|
|
6676
|
-
dangerouslySetInnerHTML: {
|
|
6677
|
-
__html: data.teamSlideYearOfExperience.metadata.value
|
|
6678
|
-
}
|
|
6679
|
-
})), /*#__PURE__*/React__default["default"].createElement("div", {
|
|
6680
|
-
className: classes.subHeadingWrapper
|
|
6681
|
-
}, /*#__PURE__*/React__default["default"].createElement("img", {
|
|
6682
|
-
src: Book
|
|
6683
|
-
}), /*#__PURE__*/React__default["default"].createElement("div", {
|
|
6684
|
-
ref: data?.teamSlideSpecialisation?.refSetter,
|
|
6685
|
-
className: classes.teamDetailsSubHeading,
|
|
6686
|
-
dangerouslySetInnerHTML: {
|
|
6687
|
-
__html: data.teamSlideSpecialisation.metadata.value
|
|
6688
|
-
}
|
|
6689
|
-
})), /*#__PURE__*/React__default["default"].createElement("div", {
|
|
6690
|
-
className: classes.subHeadingWrapper
|
|
6691
|
-
}, /*#__PURE__*/React__default["default"].createElement("img", {
|
|
6692
|
-
src: Teacher
|
|
6693
|
-
}), /*#__PURE__*/React__default["default"].createElement("div", {
|
|
6694
|
-
ref: data?.teamSlideQualification?.refSetter,
|
|
6649
|
+
ref: data?.teamSlideSubTitle?.refSetter,
|
|
6695
6650
|
className: classes.teamDetailsSubHeading,
|
|
6696
6651
|
dangerouslySetInnerHTML: {
|
|
6697
|
-
__html: data.
|
|
6652
|
+
__html: data.teamSlideSubTitle.metadata.value
|
|
6698
6653
|
}
|
|
6699
|
-
})))
|
|
6654
|
+
})));
|
|
6700
6655
|
};
|
|
6701
6656
|
|
|
6702
6657
|
function TeamCard({
|
|
@@ -6787,6 +6742,7 @@ const useSectionStyles$1 = createUseStyles(theme => ({
|
|
|
6787
6742
|
// }
|
|
6788
6743
|
// }
|
|
6789
6744
|
},
|
|
6745
|
+
|
|
6790
6746
|
formContainer: {
|
|
6791
6747
|
margin: '0 auto',
|
|
6792
6748
|
maxWidth: ({
|
|
@@ -6823,12 +6779,14 @@ const useSectionStyles$1 = createUseStyles(theme => ({
|
|
|
6823
6779
|
display: 'flex'
|
|
6824
6780
|
// alignItems: 'flex-start',
|
|
6825
6781
|
},
|
|
6782
|
+
|
|
6826
6783
|
leftContainerForm: {
|
|
6827
6784
|
width: '65%',
|
|
6828
6785
|
display: 'flex',
|
|
6829
6786
|
flexDirection: 'column'
|
|
6830
6787
|
// justifyContent: 'space-between'
|
|
6831
6788
|
},
|
|
6789
|
+
|
|
6832
6790
|
subtitle: {
|
|
6833
6791
|
// margin: '0 0 40px 0',
|
|
6834
6792
|
fontSize: theme.typography.fontSize.h5,
|
|
@@ -6896,6 +6854,7 @@ const useSectionStyles$1 = createUseStyles(theme => ({
|
|
|
6896
6854
|
width: '100%'
|
|
6897
6855
|
// padding: '0 16ox'
|
|
6898
6856
|
},
|
|
6857
|
+
|
|
6899
6858
|
rightContainer: {
|
|
6900
6859
|
width: '100%',
|
|
6901
6860
|
padding: '0'
|
|
@@ -7208,6 +7167,7 @@ const useSectionStyles = createUseStyles(theme => ({
|
|
|
7208
7167
|
// }
|
|
7209
7168
|
// }
|
|
7210
7169
|
},
|
|
7170
|
+
|
|
7211
7171
|
contactContainer: {
|
|
7212
7172
|
width: '100%',
|
|
7213
7173
|
margin: '0 auto',
|
|
@@ -7246,6 +7206,7 @@ const useSectionStyles = createUseStyles(theme => ({
|
|
|
7246
7206
|
// justifyContent: 'space-between',
|
|
7247
7207
|
// flex: 1
|
|
7248
7208
|
},
|
|
7209
|
+
|
|
7249
7210
|
subtitle: {
|
|
7250
7211
|
// margin: '0 0 auto 0',
|
|
7251
7212
|
fontSize: theme.typography.fontSize.h6,
|
|
@@ -7690,6 +7651,7 @@ const useWebinarPromotionPage = createUseStyles(theme => {
|
|
|
7690
7651
|
marginTop: '5%'
|
|
7691
7652
|
// padding: '0px 5% 0px 5%'
|
|
7692
7653
|
},
|
|
7654
|
+
|
|
7693
7655
|
iframe: {
|
|
7694
7656
|
position: 'absolute',
|
|
7695
7657
|
width: '100%',
|
|
@@ -8037,6 +7999,7 @@ const SingleVideoSlide$1 = props => {
|
|
|
8037
7999
|
value: data.isPaid ? buyNowText : registerNowText
|
|
8038
8000
|
// isExternal: 1
|
|
8039
8001
|
},
|
|
8002
|
+
|
|
8040
8003
|
onClick: webinarCtaClick,
|
|
8041
8004
|
type: 'primary',
|
|
8042
8005
|
size: 'medium',
|
|
@@ -8105,6 +8068,7 @@ const useCoursePromotionPage = createUseStyles(theme => {
|
|
|
8105
8068
|
// }
|
|
8106
8069
|
// }
|
|
8107
8070
|
},
|
|
8071
|
+
|
|
8108
8072
|
sectionContainer: {
|
|
8109
8073
|
margin: '0 auto',
|
|
8110
8074
|
maxWidth: ({
|
|
@@ -8222,6 +8186,7 @@ const useCoursePromotionPage = createUseStyles(theme => {
|
|
|
8222
8186
|
// paddingBottom: '10px',
|
|
8223
8187
|
// paddingTop: '10px'
|
|
8224
8188
|
},
|
|
8189
|
+
|
|
8225
8190
|
bannerContainer: {
|
|
8226
8191
|
width: '100%',
|
|
8227
8192
|
background: theme?.colors?.bannerColor,
|
|
@@ -8236,6 +8201,7 @@ const useCoursePromotionPage = createUseStyles(theme => {
|
|
|
8236
8201
|
clipPath: 'polygon(0 0, 100% 0, 100% calc(100% - 10px), 0 calc(100% - 10px), 15px calc(50% - 10px/2))'
|
|
8237
8202
|
// marginBottom: '16px'
|
|
8238
8203
|
},
|
|
8204
|
+
|
|
8239
8205
|
bannerContainerText: {
|
|
8240
8206
|
transform: 'rotate(180deg)'
|
|
8241
8207
|
},
|
|
@@ -8348,6 +8314,7 @@ const useCoursePromotionPage = createUseStyles(theme => {
|
|
|
8348
8314
|
height: 'max-content'
|
|
8349
8315
|
// paddingRight: '10px'
|
|
8350
8316
|
},
|
|
8317
|
+
|
|
8351
8318
|
videoDetails: {
|
|
8352
8319
|
width: '100%'
|
|
8353
8320
|
},
|
|
@@ -8606,6 +8573,7 @@ const SingleVideoSlide = props => {
|
|
|
8606
8573
|
value: buyNowText
|
|
8607
8574
|
// isExternal: 1
|
|
8608
8575
|
},
|
|
8576
|
+
|
|
8609
8577
|
onClick: courseBuyNow,
|
|
8610
8578
|
type: 'primary',
|
|
8611
8579
|
size: 'medium',
|
|
@@ -8710,6 +8678,7 @@ const useFormPageStyles = createUseStyles(theme => ({
|
|
|
8710
8678
|
// border: '1px solid #D8E0F0',
|
|
8711
8679
|
// borderRadius: '16px'
|
|
8712
8680
|
},
|
|
8681
|
+
|
|
8713
8682
|
inputFieldLabel: {
|
|
8714
8683
|
color: theme?.colors?.lightblack,
|
|
8715
8684
|
fontSize: theme.typography.fontSize.body,
|
|
@@ -9022,6 +8991,7 @@ const FormPage = ({
|
|
|
9022
8991
|
value: countryCode === 'KR' ? '제출하기' : 'SUBMIT'
|
|
9023
8992
|
// isExternal: 1
|
|
9024
8993
|
},
|
|
8994
|
+
|
|
9025
8995
|
type: 'primary',
|
|
9026
8996
|
size: 'medium',
|
|
9027
8997
|
target: null,
|
|
@@ -9204,6 +9174,7 @@ const useEmailStyles = createUseStyles(theme => ({
|
|
|
9204
9174
|
height: '48px'
|
|
9205
9175
|
/* margin: 18px 0px; */
|
|
9206
9176
|
},
|
|
9177
|
+
|
|
9207
9178
|
'p-young-guru-title': {
|
|
9208
9179
|
fontFamily: theme?.typography?.fontFamily,
|
|
9209
9180
|
fontStyle: 'normal',
|
|
@@ -9231,6 +9202,7 @@ const useEmailStyles = createUseStyles(theme => ({
|
|
|
9231
9202
|
textAlign: 'center'
|
|
9232
9203
|
/* padding:35px 0 40px */
|
|
9233
9204
|
},
|
|
9205
|
+
|
|
9234
9206
|
'two-columns .column': {
|
|
9235
9207
|
width: '100%',
|
|
9236
9208
|
maxWidth: '275px',
|