diff --git a/src/pages/_app.js b/src/pages/_app.js index e7cee23..061a2ce 100644 --- a/src/pages/_app.js +++ b/src/pages/_app.js @@ -2,17 +2,22 @@ import "../styles/globals.css"; import { NextUIProvider } from "@nextui-org/react"; import { SessionProvider } from "next-auth/react"; +import { NextSeo } from "next-seo"; import Layout from "src/components/Layout"; +import { darkTheme } from "src/consts/themes"; function MyApp({ Component, pageProps: { session, ...pageProps } }) { return ( - - - - - - - + + + + + + + + + + ); }