Skip to content

Commit

Permalink
Change title and meta description of some pages (#523)
Browse files Browse the repository at this point in the history
* Change title and meta description of some pages

* Fix integration page title

---------

Co-authored-by: Breno <[email protected]>
  • Loading branch information
Brenosalv and Breno authored Oct 8, 2024
1 parent 66b8070 commit d5bbf07
Show file tree
Hide file tree
Showing 5 changed files with 14 additions and 9 deletions.
2 changes: 1 addition & 1 deletion src/components/seo.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ const Seo: React.FC<SeoProps> = ({
}

const metaDescription = description ?? site.siteMetadata.description;
const defaultTitle = title.includes('Estuary |')
const defaultTitle = title.includes('Estuary')
? ''
: site.siteMetadata?.title;

Expand Down
9 changes: 7 additions & 2 deletions src/pages/integrations.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import Layout from '../components/Layout';
import Seo from '../components/seo';

const description =
'Capture from clouds, databases, and SaaS apps using real-time ETL, create real-time transformations and materialized views, for a consistent, exact copy of your data powering both analytics and operations.';
"Explore Estuary Flow's real-time data integration connectors. Connect data from sources to destinations like databases, SaaS apps, and cloud platforms to streamline ETL pipelines.";

const Integrations = () => {
return (
Expand All @@ -19,7 +19,12 @@ const Integrations = () => {
};

export const Head = () => {
return <Seo title="Integrations" description={description} />;
return (
<Seo
title="Data Integration Connectors Directory"
description={description}
/>
);
};

export default Integrations;
4 changes: 2 additions & 2 deletions src/pages/pricing.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -35,8 +35,8 @@ export const Head = () => {

return (
<Seo
title="Pricing"
description="Reduce your data costs and latency with managed streaming CDC and ETL pipelines."
title="Pricing & Plans | Get Started for Free"
description="Estuary Flow offers simple pay-as-you-go pricing for real-time data integration and ETL. Build free pipelines, estimate costs with the calculator, and scale with flexible plans."
image={metaImg.childImageSharp.gatsbyImageData.images.fallback.src}
/>
);
Expand Down
4 changes: 2 additions & 2 deletions src/pages/product.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -59,8 +59,8 @@ export const Head = () => {

return (
<Seo
title="Flow"
description="Flow is the first real-time Data Operations platform. Set up pipelines with both historical and real-time data in minutes."
title="Estuary Flow | Real-time Data Pipeline & Integration Platform"
description="Estuary Flow is a real-time ETL and data pipeline platform for quick data integration. Build pipelines in minutes and handle both real-time and batch operations efficiently."
image={metaImg.childImageSharp.gatsbyImageData.images.fallback.src}
/>
);
Expand Down
4 changes: 2 additions & 2 deletions src/templates/blog/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -170,8 +170,8 @@ export default BlogIndex;
export const Head = () => {
return (
<Seo
title="Blog"
description="More about Estuary and related technologies, straight from the team. Our blog breaks down basic concepts and takes you into the minds of our engineers."
title="Estuary Blog | Insights on Data Strategy and Engineering"
description="Get expert insights on data strategy, integration, ETL, and engineering from Estuary Flow's blog. Explore tutorials, trends, and solutions crafted by our team of engineers."
/>
);
};
Expand Down

0 comments on commit d5bbf07

Please sign in to comment.