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