README / app /layout.tsx
kaigiii's picture
Deploy Learn8 Demo Space
5c920e9
import type { Metadata } from "next";
import "./globals.css";
export const metadata: Metadata = {
title: "Learn8",
description: "Convert your notes into a dynamic Skill Tree and master any subject through immersive mini-games.",
};
export default function RootLayout({
children,
}: {
children: React.ReactNode;
}) {
return (
<html lang="en">
<body className="min-h-screen bg-brand-teal-bg antialiased">
{children}
</body>
</html>
);
}