math-quiz / app /layout.tsx
ghost613's picture
Upload 20 files
a4ec883 verified
raw
history blame contribute delete
356 Bytes
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>
);
}