import type { Metadata } from "next"; import "./globals.css"; export const metadata: Metadata = { title: "Rubber Duck MCP", description: "MCP server for rubber duck debugging — quack() to articulate your thinking.", }; export default function RootLayout({ children }: { children: React.ReactNode }) { return ( {children} ); }