layout.tsx

 1import type { Metadata } from "next";
 2import type React from "react";
 3
 4export const metadata: Metadata = {
 5  title: "Inline CSP Fixture",
 6  description: "Minimal app with a literal CSP header for live-mode tests.",
 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}