This commit is contained in:
Kenneth Jannette
2024-01-26 21:08:58 -06:00
parent c1c484dbda
commit 00f6febdae
3 changed files with 16 additions and 7 deletions

View File

@@ -9,7 +9,10 @@ export const signupRadioFields = [
"24/7 support",
],
details: "",
price: 49,
pricing: [
{ type: "standard", amount: 69 },
{ type: "annDiscount", amount: 49 },
],
},
{
name: "Partner",
@@ -22,7 +25,10 @@ export const signupRadioFields = [
"24/7 support",
],
details: "",
price: 79,
pricing: [
{ type: "standard", amount: 97 },
{ type: "annDiscount", amount: 79 },
],
},
{
name: "Senior Partner",
@@ -31,9 +37,12 @@ export const signupRadioFields = [
description: [
"Unlimited documents.",
"Triage-level support",
"Up to 8 additional accounts: 19/each",
"Up to 8 additional accounts at 19/each",
],
details: "",
price: 119,
pricing: [
{ type: "standard", amount: 149 },
{ type: "annDiscount", amount: 119 },
],
},
];