feat: initialisation projet React + Vite + TypeScript + Tailwind
This commit is contained in:
parent
f221daf542
commit
0a48428760
31 changed files with 4187 additions and 200 deletions
32
src/lib/access.ts
Normal file
32
src/lib/access.ts
Normal file
|
|
@ -0,0 +1,32 @@
|
|||
export const PLANS = {
|
||||
free: {
|
||||
simulations_lifetime: 5,
|
||||
oral_t2_live: false,
|
||||
detailed_report: false,
|
||||
tips: false,
|
||||
dashboard: false,
|
||||
exam_mode: false,
|
||||
pattern_analysis: false,
|
||||
preparation_index: false,
|
||||
},
|
||||
standard: {
|
||||
simulations_lifetime: null,
|
||||
oral_t2_live: false,
|
||||
detailed_report: true,
|
||||
tips: true,
|
||||
dashboard: true,
|
||||
exam_mode: false,
|
||||
pattern_analysis: false,
|
||||
preparation_index: false,
|
||||
},
|
||||
premium: {
|
||||
simulations_lifetime: null,
|
||||
oral_t2_live: true,
|
||||
detailed_report: true,
|
||||
tips: true,
|
||||
dashboard: true,
|
||||
exam_mode: true,
|
||||
pattern_analysis: true,
|
||||
preparation_index: true,
|
||||
},
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue