aboutsummaryrefslogtreecommitdiffstats
path: root/src/app/layout.tsx
diff options
context:
space:
mode:
authorPinapelz <yukais@pinapelz.com>2026-06-02 02:12:57 -0700
committerPinapelz <yukais@pinapelz.com>2026-06-02 02:13:10 -0700
commit0335b0ad81169232a3dbb1be1341fdcfce548645 (patch)
tree910593fa5e072ea77f594b6f10ddd96e49452446 /src/app/layout.tsx
parent0d35e75edbc75f186e4a1ed52fbc3549ee9f5cd6 (diff)
migrate to pocketbase backend + auth/login
Diffstat (limited to 'src/app/layout.tsx')
-rw-r--r--src/app/layout.tsx9
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
+}
send patches to the email below
yukais@pinapelz.com
include the subject [PATCH repo_name]
pinapelz.com
homepage