more
This commit is contained in:
@@ -40,7 +40,7 @@ const SignupPage = () => {
|
||||
const [showPaymentModal, setShowPaymentModal] = useState(false);
|
||||
const [showSelectPlan, setShowSelectPlan] = useState(false);
|
||||
const [activeRadioOption, setActiveRadioOption] = useState("partner");
|
||||
const [selectedPlan, setSelectedPlan] = useState([{}]);
|
||||
const [selectedPlan, setSelectedPlan] = useState([signupRadioFields[1]]);
|
||||
const [isAnnual, setIsAnnual] = useState(false);
|
||||
const stripe = new Stripe(stripeApiKey);
|
||||
const apiUrl =
|
||||
|
||||
@@ -1,13 +1,13 @@
|
||||
export const signupRadioFields = [
|
||||
{
|
||||
name: "Associate",
|
||||
label: "Monthly - basic",
|
||||
label: "Associate",
|
||||
value: "associate",
|
||||
description: [
|
||||
"1 document per month",
|
||||
"Carryover 1 document to next period",
|
||||
"24/7 support",
|
||||
"First month is free!",
|
||||
"First month free!",
|
||||
],
|
||||
details: "",
|
||||
pricing: [
|
||||
@@ -17,7 +17,7 @@ export const signupRadioFields = [
|
||||
},
|
||||
{
|
||||
name: "Partner",
|
||||
label: "Monthly - pro",
|
||||
label: "Partner",
|
||||
value: "partner",
|
||||
description: [
|
||||
"3 documents per month",
|
||||
@@ -33,7 +33,7 @@ export const signupRadioFields = [
|
||||
},
|
||||
{
|
||||
name: "Senior Partner",
|
||||
label: "Annual - unlimited annual",
|
||||
label: "Senior Partner",
|
||||
value: "seniorPartner",
|
||||
description: [
|
||||
"Unlimited documents.",
|
||||
|
||||
@@ -46,7 +46,7 @@ const Radio = (props) => {
|
||||
<div className="radio-description-box">
|
||||
{description.map((item, i) => {
|
||||
const el =
|
||||
item == "First month is free!" ? (
|
||||
item == "First month free!" ? (
|
||||
<div className="offer-div">
|
||||
<p className="signup-feat-item-bold">{item}</p>
|
||||
</div>
|
||||
|
||||
Reference in New Issue
Block a user