File tree Expand file tree Collapse file tree 1 file changed +10
-4
lines changed Expand file tree Collapse file tree 1 file changed +10
-4
lines changed Original file line number Diff line number Diff line change @@ -28,20 +28,26 @@ and create a basic **NFT minting application** that displays the three tiers of
28
28
created in our smart contract and gives users a one-click option to mint them. Once
29
29
minted, users will be redirected to a page that displays information of their mint.
30
30
31
- Hope you have your code editors open because we're about to dive in!
31
+ Let's dive in!
32
32
<br />
33
33
34
34
---
35
35
36
36
## Getting started
37
37
38
- For all things related to our frontend we are going to create a new sub-directory
39
- within our project's root directory to maintain good practice, keep our code clean,
40
- and easy to locate and read.
38
+ Previously, you've seen how to create a smart contract using Remix, you've shifted
39
+ to a dedicated code editor environment and deployed to an actual test network.
40
+ In lesson 3 you added tiers to your NFTs and finally learnt to make your contracts
41
+ airtight using tests in lesson 4. Now we're going use all of this knowledge and
42
+ connect it to a frontend for users to see and interact with.
41
43
42
44
We're going to start where we left off in lesson 4. Open your code editor and
43
45
` cd ` into the ` **TierNFT** ` project directory.
44
46
47
+ For all things related to our frontend we are going to create a new sub-directory
48
+ within our project's root directory to maintain good practice, keep our code clean,
49
+ and easy to locate and read.
50
+
45
51
The first step is to initiate a [ nextJS] ( https://nextjs.org/ ) application inside the
46
52
project's root directory by running the following command.
47
53
You can’t perform that action at this time.
0 commit comments