diff --git a/content/docs/stacks/platform/guides/build-contracts.mdx b/content/docs/stacks/platform/guides/build-contracts.mdx
index 69f0df84..d7d9d39d 100644
--- a/content/docs/stacks/platform/guides/build-contracts.mdx
+++ b/content/docs/stacks/platform/guides/build-contracts.mdx
@@ -3,16 +3,10 @@ title: Build contracts
description: Learn how to develop contracts and build in the Hiro Platform.
---
-## Prerequisites
-
-- Log in using any of the methods described in the [Quickstart](/stacks/platform/quickstart) guide.
-- Create or import a project by following the steps in the [create project](/stacks/platform/guides/create-project) guide.
-
-## Build contract
+Building contracts on the Hiro Platform allows you to leverage the power of Clarity, a language designed for smart contracts on the Stacks blockchain.
- If you are new to Clarity programming, check out the [Bitcoin Builders
- Primer](https://start.bitcoinprimer.dev/).
+ If you are new to Clarity programming, check out the [Bitcoin Builders Primer](https://start.bitcoinprimer.dev/).
If you have create or imported a project with no Clarity contracts, you will see a window that prompts you to create a new contract or open a web (or local) editor.
@@ -28,10 +22,7 @@ To create a new contract, you can simply click the "Create contract" button whic
You can also create a new contract for your project from the editor by following the steps below. Note: the sample project used here is from [Clarity examples](https://github.com/hirosystems/clarity-examples/tree/main/examples/blank-project), and these steps assume that your project has no Clarity contracts already.
- Hiro offers a [collection of Clarity smart
- contracts](https://github.com/hirosystems/clarity-examples/tree/main/examples)
- in the platform available for you to quickly extend and deploy. Or you can
- write your own from scratch.
+ Hiro offers a [collection of Clarity smart contracts](https://github.com/hirosystems/clarity-examples/tree/main/examples) in the platform available for you to quickly extend and deploy. Or you can write your own from scratch.
1. Click the "Open in Web Editor" button. If you want to do this locally, you first need to [set up SSH](/stacks/platform/guides/connect-desktop-to-cloud).
diff --git a/content/docs/stacks/platform/guides/create-project.mdx b/content/docs/stacks/platform/guides/create-project.mdx
index dea96fa9..53a5cbeb 100644
--- a/content/docs/stacks/platform/guides/create-project.mdx
+++ b/content/docs/stacks/platform/guides/create-project.mdx
@@ -1,38 +1,78 @@
---
title: Create a project
-description: Create a new project or import a project from GitHub.
+description: Learn how to create a new project or import an existing one from GitHub on the Hiro Platform.
---
-This article walks you through the process of creating a new project or importing a project from GitHub.
+In this guide, you'll discover how to easily create a new project or import an existing project from GitHub within the [Hiro Platform](https://platform.hiro.so/).
-After you log into the [Hiro Platform](https://platform.hiro.so/), you will automatically land on the projects tab and be prompted to create a project or import from GitHub.
+After you log in, you'll land on the `/projects` page. This is where you can either create a project from scratch, choose an example project, or import one from GitHub.
+
+## Create or import a project
![create or import a project](../images/project/create-or-import.png)
-## Create new project
+### Create a new project
+
+To start a new project, you can begin with a blank project or by choosing one of the example projects provided. The selections includes options such as:
+
+- [Hello world](https://github.com/hirosystems/clarity-examples/tree/main/examples/hello-world)
+- [Fungible token](https://github.com/hirosystems/clarity-examples/tree/main/examples/fungible-token) and [Non-fungible token](https://github.com/hirosystems/clarity-examples/tree/main/examples/non-fungible-token)
+- [Counter](https://github.com/hirosystems/clarity-examples/tree/main/examples/counter)
+- [DeFi](https://github.com/hirosystems/clarity-examples/tree/main/examples/stx-defi)
+
+For this example, create a new project using the **Counter** template.
+
+
+For the rest of the examples, check out the [Clarity examples](https://github.com/hirosystems/clarity-examples/tree/main/examples) repo.
+
+
+Starting on the `/projects` page:
-To create a new project, you can start with a blank project or use one of the examples displayed in the project modal. Those sample projects include a Hello world contract, fungible and non-fungible token contracts, a counter contract, a swap contract, and more. You can also refer to the examples in the [Clarity examples](https://github.com/hirosystems/clarity-examples/tree/main/examples) to view the source code.
+1. Click on the **New project** button.
+2. In the template section, browse the examples. Look for the **Counter** template and select it.
![Create new project](../images/project/new-project.png)
-Once you select a new project from the list, the selected example project will be automatically cloned and displayed on the [projects](https://platform.hiro.so) page. For example, here is a project page with the `counter` project template.
+Selecting the **Counter** template immediately takes you to a new project page, as the template will automatically be cloned and displayed.
-![Hello world project](../images/project/counter.png)
+Here, you can see a single `counter.clar` contract with the example code already written.
-From this projects page, you can manage all of your projects, and when you click into an individual project, you can then see all of the contracts in that particular project, edit those contracts, and add new ones.
+![Counter project](../images/project/counter.png)
-## Import project from GitHub
+On the right hand side of the interface, you can start editing your smart contracts, which will be validated in real-time.
-When you import a project from GitHub, there will be a modal displayed on the right where you can enter the GitHub URL of your project.
+To add a new contract, you can click on the **Create Contract** button that sits on the left hand side of the interface above your existing contracts.
-![Import from GitHub](../images/project/import-from-github.png)
+
+With a new project now created, you'll now see it on the `/projects` page. Here, you can manage all your projects.
+
+
+### Import a project from GitHub
-Once you enter the URL of your project, select _clone_ to clone your project into the Hiro Platform.
+1. Click on the **Import from GitHub** button.
+2. Enter the GitHub URL of the project you wish to import and click on **Clone**.
+
+![Import from GitHub](../images/project/import-from-github.png)
The maximum project size allowed for imports is 50 MB.
-You can now find your cloned project on the projects page in the platform, and by clicking into the project, you can see a list of all Clarity contracts ending with `.clar` extension, which will look something like this:
+Similar to creating a new project manually, cloning will redirect you to your project page where you can view the imported contracts.
![Import Clarinet project from GitHub](../images/project/import-from-clarinet.png)
+
+## Next steps
+
+
+
+
+
\ No newline at end of file
diff --git a/content/docs/stacks/platform/guides/deploy-project.mdx b/content/docs/stacks/platform/guides/deploy-project.mdx
index 3eb244b9..2630eba3 100644
--- a/content/docs/stacks/platform/guides/deploy-project.mdx
+++ b/content/docs/stacks/platform/guides/deploy-project.mdx
@@ -24,21 +24,21 @@ The following are the steps to deploy your contracts using the deploy button.
![deploy to environments](../images/deploy-project/deploy-to-environment.png)
5. Once you choose testnet or mainnet, a pop-up window will open and prompt you to connect your wallet and confirm the deployment.
-![wallet](../images/deploy-project/connect-wallet.png)
+ ![wallet](../images/deploy-project/connect-wallet.png)
6. While the deployment is in progress, you will see the contract status as "In mempool" under the environment field for the contract.
7. Once the deployment is confirmed, that status will update to "Deployed" under the chosen environment.
-![Mainnet deployment](../images/deploy-project/mainnet-deployment.png)
+ ![Mainnet deployment](../images/deploy-project/mainnet-deployment.png)
## Monitor your contract in the Stacks Explorer
At any time, you can monitor your contract in the [Stacks Explorer](https://explorer.hiro.so/?chain=mainnet).
1. You can use the Pop-out button "View in Explorer" beside the deployment status to monitor your contract in the Explorer.
-![Exporer view](../images/deploy-project/explorer-view.png)
+ ![Exporer view](../images/deploy-project/explorer-view.png)
2. This button will open the Explorer to a page showing the contract you just deployed. From this page, you can see relevant information about your contract and the contract details.
-![Explorer](../images/deploy-project/contract-on-explorer.png)
+ ![Explorer](../images/deploy-project/contract-on-explorer.png)
If you find issues with your deployment process, you can refer to the [FAQ section](/stacks/platform/faqs) or file an issue [here](https://hiro-pbc.canny.io/hiro-platform).