6bf8bebf51
CI / Test and Build (push) Failing after 1s
CI / Migrate Dev DB (push) Has been skipped
CI / Migrate DB (push) Has been skipped
CodeQL / Analyze actions (push) Has been cancelled
CodeQL / Analyze javascript-typescript (push) Has been cancelled
CI / Detect Version (push) Has been cancelled
CI / Detect Desktop Changes (push) Has been cancelled
CI / Build AMD64 (blacksmith-2vcpu-ubuntu-2404, ./docker/cron.Dockerfile, ubuntu-latest, ghcr.io/simstudioai/cron) (push) Has been cancelled
CI / Build AMD64 (blacksmith-2vcpu-ubuntu-2404, ./docker/db.Dockerfile, ECR_MIGRATIONS, ubuntu-latest, ghcr.io/simstudioai/migrations) (push) Has been cancelled
CI / Build AMD64 (blacksmith-4vcpu-ubuntu-2404, ./docker/pii.Dockerfile, ECR_PII, ubuntu-latest, ghcr.io/simstudioai/pii) (push) Has been cancelled
CI / Build AMD64 (blacksmith-4vcpu-ubuntu-2404, ./docker/realtime.Dockerfile, ECR_REALTIME, ubuntu-latest, ghcr.io/simstudioai/realtime) (push) Has been cancelled
CI / Build AMD64 (blacksmith-8vcpu-ubuntu-2404, ./docker/app.Dockerfile, ECR_APP, linux-x64-8-core, ghcr.io/simstudioai/simstudio) (push) Has been cancelled
CI / Build ARM64 (GHCR Only) (blacksmith-4vcpu-ubuntu-2404-arm, ./docker/cron.Dockerfile, ubuntu-24.04-arm, ghcr.io/simstudioai/cron) (push) Has been cancelled
CI / Build ARM64 (GHCR Only) (blacksmith-4vcpu-ubuntu-2404-arm, ./docker/db.Dockerfile, ubuntu-24.04-arm, ghcr.io/simstudioai/migrations) (push) Has been cancelled
CI / Build ARM64 (GHCR Only) (blacksmith-4vcpu-ubuntu-2404-arm, ./docker/pii.Dockerfile, ubuntu-24.04-arm, ghcr.io/simstudioai/pii) (push) Has been cancelled
CI / Build ARM64 (GHCR Only) (blacksmith-4vcpu-ubuntu-2404-arm, ./docker/realtime.Dockerfile, ubuntu-24.04-arm, ghcr.io/simstudioai/realtime) (push) Has been cancelled
CI / Build ARM64 (GHCR Only) (blacksmith-8vcpu-ubuntu-2404-arm, ./docker/app.Dockerfile, linux-arm64-8-core, ghcr.io/simstudioai/simstudio) (push) Has been cancelled
CI / Check Docs Changes (push) Has been cancelled
Publish CLI Package / publish-npm (push) Has been cancelled
Publish Python SDK / publish-pypi (push) Has been cancelled
CI / Deploy Trigger.dev (Dev) (push) Has been cancelled
Helm Chart / Lint, test, and validate chart (push) Has been cancelled
Helm Chart / Chart version bumped (push) Has been cancelled
Publish TypeScript SDK / publish-npm (push) Has been cancelled
CI / Build Dev ECR (blacksmith-8vcpu-ubuntu-2404, ./docker/app.Dockerfile, ECR_APP, linux-x64-8-core) (push) Has been cancelled
CI / Promote Images (push) Has been cancelled
CI / Create GHCR Manifests (ghcr.io/simstudioai/cron) (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 / Build Dev ECR (blacksmith-2vcpu-ubuntu-2404, ./docker/db.Dockerfile, ECR_MIGRATIONS, ubuntu-latest) (push) Has been cancelled
CI / Build Dev ECR (blacksmith-4vcpu-ubuntu-2404, ./docker/pii.Dockerfile, ECR_PII, ubuntu-latest) (push) Has been cancelled
CI / Build Dev ECR (blacksmith-4vcpu-ubuntu-2404, ./docker/realtime.Dockerfile, ECR_REALTIME, ubuntu-latest) (push) Has been cancelled
CI / Create GHCR Manifests (ghcr.io/simstudioai/simstudio) (push) Has been cancelled
CI / Process Docs (push) Has been cancelled
CI / Create GitHub Release (push) Has been cancelled
CI / Check Desktop Signing Secrets (push) Has been cancelled
CI / Desktop Release (push) Has been cancelled
CI / Create Desktop Prerelease (push) Has been cancelled
CI / Desktop Prerelease Build (push) Has been cancelled
CI / Publish Desktop Prerelease (push) Has been cancelled
CI / Prune Desktop Prereleases (push) Has been cancelled
Helm Chart / Install on kind and run helm test (push) Has been cancelled
113 lines
3.1 KiB
TypeScript
113 lines
3.1 KiB
TypeScript
import type { ReactNode } from 'react'
|
|
import type { Viewport } from 'next'
|
|
import { DOCS_BASE_URL } from '@/lib/urls'
|
|
|
|
export default function RootLayout({ children }: { children: ReactNode }) {
|
|
return children
|
|
}
|
|
|
|
export const viewport: Viewport = {
|
|
width: 'device-width',
|
|
initialScale: 1,
|
|
themeColor: '#000000',
|
|
}
|
|
|
|
export const metadata = {
|
|
metadataBase: new URL(DOCS_BASE_URL),
|
|
title: {
|
|
default: 'Sim Documentation — The AI Workspace for Teams',
|
|
template: '%s | Sim Docs',
|
|
},
|
|
description:
|
|
'Documentation for Sim — the open-source AI workspace where teams build, deploy, and manage AI agents. Connect 1,000+ integrations and every major LLM.',
|
|
applicationName: 'Sim Docs',
|
|
generator: 'Next.js',
|
|
referrer: 'origin-when-cross-origin' as const,
|
|
keywords: [
|
|
'AI workspace',
|
|
'AI agent builder',
|
|
'AI agents',
|
|
'build AI agents',
|
|
'open-source AI agents',
|
|
'LLM orchestration',
|
|
'AI integrations',
|
|
'knowledge base',
|
|
'AI automation',
|
|
'visual workflow builder',
|
|
'enterprise AI',
|
|
'AI agent deployment',
|
|
'AI tools',
|
|
],
|
|
authors: [{ name: 'Sim Team', url: 'https://sim.ai' }],
|
|
creator: 'Sim',
|
|
publisher: 'Sim',
|
|
category: 'Developer Tools',
|
|
classification: 'Developer Documentation',
|
|
manifest: '/favicon/site.webmanifest',
|
|
icons: {
|
|
icon: [{ url: '/icon.svg', type: 'image/svg+xml', sizes: 'any' }],
|
|
apple: '/favicon/apple-touch-icon.png',
|
|
},
|
|
appleWebApp: {
|
|
capable: true,
|
|
statusBarStyle: 'default',
|
|
title: 'Sim Docs',
|
|
},
|
|
formatDetection: {
|
|
telephone: false,
|
|
},
|
|
other: {
|
|
'msapplication-TileColor': '#000000',
|
|
},
|
|
openGraph: {
|
|
type: 'website',
|
|
locale: 'en_US',
|
|
alternateLocale: ['es_ES', 'fr_FR', 'de_DE', 'ja_JP', 'zh_CN'],
|
|
url: DOCS_BASE_URL,
|
|
siteName: 'Sim Documentation',
|
|
title: 'Sim Documentation — The AI Workspace for Teams',
|
|
description:
|
|
'Documentation for Sim — the open-source AI workspace where teams build, deploy, and manage AI agents. Connect 1,000+ integrations and every major LLM.',
|
|
images: [
|
|
{
|
|
url: `${DOCS_BASE_URL}/api/og?title=Sim%20Documentation`,
|
|
width: 1200,
|
|
height: 675,
|
|
alt: 'Sim Documentation',
|
|
},
|
|
],
|
|
},
|
|
twitter: {
|
|
card: 'summary_large_image',
|
|
title: 'Sim Documentation — The AI Workspace for Teams',
|
|
description:
|
|
'Documentation for Sim — the open-source AI workspace where teams build, deploy, and manage AI agents. Connect 1,000+ integrations and every major LLM.',
|
|
creator: '@simdotai',
|
|
site: '@simdotai',
|
|
images: [`${DOCS_BASE_URL}/api/og?title=Sim%20Documentation`],
|
|
},
|
|
robots: {
|
|
index: true,
|
|
follow: true,
|
|
googleBot: {
|
|
index: true,
|
|
follow: true,
|
|
'max-video-preview': -1,
|
|
'max-image-preview': 'large',
|
|
'max-snippet': -1,
|
|
},
|
|
},
|
|
alternates: {
|
|
canonical: DOCS_BASE_URL,
|
|
languages: {
|
|
'x-default': DOCS_BASE_URL,
|
|
en: DOCS_BASE_URL,
|
|
es: `${DOCS_BASE_URL}/es`,
|
|
fr: `${DOCS_BASE_URL}/fr`,
|
|
de: `${DOCS_BASE_URL}/de`,
|
|
ja: `${DOCS_BASE_URL}/ja`,
|
|
zh: `${DOCS_BASE_URL}/zh`,
|
|
},
|
|
},
|
|
}
|