mirror of
https://github.com/simstudioai/sim.git
synced 2026-02-19 02:34:37 -05:00
38 lines
1.0 KiB
TypeScript
38 lines
1.0 KiB
TypeScript
import type { ReactNode } from 'react'
|
|
import { Inter } from 'next/font/google'
|
|
import { RootProvider } from 'fumadocs-ui/provider'
|
|
import './global.css'
|
|
|
|
const inter = Inter({
|
|
subsets: ['latin'],
|
|
})
|
|
|
|
export default function Layout({ children }: { children: ReactNode }) {
|
|
return (
|
|
<html lang="en" className={inter.className} suppressHydrationWarning>
|
|
<body className="flex flex-col min-h-screen">
|
|
<RootProvider>{children}</RootProvider>
|
|
</body>
|
|
</html>
|
|
)
|
|
}
|
|
|
|
export const metadata = {
|
|
title: 'Sim Studio',
|
|
description: 'Drag and drop agents to create workflows. Powered by Simplicity',
|
|
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 Studio Docs',
|
|
},
|
|
}
|