Skip to content

Commit

Permalink
fix: replace organization schema
Browse files Browse the repository at this point in the history
  • Loading branch information
Brenosalv committed Jul 5, 2024
1 parent 72734f6 commit 866d588
Showing 1 changed file with 30 additions and 5 deletions.
35 changes: 30 additions & 5 deletions src/components/seo.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -92,13 +92,13 @@ const Seo: React.FC<SeoProps> = ({
'@type': 'Organization',
'name': 'Estuary',
'alternateName': 'Estuary Flow',
'description':
'Estuary helps organizations gain real-time access to their data without having to manage infrastructure. Capture data from SaaS or technology sources, transform it and materialize it back into the same types of systems all with millisecond latency.',
image,
'logo': site.siteMetadata?.siteUrl + logoUrl,
'url':
url ??
(site.siteMetadata?.siteUrl || 'https://estuary.dev/'),
'description':
'Estuary is a real-time data operations (DataOps) platform that simplifies data pipelines. Capture data from any source, transform it with low-latency processing, and materialize it back into your systems for immediate action. Estuary enables data integration, stream processing, and change data capture in a unified platform.',
'logo': site.siteMetadata?.siteUrl + logoUrl,
'image': site.siteMetadata?.siteUrl + logoUrl,
'telephone': '',
'sameAs': [
'https://twitter.com/EstuaryDev',
Expand All @@ -109,10 +109,35 @@ const Seo: React.FC<SeoProps> = ({
'address': {
'@type': 'PostalAddress',
'streetAddress': '244 5th Ave, Suite 1277',
'addressLocality': 'New York, NY',
'addressLocality': 'New York',
'addressRegion': 'NY',
'postalCode': '10001',
'addressCountry': 'US',
},
'knowsAbout': [
'https://en.wikipedia.org/wiki/Data_integration',
'https://en.wikipedia.org/wiki/Extract,_transform,_load',
'https://en.wikipedia.org/wiki/Data_pipeline',
'https://en.wikipedia.org/wiki/Real-time_data',
'https://en.wikipedia.org/wiki/Data_warehouse',
'https://en.wikipedia.org/wiki/Change_data_capture',
],
'numberOfEmployees': '11-50',
'founders': [
{
'@type': 'Person',
'name': 'David Yaffe',
'jobTitle': 'Co-founder',
'description':
'David Yaffe is a co-founder and the CEO of Estuary. He previously served as the COO of LiveRamp and the co-founder / CEO of Arbor which was sold to LiveRamp in 2016. He has an extensive background in product management, serving as head of product for Doubleclick Bid Manager and Invite Media.',
'sameAs': [
'https://www.linkedin.com/in/davidyaffe',
'https://www.crunchbase.com/person/david-yaffe',
'https://twitter.com/dyaffe',
'https://www.producthunt.com/@dyaffe',
],
},
],
})}
</script>
</>
Expand Down

0 comments on commit 866d588

Please sign in to comment.