From d5bbf07b4d862299a42e09f47e3cc6e4e37c5aa6 Mon Sep 17 00:00:00 2001 From: Breno Salvador <60396753+Brenosalv@users.noreply.github.com> Date: Tue, 8 Oct 2024 14:34:16 -0300 Subject: [PATCH] Change title and meta description of some pages (#523) * Change title and meta description of some pages * Fix integration page title --------- Co-authored-by: Breno --- src/components/seo.tsx | 2 +- src/pages/integrations.tsx | 9 +++++++-- src/pages/pricing.tsx | 4 ++-- src/pages/product.tsx | 4 ++-- src/templates/blog/index.tsx | 4 ++-- 5 files changed, 14 insertions(+), 9 deletions(-) diff --git a/src/components/seo.tsx b/src/components/seo.tsx index e3edd09f..745fa1c8 100644 --- a/src/components/seo.tsx +++ b/src/components/seo.tsx @@ -54,7 +54,7 @@ const Seo: React.FC = ({ } const metaDescription = description ?? site.siteMetadata.description; - const defaultTitle = title.includes('Estuary |') + const defaultTitle = title.includes('Estuary') ? '' : site.siteMetadata?.title; diff --git a/src/pages/integrations.tsx b/src/pages/integrations.tsx index 5df31a5c..148ec380 100644 --- a/src/pages/integrations.tsx +++ b/src/pages/integrations.tsx @@ -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 ( @@ -19,7 +19,12 @@ const Integrations = () => { }; export const Head = () => { - return ; + return ( + + ); }; export default Integrations; diff --git a/src/pages/pricing.tsx b/src/pages/pricing.tsx index 30946816..f8f90a98 100644 --- a/src/pages/pricing.tsx +++ b/src/pages/pricing.tsx @@ -35,8 +35,8 @@ export const Head = () => { return ( ); diff --git a/src/pages/product.tsx b/src/pages/product.tsx index 84d92c90..3b55d117 100644 --- a/src/pages/product.tsx +++ b/src/pages/product.tsx @@ -59,8 +59,8 @@ export const Head = () => { return ( ); diff --git a/src/templates/blog/index.tsx b/src/templates/blog/index.tsx index 54e593ae..903dbc30 100644 --- a/src/templates/blog/index.tsx +++ b/src/templates/blog/index.tsx @@ -170,8 +170,8 @@ export default BlogIndex; export const Head = () => { return ( ); };