export interface PackI {
id: number;
type: string;
subprice?: string;
features: string[];
}
export const packs: PackI[] = [
{
id: 1,
type: 'Basic',
features: [
'Course Content',
'1 Teacher account',
'Management System',
'Free Training',
],
},
{
id: 2,
type: 'Pro',
features: [
'Course Content',
'1 Teacher account',
'10 Students accounts',
'10 Parents accounts',
'Access to LMS',
'Management System',
'Free Training',
],
},
{
id: 3,
type: 'Business',
features: [
'Course Content',
'5 Teacher account',
'50 Students accounts',
'50 Parents accounts',
'Access to LMS',
'Management System',
'Free Training',
],
},
{
id: 4,
type: 'Business +',
features: [
'Course Content',
'10 Teacher account',
'100 Students accounts',
'100 Parents accounts',
'Access to LMS',
'Management System',
'Free Training',
],
},
];