Files
kryz-go/app/layout.tsx
T
kfj001andCopilot eab0abf800 New redesign
Co-authored-by: Copilot <copilot@github.com>
2026-04-28 02:41:47 +00:00

26 lines
649 B
TypeScript

import type { Metadata } from 'next';
import './globals.css';
export const metadata: Metadata = {
title: 'kryz-go',
description: 'KRYZ Go! mobile radio app',
};
export default function RootLayout({
children,
}: Readonly<{
children: React.ReactNode;
}>) {
return (
<html lang="en">
<head>
<meta
httpEquiv="Content-Security-Policy"
content="default-src 'self'; style-src 'self' 'unsafe-inline'; script-src 'self' 'unsafe-inline'; media-src 'self' https://kryz.out.airtime.pro; frame-src 'self' https:; child-src 'self' https:"
/>
</head>
<body>{children}</body>
</html>
);
}