diff --git a/src/pages/[platform]/start/quickstart/nextjs-pages-router/index.mdx b/src/pages/[platform]/start/quickstart/nextjs-pages-router/index.mdx
index bede1375439..7ae7af0265d 100644
--- a/src/pages/[platform]/start/quickstart/nextjs-pages-router/index.mdx
+++ b/src/pages/[platform]/start/quickstart/nextjs-pages-router/index.mdx
@@ -66,7 +66,7 @@ Deploy to AWS
Select **Start with an existing app** > **GitHub**. After you give Amplify access to your GitHub account via the popup window, pick the repository and `main` branch to deploy. Make no other changes and click through the flow to **Save and deploy**.
-
+
### 3. View deployed app
@@ -93,11 +93,11 @@ Let's take a tour of the project structure in this starter repository by opening
When the build completes, visit the newly deployed branch by selecting "View deployed URL". Since the build deployed an API, database, and authentication backend, you will be able to create new to-do items.
-
+
In the Amplify console, click into the deployment branch (in this case **main**) > select **Data** in the left-hand menu > **Data manager** to see the data entered in your database.
-
+
## Make frontend updates
@@ -108,7 +108,7 @@ Let's learn how to enhance the app functionality by creating a delete flow for t
Now let's set up our local development environment to add features to the frontend. Click on your deployed branch and you will land on the **Deployments** page which shows you your build history and a list of deployed backend resources.
-
+
At the bottom of the page you will see a tab for **Deployed backend resources**. Click on the tab and then click the **Download amplify_outputs.json file** button.
@@ -215,7 +215,7 @@ npm run dev
This should start a local dev server at http://localhost:3000.
-
+
### 6. Implement login UI
@@ -325,7 +325,7 @@ export default function HomePage() {
Try out your application in your localhost environment again. You should be presented with a login experience now.
-
+
To get these changes to the cloud, commit them to git and push the changes upstream.
@@ -421,7 +421,7 @@ Now, let's go back to your local application and test out the user isolation of
You will need to sign up new users again because now you're working with the cloud sandbox instead of your production backend.
-
+
To get these changes to the cloud, commit them to git and push the changes upstream.