Adding a new page to your app
Most asks come down to "add a page that shows X and lets users do Y." Here's how.
Adding a new page is one of the most common requests. The AI is good at it. Here's how to phrase the ask and what to expect.
The basic pattern
In chat, describe:
- What the page is called (URL slug or just a name)
- What it shows (the data or content)
- What users can do on it (actions, forms, buttons)
Example:
Add a
Reviewspage. Show a list of all reviews with the reviewer's name, rating, and date. Let signed-in users add a new review with a star rating and a comment.
The AI builds the page, adds it to the navigation, sets up the data structure, and adds the form. Usually 30-60 seconds.
Where the new page lives
After it's built, you'll see it in:
- The preview — the AI usually navigates to the new page so you can see it immediately
- The page selector at the top of the preview — switch between pages here
- Your app's navigation — most apps get a nav update so users can find the page
Common variations
A public page anyone can see (like a landing page):
Add a public
Pricingpage with three columns: Free, Pro, and Team. Each shows the plan name, price, and a list of features.
A private page only signed-in users can access:
Add a
Settingspage (signed-in users only) where they can change their name, email, and notification preferences.
A list + detail pair (common for inventory, recipes, customers, etc.):
Add a
Productspage that lists all products. Clicking a product opens a detail page with its photo, price, and full description.
Customizing after creation
Once the page exists, talk to the AI like it's any other page:
On the Reviews page, sort reviews by date instead of by rating.
Hide the email field from the Reviews page.
Make the Reviews page only visible to admins.
Removing a page
Delete the Reviews page.
The AI removes the page, the route, and any nav entries. The underlying data stays unless you explicitly say also delete the reviews data.
What to read next
- Changing colors, fonts, and theme — make new pages match your style
- How your app's users sign up — for pages that need login