d25d482dc2
CI / Migrate Dev DB (push) Has been skipped
CI / Detect Version (push) Has been cancelled
CI / Migrate DB (push) Has been cancelled
CI / Build Dev ECR (./docker/app.Dockerfile, ECR_APP) (push) Has been cancelled
CI / Build Dev ECR (./docker/db.Dockerfile, ECR_MIGRATIONS) (push) Has been cancelled
CI / Build Dev ECR (./docker/pii.Dockerfile, ECR_PII) (push) Has been cancelled
CI / Build Dev ECR (./docker/realtime.Dockerfile, ECR_REALTIME) (push) Has been cancelled
CI / Deploy Trigger.dev (Dev) (push) Has been cancelled
CI / Build AMD64 (./docker/app.Dockerfile, ECR_APP, ghcr.io/simstudioai/simstudio) (push) Has been cancelled
CI / Build AMD64 (./docker/db.Dockerfile, ECR_MIGRATIONS, ghcr.io/simstudioai/migrations) (push) Has been cancelled
CI / Build AMD64 (./docker/pii.Dockerfile, ECR_PII, ghcr.io/simstudioai/pii) (push) Has been cancelled
CI / Build AMD64 (./docker/realtime.Dockerfile, ECR_REALTIME, ghcr.io/simstudioai/realtime) (push) Has been cancelled
CI / Build ARM64 (GHCR Only) (./docker/app.Dockerfile, ghcr.io/simstudioai/simstudio) (push) Has been cancelled
CI / Build ARM64 (GHCR Only) (./docker/db.Dockerfile, ghcr.io/simstudioai/migrations) (push) Has been cancelled
CI / Build ARM64 (GHCR Only) (./docker/pii.Dockerfile, ghcr.io/simstudioai/pii) (push) Has been cancelled
CI / Build ARM64 (GHCR Only) (./docker/realtime.Dockerfile, ghcr.io/simstudioai/realtime) (push) Has been cancelled
CI / Create GHCR Manifests (ghcr.io/simstudioai/migrations) (push) Has been cancelled
CI / Create GHCR Manifests (ghcr.io/simstudioai/pii) (push) Has been cancelled
CI / Create GHCR Manifests (ghcr.io/simstudioai/realtime) (push) Has been cancelled
CI / Create GHCR Manifests (ghcr.io/simstudioai/simstudio) (push) Has been cancelled
CI / Check Docs Changes (push) Has been cancelled
CI / Process Docs (push) Has been cancelled
CI / Create GitHub Release (push) Has been cancelled
CI / Test and Build (push) Has been cancelled
Publish CLI Package / publish-npm (push) Has been cancelled
Publish Python SDK / publish-pypi (push) Has been cancelled
Publish TypeScript SDK / publish-npm (push) Has been cancelled
67 lines
2.5 KiB
TypeScript
67 lines
2.5 KiB
TypeScript
import { SITE_URL } from '@/lib/core/utils/urls'
|
|
import { JsonLd } from '@/app/(landing)/components/json-ld'
|
|
|
|
const SITE_JSON_LD = {
|
|
'@context': 'https://schema.org',
|
|
'@graph': [
|
|
{
|
|
'@type': 'Organization',
|
|
'@id': `${SITE_URL}#organization`,
|
|
name: 'Sim',
|
|
alternateName: 'Sim Studio',
|
|
description:
|
|
'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.',
|
|
url: SITE_URL,
|
|
logo: {
|
|
'@type': 'ImageObject',
|
|
'@id': `${SITE_URL}#logo`,
|
|
url: `${SITE_URL}/logo/b%26w/text/b%26w.svg`,
|
|
contentUrl: `${SITE_URL}/logo/b%26w/text/b%26w.svg`,
|
|
width: 49.78314,
|
|
height: 24.276,
|
|
caption: 'Sim Logo',
|
|
},
|
|
image: { '@id': `${SITE_URL}#logo` },
|
|
sameAs: [
|
|
'https://x.com/simdotai',
|
|
'https://github.com/simstudioai/sim',
|
|
'https://www.linkedin.com/company/simstudioai/',
|
|
'https://discord.gg/Hr4UWYEcTT',
|
|
],
|
|
contactPoint: {
|
|
'@type': 'ContactPoint',
|
|
contactType: 'customer support',
|
|
availableLanguage: ['en'],
|
|
},
|
|
},
|
|
{
|
|
'@type': 'WebSite',
|
|
'@id': `${SITE_URL}#website`,
|
|
url: SITE_URL,
|
|
name: 'Sim, The AI Workspace | Build, Deploy & Manage AI Agents',
|
|
description:
|
|
'Sim is the open-source AI workspace where teams build, deploy, and manage AI agents. Connect 1,000+ integrations and every major LLM. Join 100,000+ builders.',
|
|
publisher: { '@id': `${SITE_URL}#organization` },
|
|
inLanguage: 'en-US',
|
|
},
|
|
],
|
|
}
|
|
|
|
/**
|
|
* Site-wide JSON-LD - the `Organization` and `WebSite` entities that are true on
|
|
* every landing-family page. Rendered once by the shared landing layout (via
|
|
* {@link LandingShell}), server-side before any visible content, so crawlers and
|
|
* AI answer engines read the canonical site graph first.
|
|
*
|
|
* Page-specific schema (WebPage, BreadcrumbList, Article, Product, FAQ, …) lives
|
|
* on each page and references these entities by `@id`. The canonical `@id` form
|
|
* is `${SITE_URL}#organization` / `${SITE_URL}#website` (no slash before the
|
|
* fragment) - every per-page emitter (platform, solutions, pricing, home) points
|
|
* `isPartOf`/`publisher`/`about` at these exact ids, so the graph resolves.
|
|
*
|
|
* Maintenance: `sameAs` must match the Footer social links.
|
|
*/
|
|
export function SiteStructuredData() {
|
|
return <JsonLd data={SITE_JSON_LD} />
|
|
}
|