How to Create an NFT Minting Website (Template Included)

How to Create an NFT Minting Site

In this guide, learn how to create an NFT minting website from scratch!

We'll take you step-by-step through the following:

  1. Deploying your NFT Drop smart contract
  2. Creating an app using our NFT Minting Site template
  3. Customizing your Connect Wallet button with web3 wallets, email & social account sign-in, and more options
  4. Setting up claim conditions for users to mint your NFTs

Let's get started!

Deploy the NFT Drop Smart Contract

To begin, head to the Contracts page in your thirdweb dashboard and hit "Deploy new contract":

deploy new contract

You will be taken to our Explore page — where you can browse smart contracts built by the top protocols in web3 and deploy them with just a few clicks!

Note: You can also use the thirdweb CLI to set up a smart contract environment by running the below command from your terminal:

npx thirdweb create contract

This will take you through an easy-to-follow flow of steps to create your contract. Learn more about this in our CLI guide.

Otherwise, let's get back to Explore:

thirdweb explore page

Here, select your smart contract of choice. For this guide, we're going to use the NFT Drop (ERC721A) contract to create our NFT collection:

thirdweb's NFT Drop Contract

Set up your smart contract with an image, name, description, etc., and configure which wallet address will receive the funds from primary and secondary sales:

Populate metadata for the smart contract

You can select any network you like. I am choosing Mumbai for this guide. Learn more about the different networks we have available below:

Which Blockchain & Network Should I Use?
Learn the typical workflow for deploying smart contracts on to a blockchain, with an overview of the different options available to you on thirdweb.

Once the contract is deployed, you can see the contract dashboard.

ERC721A NFT Drop Dashboard

Batch upload NFTs

We'll now upload a bunch of NFTs to our contract for people to claim! Head over to the NFTs tab and click on "Batch Upload":

Click on the Batch Upload button

A drawer will slide in; upload your NFTs here:

Upload your NFTs to the contract

Once it is uploaded, you'll be able to preview the NFTs. You can go through all your NFTs, and if everything looks good, click on Next:

Preview your NFTs and upload!

Select when you want to reveal your NFTs and click on Upload!

Select when to reveal your NFTs

Once they are uploaded, you'll be able to see all your NFTs in the NFTs tab:

NFTs successfully uploaded

Set Up Claim Conditions

Claim conditions are the criteria that define whowhen, and how users can claim an NFT from your drop, such as release dates, allowlists, and claim limits.

To add a claim phase, head to the Claim Conditions tab and click Add Initial Claim Phase:

Add initial claim phase

Here, you can configure the price, release date, and more for your NFT drop:

Add a Claim Phase for the drop

Update the details as you want and save the claim phase!

Creating the NFT Minting Site

We are going to use a pre-built template for this guide, so run this command in your terminal:

npx thirdweb create --template erc721

This will ask you to enter the name of your project, so give your project a name and click enter. Once the modules are installed, open the project in your favourite code editor!

You will first need to create a new .env file and add the thirdweb client ID with the name VITE_TEMPLATE_CLIENT_ID. If you haven't made one yet, make it for free on the dashboard.

Next, we need to update some parameters in the src/consts/parameters.ts file:

  • Change contractConst to the address of the contract that you just deployed
  • Change chainConst to the network on which you deployed your contract
  • We have already added the clientIdConst in the .env file, so you don't need to do anything here
  • You can change primaryColorConst to the color you want to use in your app. You can choose any color from these options:
const colors = {
  purple: "#7C3AED",
  blue: "#3B82F6",
  orange: "#F59E0B",
  pink: "#EC4899",
  green: "#10B981",
  red: "#EF4444",
  teal: "#14B8A6",
  cyan: "#22D3EE",
  yellow: "#FBBF24",
} as const;

If you want to use another color as your primary color, then open src/App.tsx and add a new color in the colors object and use it in the consts file.

If you now run your server using yarn dev. You'll be able to see the metadata of your contract being reflected:

Customizations

This is just a basic structure for the NFT minting site. You can customize it as much as you want! Here are some ideas:

Styling

You can change the stylings or layout of the app you can change it in the App.tsx file. The template uses tailwind for styling, so you can add the respective class names to change the styles. If you are new to Tailwind, you can check out their documentation to learn more about it!

Adding more wallet connect options

If you want your users more ways to connect their wallets than just the conventional metamask/coinbase wallet connection, I recommend checking out our different wallet connect options like smart wallets, local wallets, embedded wallets, and much more on our wallets page:

Build Your Own Connect Wallet Modal | Connect
Onboard your users to web3 with a beautiful Connect Wallet modal, customizable auth flows, and sign-in for web2 & web3 — in a few lines of code.

Allowing users to buy NFTs using fiat

You can also add fiat checkouts for a more seamless experience for your users using our engine! Here's a guide going through how to accept fiat payments using thirdweb engine and Stripe:

NFT Checkout | thirdweb developer portal
This guide uses thirdweb Engine to sell NFTs with credit card:

Notify your drop claimers

If you want to notify your drop claimers you can use mailchain to do it. Here's a guide showing how to do it:

Notify drop claimers using Mailchain
This guide will teach you how to send web3 mails to wallets after users claim an NFT Drop using thirdweb and Mailchain.

This is just a list few things that you can do with our SDK, but the sky is the limit here! You can check our docs to learn more about how to use a product.

Conclusion

This guide taught us how to create an NFT minting site using the thirdweb SDK and next.js.

You learned a lot, now pat yourself on the back and share your amazing apps with us on the thirdweb discord! If you want to look at the code, check out the GitHub Repository.


Need help?

For support, join the official thirdweb Discord server or share your thoughts on our feedback board.