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

View File

@@ -38,6 +38,7 @@ const SignupPage = () => {
const [showSelectPlan, setShowSelectPlan] = useState(true); const [showSelectPlan, setShowSelectPlan] = useState(true);
const signupRadioFields = [ const signupRadioFields = [
[
{ {
name: "Monthly - basic", name: "Monthly - basic",
label: "Monthly - basic", label: "Monthly - basic",
@@ -49,6 +50,20 @@ const SignupPage = () => {
label: "Annual - unlimte", label: "Annual - unlimte",
value: "annualUnlimited", 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";