import type { Metadata, Viewport } from "next"; import "./globals.css"; export const metadata: Metadata = { title: "Ironclaw", description: "AI Workspace with an agent that connects to your apps and does the work for you", }; export const viewport: Viewport = { width: "device-width", initialScale: 1, maximumScale: 1, }; export default function RootLayout({ children, }: { children: React.ReactNode; }) { return (
{/* Inline script to prevent FOUC — reads localStorage or system preference */} {children} ); }