-
Notifications
You must be signed in to change notification settings - Fork 39
/
Copy path_app.tsx
31 lines (28 loc) · 1.07 KB
/
_app.tsx
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
import type { AppProps } from "next/app";
import { ChainId, ThirdwebProvider } from "@thirdweb-dev/react";
import "../styles/globals.css";
import Head from "next/head";
import ThirdwebGuideFooter from "../components/GitHubLink";
// This is the chain your dApp will work on.
const activeChain = "mumbai";
function MyApp({ Component, pageProps }: AppProps) {
return (
<ThirdwebProvider activeChain={activeChain}>
<Head>
<title>thirdweb Edition Drop Minting Customizable Page</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta
name="description"
content="Learn How To Use Thirdweb's Edition Drop contract and create a customizable Edition Drop minting page"
/>
<meta
name="keywords"
content="Thirdweb, thirdweb Edition drop, how to make thirdweb nft drop, how to make nft collection thirdweb"
/>
</Head>
<Component {...pageProps} />
<ThirdwebGuideFooter />
</ThirdwebProvider>
);
}
export default MyApp;