mirror of
https://github.com/simstudioai/sim.git
synced 2026-04-06 03:00:16 -04:00
26 lines
634 B
TypeScript
26 lines
634 B
TypeScript
import type { Metadata } from 'next'
|
|
import './globals.css'
|
|
import { ZoomPrevention } from './zoom-prevention'
|
|
|
|
export const metadata: Metadata = {
|
|
title: 'Sim Studio',
|
|
description: 'Drag and drop agents to create workflows. Powered by Simplicity',
|
|
}
|
|
|
|
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>
|
|
)
|
|
}
|