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.es.js
CHANGED
|
@@ -1083,11 +1083,12 @@ function OptionList({
|
|
|
1083
1083
|
const downloadAppText = countryCode === 'KR' ? '앱다운로드' : 'Download App';
|
|
1084
1084
|
const renderDownloadAppButton = () => {
|
|
1085
1085
|
return /*#__PURE__*/React.createElement(React.Fragment, null, apkURL && /*#__PURE__*/React.createElement("a", {
|
|
1086
|
+
download: true,
|
|
1086
1087
|
href: headerData?.apkURL,
|
|
1087
1088
|
target: "_blank",
|
|
1088
1089
|
className: classes.socialBtnItems,
|
|
1089
1090
|
onClick: () => {
|
|
1090
|
-
if (typeof onDownloadAppTriggered ==
|
|
1091
|
+
if (typeof onDownloadAppTriggered == "function") {
|
|
1091
1092
|
onDownloadAppTriggered(isAndroidDelisted, headerData?.apkURL);
|
|
1092
1093
|
}
|
|
1093
1094
|
}
|
|
@@ -1416,7 +1417,7 @@ function MobileHeader({
|
|
|
1416
1417
|
onClick: () => {
|
|
1417
1418
|
let url = getAppDownloadLink(apkURL, iosDownloadLink);
|
|
1418
1419
|
window.open(url, '_blank');
|
|
1419
|
-
if (
|
|
1420
|
+
if (!header?.iosUrl && typeof onDownloadAppTriggered == 'function') {
|
|
1420
1421
|
onDownloadAppTriggered(header?.isAndroidDelisted, header?.apkURL);
|
|
1421
1422
|
}
|
|
1422
1423
|
}
|
|
@@ -1451,7 +1452,7 @@ function MobileHeader({
|
|
|
1451
1452
|
onClick: () => {
|
|
1452
1453
|
let url = getAppDownloadLink(apkURL, iosDownloadLink);
|
|
1453
1454
|
window.open(url, '_blank');
|
|
1454
|
-
if (
|
|
1455
|
+
if (!header?.iosUrl && typeof onDownloadAppTriggered == 'function') {
|
|
1455
1456
|
onDownloadAppTriggered(header?.isAndroidDelisted, header?.apkURL);
|
|
1456
1457
|
}
|
|
1457
1458
|
}
|
|
@@ -1547,13 +1548,13 @@ function Header({
|
|
|
1547
1548
|
header: data,
|
|
1548
1549
|
isTutorWebsite: isTutorWebsite,
|
|
1549
1550
|
isLandingPage: isLandingPage,
|
|
1550
|
-
onDownloadAppTriggered: extraProps
|
|
1551
|
+
onDownloadAppTriggered: extraProps.DownloadAppButtonTriggered
|
|
1551
1552
|
}) : /*#__PURE__*/React.createElement(DesktopHeader, {
|
|
1552
1553
|
navData: filterHiddenNavs(),
|
|
1553
1554
|
header: data,
|
|
1554
1555
|
isTutorWebsite: isTutorWebsite,
|
|
1555
1556
|
isLandingPage: isLandingPage,
|
|
1556
|
-
onDownloadAppTriggered: extraProps
|
|
1557
|
+
onDownloadAppTriggered: extraProps.DownloadAppButtonTriggered
|
|
1557
1558
|
});
|
|
1558
1559
|
}
|
|
1559
1560
|
|
|
@@ -1592,6 +1593,7 @@ const useSectionStyles$9 = createUseStyles(theme => ({
|
|
|
1592
1593
|
|
|
1593
1594
|
// '& img': { maxHeight: '55px' }
|
|
1594
1595
|
},
|
|
1596
|
+
|
|
1595
1597
|
upperContainerItem1Img: {
|
|
1596
1598
|
maxHeight: '55px',
|
|
1597
1599
|
paddingBottom: '84px',
|
|
@@ -2018,6 +2020,7 @@ const mobilePadding = {
|
|
|
2018
2020
|
// 24px
|
|
2019
2021
|
medium: baseFactor * 6 // 48px
|
|
2020
2022
|
};
|
|
2023
|
+
|
|
2021
2024
|
const padding = {
|
|
2022
2025
|
minute: baseFactor * 2,
|
|
2023
2026
|
// 16px
|
|
@@ -2483,6 +2486,7 @@ const useSectionStyles$8 = createUseStyles(theme => ({
|
|
|
2483
2486
|
// }
|
|
2484
2487
|
// }
|
|
2485
2488
|
},
|
|
2489
|
+
|
|
2486
2490
|
sectionContainer: {
|
|
2487
2491
|
margin: '0 auto',
|
|
2488
2492
|
maxWidth: ({
|
|
@@ -3052,6 +3056,7 @@ const useSectionStyles$7 = createUseStyles(theme => ({
|
|
|
3052
3056
|
// padding: '0'
|
|
3053
3057
|
}
|
|
3054
3058
|
},
|
|
3059
|
+
|
|
3055
3060
|
'&:nth-child(2n+1)': {
|
|
3056
3061
|
marginRight: '0',
|
|
3057
3062
|
'& $contentText': {
|
|
@@ -3061,6 +3066,7 @@ const useSectionStyles$7 = createUseStyles(theme => ({
|
|
|
3061
3066
|
}
|
|
3062
3067
|
}
|
|
3063
3068
|
},
|
|
3069
|
+
|
|
3064
3070
|
contentNumber: {
|
|
3065
3071
|
width: '100%',
|
|
3066
3072
|
padding: '24px',
|
|
@@ -3453,6 +3459,7 @@ const useSectionStyles$5 = createUseStyles(theme => {
|
|
|
3453
3459
|
// }
|
|
3454
3460
|
// }
|
|
3455
3461
|
},
|
|
3462
|
+
|
|
3456
3463
|
sectionContainer: {
|
|
3457
3464
|
margin: '0 auto',
|
|
3458
3465
|
maxWidth: ({
|
|
@@ -3466,6 +3473,7 @@ const useSectionStyles$5 = createUseStyles(theme => {
|
|
|
3466
3473
|
|
|
3467
3474
|
// padding: `${theme?.spacing?.padding?.regular}px ${theme?.spacing?.padding?.medium}px 0px ${theme?.spacing?.padding?.medium}px`
|
|
3468
3475
|
},
|
|
3476
|
+
|
|
3469
3477
|
imageContainerDiv: {
|
|
3470
3478
|
width: '50%',
|
|
3471
3479
|
position: 'relative'
|
|
@@ -3537,6 +3545,7 @@ const useSectionStyles$5 = createUseStyles(theme => {
|
|
|
3537
3545
|
width: '100%'
|
|
3538
3546
|
// padding: `${theme?.spacing?.padding?.medium}px ${theme?.spacing?.padding?.regular}px`
|
|
3539
3547
|
},
|
|
3548
|
+
|
|
3540
3549
|
imageContainer: {
|
|
3541
3550
|
height: 'unset !important',
|
|
3542
3551
|
'& img': {
|
|
@@ -4543,6 +4552,7 @@ const useVideoTestimonialStyles = createUseStyles(theme => {
|
|
|
4543
4552
|
fontFamily: theme?.typography?.fontFamily
|
|
4544
4553
|
// boxSizing: 'border-box'
|
|
4545
4554
|
},
|
|
4555
|
+
|
|
4546
4556
|
'& h2,& h3,& p': {
|
|
4547
4557
|
marginTop: '0'
|
|
4548
4558
|
}
|
|
@@ -4567,6 +4577,7 @@ const useVideoTestimonialStyles = createUseStyles(theme => {
|
|
|
4567
4577
|
wordBreak: 'break-word'
|
|
4568
4578
|
// marginBottom: '8px'
|
|
4569
4579
|
},
|
|
4580
|
+
|
|
4570
4581
|
videoTestimonialTitle: {
|
|
4571
4582
|
fontSize: theme.typography.fontSize.h2,
|
|
4572
4583
|
// lineHeight: '71px',
|
|
@@ -5007,6 +5018,7 @@ const useSectionStyles$3 = createUseStyles(theme => ({
|
|
|
5007
5018
|
// }
|
|
5008
5019
|
// }
|
|
5009
5020
|
},
|
|
5021
|
+
|
|
5010
5022
|
sectionContainer: {
|
|
5011
5023
|
margin: '0 auto',
|
|
5012
5024
|
maxWidth: ({
|
|
@@ -5364,6 +5376,7 @@ const usePhotoGalleryStyles = createUseStyles(theme => {
|
|
|
5364
5376
|
// }
|
|
5365
5377
|
// }
|
|
5366
5378
|
},
|
|
5379
|
+
|
|
5367
5380
|
sectionContainer: {
|
|
5368
5381
|
margin: '0 auto',
|
|
5369
5382
|
maxWidth: ({
|
|
@@ -5394,6 +5407,7 @@ const usePhotoGalleryStyles = createUseStyles(theme => {
|
|
|
5394
5407
|
position: 'relative',
|
|
5395
5408
|
paddingBottom: '59.83%' // keeping aspect ratio 585x350
|
|
5396
5409
|
},
|
|
5410
|
+
|
|
5397
5411
|
contentRow: {
|
|
5398
5412
|
display: 'grid',
|
|
5399
5413
|
gridTemplateColumns: ({
|
|
@@ -5940,6 +5954,7 @@ const useCourseStyles = createUseStyles(theme => {
|
|
|
5940
5954
|
// }
|
|
5941
5955
|
// }
|
|
5942
5956
|
},
|
|
5957
|
+
|
|
5943
5958
|
sectionContainer: {
|
|
5944
5959
|
margin: '0 auto',
|
|
5945
5960
|
maxWidth: ({
|
|
@@ -5972,6 +5987,7 @@ const useCourseStyles = createUseStyles(theme => {
|
|
|
5972
5987
|
// textAlign: 'center',
|
|
5973
5988
|
// wordBreak: 'break-word'
|
|
5974
5989
|
},
|
|
5990
|
+
|
|
5975
5991
|
slickContainer: {
|
|
5976
5992
|
marginRight: '-20px'
|
|
5977
5993
|
},
|
|
@@ -6019,6 +6035,7 @@ const useCourseStyles = createUseStyles(theme => {
|
|
|
6019
6035
|
justifyContent: 'space-between'
|
|
6020
6036
|
//alignItems: 'center',
|
|
6021
6037
|
},
|
|
6038
|
+
|
|
6022
6039
|
courseCardTags: {
|
|
6023
6040
|
display: 'flex',
|
|
6024
6041
|
justifyContent: 'flex-start',
|
|
@@ -6049,6 +6066,7 @@ const useCourseStyles = createUseStyles(theme => {
|
|
|
6049
6066
|
// whiteSpace: 'nowrap',
|
|
6050
6067
|
// textOverflow: 'ellipsis'
|
|
6051
6068
|
},
|
|
6069
|
+
|
|
6052
6070
|
courseCardDiscount: {
|
|
6053
6071
|
display: 'flex',
|
|
6054
6072
|
justifyContent: 'flex-start',
|
|
@@ -6155,6 +6173,7 @@ const useCourseStyles = createUseStyles(theme => {
|
|
|
6155
6173
|
// whiteSpace: 'nowrap',
|
|
6156
6174
|
// textOverflow: 'ellipsis'
|
|
6157
6175
|
},
|
|
6176
|
+
|
|
6158
6177
|
singleCard: {
|
|
6159
6178
|
margin: '6px 2px'
|
|
6160
6179
|
// width: 'calc(100% - 12px)'
|
|
@@ -6478,8 +6497,7 @@ const useTeamStyles = createUseStyles(theme => {
|
|
|
6478
6497
|
marginBottom: '8px',
|
|
6479
6498
|
color: theme?.colors?.font2,
|
|
6480
6499
|
// wordBreak: 'break-word',
|
|
6481
|
-
position: 'relative'
|
|
6482
|
-
textAlign: 'center'
|
|
6500
|
+
position: 'relative'
|
|
6483
6501
|
},
|
|
6484
6502
|
teamTitle: {
|
|
6485
6503
|
fontSize: theme.typography.fontSize.h2,
|
|
@@ -6488,9 +6506,7 @@ const useTeamStyles = createUseStyles(theme => {
|
|
|
6488
6506
|
letterSpacing: '-3px',
|
|
6489
6507
|
wordBreak: 'break-word',
|
|
6490
6508
|
color: theme?.colors?.font2,
|
|
6491
|
-
position: 'relative'
|
|
6492
|
-
textAlign: 'center',
|
|
6493
|
-
marginBottom: '10px !important'
|
|
6509
|
+
position: 'relative'
|
|
6494
6510
|
},
|
|
6495
6511
|
sliderContainer: {
|
|
6496
6512
|
margin: '0 -20px'
|
|
@@ -6505,71 +6521,47 @@ const useTeamStyles = createUseStyles(theme => {
|
|
|
6505
6521
|
backgroundColor: theme?.palette?.background?.default,
|
|
6506
6522
|
margin: '20px',
|
|
6507
6523
|
width: 'calc(100% - 24px)',
|
|
6508
|
-
|
|
6524
|
+
// height: 'calc(100% - 40px)',
|
|
6525
|
+
border: '3px solid #D8E0F0',
|
|
6526
|
+
borderRadius: theme?.shape?.borderRadius?.regular,
|
|
6527
|
+
padding: theme.spacing.padding.tiny,
|
|
6509
6528
|
boxShadow: theme?.shadows?.primary,
|
|
6510
|
-
minHeight: '
|
|
6529
|
+
minHeight: '320px'
|
|
6511
6530
|
},
|
|
6512
6531
|
imageContainer: {
|
|
6513
6532
|
minWidth: '100%',
|
|
6533
|
+
borderRadius: theme?.shape?.borderRadius?.regular,
|
|
6534
|
+
paddingBottom: '100%',
|
|
6514
6535
|
position: 'relative'
|
|
6515
6536
|
},
|
|
6516
6537
|
image: {
|
|
6517
6538
|
width: '100%',
|
|
6518
|
-
height: '
|
|
6539
|
+
height: '100%',
|
|
6540
|
+
position: 'absolute',
|
|
6541
|
+
borderRadius: '50%',
|
|
6519
6542
|
top: '0',
|
|
6520
6543
|
left: '0',
|
|
6521
|
-
borderRadius: '
|
|
6544
|
+
borderRadius: '50%',
|
|
6522
6545
|
objectFit: 'cover'
|
|
6523
6546
|
},
|
|
6524
6547
|
teamDetailsContainer: {
|
|
6525
|
-
textAlign: '
|
|
6526
|
-
|
|
6548
|
+
textAlign: 'center',
|
|
6549
|
+
margin: '20px 0 0'
|
|
6527
6550
|
// overflowWrap: 'break-word'
|
|
6528
6551
|
},
|
|
6552
|
+
|
|
6529
6553
|
teamDetailsHeading: {
|
|
6530
6554
|
fontSize: theme.typography.fontSize.h6,
|
|
6531
6555
|
fontWeight: theme.typography.fontWeight.bold,
|
|
6532
6556
|
lineHeight: '24px',
|
|
6533
6557
|
margin: '0',
|
|
6534
|
-
color: theme?.palette?.font?.default
|
|
6535
|
-
textOverflow: 'ellipsis',
|
|
6536
|
-
overflow: 'hidden',
|
|
6537
|
-
display: '-webkit-box',
|
|
6538
|
-
WebkitLineClamp: 2,
|
|
6539
|
-
WebkitBoxOrient: 'vertical',
|
|
6540
|
-
minHeight: '2.1em'
|
|
6558
|
+
color: theme?.palette?.font?.default
|
|
6541
6559
|
},
|
|
6542
6560
|
teamDetailsSubHeading: {
|
|
6543
|
-
fontSize:
|
|
6544
|
-
lineHeight: '
|
|
6545
|
-
|
|
6546
|
-
|
|
6547
|
-
textOverflow: 'ellipsis',
|
|
6548
|
-
overflow: 'hidden',
|
|
6549
|
-
display: '-webkit-box',
|
|
6550
|
-
WebkitLineClamp: 1,
|
|
6551
|
-
WebkitBoxOrient: 'vertical'
|
|
6552
|
-
},
|
|
6553
|
-
subHeadingWrapper: {
|
|
6554
|
-
display: 'flex',
|
|
6555
|
-
alignItems: 'center',
|
|
6556
|
-
margin: '10px 0px 0px',
|
|
6557
|
-
gap: '6px'
|
|
6558
|
-
},
|
|
6559
|
-
starTag: {
|
|
6560
|
-
display: 'flex',
|
|
6561
|
-
alignItems: 'center',
|
|
6562
|
-
gap: '6px',
|
|
6563
|
-
position: 'absolute',
|
|
6564
|
-
marginTop: '16px',
|
|
6565
|
-
background: 'rgba(22, 118, 243, 1)',
|
|
6566
|
-
borderRadius: '0px 6px 6px 0px',
|
|
6567
|
-
padding: '2px 16px'
|
|
6568
|
-
},
|
|
6569
|
-
starTagText: {
|
|
6570
|
-
color: 'white',
|
|
6571
|
-
fontSize: '12px',
|
|
6572
|
-
lineHeight: '20px'
|
|
6561
|
+
fontSize: theme.typography.fontSize.body,
|
|
6562
|
+
lineHeight: '24px',
|
|
6563
|
+
margin: '6px 0 0',
|
|
6564
|
+
color: theme?.palette?.font?.primary
|
|
6573
6565
|
},
|
|
6574
6566
|
'@media (max-width: 767px)': {
|
|
6575
6567
|
// teamSuperContainer: {
|
|
@@ -6597,10 +6589,11 @@ const useTeamStyles = createUseStyles(theme => {
|
|
|
6597
6589
|
minHeight: '260px'
|
|
6598
6590
|
},
|
|
6599
6591
|
teamDetailsContainer: {
|
|
6600
|
-
|
|
6592
|
+
textAlign: 'center'
|
|
6601
6593
|
// margin: '15px 0 0',
|
|
6602
6594
|
// paddingBottom: '0'
|
|
6603
6595
|
},
|
|
6596
|
+
|
|
6604
6597
|
teamDetailsHeading: {
|
|
6605
6598
|
fontSize: '16px',
|
|
6606
6599
|
lineHeight: '24px',
|
|
@@ -6613,14 +6606,6 @@ const useTeamStyles = createUseStyles(theme => {
|
|
|
6613
6606
|
};
|
|
6614
6607
|
});
|
|
6615
6608
|
|
|
6616
|
-
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";
|
|
6617
|
-
|
|
6618
|
-
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";
|
|
6619
|
-
|
|
6620
|
-
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";
|
|
6621
|
-
|
|
6622
|
-
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";
|
|
6623
|
-
|
|
6624
6609
|
const SingleSlide = ({
|
|
6625
6610
|
data,
|
|
6626
6611
|
sectionIndex
|
|
@@ -6630,13 +6615,7 @@ const SingleSlide = ({
|
|
|
6630
6615
|
className: classes.singleSlideContainer
|
|
6631
6616
|
}, /*#__PURE__*/React.createElement("div", {
|
|
6632
6617
|
className: classes.imageContainer
|
|
6633
|
-
},
|
|
6634
|
-
className: classes.starTag
|
|
6635
|
-
}, /*#__PURE__*/React.createElement("img", {
|
|
6636
|
-
src: StarIcon
|
|
6637
|
-
}), /*#__PURE__*/React.createElement("span", {
|
|
6638
|
-
className: classes.starTagText
|
|
6639
|
-
}, "Star Tutor")) : null, /*#__PURE__*/React.createElement(NextImageRenderer, {
|
|
6618
|
+
}, /*#__PURE__*/React.createElement(NextImageRenderer, {
|
|
6640
6619
|
ref: data?.image?.refSetter,
|
|
6641
6620
|
className: classes.image,
|
|
6642
6621
|
alt: "Hero Image",
|
|
@@ -6651,36 +6630,12 @@ const SingleSlide = ({
|
|
|
6651
6630
|
__html: data.teamSlideTitle.metadata.value
|
|
6652
6631
|
}
|
|
6653
6632
|
}), /*#__PURE__*/React.createElement("div", {
|
|
6654
|
-
|
|
6655
|
-
}, /*#__PURE__*/React.createElement("img", {
|
|
6656
|
-
src: RankIcon
|
|
6657
|
-
}), /*#__PURE__*/React.createElement("div", {
|
|
6658
|
-
ref: data?.teamSlideYearOfExperience?.refSetter,
|
|
6659
|
-
className: classes.teamDetailsSubHeading,
|
|
6660
|
-
dangerouslySetInnerHTML: {
|
|
6661
|
-
__html: data.teamSlideYearOfExperience.metadata.value
|
|
6662
|
-
}
|
|
6663
|
-
})), /*#__PURE__*/React.createElement("div", {
|
|
6664
|
-
className: classes.subHeadingWrapper
|
|
6665
|
-
}, /*#__PURE__*/React.createElement("img", {
|
|
6666
|
-
src: Book
|
|
6667
|
-
}), /*#__PURE__*/React.createElement("div", {
|
|
6668
|
-
ref: data?.teamSlideSpecialisation?.refSetter,
|
|
6669
|
-
className: classes.teamDetailsSubHeading,
|
|
6670
|
-
dangerouslySetInnerHTML: {
|
|
6671
|
-
__html: data.teamSlideSpecialisation.metadata.value
|
|
6672
|
-
}
|
|
6673
|
-
})), /*#__PURE__*/React.createElement("div", {
|
|
6674
|
-
className: classes.subHeadingWrapper
|
|
6675
|
-
}, /*#__PURE__*/React.createElement("img", {
|
|
6676
|
-
src: Teacher
|
|
6677
|
-
}), /*#__PURE__*/React.createElement("div", {
|
|
6678
|
-
ref: data?.teamSlideQualification?.refSetter,
|
|
6633
|
+
ref: data?.teamSlideSubTitle?.refSetter,
|
|
6679
6634
|
className: classes.teamDetailsSubHeading,
|
|
6680
6635
|
dangerouslySetInnerHTML: {
|
|
6681
|
-
__html: data.
|
|
6636
|
+
__html: data.teamSlideSubTitle.metadata.value
|
|
6682
6637
|
}
|
|
6683
|
-
})))
|
|
6638
|
+
})));
|
|
6684
6639
|
};
|
|
6685
6640
|
|
|
6686
6641
|
function TeamCard({
|
|
@@ -6771,6 +6726,7 @@ const useSectionStyles$1 = createUseStyles(theme => ({
|
|
|
6771
6726
|
// }
|
|
6772
6727
|
// }
|
|
6773
6728
|
},
|
|
6729
|
+
|
|
6774
6730
|
formContainer: {
|
|
6775
6731
|
margin: '0 auto',
|
|
6776
6732
|
maxWidth: ({
|
|
@@ -6807,12 +6763,14 @@ const useSectionStyles$1 = createUseStyles(theme => ({
|
|
|
6807
6763
|
display: 'flex'
|
|
6808
6764
|
// alignItems: 'flex-start',
|
|
6809
6765
|
},
|
|
6766
|
+
|
|
6810
6767
|
leftContainerForm: {
|
|
6811
6768
|
width: '65%',
|
|
6812
6769
|
display: 'flex',
|
|
6813
6770
|
flexDirection: 'column'
|
|
6814
6771
|
// justifyContent: 'space-between'
|
|
6815
6772
|
},
|
|
6773
|
+
|
|
6816
6774
|
subtitle: {
|
|
6817
6775
|
// margin: '0 0 40px 0',
|
|
6818
6776
|
fontSize: theme.typography.fontSize.h5,
|
|
@@ -6880,6 +6838,7 @@ const useSectionStyles$1 = createUseStyles(theme => ({
|
|
|
6880
6838
|
width: '100%'
|
|
6881
6839
|
// padding: '0 16ox'
|
|
6882
6840
|
},
|
|
6841
|
+
|
|
6883
6842
|
rightContainer: {
|
|
6884
6843
|
width: '100%',
|
|
6885
6844
|
padding: '0'
|
|
@@ -7192,6 +7151,7 @@ const useSectionStyles = createUseStyles(theme => ({
|
|
|
7192
7151
|
// }
|
|
7193
7152
|
// }
|
|
7194
7153
|
},
|
|
7154
|
+
|
|
7195
7155
|
contactContainer: {
|
|
7196
7156
|
width: '100%',
|
|
7197
7157
|
margin: '0 auto',
|
|
@@ -7230,6 +7190,7 @@ const useSectionStyles = createUseStyles(theme => ({
|
|
|
7230
7190
|
// justifyContent: 'space-between',
|
|
7231
7191
|
// flex: 1
|
|
7232
7192
|
},
|
|
7193
|
+
|
|
7233
7194
|
subtitle: {
|
|
7234
7195
|
// margin: '0 0 auto 0',
|
|
7235
7196
|
fontSize: theme.typography.fontSize.h6,
|
|
@@ -7674,6 +7635,7 @@ const useWebinarPromotionPage = createUseStyles(theme => {
|
|
|
7674
7635
|
marginTop: '5%'
|
|
7675
7636
|
// padding: '0px 5% 0px 5%'
|
|
7676
7637
|
},
|
|
7638
|
+
|
|
7677
7639
|
iframe: {
|
|
7678
7640
|
position: 'absolute',
|
|
7679
7641
|
width: '100%',
|
|
@@ -8021,6 +7983,7 @@ const SingleVideoSlide$1 = props => {
|
|
|
8021
7983
|
value: data.isPaid ? buyNowText : registerNowText
|
|
8022
7984
|
// isExternal: 1
|
|
8023
7985
|
},
|
|
7986
|
+
|
|
8024
7987
|
onClick: webinarCtaClick,
|
|
8025
7988
|
type: 'primary',
|
|
8026
7989
|
size: 'medium',
|
|
@@ -8089,6 +8052,7 @@ const useCoursePromotionPage = createUseStyles(theme => {
|
|
|
8089
8052
|
// }
|
|
8090
8053
|
// }
|
|
8091
8054
|
},
|
|
8055
|
+
|
|
8092
8056
|
sectionContainer: {
|
|
8093
8057
|
margin: '0 auto',
|
|
8094
8058
|
maxWidth: ({
|
|
@@ -8206,6 +8170,7 @@ const useCoursePromotionPage = createUseStyles(theme => {
|
|
|
8206
8170
|
// paddingBottom: '10px',
|
|
8207
8171
|
// paddingTop: '10px'
|
|
8208
8172
|
},
|
|
8173
|
+
|
|
8209
8174
|
bannerContainer: {
|
|
8210
8175
|
width: '100%',
|
|
8211
8176
|
background: theme?.colors?.bannerColor,
|
|
@@ -8220,6 +8185,7 @@ const useCoursePromotionPage = createUseStyles(theme => {
|
|
|
8220
8185
|
clipPath: 'polygon(0 0, 100% 0, 100% calc(100% - 10px), 0 calc(100% - 10px), 15px calc(50% - 10px/2))'
|
|
8221
8186
|
// marginBottom: '16px'
|
|
8222
8187
|
},
|
|
8188
|
+
|
|
8223
8189
|
bannerContainerText: {
|
|
8224
8190
|
transform: 'rotate(180deg)'
|
|
8225
8191
|
},
|
|
@@ -8332,6 +8298,7 @@ const useCoursePromotionPage = createUseStyles(theme => {
|
|
|
8332
8298
|
height: 'max-content'
|
|
8333
8299
|
// paddingRight: '10px'
|
|
8334
8300
|
},
|
|
8301
|
+
|
|
8335
8302
|
videoDetails: {
|
|
8336
8303
|
width: '100%'
|
|
8337
8304
|
},
|
|
@@ -8590,6 +8557,7 @@ const SingleVideoSlide = props => {
|
|
|
8590
8557
|
value: buyNowText
|
|
8591
8558
|
// isExternal: 1
|
|
8592
8559
|
},
|
|
8560
|
+
|
|
8593
8561
|
onClick: courseBuyNow,
|
|
8594
8562
|
type: 'primary',
|
|
8595
8563
|
size: 'medium',
|
|
@@ -8694,6 +8662,7 @@ const useFormPageStyles = createUseStyles(theme => ({
|
|
|
8694
8662
|
// border: '1px solid #D8E0F0',
|
|
8695
8663
|
// borderRadius: '16px'
|
|
8696
8664
|
},
|
|
8665
|
+
|
|
8697
8666
|
inputFieldLabel: {
|
|
8698
8667
|
color: theme?.colors?.lightblack,
|
|
8699
8668
|
fontSize: theme.typography.fontSize.body,
|
|
@@ -9006,6 +8975,7 @@ const FormPage = ({
|
|
|
9006
8975
|
value: countryCode === 'KR' ? '제출하기' : 'SUBMIT'
|
|
9007
8976
|
// isExternal: 1
|
|
9008
8977
|
},
|
|
8978
|
+
|
|
9009
8979
|
type: 'primary',
|
|
9010
8980
|
size: 'medium',
|
|
9011
8981
|
target: null,
|
|
@@ -9188,6 +9158,7 @@ const useEmailStyles = createUseStyles(theme => ({
|
|
|
9188
9158
|
height: '48px'
|
|
9189
9159
|
/* margin: 18px 0px; */
|
|
9190
9160
|
},
|
|
9161
|
+
|
|
9191
9162
|
'p-young-guru-title': {
|
|
9192
9163
|
fontFamily: theme?.typography?.fontFamily,
|
|
9193
9164
|
fontStyle: 'normal',
|
|
@@ -9215,6 +9186,7 @@ const useEmailStyles = createUseStyles(theme => ({
|
|
|
9215
9186
|
textAlign: 'center'
|
|
9216
9187
|
/* padding:35px 0 40px */
|
|
9217
9188
|
},
|
|
9189
|
+
|
|
9218
9190
|
'two-columns .column': {
|
|
9219
9191
|
width: '100%',
|
|
9220
9192
|
maxWidth: '275px',
|