import type { Metadata } from "next"; import "./globals.css"; export const metadata: Metadata = { title: "DrawTogether - Play, Draw & Color Together", description: "Skribbl Race, Gartic Phone & Color Together — three games, one playful canvas.", }; export default function RootLayout({ children, }: { children: React.ReactNode; }) { return ( {children} ); }