mirror of
https://github.com/simstudioai/sim.git
synced 2026-01-13 17:08:01 -05:00
* feat(domain): drop the * change all references for Sim Studio to Sim * change back license and notice * lint --------- Co-authored-by: waleedlatif <waleedlatif@waleedlatifs-MacBook-Pro.local>
43 lines
1.2 KiB
TypeScript
43 lines
1.2 KiB
TypeScript
import type { ReactNode } from 'react'
|
|
import { RootProvider } from 'fumadocs-ui/provider'
|
|
import { Inter } from 'next/font/google'
|
|
import './global.css'
|
|
import { Analytics } from '@vercel/analytics/next'
|
|
|
|
const inter = Inter({
|
|
subsets: ['latin'],
|
|
})
|
|
|
|
export default function Layout({ children }: { children: ReactNode }) {
|
|
return (
|
|
<html lang='en' className={inter.className} suppressHydrationWarning>
|
|
<body className='flex min-h-screen flex-col'>
|
|
<RootProvider>
|
|
{children}
|
|
<Analytics />
|
|
</RootProvider>
|
|
</body>
|
|
</html>
|
|
)
|
|
}
|
|
|
|
export const metadata = {
|
|
title: 'Sim',
|
|
description:
|
|
'Build agents in seconds with a drag and drop workflow builder. Access comprehensive documentation to help you create efficient workflows and maximize your automation capabilities.',
|
|
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',
|
|
},
|
|
}
|