Files
ax3Client/src/Constants/Fields/RadioFields.js
Kenneth Jannette 670aa1f997 more
2024-01-25 16:04:33 -06:00

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,
},
];