This commit is contained in:
Kenneth Jannette
2024-01-28 14:53:06 -06:00
parent 393f795745
commit 3a77baeca5
3 changed files with 6 additions and 6 deletions

View File

@@ -40,7 +40,7 @@ const SignupPage = () => {
const [showPaymentModal, setShowPaymentModal] = useState(false); const [showPaymentModal, setShowPaymentModal] = useState(false);
const [showSelectPlan, setShowSelectPlan] = useState(false); const [showSelectPlan, setShowSelectPlan] = useState(false);
const [activeRadioOption, setActiveRadioOption] = useState("partner"); const [activeRadioOption, setActiveRadioOption] = useState("partner");
const [selectedPlan, setSelectedPlan] = useState([{}]); const [selectedPlan, setSelectedPlan] = useState([signupRadioFields[1]]);
const [isAnnual, setIsAnnual] = useState(false); const [isAnnual, setIsAnnual] = useState(false);
const stripe = new Stripe(stripeApiKey); const stripe = new Stripe(stripeApiKey);
const apiUrl = const apiUrl =

View File

@@ -1,13 +1,13 @@
export const signupRadioFields = [ export const signupRadioFields = [
{ {
name: "Associate", name: "Associate",
label: "Monthly - basic", label: "Associate",
value: "associate", value: "associate",
description: [ description: [
"1 document per month", "1 document per month",
"Carryover 1 document to next period", "Carryover 1 document to next period",
"24/7 support", "24/7 support",
"First month is free!", "First month free!",
], ],
details: "", details: "",
pricing: [ pricing: [
@@ -17,7 +17,7 @@ export const signupRadioFields = [
}, },
{ {
name: "Partner", name: "Partner",
label: "Monthly - pro", label: "Partner",
value: "partner", value: "partner",
description: [ description: [
"3 documents per month", "3 documents per month",
@@ -33,7 +33,7 @@ export const signupRadioFields = [
}, },
{ {
name: "Senior Partner", name: "Senior Partner",
label: "Annual - unlimited annual", label: "Senior Partner",
value: "seniorPartner", value: "seniorPartner",
description: [ description: [
"Unlimited documents.", "Unlimited documents.",

View File

@@ -46,7 +46,7 @@ const Radio = (props) => {
<div className="radio-description-box"> <div className="radio-description-box">
{description.map((item, i) => { {description.map((item, i) => {
const el = const el =
item == "First month is free!" ? ( item == "First month free!" ? (
<div className="offer-div"> <div className="offer-div">
<p className="signup-feat-item-bold">{item}</p> <p className="signup-feat-item-bold">{item}</p>
</div> </div>