blob: 66b793087d2c0b361ec74d7ad8b52700dd85b48f (
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-Karaoke Player",
description:
"A karaoke oriented media player with support for lyrics, subtitles, and offset adjustments!",
};
export default function RootLayout({
children,
}: {
children: React.ReactNode;
}) {
return (
<html lang="en">
<body>
<StyledComponentsRegistry>{children}</StyledComponentsRegistry>
</body>
</html>
);
}
|