mirror of
https://github.com/yu-i-i/overleaf-cep.git
synced 2026-06-04 22:59:01 +02:00
8158e2883c
GitOrigin-RevId: 7f4e91179ba767ff8b88df7787eaf9d4fe6a5f05
71 lines
1.6 KiB
JavaScript
71 lines
1.6 KiB
JavaScript
const plansV2Features = require('./plansV2Features')
|
|
|
|
const config = {
|
|
individual: {
|
|
tableHead: {
|
|
individual_free: {},
|
|
individual_personal: {},
|
|
individual_collaborator: {},
|
|
individual_professional: {},
|
|
},
|
|
features: plansV2Features.individual,
|
|
highlightedColumn: {
|
|
index: 2,
|
|
text: {
|
|
monthly: 'MOST POPULAR',
|
|
annual: 'MOST POPULAR',
|
|
},
|
|
},
|
|
discountedColumn: {
|
|
index: 1,
|
|
text: {
|
|
monthly: 'LIMITED-TIME DISCOUNT!',
|
|
annual: 'LIMITED-TIME DISCOUNT!',
|
|
},
|
|
},
|
|
eventTrackingKey: 'plans-page-click',
|
|
additionalEventSegmentation: { 'plan-page-layout-v2': 'new-plans-page' },
|
|
},
|
|
group: {
|
|
tableHead: {
|
|
group_collaborator: {},
|
|
group_professional: {},
|
|
group_organization: {},
|
|
},
|
|
features: plansV2Features.group,
|
|
highlightedColumn: {
|
|
index: 0,
|
|
text: {
|
|
annual: 'MOST POPULAR',
|
|
},
|
|
},
|
|
eventTrackingKey: 'plans-page-click',
|
|
additionalEventSegmentation: { 'plan-page-layout-v2': 'new-plans-page' },
|
|
},
|
|
student: {
|
|
baseColspan: 2,
|
|
maxColumn: 3,
|
|
tableHead: {
|
|
student_free: {
|
|
colspan: 3,
|
|
},
|
|
student_student: {
|
|
showExtraContent: false,
|
|
colspan: 3,
|
|
},
|
|
},
|
|
features: plansV2Features.student,
|
|
highlightedColumn: {
|
|
index: 1,
|
|
text: {
|
|
monthly: 'SAVE 20% ON ANNUAL PLAN',
|
|
annual: 'SAVING 20%',
|
|
},
|
|
},
|
|
eventTrackingKey: 'plans-page-click',
|
|
additionalEventSegmentation: { 'plan-page-layout-v2': 'new-plans-page' },
|
|
},
|
|
}
|
|
|
|
module.exports = config
|