This commit is contained in:
Darren Clarke 2024-03-16 19:39:20 +01:00
parent 43bfdaa1e3
commit fe6c9419dd
87 changed files with 16739 additions and 2526 deletions

View file

@ -1,9 +1,8 @@
import type { Metadata } from "next";
import { Inter } from "next/font/google";
import { InternalLayout } from "./_components/InternalLayout";
import "./_styles/globals.css";
import { LicenseInfo } from "@mui/x-date-pickers-pro";
const inter = Inter({ subsets: ["latin"] });
LicenseInfo.setLicenseKey("7c9bf25d9e240f76e77cbf7d2ba58a23Tz02NjU4OCxFPTE3MTU4NjIzMzQ2ODgsUz1wcm8sTE09c3Vic2NyaXB0aW9uLEtWPTI=");
export const metadata: Metadata = {
title: "Metamigo",
@ -17,7 +16,7 @@ export default function RootLayout({
}>) {
return (
<html lang="en">
<body className={inter.className}>
<body>
<InternalLayout>{children}</InternalLayout>
</body>
</html>