Files
ax3Client/src/Constants/Fields/RadioFields.js
Kenneth Jannette b38f53f0ab more
2024-01-29 11:11:39 -06:00

57 lines
1.4 KiB
JavaScript

export const signupRadioFields = [
{
name: "Associate",
label: "Associate",
value: "associate",
description: [
"1 document per month",
"Carryover 1 document to next period",
"Documents conforming with state rules",
"24/7 support",
"First month free!",
],
details: "",
pricing: [
{ type: "monthly", amount: 69 },
{ type: "annDiscount", amount: 52 },
{ type: "additionalAccount", amount: 0 },
],
},
{
name: "Partner",
label: "Partner",
value: "partner",
description: [
"3 documents per month",
"Carryover 2 documents to next period",
"Documents conforming with state rules",
"Up to 2 additional accounts: $49/each",
"24/7 support",
],
details: "",
pricing: [
{ type: "monthly", amount: 99 },
{ type: "annDiscount", amount: 89 },
{ type: "additionalAccount", amount: 49 },
],
},
{
name: "Senior Partner",
label: "Senior Partner",
value: "seniorPartner",
description: [
"Unlimited documents.",
"Documents conforming with state rules",
"24/7 Triage-level support response",
"Up to 8 additional accounts at $39/each",
],
details: "",
pricing: [
{ type: "monthly", amount: 149 },
{ type: "annDiscount", amount: 129 },
{ type: "additionalAccount", amount: 39 },
],
},
];
//