Skip to content

Commit

Permalink
Merge branch 'master' into production
Browse files Browse the repository at this point in the history
  • Loading branch information
sagarsoni7 committed Jun 7, 2024
2 parents 4235aa1 + bcbcbf9 commit ed17a6d
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ import underlineIcon from "features/pricing/assets/yellow-highlight.svg";
import { trackEnterprisePlanScheduleMeetButtonClicked } from "./analytics";
import { getFunctions, httpsCallable } from "firebase/functions";
import { EVENTS } from "./analytics";
import "./index.css";

const enterprisePlan = PricingFeatures[PRICING.PRODUCTS.HTTP_RULES].enterprise;

Expand All @@ -26,12 +27,12 @@ const EnterpriseBanner: React.FC<{ openContactUsModal: () => void }> = ({ openCo
};

return (
<Row className="enterprise-banner" style={{ marginBottom: "-15%" }}>
<Col lg={19} sm={20}>
<Row className="enterprise-banner" gutter={[16, 16]}>
<Col lg={14} sm={24}>
<Typography.Title level={2}>Enterprise Plan</Typography.Title>
<Typography.Title level={5}>
<span className="enterprise-banner-underline">
Recommened for larger teams <img src={underlineIcon} alt="highlight" />
Recommended for larger teams <img src={underlineIcon} alt="highlight" />
</span>{" "}
and organizations that need additional control
</Typography.Title>
Expand All @@ -57,7 +58,7 @@ const EnterpriseBanner: React.FC<{ openContactUsModal: () => void }> = ({ openCo
</Col>
</Row>
</Col>
<Col className="align-self-center">
<Col lg={10} sm={24} className="align-self-center text-center enterprise-image">
<img src={enterpriseImage} height={190} width={200} alt="enterprise-plan" />
</Col>
</Row>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,7 @@
}
.pricing-table-wrapper {
display: flex;
justify-content: space-evenly;
flex-direction: column;
align-items: center;
}
Expand Down

0 comments on commit ed17a6d

Please sign in to comment.