2024-03-04 13:52:20 +01:00
|
|
|
import type { Metadata } from "next";
|
2024-04-21 08:11:24 +02:00
|
|
|
import { LicenseInfo } from "@mui/x-license";
|
2024-03-04 13:52:20 +01:00
|
|
|
|
2024-04-21 09:44:30 +02:00
|
|
|
LicenseInfo.setLicenseKey(
|
2024-05-16 18:22:10 +02:00
|
|
|
"c787ac6613c5f2aa0494c4285fe3e9f2Tz04OTY1NyxFPTE3NDYzNDE0ODkwMDAsUz1wcm8sTE09c3Vic2NyaXB0aW9uLEtWPTI=",
|
2024-04-21 09:44:30 +02:00
|
|
|
);
|
2024-03-04 13:52:20 +01:00
|
|
|
|
|
|
|
|
export const metadata: Metadata = {
|
2024-04-21 09:44:30 +02:00
|
|
|
title: "CDR Bridge",
|
2024-03-04 13:52:20 +01:00
|
|
|
description: "",
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
export default function RootLayout({
|
|
|
|
|
children,
|
|
|
|
|
}: Readonly<{
|
|
|
|
|
children: React.ReactNode;
|
|
|
|
|
}>) {
|
|
|
|
|
return (
|
|
|
|
|
<html lang="en">
|
2024-04-23 13:36:51 +02:00
|
|
|
<body>{children}</body>
|
2024-03-04 13:52:20 +01:00
|
|
|
</html>
|
|
|
|
|
);
|
|
|
|
|
}
|