import type { Metadata } from "next"; export const metadata: Metadata = { title: "Next.js with OpenTelemetry", description: "Next.js with OpenTelemetry", }; export default function RootLayout({ children, }: { children: React.ReactNode; }) { return ( {children} ); }