From f1a85c4e5a5209e830b8321b2d47dc069f9ac6d6 Mon Sep 17 00:00:00 2001 From: Tsunfire Date: Tue, 2 May 2023 21:09:40 -0700 Subject: [PATCH] try fix --- components/layouts/Main.tsx | 18 +------------ pages/_app.tsx | 53 +++++++++++++++++++++++++------------ 2 files changed, 37 insertions(+), 34 deletions(-) diff --git a/components/layouts/Main.tsx b/components/layouts/Main.tsx index 725e79d..2c648bf 100644 --- a/components/layouts/Main.tsx +++ b/components/layouts/Main.tsx @@ -1,4 +1,3 @@ -import { NextSeo } from "next-seo"; import Head from "next/head"; import { useRouter } from "next/router"; @@ -11,22 +10,7 @@ const Main = ({ children }: { children: React.ReactNode }) => { Dove Interface - + {children} diff --git a/pages/_app.tsx b/pages/_app.tsx index 10bf491..7750995 100644 --- a/pages/_app.tsx +++ b/pages/_app.tsx @@ -6,6 +6,7 @@ import { } from "@rainbow-me/rainbowkit"; import "@rainbow-me/rainbowkit/styles.css"; import { AnimatePresence } from "framer-motion"; +import { NextSeo } from "next-seo"; import { AppProps } from "next/app"; import { WagmiConfig, configureChains, createClient } from "wagmi"; import { @@ -53,23 +54,41 @@ const apolloClient = new ApolloClient({ function MyApp({ Component, pageProps }: AppProps) { return ( - - - - - - - - - + <> + + + + + + + + + + + ); }