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

Brenosalv/content/319-cta-adjustments #404

Merged
merged 1 commit into from
Jul 17, 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
2 changes: 1 addition & 1 deletion src/components/header.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -212,7 +212,7 @@ const Header = ({ fixedHeader }: HeaderProps) => {
href="https://dashboard.estuary.dev/register"
className="global-header-try-it-button"
>
Try it free
Try it Free
</OutboundLinkFilled>
</div>
</div>
Expand Down
20 changes: 9 additions & 11 deletions src/style.less
Original file line number Diff line number Diff line change
Expand Up @@ -5450,21 +5450,12 @@ table th {
margin-right: auto;
max-width: 1350px;
border-radius: 16px;
margin-top: 48px;
padding: 48px;
display: flex;
gap: 32px;
flex-direction: column;
gap: 24px;
align-items: center;
justify-content: space-around;

@media (max-width: 1350px) {
padding: 48px 30px;
}

@media (max-width: 767px) {
flex-wrap: wrap;
}

h3 {
text-transform: uppercase;
color: #ffffff;
Expand Down Expand Up @@ -6018,11 +6009,18 @@ table th {
max-width: 1356px;
margin-left: auto;
margin-right: auto;
margin-top: 48px;
border-radius: 16px;
overflow: hidden;

&:after {
border-radius: 24px;
}

@media (max-width: 1350px) {
padding: 48px 30px;
}

@media (max-width: 1150px) {
padding: 32px;
}
Expand Down
42 changes: 22 additions & 20 deletions src/templates/blog-post/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -133,20 +133,22 @@ const BlogPostTemplate = ({ data: { post } }) => {
body={post.body.data.childHtmlRehype.html}
/>

<BuildPipeLineBannerBackground>
<div className="build-pipeline-banner">
<h3>
Start streaming your data{' '}
<span>for free</span>
</h3>
<OutboundLink
href="https://dashboard.estuary.dev/register"
className="pipeline-link"
>
Build a Pipeline
</OutboundLink>
</div>
</BuildPipeLineBannerBackground>
<div className="build-pipeline-banner-wrapper">
<BuildPipeLineBannerBackground>
<div className="build-pipeline-banner">
<h3>
Start streaming your data{' '}
<span>for free</span>
</h3>
<OutboundLink
href="https://dashboard.estuary.dev/register"
className="pipeline-link"
>
Build a Pipeline
</OutboundLink>
</div>
</BuildPipeLineBannerBackground>
</div>
</div>

<div className="post-sidebar">
Expand All @@ -167,7 +169,7 @@ const BlogPostTemplate = ({ data: { post } }) => {
<div className="sidebar-right">
<div className="banner">
<span>
Build <span>Pipeline</span>
Build a <span>Pipeline</span>
</span>
</div>
<h3>
Expand All @@ -178,7 +180,7 @@ const BlogPostTemplate = ({ data: { post } }) => {
href="https://dashboard.estuary.dev/register"
className="pipeline-link"
>
Build pipeline
Build a Pipeline
</OutboundLink>
</div>
</div>
Expand Down Expand Up @@ -236,8 +238,8 @@ const BlogPostTemplate = ({ data: { post } }) => {
<div className="big-build-pipeline-banner-container_layout">
<div className="left-column-container">
<h5>Streaming Pipelines.</h5>
<h5>Simple to deploy.</h5>
<h5>Simply priced.</h5>
<h5>Simple to Deploy.</h5>
<h5>Simply Priced.</h5>
</div>
<div className="right-column-container">
<div>
Expand Down Expand Up @@ -277,13 +279,13 @@ const BlogPostTemplate = ({ data: { post } }) => {
href="https://dashboard.estuary.dev/register"
className="pipeline-link"
>
Build a pipeline
Build a Pipeline
</OutboundLink>
<OutboundLink
href="https://estuary.dev/pricing"
className="pricing-link"
>
More on our Pricing
See Pricing
</OutboundLink>
</div>
</BuildPipeLineBannerBackground>
Expand Down
4 changes: 2 additions & 2 deletions src/templates/product-comparison.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,9 @@ import Layout from '../components/layout';
import Seo from '../components/seo';
import SignUp from '../components/signup';

import EstuaryLogo from '../svgs/colored-logo.svg';
import { estuaryAllowsEnterprises } from '../content/seo';
import { globalMaxWidth, sectionTopBottomPadding } from '../globalStyles';
import EstuaryLogo from '../svgs/colored-logo.svg';

export const AboutUsWrapper = styled.div`
${globalMaxWidth}
Expand Down Expand Up @@ -165,7 +165,7 @@ const ComparisonPageTemplate = ({
</section>
<div className="cta-wrap-single">
<a href="https://dashboard.estuary.dev/register">
Build a pipeline
Build a Pipeline
</a>
</div>
<section className="comparison-to-others">
Expand Down
Loading