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

Doug/pricing fast followers #159

Closed
wants to merge 3 commits into from
Closed
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
49 changes: 11 additions & 38 deletions src/pages/pricing.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,8 @@ import Accordion from '@mui/material/Accordion';
import AccordionSummary from '@mui/material/AccordionSummary';
import AccordionDetails from '@mui/material/AccordionDetails';
import ExpandMoreIcon from '@mui/icons-material/ExpandMore';
import PricingExampleTwo from "../svgs/pricing_example_graphic_1.svg"
import PricingExampleOne from "../svgs/illustration1.svg"
import PricingExampleTwo from "../svgs/graphic_parent_2.svg"
import PricingExampleOne from "../svgs/graphic_parent.svg"
import { Check } from "@mui/icons-material"
import PlanTabs from "../components/PlanTabs"

Expand Down Expand Up @@ -550,11 +550,7 @@ const PricingPage = () => {
<ContextToolTip
placement="top-start"
title={(<Typography className="context-tooltip-text">
‘Change Data’ is defined as any incremental
upsert event. You are only billed on the bytes
of moving that particular new event. For example, a single
database row being backfilled or updated will be billed based on the total size of
the corresponding JSON document. One connector can operate on many tables inside a DB.
Competitor pricing estimates are based on publicly available data as of October 2023.
</Typography>)} >
<QuestionMarkIcon id="change-data" className="question-mark-dark" />
</ContextToolTip>
Expand All @@ -579,13 +575,8 @@ const PricingPage = () => {
<h2 className="pricing-comparison-header">Pricing Examples</h2>
{isSmall ? (
<div className="pricing-comparison-row">
<div>
<StaticImage
placeholder="none"
alt="pricing logo"
src="../svgs/pricing__example_1.png"
layout="constrained"
className="pricing-example-image" />
<div className="no-box-shadow">
<PricingExampleOne/>
</div>

<div>
Expand All @@ -597,13 +588,8 @@ const PricingPage = () => {
</div>


<div>
<StaticImage
placeholder="none"
alt="pricing logo"
src="../svgs/pricing__example_1.png"
layout="constrained"
className="pricing-example-image" />
<div className="no-box-shadow">
<PricingExampleTwo/>
</div>
<div>
<div className="pricing-comparison-text">
Expand All @@ -617,24 +603,11 @@ const PricingPage = () => {
</div>
) : (
<div className="pricing-comparison-row">
<div>
<StaticImage
placeholder="none"
alt="pricing logo"
src="../svgs/pricing__example_1.png"
layout="fixed"
className="pricing-example-image" />
<div className="no-box-shadow">
<PricingExampleOne />
</div>
<div>
{/* <PricingExampleOne /> */}
{/* <PricingExampleTwo className="pricing-example-image" /> */}

<StaticImage
placeholder="none"
alt="pricing logo"
src="../svgs/pricing_example__2.png"
layout="fixed"
className="pricing-example-image" />
<div className="no-box-shadow">
<PricingExampleOne />
</div>
<div>
<div className="pricing-comparison-text">
Expand Down
17 changes: 14 additions & 3 deletions src/style.less
Original file line number Diff line number Diff line change
Expand Up @@ -7778,11 +7778,15 @@ table th {

.pricing-comparison-row>div {
display: flex;
flex-basis: calc(50% - 40px);
flex-basis: calc(50% - 52px);
justify-content: center;
box-shadow: 0px 4px 10px rgba(20, 20, 43, 0.14);
margin: 20px;
height: 330px;
margin: auto;
width: fit-content;
}

.no-box-shadow {
box-shadow: none !important;
}

.pricing-comparison-text {
Expand All @@ -7791,6 +7795,7 @@ table th {
justify-content: center;
align-items: center;
padding: 30px;
max-width: 568px;
}

.pricing-comparison-card-header {
Expand Down Expand Up @@ -8015,6 +8020,10 @@ table th {

@media(max-width: 595px) {

.pricing-comparison-row>div {
width: 60%;
}

.frequently-question {

h2 {
Expand Down Expand Up @@ -8089,6 +8098,8 @@ table th {
}

@media(max-width: 420px) {


.related-index-body {
display: flex !important;
flex-direction: column !important;
Expand Down
Loading
Loading