54 lines
1.2 KiB
JavaScript
54 lines
1.2 KiB
JavaScript
export const signupRadioFields = [
|
|
{
|
|
name: "Associate",
|
|
label: "Associate",
|
|
value: "associate",
|
|
description: [
|
|
"1 document per month",
|
|
"Carryover 1 document to next period",
|
|
"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",
|
|
"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.",
|
|
"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 },
|
|
],
|
|
},
|
|
];
|
|
//
|