23 lines
499 B
TypeScript
23 lines
499 B
TypeScript
import type { Metadata } from "next";
|
|
import { LicenseInfo } from "@mui/x-license";
|
|
|
|
LicenseInfo.setLicenseKey(
|
|
"2a7dd73ee59e3e028b96b0d2adee1ad8Tz0xMTMwOTUsRT0xNzc5MDYyMzk5MDAwLFM9cHJvLExNPXN1YnNjcmlwdGlvbixQVj1pbml0aWFsLEtWPTI=",
|
|
);
|
|
|
|
export const metadata: Metadata = {
|
|
title: "CDR Bridge",
|
|
description: "",
|
|
};
|
|
|
|
export default function RootLayout({
|
|
children,
|
|
}: Readonly<{
|
|
children: React.ReactNode;
|
|
}>) {
|
|
return (
|
|
<html lang="en">
|
|
<body>{children}</body>
|
|
</html>
|
|
);
|
|
}
|