mirror of
https://github.com/simstudioai/sim.git
synced 2026-04-28 03:00:29 -04:00
* improvement(seo): optimize sitemaps and robots.txt across sim and docs - Add missing pages to sim sitemap: blog author pages, academy catalog and course pages - Fix 6x duplicate URL bug in docs sitemap by deduplicating with source.getLanguages() - Convert docs sitemap from route handler to Next.js metadata convention with native hreflang - Add x-default hreflang alternate for docs multi-language pages - Remove changeFrequency and priority fields (Google ignores both) - Fix inaccurate lastModified timestamps — derive from real content dates, omit when unknown - Consolidate 20+ redundant per-bot robots rules into single wildcard entry - Add /form/ and /credential-account/ to sim robots disallow list - Reference image sitemap in sim robots.txt - Remove deprecated host directive from sim robots - Move disallow rules before allow in docs robots for crawler compatibility - Extract hardcoded docs baseUrl to env variable with production fallback * fix(seo): remove homepage new Date(), guard latestModelDate empty array * improvement(seo): consolidate DOCS_BASE_URL, optimize core web vitals Extract hardcoded https://docs.sim.ai into shared DOCS_BASE_URL constant in lib/urls.ts and replace all 20+ instances across layouts, metadata, structured data, LLM manifest, sitemap, and robots files. Remove OneDollarStats analytics script and tighten CSP for improved core web vitals. * fix: removed onedollarstats from bun lock * fix(seo): guard per-provider Math.max, consolidate docs robots to single wildcard
112 lines
3.0 KiB
TypeScript
112 lines
3.0 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: {
|
|
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: 630,
|
|
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`,
|
|
},
|
|
},
|
|
}
|