layout.tsx

 1import type { Metadata } from "next";
 2import "./globals.css";
 3
 4export const metadata: Metadata = {
 5  title: "Dashboard",
 6  description: "Analytics dashboard",
 7};
 8
 9export default function RootLayout({
10  children,
11}: {
12  children: React.ReactNode;
13}) {
14  return (
15    <html lang="en">
16      <body>{children}</body>
17    </html>
18  );
19}