Skip to content

Commit 120bf8b

Browse files
committed
Add intro to getting started for setting environment
1 parent 6d16774 commit 120bf8b

File tree

1 file changed

+10
-4
lines changed

1 file changed

+10
-4
lines changed

lessons/projects/5.mdx

Lines changed: 10 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -28,20 +28,26 @@ and create a basic **NFT minting application** that displays the three tiers of
2828
created in our smart contract and gives users a one-click option to mint them. Once
2929
minted, users will be redirected to a page that displays information of their mint.
3030

31-
Hope you have your code editors open because we're about to dive in!
31+
Let's dive in!
3232
<br/>
3333

3434
---
3535

3636
## Getting started
3737

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.
4143

4244
We're going to start where we left off in lesson 4. Open your code editor and
4345
`cd` into the `**TierNFT**` project directory.
4446

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+
4551
The first step is to initiate a [nextJS](https://nextjs.org/) application inside the
4652
project's root directory by running the following command.
4753

0 commit comments

Comments
 (0)