mirror of
https://github.com/simstudioai/sim.git
synced 2026-01-10 07:27:57 -05:00
* update infra and remove railway
* feat(docs): added footer for page navigation, i18n for docs
* Revert "update infra and remove railway"
This reverts commit abfa2f8d51.
* added SEO-related stuff
* fix image sizes
* add missing pages
* remove extraneous comments
81 lines
2.4 KiB
TypeScript
81 lines
2.4 KiB
TypeScript
import type { ReactNode } from 'react'
|
|
|
|
export default function RootLayout({ children }: { children: ReactNode }) {
|
|
return children
|
|
}
|
|
|
|
export const metadata = {
|
|
metadataBase: new URL('https://docs.sim.ai'),
|
|
title: {
|
|
default: 'Sim Documentation - Visual Workflow Builder for AI Applications',
|
|
template: '%s',
|
|
},
|
|
description:
|
|
'Comprehensive documentation for Sim - the visual workflow builder for AI applications. Create powerful AI agents, automation workflows, and data processing pipelines by connecting blocks on a canvas—no coding required.',
|
|
keywords: [
|
|
'AI workflow builder',
|
|
'visual workflow editor',
|
|
'AI automation',
|
|
'workflow automation',
|
|
'AI agents',
|
|
'no-code AI',
|
|
'drag and drop workflows',
|
|
'AI integrations',
|
|
'workflow canvas',
|
|
'AI development platform',
|
|
],
|
|
authors: [{ name: 'Sim Team', url: 'https://sim.ai' }],
|
|
category: 'Developer Tools',
|
|
classification: 'Developer Documentation',
|
|
manifest: '/favicon/site.webmanifest',
|
|
icons: {
|
|
icon: [
|
|
{ url: '/favicon/favicon-16x16.png', sizes: '16x16', type: 'image/png' },
|
|
{ url: '/favicon/favicon-32x32.png', sizes: '32x32', type: 'image/png' },
|
|
],
|
|
apple: '/favicon/apple-touch-icon.png',
|
|
shortcut: '/favicon/favicon.ico',
|
|
},
|
|
appleWebApp: {
|
|
capable: true,
|
|
statusBarStyle: 'default',
|
|
title: 'Sim Docs',
|
|
},
|
|
openGraph: {
|
|
type: 'website',
|
|
locale: 'en_US',
|
|
alternateLocale: ['fr_FR', 'zh_CN'],
|
|
url: 'https://docs.sim.ai',
|
|
siteName: 'Sim Documentation',
|
|
title: 'Sim Documentation - Visual Workflow Builder for AI Applications',
|
|
description:
|
|
'Comprehensive documentation for Sim - the visual workflow builder for AI applications. Create powerful AI agents, automation workflows, and data processing pipelines.',
|
|
},
|
|
twitter: {
|
|
card: 'summary',
|
|
title: 'Sim Documentation - Visual Workflow Builder for AI Applications',
|
|
description:
|
|
'Comprehensive documentation for Sim - the visual workflow builder for AI applications.',
|
|
creator: '@sim_ai',
|
|
},
|
|
robots: {
|
|
index: true,
|
|
follow: true,
|
|
googleBot: {
|
|
index: true,
|
|
follow: true,
|
|
'max-video-preview': -1,
|
|
'max-image-preview': 'large',
|
|
'max-snippet': -1,
|
|
},
|
|
},
|
|
alternates: {
|
|
canonical: 'https://docs.sim.ai',
|
|
languages: {
|
|
en: '/en',
|
|
fr: '/fr',
|
|
zh: '/zh',
|
|
},
|
|
},
|
|
}
|