24 lines
564 B
JavaScript
24 lines
564 B
JavaScript
export const signupRadioFields = [
|
|
{
|
|
name: "Monthly - basic",
|
|
label: "Monthly - basic",
|
|
value: "monthlyBasic",
|
|
description: "Generate 1 document per month",
|
|
price: 89,
|
|
},
|
|
{
|
|
name: "Monthly - pro",
|
|
label: "Monthly - pro",
|
|
value: "monthlyProPlan",
|
|
description: "Generate up to 3 documents per month",
|
|
price: 159,
|
|
},
|
|
{
|
|
name: "Annual - unlimted annual",
|
|
label: "Annual - unlimited annual",
|
|
value: "annualUnlimited",
|
|
description: "Generate unlimited documents. Billed annualy",
|
|
price: 1489,
|
|
},
|
|
];
|