link-stack/apps/metamigo-frontend/app/layout.tsx

25 lines
588 B
TypeScript
Raw Normal View History

2024-03-04 13:52:20 +01:00
import type { Metadata } from "next";
import { InternalLayout } from "./_components/InternalLayout";
2024-04-21 08:11:24 +02:00
import { LicenseInfo } from "@mui/x-license";
2024-03-04 13:52:20 +01:00
2024-03-16 19:39:20 +01:00
LicenseInfo.setLicenseKey("7c9bf25d9e240f76e77cbf7d2ba58a23Tz02NjU4OCxFPTE3MTU4NjIzMzQ2ODgsUz1wcm8sTE09c3Vic2NyaXB0aW9uLEtWPTI=");
2024-03-04 13:52:20 +01:00
export const metadata: Metadata = {
title: "Metamigo",
description: "",
};
export default function RootLayout({
children,
}: Readonly<{
children: React.ReactNode;
}>) {
return (
<html lang="en">
2024-03-16 19:39:20 +01:00
<body>
2024-03-04 13:52:20 +01:00
<InternalLayout>{children}</InternalLayout>
</body>
</html>
);
}