import type { Metadata } from "next"; import "./globals.css"; export const metadata: Metadata = { title: "Open Weights Breakout", description: "A 50-logo Breakout game with Anthropic at the controls.", icons: { icon: "/anthropic-wordmark.png", shortcut: "/anthropic-wordmark.png", }, }; export default function RootLayout({ children, }: Readonly<{ children: React.ReactNode; }>) { return ( {children} ); }