import type { Metadata } from "next"; import "./globals.css"; export const metadata: Metadata = { title: "Cabrits Math Lab", description: "Build confidence in mathematics with interactive lessons and practice for secondary school students.", }; export default function RootLayout({ children, }: Readonly<{ children: React.ReactNode; }>) { return ( {children} ); }