website-builde / app /layout.tsx
Daviddolor's picture
Single-process Chromium, fixed visual-polish prompt, Docker config for HF Space
ec675f2
Raw
History Blame Contribute Delete
382 Bytes
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>
)
}