Transitions UI to react.js

Co-authored-by: Copilot <copilot@github.com>
This commit is contained in:
2026-04-28 01:03:44 +00:00
co-authored by Copilot
parent 1897f8a9e7
commit dcae0b604b
12 changed files with 469 additions and 225 deletions
+25
View File
@@ -0,0 +1,25 @@
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"
/>
</head>
<body>{children}</body>
</html>
);
}