import { Web3WalletQueryClientProvider } from '@web3-wallet/react'; import type { AppProps } from 'next/app'; import Head from 'next/head'; function MyApp({ Component, pageProps }: AppProps) { return ( <> Web3 Wallet ); } export default MyApp;