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 ( {children} ); }