This commit is contained in:
Kenneth Jannette
2024-01-25 12:20:57 -06:00
parent 136c1e9af2
commit 4fd3855a1d

View File

@@ -38,17 +38,32 @@ const SignupPage = () => {
const [showSelectPlan, setShowSelectPlan] = useState(true); const [showSelectPlan, setShowSelectPlan] = useState(true);
const signupRadioFields = [ const signupRadioFields = [
{ [
name: "Monthly - basic", {
label: "Monthly - basic", name: "Monthly - basic",
value: "monthlyBasic", label: "Monthly - basic",
}, value: "monthlyBasic",
{ name: "Monthly - pro", label: "Monthly - pro", value: "monthlyPro" }, },
{ { name: "Monthly - pro", label: "Monthly - pro", value: "monthlyPro" },
name: "Annual - unlimted", {
label: "Annual - unlimte", name: "Annual - unlimted",
value: "annualUnlimited", label: "Annual - unlimte",
}, value: "annualUnlimited",
},
],
[
{
name: "Monthly - basic",
label: "Monthly - basic",
value: "monthlyBasic",
},
{ name: "Monthly - pro", label: "Monthly - pro", value: "monthlyPro" },
{
name: "Annual - unlimted",
label: "Annual - unlimte",
value: "annualUnlimited",
},
],
]; ];
const modalText = "Description of monthly and annual subscriptions"; const modalText = "Description of monthly and annual subscriptions";