diff options
| author | Pinapelz <yukais@pinapelz.com> | 2026-04-12 22:14:05 -0700 |
|---|---|---|
| committer | Pinapelz <yukais@pinapelz.com> | 2026-04-12 22:14:05 -0700 |
| commit | 8cfa334717481bc2fcfa716b546304924157abff (patch) | |
| tree | c49dc578124991920ebc072be86275b71dee9795 /src/app/layout.tsx | |
| parent | 851d48fbf341e0f9f5f7d734666822976ab06a0e (diff) | |
make windows re-sizeable general lint/formatting
Diffstat (limited to 'src/app/layout.tsx')
| -rw-r--r-- | src/app/layout.tsx | 11 |
1 files changed, 8 insertions, 3 deletions
diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 7dbde38..66b7930 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,4 +1,7 @@ -export const metadata = { +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!", @@ -11,7 +14,9 @@ export default function RootLayout({ }) { return ( <html lang="en"> - <body>{children}</body> + <body> + <StyledComponentsRegistry>{children}</StyledComponentsRegistry> + </body> </html> ); -} +}
\ No newline at end of file |
