Skip to content

Commit 0f5955a

Browse files
authored
Merge pull request #181 from argos-ci/add-missing-meta
Add missing meta
2 parents a8b5f97 + 740ecad commit 0f5955a

1 file changed

Lines changed: 56 additions & 0 deletions

File tree

docusaurus.config.js

Lines changed: 56 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -127,6 +127,56 @@ const config = {
127127
],
128128
],
129129

130+
headTags: [
131+
{
132+
tagName: "script",
133+
attributes: {
134+
type: "application/ld+json",
135+
},
136+
innerHTML: JSON.stringify({
137+
"@type": "Organization",
138+
url: "https://argos-ci.com",
139+
logo: "https://argos-ci.com/logo.png",
140+
name: "Argos",
141+
legalName: "Argos by Smooth Code",
142+
description:
143+
"Argos helps product teams ship faster without sacrificing quality by catching visual regressions early with reliable visual testing for Storybook and Playwright.",
144+
email: "contact@argos-ci.com",
145+
contactPoint: {
146+
"@type": "ContactPoint",
147+
email: "contact@argos-ci.com",
148+
},
149+
address: {
150+
"@type": "PostalAddress",
151+
streetAddress: "30 boulevard Sebastopol",
152+
addressLocality: "Paris",
153+
addressCountry: "FR",
154+
addressRegion: "FR",
155+
postalCode: "75004",
156+
},
157+
foundingDate: "2016-12-15",
158+
founder: {
159+
"@type": "Person",
160+
name: "Greg Bergé",
161+
familyName: "Bergé",
162+
givenName: "Greg",
163+
jobTitle: "CEO",
164+
url: "https://gregberge.com",
165+
},
166+
numberOfEmployees: {
167+
"@type": "QuantitativeValue",
168+
minValue: 0,
169+
maxValue: 10,
170+
},
171+
sameAs: [
172+
"https://github.com/argos-ci/argos",
173+
"https://x.com/argos-ci",
174+
"https://www.linkedin.com/company/argos-testing",
175+
],
176+
}),
177+
},
178+
],
179+
130180
themeConfig:
131181
/** @type {import('@docusaurus/preset-classic').ThemeConfig} */
132182
({
@@ -135,6 +185,12 @@ const config = {
135185
disableSwitch: false,
136186
respectPrefersColorScheme: true,
137187
},
188+
metadata: [
189+
{
190+
name: "og:type",
191+
content: "website",
192+
},
193+
],
138194
navbar: {
139195
title: "",
140196
logo: {

0 commit comments

Comments
 (0)