99 lines
2.5 KiB
JavaScript
99 lines
2.5 KiB
JavaScript
export const signupRadioFields = [
|
|
{
|
|
name: "Of Counsel",
|
|
label: "Of Counsel",
|
|
value: "ofCounsel",
|
|
description: [
|
|
"One document/one-time fee",
|
|
"Documents conform with state rules",
|
|
"Intellidraft AI - downloadable document in minutes",
|
|
"24/7 support",
|
|
],
|
|
details: "",
|
|
docsAllowedPerMonth: 1,
|
|
pricing: [
|
|
{ type: "monthly", amount: 59 },
|
|
{ type: "annDiscount", amount: 59 },
|
|
],
|
|
},
|
|
{
|
|
name: "Associate",
|
|
label: "Associate",
|
|
value: "associate",
|
|
description: [
|
|
"1 document per month",
|
|
"Carryover 1 unused document each subscription period",
|
|
"Documents conform with state rules",
|
|
"Intellidraft AI - downloadable document in minutes",
|
|
"24/7 support",
|
|
"First month is free!",
|
|
],
|
|
details: "",
|
|
docsAllowedPerMonth: 1,
|
|
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 1 unused document per month",
|
|
"Documents conform with state rules",
|
|
"Intellidraft AI - downloadable document in minutes",
|
|
"Up to 2 additional accounts: $49/each",
|
|
"24/7 support",
|
|
],
|
|
details: "",
|
|
docsAllowedPerMonth: 3,
|
|
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 conform with state rules",
|
|
"Intellidraft AI - downloadable document in minutes",
|
|
"24/7 Triage-level support response",
|
|
"Up to 8 additional accounts at $39/each",
|
|
],
|
|
details: "",
|
|
docsAllowedPerMonth: 50000,
|
|
pricing: [
|
|
{ type: "monthly", amount: 149 },
|
|
{ type: "annDiscount", amount: 129 },
|
|
{ type: "additionalAccount", amount: 39 },
|
|
],
|
|
},
|
|
];
|
|
|
|
/*
|
|
{
|
|
name: "Of Counsel",
|
|
label: "Of Counsel",
|
|
value: "ofCounsel",
|
|
description: [
|
|
"One document - pay as you go",
|
|
"24/7 support",
|
|
"Document conforming with state rules",
|
|
],
|
|
details: "",
|
|
docsAllowedPerMonth: 1,
|
|
pricing: [
|
|
{ type: "oneTime", amount: 59 },
|
|
{ type: "oneTime", amount: 59 },
|
|
{ type: "oneTime", amount: 59 },
|
|
],
|
|
},
|
|
*/
|