mirror of
https://github.com/simstudioai/sim.git
synced 2026-04-28 03:00:29 -04:00
44 lines
1.1 KiB
TypeScript
44 lines
1.1 KiB
TypeScript
import type { Metadata, Viewport } from 'next'
|
|
import './globals.css'
|
|
import { ZoomPrevention } from './zoom-prevention'
|
|
|
|
export const viewport: Viewport = {
|
|
themeColor: '#ffffff',
|
|
}
|
|
|
|
export const metadata: 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',
|
|
},
|
|
}
|
|
|
|
export default function RootLayout({ children }: { children: React.ReactNode }) {
|
|
return (
|
|
<html lang="en">
|
|
<head>
|
|
<meta
|
|
name="viewport"
|
|
content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no"
|
|
/>
|
|
</head>
|
|
<body>
|
|
<ZoomPrevention />
|
|
{children}
|
|
</body>
|
|
</html>
|
|
)
|
|
}
|