2022-06-03 04:06:43 -04:00
|
|
|
const plansV2Features = require('./plansV2Features')
|
|
|
|
|
|
|
|
const config = {
|
|
|
|
individual: {
|
2022-06-13 05:33:26 -04:00
|
|
|
tableHead: {
|
|
|
|
individual_free: {},
|
|
|
|
individual_personal: {},
|
|
|
|
individual_collaborator: {},
|
|
|
|
individual_professional: {},
|
|
|
|
},
|
2022-06-03 04:06:43 -04:00
|
|
|
features: plansV2Features.individual,
|
|
|
|
highlightedColumn: {
|
|
|
|
index: 2,
|
|
|
|
text: {
|
|
|
|
monthly: 'MOST POPULAR',
|
|
|
|
annual: 'MOST POPULAR',
|
|
|
|
},
|
|
|
|
},
|
2022-06-28 09:36:25 -04:00
|
|
|
eventTrackingKey: 'plans-page-click',
|
|
|
|
additionalEventSegmentation: { 'plan-page-layout-v2': 'new-plans-page' },
|
2022-06-03 04:06:43 -04:00
|
|
|
},
|
|
|
|
group: {
|
2022-06-13 05:33:26 -04:00
|
|
|
tableHead: {
|
|
|
|
group_collaborator: {},
|
|
|
|
group_professional: {},
|
|
|
|
group_organization: {},
|
|
|
|
},
|
2022-06-03 04:06:43 -04:00
|
|
|
features: plansV2Features.group,
|
|
|
|
highlightedColumn: {
|
|
|
|
index: 1,
|
|
|
|
text: {
|
|
|
|
annual: 'RECOMMENDED',
|
|
|
|
},
|
|
|
|
},
|
2022-06-28 09:36:25 -04:00
|
|
|
eventTrackingKey: 'plans-page-click',
|
|
|
|
additionalEventSegmentation: { 'plan-page-layout-v2': 'new-plans-page' },
|
2022-06-03 04:06:43 -04:00
|
|
|
},
|
|
|
|
student: {
|
2022-06-13 05:33:26 -04:00
|
|
|
tableHead: {
|
|
|
|
student_free: {},
|
|
|
|
student_student: {
|
|
|
|
showExtraContent: false,
|
|
|
|
},
|
|
|
|
student_university: {},
|
|
|
|
},
|
2022-06-03 04:06:43 -04:00
|
|
|
features: plansV2Features.student,
|
|
|
|
highlightedColumn: {
|
|
|
|
index: 1,
|
|
|
|
text: {
|
|
|
|
monthly: 'SAVE 20% ON ANNUAL PLAN',
|
|
|
|
annual: 'SAVING 20%',
|
|
|
|
},
|
|
|
|
},
|
2022-06-28 09:36:25 -04:00
|
|
|
eventTrackingKey: 'plans-page-click',
|
|
|
|
additionalEventSegmentation: { 'plan-page-layout-v2': 'new-plans-page' },
|
2022-06-03 04:06:43 -04:00
|
|
|
},
|
|
|
|
}
|
|
|
|
|
|
|
|
module.exports = config
|