From 0d35e75edbc75f186e4a1ed52fbc3549ee9f5cd6 Mon Sep 17 00:00:00 2001 From: Pinapelz Date: Mon, 1 Jun 2026 21:19:05 -0700 Subject: init commit --- src/app/layout.tsx | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 src/app/layout.tsx (limited to 'src/app/layout.tsx') diff --git a/src/app/layout.tsx b/src/app/layout.tsx new file mode 100644 index 0000000..67d8da9 --- /dev/null +++ b/src/app/layout.tsx @@ -0,0 +1,22 @@ +import type { Metadata } from "next"; +import StyledComponentsRegistry from "./registry"; + +export const metadata: Metadata = { + title: "LRC-Type", + description: + "A typing game powered by LRC lyrics. Type along to your favourite songs!", +}; + +export default function RootLayout({ + children, +}: { + children: React.ReactNode; +}) { + return ( + + + {children} + + + ); +} \ No newline at end of file -- cgit v1.2.3