diff options
| author | Pinapelz <yukais@pinapelz.com> | 2026-06-02 02:12:57 -0700 |
|---|---|---|
| committer | Pinapelz <yukais@pinapelz.com> | 2026-06-02 02:13:10 -0700 |
| commit | 0335b0ad81169232a3dbb1be1341fdcfce548645 (patch) | |
| tree | 910593fa5e072ea77f594b6f10ddd96e49452446 /src/app/layout.tsx | |
| parent | 0d35e75edbc75f186e4a1ed52fbc3549ee9f5cd6 (diff) | |
migrate to pocketbase backend + auth/login
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 +} |
