layout.tsx

1export const metadata = { title: 'Next Fixture' };
2
3export default function RootLayout({ children }: { children: React.ReactNode }) {
4  return (
5    <html lang="en">
6      <body>{children}</body>
7    </html>
8  );
9}