Spaces:
Sleeping
Sleeping
| import type { Metadata } from "next" | |
| import "./globals.css" | |
| export const metadata: Metadata = { | |
| title: "GPT OS 120 Website Builder", | |
| description: | |
| "AI website builder powered by Cerebras and crawling AI" | |
| } | |
| export default function RootLayout({ | |
| children, | |
| }: Readonly<{ | |
| children: React.ReactNode | |
| }>) { | |
| return ( | |
| <html lang="en"> | |
| <body> | |
| {children} | |
| </body> | |
| </html> | |
| ) | |
| } | |