overleaf/services/web/app/src/Features/Subscription/plansV2Config.js

48 lines
980 B
JavaScript
Raw Normal View History

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',
},
},
},
group: {
tableHead: [
'group_collaborator',
'group_professional',
'group_organization',
],
features: plansV2Features.group,
highlightedColumn: {
index: 1,
text: {
annual: 'RECOMMENDED',
},
},
},
student: {
tableHead: ['student_free', 'student_student', 'student_university'],
features: plansV2Features.student,
highlightedColumn: {
index: 1,
text: {
monthly: 'SAVE 20% ON ANNUAL PLAN',
annual: 'SAVING 20%',
},
},
},
}
module.exports = config