Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

init commit #439

Merged
merged 2 commits into from
Feb 29, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 1 addition & 2 deletions client/pages/subscribe/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@ import {
PersonalPlanCard,
StarterPlanCard,
ProfessionalPlanCard,
BusinessPlanCard,
} from '@Modules/plans/plan-cards';
import { BillingPeriodE } from 'types/General';

Expand Down Expand Up @@ -38,7 +37,7 @@ const Subscribe = () => {
</div>
<div className="flex-justify-center flex-wrap">
<ProfessionalPlanCard billingPeriod={billingPeriod} />
<BusinessPlanCard billingPeriod={billingPeriod} />
{/* <BusinessPlanCard billingPeriod={billingPeriod} /> */}
</div>
</div>
<div className="flex">
Expand Down
14 changes: 7 additions & 7 deletions marketing/components/shared/Subscribe/Subscribe.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -52,11 +52,11 @@ const Subscribe = ({ classProp = '' }: SubscribePropsT) => {
billingPeriod
);

const businessPlanData = getPricePageData(
regionCode,
PlansE.BUSINESS,
billingPeriod
);
// const businessPlanData = getPricePageData(
// regionCode,
// PlansE.BUSINESS,
// billingPeriod
// );

const loadingCards = isTabletDown ? [1] : [1, 2, 3, 4];

Expand Down Expand Up @@ -245,7 +245,7 @@ const Subscribe = ({ classProp = '' }: SubscribePropsT) => {
/>

{/* BUSINESS_COPY PLAN */}
<BasePlanCard
{/* <BasePlanCard
classProp={styles.plan_3}
title={BUSINESS_COPY.title}
subtitle={BUSINESS_COPY.subtitle}
Expand Down Expand Up @@ -275,7 +275,7 @@ const Subscribe = ({ classProp = '' }: SubscribePropsT) => {
}}
/>
}
/>
/> */}

{/* BUSINESS INQU*/}
{!isMobileDown && <HangerCard />}
Expand Down
Loading