import type { Metadata } from "next"; import StyledComponentsRegistry from "./registry"; export const metadata: Metadata = { title: "LRC-Type", description: "A typing game powered by LRC lyrics. Type along to your favourite songs!", }; export default function RootLayout({ children, }: { children: React.ReactNode; }) { return ( {children} ); }