diff options
Diffstat (limited to 'src/app/layout.tsx')
| -rw-r--r-- | src/app/layout.tsx | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/src/app/layout.tsx b/src/app/layout.tsx new file mode 100644 index 0000000..67d8da9 --- /dev/null +++ b/src/app/layout.tsx @@ -0,0 +1,22 @@ +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 ( + <html lang="en"> + <body> + <StyledComponentsRegistry>{children}</StyledComponentsRegistry> + </body> + </html> + ); +}
\ No newline at end of file |
