diff --git a/docs/hub/Guides/import-collection.md b/docs/hub/Guides/import-collection.md
index 311263e..fd0bdb5 100644
--- a/docs/hub/Guides/import-collection.md
+++ b/docs/hub/Guides/import-collection.md
@@ -61,4 +61,8 @@ Once the collection is imported, it will be visible on Hub, under the "Collectio
## Step 2: Transfer update authority
-In order to mint tokens to the collection, transfer the collection's update authority to the Hub project treasury wallet. Transfer the update authority using the Metaboss `set-update-authority-all` command: https://metaboss.rs/set.html#set-update-authority.
\ No newline at end of file
+In order to mint tokens to the collection, transfer the collection's update authority to the Hub project treasury wallet. Transfer the update authority using the Metaboss `set-update-authority-all` command: https://metaboss.rs/set.html#set-update-authority.
+
+## Follow along
+
+
\ No newline at end of file
diff --git a/docs/hub/Guides/transfer-out-of-hub-wallet.md b/docs/hub/Guides/transfer-out-of-hub-wallet.md
index d590afa..96cae21 100644
--- a/docs/hub/Guides/transfer-out-of-hub-wallet.md
+++ b/docs/hub/Guides/transfer-out-of-hub-wallet.md
@@ -59,4 +59,8 @@ mutation TransferAsset($input:TransferAssetInput!) {
}
```
-Note that the API only supports transfering an NFT out of a Hub wallet. If a transfer is requested from an external wallet (even if the token was minted by Hub), Hub will return an error.
\ No newline at end of file
+Note that the API only supports transfering an NFT out of a Hub wallet. If a transfer is requested from an external wallet (even if the token was minted by Hub), Hub will return an error.
+
+## Follow along
+
+
\ No newline at end of file
diff --git a/docs/hub/developers/minting-drops.md b/docs/hub/developers/minting-drops.md
index 15dc9c9..1239584 100644
--- a/docs/hub/developers/minting-drops.md
+++ b/docs/hub/developers/minting-drops.md
@@ -8,25 +8,12 @@ This guide will walk you through minting a drop using Holaplex Hub.
You can try it out using our GraphiQL explorer: [https://api.holaplex.com/](https://api.holaplex.com/).
-We'll assume you've already created an account in Hub and set up an organization, project, and drop. If you haven't, please take a look at ADDLINK.
-
-
+We'll assume you've already created an account in Hub and set up an organization, project, and drop. If you haven't, please take a look at our [Drops](../overview/drops) page.
## Step 1: Authenticate
All API calls need a header of the form
-```
+```json
{ "Authorization": "Your_API_Token" }
```
@@ -38,16 +25,6 @@ To get an API token:
c. Click "Generate token"
-## Step 2: Create a customer and destination wallet
-
-Each Hub token is minted *to* a specific customer and *into* a customer's wallet. Thus, the first step to mint a token is to create a customer and associated wallet where that token will be sent.
-
-If you've already created a customer and customer wallet, skip to step N.
-
-### Create a customer
-
-Customers are assigned to a
-
## Minting a Drop
To mint a drop, you need to send the `mintEdition` mutation with the required input parameters.
@@ -124,7 +101,7 @@ Replace `ACCESS-TOKEN`, `DROP-ID`, and `RECIPIENT-WALLET-ADDRESS`
- `recipient`: The wallet address where the minted drop should be sent. This should be the address of the wallet created on the Holaplex Hub.
Note to find a customer's wallet address, perform the following query, e.g.:
-```
+```json
{
project(id:"a56e7745-37a2-40b7-9d25-d5c20b6fc137") {
name
@@ -144,6 +121,10 @@ Replace `ACCESS-TOKEN`, `PROJECT-ID`, and `CUSTOMER-ID`
After successfully minting the drop, you will receive a response containing the collection address and the owner wallet address. The collection address can be used to manage and query the drop on the Holaplex Hub platform.
+## Follow along
+
+
+
## Next Steps
After minting a drop, you can perform additional actions, such as querying the drop, etc. Check out the API docs to figure out what is possible!
diff --git a/docs/hub/introduction.md b/docs/hub/introduction.md
index 53f8650..4808aaf 100644
--- a/docs/hub/introduction.md
+++ b/docs/hub/introduction.md
@@ -15,7 +15,7 @@ Combining a year of experience working with Fortune 500 companies & big brands,
Thus, we've made sure that the NFT experience is smoother than ever before!
-
+
## Why use Hub?
diff --git a/docs/hub/overview/drops.md b/docs/hub/overview/drops.md
index 7333910..40d3eef 100644
--- a/docs/hub/overview/drops.md
+++ b/docs/hub/overview/drops.md
@@ -78,4 +78,8 @@ And you're done! You've just set up a drop!
You should be able to see your drop on the Manage Drops screen now -
![Manage Drops Screen](./ListOfDrops.png)
-To learn how to mint your drop, check out the Guides, below.
\ No newline at end of file
+To learn how to mint your drop, check out the [Guides](../../category/guides), below.
+
+## Follow along
+
+
\ No newline at end of file