GGrowStartup
← All posts

How we grew promptbuilder.cc to 50K clicks in 3 months

A transparent breakdown of the exact SEO moves (programmatic pages, keyword targeting, and directory backlinks) that took a new product to 50.1K clicks and 5.54M impressions.

·2 min read·Nick Launces

Three months ago, promptbuilder.cc was a brand-new domain with zero traffic. Today it pulls 50.1K clicks and 5.54M impressions a month from Google, up 64% and 75% respectively. No ads, no paid links, no growth hacks that get you penalized.

Here's exactly what we did, in the order we did it.

Start with intent, not volume

The mistake most founders make is chasing big head terms like "prompt generator" on day one. You can't rank for those yet, and even if you could, half that traffic never converts.

Instead we mapped modifier + tool queries that signal real intent:

  • claude prompt generator
  • gemini prompt generator
  • free grok prompt generator

Each one is a page. Each page targets one buyer with one job to be done.

If a query has a clear "I want to do this right now" feel, it's worth a dedicated page, even at low search volume. Ten pages ranking #1 for small terms beat one page stuck on page two of a big one.

Turn one template into thousands of pages

This is where programmatic SEO earns its name. We built a single page template and fed it a list of models and use-cases. The result: thousands of unique, genuinely useful URLs from one component.

generate-pages.ts
const models = ["claude", "gemini", "grok", "gpt"];
const useCases = ["marketing", "coding", "writing", "research"];
 
// One template → models × useCases ranked pages
export const routes = models.flatMap((model) =>
    useCases.map((useCase) => ({
        slug: `${model}-${useCase}-prompts`,
        title: `Free ${cap(model)} ${cap(useCase)} Prompts (2026)`,
    })),
);

The key is that each page has to be actually useful, with real templates and real examples. Thin doorway pages get filtered out fast.

New domains have no authority. The fastest legitimate way to build it early is directory submissions, getting listed on high-quality, relevant directories that pass real Domain Rating.

We submitted promptbuilder to 100+ directories by hand. It worked, but it took days of mind-numbing form-filling. That's the part we now hand off. If you'd rather skip it, our directory submission service does the whole thing for you.

Measure in Search Console, not vanity dashboards

Once pages are indexed, Search Console tells you the truth: which queries you're ranking for, which are climbing, and where you're stuck on page two and need a content refresh.

That feedback loop of ship, measure, refine is what turns a launch spike into compounding growth.


Want the full step-by-step version of this playbook, plus a new breakdown every week? Grab the free guide, and follow along on X.

Get the full SEO growth guide

Free, plus a new breakdown like this every week.

No spam. Unsubscribe anytime.