open-weights-breakout / app /layout.tsx
burtenshaw's picture
burtenshaw HF Staff
Restore original logo breakout game
fc6fa7d verified
Raw
History Blame Contribute Delete
488 Bytes
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 (
<html lang="en">
<body>{children}</body>
</html>
);
}