first commit for refactored project

This commit is contained in:
KS Jannette
2026-05-23 17:08:47 -04:00
commit 6545f8f549
166 changed files with 48911 additions and 0 deletions

View 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 },
],
},
*/