first commit for refactored project
This commit is contained in:
99
ax3Client/src/Constants/Fields/RadioFields.js
Normal file
99
ax3Client/src/Constants/Fields/RadioFields.js
Normal file
@@ -0,0 +1,99 @@
|
||||
export const signupRadioFields = [
|
||||
{
|
||||
name: "Of Counsel",
|
||||
label: "Of Counsel",
|
||||
value: "ofCounsel",
|
||||
description: [
|
||||
"Single document/one-time fee",
|
||||
"Intellidraft AI - downloadable document in minutes",
|
||||
"Documents formatted for jurisdiction",
|
||||
"24/7 support",
|
||||
],
|
||||
details: "",
|
||||
docsAllowedPerMonth: 1,
|
||||
pricing: [
|
||||
{ type: "one-time", amount: 59 },
|
||||
{ type: "annDiscount", amount: 59 },
|
||||
{ type: "additionalAccount", amount: 0 },
|
||||
],
|
||||
},
|
||||
{
|
||||
name: "Associate",
|
||||
label: "Associate",
|
||||
value: "associate",
|
||||
description: [
|
||||
"1 document per month",
|
||||
"Intellidraft AI - service-ready document in minutes",
|
||||
"Carryover 1 unused document each subscription period",
|
||||
"Documents formatted for jurisdiction",
|
||||
"24/7 support",
|
||||
"First month is free!",
|
||||
],
|
||||
details: "",
|
||||
docsAllowedPerMonth: 1,
|
||||
pricing: [
|
||||
{ type: "monthly", amount: 53 },
|
||||
{ type: "annDiscount", amount: 38 },
|
||||
{ type: "additionalAccount", amount: 0 },
|
||||
],
|
||||
},
|
||||
{
|
||||
name: "Partner",
|
||||
label: "Partner",
|
||||
value: "partner",
|
||||
description: [
|
||||
"3 documents per month",
|
||||
"Intellidraft AI - service-ready document in minutes",
|
||||
"Carryover 1 unused document per month",
|
||||
"Documents formatted for jurisdiction",
|
||||
"24/7 support",
|
||||
"Up to 2 additional accounts: $49/each",
|
||||
],
|
||||
details: "",
|
||||
docsAllowedPerMonth: 3,
|
||||
pricing: [
|
||||
{ type: "monthly", amount: 71 },
|
||||
{ type: "annDiscount", amount: 56 },
|
||||
{ type: "additionalAccount", amount: 49 },
|
||||
],
|
||||
},
|
||||
{
|
||||
name: "Senior Partner",
|
||||
label: "Senior Partner",
|
||||
value: "seniorPartner",
|
||||
description: [
|
||||
"Unlimited documents.",
|
||||
"Intellidraft AI - service-ready document in minutes",
|
||||
"Documents formatted for jurisdiction",
|
||||
"24/7 Triage-level support response",
|
||||
"Up to 5 additional accounts at $39/each",
|
||||
],
|
||||
details: "",
|
||||
docsAllowedPerMonth: 50000,
|
||||
pricing: [
|
||||
{ type: "monthly", amount: 132 },
|
||||
{ type: "annDiscount", amount: 119 },
|
||||
{ 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 },
|
||||
],
|
||||
},
|
||||
*/
|
||||
Reference in New Issue
Block a user