Dependency cleanup
This commit is contained in:
parent
2d892779bf
commit
2568547384
28 changed files with 170 additions and 482 deletions
|
|
@ -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>
|
||||
);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue