diff options
Diffstat (limited to 'src/app/layout.tsx')
| -rw-r--r-- | src/app/layout.tsx | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/src/app/layout.tsx b/src/app/layout.tsx index e88bb71..7dbde38 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,16 +1,17 @@ export const metadata = { - title: 'Patchwork Karaoke', - description: 'A karaoke oriented media player with support for lyrics, subtitles, and offset adjustments!', -} + 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 + children: React.ReactNode; }) { return ( <html lang="en"> <body>{children}</body> </html> - ) + ); } |
