Skip to content

Commit

Permalink
taking business stuff off
Browse files Browse the repository at this point in the history
  • Loading branch information
Nick Grato committed Feb 28, 2024
1 parent 0b21611 commit b31442a
Show file tree
Hide file tree
Showing 7 changed files with 6 additions and 12 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ const ContactCard = ({ email, subject, classProp = '' }: ContactCardPropsT) => {
return (
<div className={`${styles.wrapper} ${classProp}`}>
<div className={styles.content}>
<h2>Enterprise</h2>
<h2>Business</h2>
<p>Need dedicated infrastructure, custom clients, or something else?</p>
<Button
label="contact us"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -38,9 +38,6 @@
&_rainbow {
background: $gradient-rainbow;
}
&_tree {
background: $gradient-tree;
}
}

.title {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ type BasePlanCardPropsT = {
showDisclaimer?: boolean;
confirmButton: ReactNode;
footerClassProp?: string;
color: 'silver' | 'warm' | 'rainbow' | 'tree';
color: 'silver' | 'warm' | 'rainbow';
isSoldOut?: boolean;
};

Expand Down
2 changes: 1 addition & 1 deletion client/pages/subscribe/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,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
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@

.cards {
display: grid;
grid-template-columns: 288px 288px 288px 288px;
grid-template-columns: 288px 288px 288px;
grid-template-rows: auto auto;
column-gap: 18px;
gap: 18px;
Expand Down
5 changes: 2 additions & 3 deletions marketing/components/shared/Subscribe/Subscribe.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -246,7 +246,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 @@ -276,9 +276,8 @@ const Subscribe = ({ classProp = '' }: SubscribePropsT) => {
}}
/>
}
/>
/> */}

{/* BUSINESS INQU*/}
{!isMobileDown && <HangerCard />}
</>
)}
Expand Down
2 changes: 0 additions & 2 deletions marketing/util/utilities.ts
Original file line number Diff line number Diff line change
Expand Up @@ -28,11 +28,9 @@ export const getPricePageData = (
): PricePageDataT => {
const PersonalProdId = 'prod_Mo4tS8uH9y3Mj5';
const ProfessionalProdId = 'prod_OGWdlewqBfGPy0';
const BusinessProdId = 'prod_Mo4tS8uH9y3Mj5';
const ProductIds = {
[PlansE.PERSONAL]: PersonalProdId,
[PlansE.PROFESSIONAL]: ProfessionalProdId,
[PlansE.BUSINESS]: BusinessProdId,
};

const BASE_URL = `https://subscriptions.firefox.com/checkout/${ProductIds[plan]}`;
Expand Down

0 comments on commit b31442a

Please sign in to comment.