d25d482dc2
Publish CLI Package / publish-npm (push) Waiting to run
Publish Python SDK / publish-pypi (push) Waiting to run
Publish TypeScript SDK / publish-npm (push) Waiting to run
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
129 lines
3.1 KiB
TypeScript
129 lines
3.1 KiB
TypeScript
import { serializeJsonLd } from '@/lib/json-ld'
|
|
import { DOCS_BASE_URL } from '@/lib/urls'
|
|
|
|
interface StructuredDataProps {
|
|
title: string
|
|
description: string
|
|
url: string
|
|
lang: string
|
|
dateModified?: string
|
|
breadcrumb?: Array<{ name: string; url: string }>
|
|
}
|
|
|
|
export function StructuredData({
|
|
title,
|
|
description,
|
|
url,
|
|
lang,
|
|
dateModified,
|
|
breadcrumb,
|
|
}: StructuredDataProps) {
|
|
const baseUrl = DOCS_BASE_URL
|
|
|
|
const articleStructuredData = {
|
|
'@context': 'https://schema.org',
|
|
'@type': 'TechArticle',
|
|
headline: title,
|
|
description: description,
|
|
url: url,
|
|
...(dateModified && { datePublished: dateModified }),
|
|
...(dateModified && { dateModified }),
|
|
author: {
|
|
'@type': 'Organization',
|
|
name: 'Sim Team',
|
|
url: baseUrl,
|
|
},
|
|
publisher: {
|
|
'@type': 'Organization',
|
|
name: 'Sim',
|
|
url: baseUrl,
|
|
logo: {
|
|
'@type': 'ImageObject',
|
|
url: `${baseUrl}/static/logo.png`,
|
|
},
|
|
},
|
|
mainEntityOfPage: {
|
|
'@type': 'WebPage',
|
|
'@id': url,
|
|
},
|
|
inLanguage: lang,
|
|
isPartOf: {
|
|
'@type': 'WebSite',
|
|
name: 'Sim Documentation',
|
|
url: baseUrl,
|
|
},
|
|
potentialAction: {
|
|
'@type': 'ReadAction',
|
|
target: url,
|
|
},
|
|
}
|
|
|
|
const breadcrumbStructuredData = breadcrumb && {
|
|
'@context': 'https://schema.org',
|
|
'@type': 'BreadcrumbList',
|
|
itemListElement: breadcrumb.map((item, index) => ({
|
|
'@type': 'ListItem',
|
|
position: index + 1,
|
|
name: item.name,
|
|
item: item.url,
|
|
})),
|
|
}
|
|
|
|
const softwareStructuredData = {
|
|
'@context': 'https://schema.org',
|
|
'@type': 'SoftwareApplication',
|
|
name: 'Sim',
|
|
applicationCategory: 'BusinessApplication',
|
|
applicationSubCategory: 'AI Workspace',
|
|
operatingSystem: 'Any',
|
|
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: baseUrl,
|
|
author: {
|
|
'@type': 'Organization',
|
|
name: 'Sim Team',
|
|
},
|
|
offers: {
|
|
'@type': 'Offer',
|
|
category: 'Developer Tools',
|
|
},
|
|
featureList: [
|
|
'AI workspace for teams',
|
|
'Mothership — natural language agent creation',
|
|
'Visual workflow builder',
|
|
'1,000+ integrations',
|
|
'LLM orchestration (OpenAI, Anthropic, Google, xAI, Mistral, Perplexity)',
|
|
'Knowledge base creation',
|
|
'Table creation',
|
|
'Document creation',
|
|
],
|
|
}
|
|
|
|
return (
|
|
<>
|
|
<script
|
|
type='application/ld+json'
|
|
dangerouslySetInnerHTML={{
|
|
__html: serializeJsonLd(articleStructuredData),
|
|
}}
|
|
/>
|
|
{breadcrumbStructuredData && (
|
|
<script
|
|
type='application/ld+json'
|
|
dangerouslySetInnerHTML={{
|
|
__html: serializeJsonLd(breadcrumbStructuredData),
|
|
}}
|
|
/>
|
|
)}
|
|
{url === baseUrl && (
|
|
<script
|
|
type='application/ld+json'
|
|
dangerouslySetInnerHTML={{
|
|
__html: serializeJsonLd(softwareStructuredData),
|
|
}}
|
|
/>
|
|
)}
|
|
</>
|
|
)
|
|
}
|