mirror of
https://github.com/overleaf/overleaf.git
synced 2024-10-31 21:21:03 -04:00
48 lines
980 B
JavaScript
48 lines
980 B
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',
|
||
|
},
|
||
|
},
|
||
|
},
|
||
|
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
|