Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/master' into travjenkins/bug/add…
Browse files Browse the repository at this point in the history
…-numbers-to-toc
  • Loading branch information
travjenkins committed Jul 16, 2024
2 parents 060f1ca + 06a0ada commit 5f49f10
Show file tree
Hide file tree
Showing 4 changed files with 47 additions and 3 deletions.
8 changes: 5 additions & 3 deletions src/components/footer.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -37,9 +37,11 @@ const Footer = () => {
<h1 className="global-footer-title">Estuary</h1>
</Link>
<p className="global-footer-subtext">
Managed streaming data pipelines, streaming SQL
transformations and turnkey connectivity to clouds,
databases, and apps.
Estuary provides real-time data integration and ETL for
modern data pipelines. Build scalable, fault-tolerant
streaming data pipelines that seamlessly connect to
virtually any data source for data warehouses, real-time
analytics, operations, machine learning, and AI.
</p>
<div>
<p className="global-footer-subtext-title">
Expand Down
14 changes: 14 additions & 0 deletions src/layouts/Pricing/Head/index.tsx
Original file line number Diff line number Diff line change
@@ -1,12 +1,26 @@
import React from 'react';

import { graphql, useStaticQuery } from 'gatsby';
import Seo from '../../../components/seo';

export const Head = () => {
const { metaImg } = useStaticQuery(graphql`
query {
metaImg: file(relativePath: { eq: "pricing/graphic_parent.png" }) {
childImageSharp {
fixed(width: 1200) {
src
}
}
}
}
`);

return (
<Seo
title="Pricing"
description="Reduce your data costs and latency with managed streaming CDC and ETL pipelines."
image={metaImg.childImageSharp.fixed.src}
/>
);
};
Expand Down
14 changes: 14 additions & 0 deletions src/pages/index.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import * as React from 'react';
import { graphql, useStaticQuery } from 'gatsby';
import {
SectionEight,
SectionFive,
Expand Down Expand Up @@ -32,10 +33,23 @@ const IndexPage = () => {
};

export const Head = () => {
const { metaImg } = useStaticQuery(graphql`
query {
metaImg: file(relativePath: { eq: "flow-desktop.png" }) {
childImageSharp {
fixed(width: 1200) {
src
}
}
}
}
`);

return (
<Seo
title="Estuary | Real-Time Data Integration, CDC & ETL Platform"
description="Estuary Flow is the most reliable real-time data integration platform for ETL, ELT, CDC and streaming pipelines. Build and automate data pipelines. Try it free!"
image={metaImg.childImageSharp.fixed.src}
/>
);
};
Expand Down
14 changes: 14 additions & 0 deletions src/pages/product.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
import React from 'react';

import { graphql, useStaticQuery } from 'gatsby';
import Seo from '../components/seo';

import SectionEight from '../components/Product/SectionEight';
Expand Down Expand Up @@ -46,10 +47,23 @@ const Product = () => {
};

export const Head = () => {
const { metaImg } = useStaticQuery(graphql`
query {
metaImg: file(relativePath: { eq: "real-time-graphic.png" }) {
childImageSharp {
fixed(width: 1200) {
src
}
}
}
}
`);

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."
image={metaImg.childImageSharp.fixed.src}
/>
);
};
Expand Down

0 comments on commit 5f49f10

Please sign in to comment.