This commit is contained in:
Kenneth Jannette
2024-01-26 18:14:24 -06:00
parent a3f8d23904
commit 4ab641150d
2 changed files with 8 additions and 8 deletions

View File

@@ -52,7 +52,7 @@ const SignupPage = () => {
const basicPrice = 59; const basicPrice = 59;
const proPrice = 139; const proPrice = 139;
const unlimtedAnnualPrice = 169; const unlimtedPrice = 169;
const handleChangeInput = (e, name) => { const handleChangeInput = (e, name) => {
const newData = handleFormDataChange(e, name, data, signupFields); const newData = handleFormDataChange(e, name, data, signupFields);

View File

@@ -1,6 +1,6 @@
export const signupRadioFields = [ export const signupRadioFields = [
{ {
name: "Monthly - basic", name: "Associate",
label: "Monthly - basic", label: "Monthly - basic",
value: "monthlyBasic", value: "monthlyBasic",
description: [ description: [
@@ -9,10 +9,10 @@ export const signupRadioFields = [
"24/7 support", "24/7 support",
], ],
details: "", details: "",
price: 89, price: 59,
}, },
{ {
name: "Monthly - pro", name: "Partner",
label: "Monthly - pro", label: "Monthly - pro",
value: "monthlyProPlan", value: "monthlyProPlan",
description: [ description: [
@@ -22,14 +22,14 @@ export const signupRadioFields = [
"24/7 support", "24/7 support",
], ],
details: "", details: "",
price: 159, price: 169,
}, },
{ {
name: "Unlimited", name: "Of Counsel",
label: "Annual - unlimited annual", label: "Annual - unlimited annual",
value: "annualUnlimited", value: "annualUnlimited",
description: ["Generate unlimited documents.", "Stat support"], description: ["Unlimited documents.", "Triage-level support"],
details: "", details: "",
price: 1489, price: 199,
}, },
]; ];