diff options
Diffstat (limited to 'src/app/layout.tsx')
| -rw-r--r-- | src/app/layout.tsx | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 67d8da9..2608b32 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,8 +1,9 @@ import type { Metadata } from "next"; import StyledComponentsRegistry from "./registry"; +import { AuthProvider } from "./context/auth"; export const metadata: Metadata = { - title: "LRC-Type", + title: "TypingMIXX", description: "A typing game powered by LRC lyrics. Type along to your favourite songs!", }; @@ -15,8 +16,10 @@ export default function RootLayout({ return ( <html lang="en"> <body> - <StyledComponentsRegistry>{children}</StyledComponentsRegistry> + <StyledComponentsRegistry> + <AuthProvider>{children}</AuthProvider> + </StyledComponentsRegistry> </body> </html> ); -}
\ No newline at end of file +} |
