blob: 67d8da9c242cfe100363907529f44a30e94bd1eb (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
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>
);
}
|