This commit is contained in:
Kenneth Jannette
2024-01-26 17:30:17 -06:00
parent 731fb70fc3
commit 102eb11013
2 changed files with 16 additions and 11 deletions

View File

@@ -3,23 +3,32 @@ export const signupRadioFields = [
name: "Monthly - basic", name: "Monthly - basic",
label: "Monthly - basic", label: "Monthly - basic",
value: "monthlyBasic", value: "monthlyBasic",
description: "Generate 1 document per month", description: [
details: "Billed every month", "1 document per month",
"Carryover one unused doc to next period",
"24/7 support",
],
details: "",
price: 89, price: 89,
}, },
{ {
name: "Monthly - pro", name: "Monthly - pro",
label: "Monthly - pro", label: "Monthly - pro",
value: "monthlyProPlan", value: "monthlyProPlan",
description: "Generate up to 3 documents per month", description: [
details: "Billed every three months. A xxx percent savings", "3 documents per month",
"Carryover two unused docs to next period",
"Additional accounts: first: 39, after: 59/each",
"24/7 support",
],
details: "",
price: 159, price: 159,
}, },
{ {
name: "Annual - unlimted annual", name: "Annual - unlimted annual",
label: "Annual - unlimited annual", label: "Annual - unlimited annual",
value: "annualUnlimited", value: "annualUnlimited",
description: "Generate unlimited documents.", description: ["Generate unlimited documents.", "24/7 support"],
details: "Billed annualy. A xxx percent savings", details: "Billed annualy. A xxx percent savings",
price: 1489, price: 1489,
}, },

View File

@@ -5,12 +5,8 @@ function Toggle() {
return ( return (
<> <>
<ToggleButtonGroup type="radio" name="options" defaultValue={1}> <ToggleButtonGroup type="radio" name="options" defaultValue={1}>
<ToggleButton id="tbg-radio-1" value={1}> <ToggleButton id="tbg-radio-1" value={1}></ToggleButton>
'' <ToggleButton id="tbg-radio-2" value={2}></ToggleButton>
</ToggleButton>
<ToggleButton id="tbg-radio-2" value={2}>
''
</ToggleButton>
</ToggleButtonGroup> </ToggleButtonGroup>
</> </>
); );