import type { Metadata } from "next"; import "@/app/globals.css"; import { AppShell } from "@/components/app-shell"; export const metadata: Metadata = { title: "Claw Fleet Console", description: "OpenClaw, ZeroClaw, and direct host operations dashboard", }; export default async function RootLayout({ children, }: Readonly<{ children: React.ReactNode; }>) { return (