Skip to content

Commit 27ed2a7

Browse files
authored
fix(landing): complete Organization schema with legalName, foundingDate, and address (#5644)
Adds the three fields intentionally omitted from #5638 pending real values: - legalName: 'Sim, Inc' - matches the entity named throughout the Terms of Service (apps/sim/app/(landing)/terms) - foundingDate: '2025' - address: real registered office (80 Langton St, San Francisco, CA 94103)
1 parent e7afe45 commit 27ed2a7

1 file changed

Lines changed: 12 additions & 1 deletion

File tree

apps/sim/app/(landing)/components/site-structured-data/site-structured-data.tsx

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,19 @@ const SITE_JSON_LD = {
99
'@id': `${SITE_URL}#organization`,
1010
name: 'Sim',
1111
alternateName: 'Sim Studio',
12+
legalName: 'Sim, Inc',
1213
description:
1314
'Sim is the open-source AI workspace where teams build, deploy, and manage AI agents. Connect 1,000+ integrations and every major LLM to create agents that automate real work.',
1415
url: SITE_URL,
16+
foundingDate: '2025',
17+
address: {
18+
'@type': 'PostalAddress',
19+
streetAddress: '80 Langton St',
20+
addressLocality: 'San Francisco',
21+
addressRegion: 'CA',
22+
postalCode: '94103',
23+
addressCountry: 'US',
24+
},
1525
logo: {
1626
'@type': 'ImageObject',
1727
'@id': `${SITE_URL}#logo`,
@@ -61,7 +71,8 @@ const SITE_JSON_LD = {
6171
* fragment) - every per-page emitter (platform, solutions, pricing, home) points
6272
* `isPartOf`/`publisher`/`about` at these exact ids, so the graph resolves.
6373
*
64-
* Maintenance: `sameAs` must match the Footer social links.
74+
* Maintenance: `sameAs` must match the Footer social links. `legalName`
75+
* matches the entity named throughout `apps/sim/app/(landing)/terms`.
6576
*/
6677
export function SiteStructuredData() {
6778
return <JsonLd data={SITE_JSON_LD} />

0 commit comments

Comments
 (0)