import type { Metadata } from "next";
import "./globals.css";

export const metadata: Metadata = {
  title: "Math Quiz App",
  description: "A simple math quiz application",
};

export default function RootLayout({
  children,
}: Readonly<{
  children: React.ReactNode;
}>) {
  return (
    <html lang="en">
      <body>{children}</body>
    </html>
  );
}