mirror of
https://github.com/simstudioai/sim.git
synced 2026-01-09 15:07:55 -05:00
21 lines
386 B
TypeScript
21 lines
386 B
TypeScript
import type { Metadata } from 'next'
|
|
import './globals.css'
|
|
|
|
export const metadata: Metadata = {
|
|
title: 'Sim Studio',
|
|
description:
|
|
'Drag and drop agents to create workflows. Powered by Simplicity',
|
|
}
|
|
|
|
export default function RootLayout({
|
|
children,
|
|
}: Readonly<{
|
|
children: React.ReactNode
|
|
}>) {
|
|
return (
|
|
<html lang="en">
|
|
<body>{children}</body>
|
|
</html>
|
|
)
|
|
}
|