Skip to content

Commit

Permalink
change
Browse files Browse the repository at this point in the history
  • Loading branch information
Nick Grato committed Feb 28, 2024
1 parent f028002 commit a081e16
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 36 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,8 @@ const BusinessPlanCard = ({ billingPeriod }: BusinessPlanCardPropsT) => {
return (
<BasePlanCard
plan={PlansE.BUSINESS}
title="Business"
color="tree"
title="Professional"
color="rainbow"
price={
<Price
price={`${currencySymbol}${planPrice}`}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ type BasePlanCardPropsT = {
additionalContent?: ReactNode;
confirmButton: ReactNode;
footerClassProp?: string;
color: 'silver' | 'warm' | 'rainbow' | 'tree';
color: 'silver' | 'warm' | 'rainbow';
features?: FeaturesT | null;
};

Expand Down
33 changes: 0 additions & 33 deletions marketing/components/shared/Subscribe/Subscribe.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -245,39 +245,6 @@ const Subscribe = ({ classProp = '' }: SubscribePropsT) => {
}
/>

{/* BUSINESS_COPY PLAN */}
{/* <BasePlanCard
classProp={styles.plan_3}
title={BUSINESS_COPY.title}
subtitle={BUSINESS_COPY.subtitle}
color="tree"
price={
<Price
price={`${businessPlanData.currencySymbol}${businessPlanData.planPrice}`}
currencyAbbrev={businessPlanData.currencyAbbrev}
billingPeriod={`per ${
billingPeriod === BillingPeriodE.ANNUAL
? 'year'
: 'month'
}`}
/>
}
valueProps={BUSINESS_COPY.valueProps}
features={BUSINESS_COPY.features}
additionalContent={
<Status icon="greenLight" message={BUSINESS_COPY.status} />
}
confirmButton={
<Button
label="Create Professional hub"
text="Get Started"
onClick={() => {
window.open(businessPlanData.planUrl);
}}
/>
}
/> */}

{!isMobileDown && <HangerCard />}
</>
)}
Expand Down

0 comments on commit a081e16

Please sign in to comment.