mirror of
https://github.com/pbakaus/impeccable.git
synced 2026-09-15 15:46:30 +03:00
18 lines
423 B
TypeScript
18 lines
423 B
TypeScript
export const metadata = { title: 'Next Fixture' };
|
|
|
|
export default function RootLayout({ children }: { children: React.ReactNode }) {
|
|
return (
|
|
<html lang="en">
|
|
<head>
|
|
<meta
|
|
httpEquiv="Content-Security-Policy"
|
|
content="default-src 'self'; script-src 'self' 'unsafe-inline'; connect-src 'self'"
|
|
/>
|
|
</head>
|
|
<body>
|
|
{children}
|
|
</body>
|
|
</html>
|
|
);
|
|
}
|