diff options
| author | Pinapelz <yukais@pinapelz.com> | 2024-11-21 15:32:08 -0800 |
|---|---|---|
| committer | Pinapelz <yukais@pinapelz.com> | 2024-11-21 15:32:08 -0800 |
| commit | f9d4d9d0127d08c93d268e45eeb669812610eef2 (patch) | |
| tree | aca26e98a6b982d9e7d792bf1d6fa696b107b23e /src/app/layout.tsx | |
| parent | c0a941be17066c35634bd252b84771dbb0fc025d (diff) | |
bump deps, update meta
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> - ) + ); } |
