apps/overlay-sandbox/app/layout.tsx (16 lines of code) (raw):
import './global.css';
export const metadata = {
title: 'Welcome to overlay-sandbox',
description: 'Generated by create-nx-workspace',
};
export default function RootLayout({
children,
}: {
children: React.ReactNode;
}) {
return (
<html lang="en">
<body>{children}</body>
</html>
);
}