Dependency cleanup

This commit is contained in:
Darren Clarke 2024-08-07 12:02:33 +02:00
parent 2d892779bf
commit 2568547384
28 changed files with 170 additions and 482 deletions

View file

@ -1,10 +1,11 @@
import { ReactNode } from "react";
import { Metadata } from "next";
import "./_styles/global.css";
import { AppRouterCacheProvider } from "@mui/material-nextjs/v14-appRouter";
import { MultiProvider } from "./_components/MultiProvider";
import "./_styles/global.css";
export const metadata: Metadata = {
title: "Link",
title: "CDR Link",
};
type LayoutProps = {
@ -15,7 +16,9 @@ export default function Layout({ children }: LayoutProps) {
return (
<html lang="en">
<body>
<MultiProvider>{children}</MultiProvider>
<AppRouterCacheProvider>
<MultiProvider>{children}</MultiProvider>
</AppRouterCacheProvider>
</body>
</html>
);