# The $150/Day Directory Playbook

**Goal:** $4,500/month ($150/day) from a niche directory site.

This is the exact numbers-first playbook for turning `index.html` into a real revenue-producing asset. The site is already built with every monetization lever baked in — this doc shows you which levers to pull, in what order, and what math makes the target realistic.

---

## The Revenue Stack (how $150/day actually adds up)

A single-stream directory rarely hits $150/day. Five small streams do it easily. Here's the stack:

| Stream | Realistic Monthly | Difficulty | Time to First $ |
|---|---|---|---|
| Paid listings ($49 basic) | $1,200 (24 listings/mo) | Low | Week 2 |
| Featured listings ($149) | $1,200 (8 listings/mo) | Medium | Week 4 |
| Sponsor slot ($299/wk) | $1,200 (1 advertiser) | Medium | Month 2 |
| Affiliate commissions | $600 | Low | Week 3 |
| Newsletter sponsorships | $500 (2 ads/mo) | Medium | Month 3 |
| **Total** | **$4,700/month (~$156/day)** | | |

You don't need all five. You need any three to hit target.

---

## Pick Your Niche (if AI Tools isn't it)

AI Tools is what I built, but the playbook works for any of these. Pick one with:
- A clear buyer (someone who'd pay to be listed)
- Active search volume ("best X tools" — 2,000+ searches/mo)
- No dominant directory already owning page 1

**Proven niches:**

1. **AI Tools** (built) — crowded but huge TAM
2. **Remote Jobs in [vertical]** — developer/designer/marketing remote boards
3. **No-Code Tools** — Zapier/Airtable/Webflow adjacent
4. **Shopify Apps for [niche]** — e.g. "Shopify apps for print-on-demand"
5. **Local [service] in [city]** — e.g. "Chicago wedding photographers"
6. **Newsletters by [category]** — "Best finance newsletters"
7. **Chrome extensions for [role]** — "Extensions for salespeople"
8. **Notion templates for [use case]** — "Notion templates for freelancers"
9. **Freelancers by skill** — "Top React developers for hire"
10. **Discord/Slack communities by industry**

**Niche test in 10 minutes:**
- Google "best [niche] directory" — if a SEO-dominant site exists, pick another
- Check Reddit/Twitter for complaints about not knowing where to find X
- Look at Product Hunt — if the niche launches 2+ products/week, you have supply
- Check Ahrefs free tool for the phrase "best [niche]" — want 1K+ searches/mo

---

## The 90-Day Launch Plan

### Days 1–14: Seed the directory

You need ~100 listings before anyone pays you. These come from **you**, not submissions.

**Daily task (2 hrs):** Add 8–10 listings by hand.
- Scrape Product Hunt, Twitter threads, subreddits, "top 20" articles
- For each: copy logo, pull description, assign category, tag pricing model
- Email a short note to the tool's founder: *"We just listed you in our new directory — here's the link. If you want to add a demo video or update your description, reply here."* This primes them as future Featured upgrades.

**End of Day 14:** 100+ listings live.

### Days 15–30: First traffic, first dollar

**SEO seed:** Write 3 pillar articles (1,500 words each):
- "The 30 Best [Niche] Tools in 2026, Ranked"
- "[Tool A] vs [Tool B]: Which Should You Pick?"
- "Free vs Paid [Niche] Tools: When to Switch"

Each article links to 20+ listings. Each listing page links back. Google loves this graph.

**Outreach (where your first $49 comes from):**
- Email 20 founders/day whose tool you listed
- Pitch: *"You're getting X visitors/mo from our listing. For $49 you'll get a permanent upgraded slot with your pitch video, CTA button, and featured placement in your category."*
- Conversion rate: 5–8%. 20 emails/day = 1–2 sales/day at $49 = **$30–60/day just from Basic listings**

**Submit to aggregators:**
- Launch on Product Hunt (Tuesday launch best)
- Submit to Hacker News (Show HN)
- Post in 5 relevant subreddits with value-add ("I built a free directory of X because I was frustrated…")
- Submit to directory-of-directories (like TAAFT, BetaList, AlternativeTo)

### Days 30–60: Monetization stack goes live

By now: 2K–5K monthly visitors, 30+ paid Basic listings.

**Turn on Featured tier ($149):**
- Email your Basic listers with upgrade offer
- Conversion from Basic → Featured: ~15%

**Turn on Sponsor slot ($299/wk):**
- One slot, banner + newsletter mention
- First buyer: pick your best-performing listed tool and pitch them hard
- Target: 2/4 weeks filled = $600/mo

**Start the newsletter:**
- Weekly (Tue morning): 5 new tools, 1 deep-dive, 3 deals
- Target: 500 subs by day 60. Migrates directly from site traffic.

### Days 60–90: Compounding

Traffic hits 10K+/mo. Newsletter hits 1K+.

**Now add:**
- **Affiliate links** on every paid tool (most AI tools have partner programs @ 20–40% recurring)
- **Job board** add-on: $99/post if relevant niche
- **Lead magnet** → "AI Tool Comparison Spreadsheet" → ConvertKit → sell ads

---

## Deploy It (30 minutes, free)

The `index.html` I built is a single file — easiest possible deploy.

**Option 1: Netlify Drop** (free)
1. Go to app.netlify.com/drop
2. Drag `index.html` in
3. You get a URL in 10 seconds
4. Add custom domain (~$12/yr on Cloudflare Registrar)

**Option 2: Cloudflare Pages** (free, faster)
1. Create a new project at pages.cloudflare.com
2. Upload directly or connect a GitHub repo
3. Point your domain in the Cloudflare dash

**Option 3: Vercel** (free)
1. `vercel` CLI → `vercel deploy` in the folder
2. Same result

---

## Make It Real (wire up the stubs)

The HTML has two form stubs that just show an alert. Wire them to real services:

### 1. Submissions → Stripe Checkout (15 min)

In `handleSubmit()`, replace the alert with a Stripe Checkout redirect:

```javascript
async function handleSubmit(e) {
  e.preventDefault();
  const res = await fetch('/api/create-checkout', {
    method: 'POST',
    body: JSON.stringify({ tier: currentTier, formData })
  });
  const { url } = await res.json();
  window.location = url;
}
```

Use Stripe Payment Links (no backend needed) for the simplest version:
- Create 3 Payment Links in Stripe ($49, $149, $299)
- Replace the form submit with `window.location = paymentLink`
- Collect the tool details in Stripe's checkout custom fields
- Stripe emails you on every sale

### 2. Newsletter → Beehiiv / ConvertKit (5 min)

Replace `subscribe()` with their embed. Beehiiv has a one-line script that replaces the whole form.

### 3. Data → Airtable (optional, 10 min)

Right now tools are hardcoded in JS. Move to Airtable:
- Create Airtable base with columns: name, category, color, pricing, description, featured
- Use Airtable's public API or a static site generator to pull into the page
- Now non-devs can add listings through Airtable UI

---

## The Numbers Check: Is $150/day Actually Realistic?

Yes, but only if you understand the traffic math.

**Conversion benchmarks for directories:**
- Site visitor → listing submission: 0.3%
- Submission form start → paid: 25%
- Net: ~0.075% of visitors become $49 buyers

**To hit $1,200/mo in Basic listings:** 24 buyers × ~13,000 visitors needed = 13K visitors/mo.

**Where 13K visitors comes from:**
- 3 pillar SEO articles × 1K visits each = 3K
- Newsletter traffic back to site = 2K
- Direct / word-of-mouth = 2K
- Social (Twitter/LinkedIn posts from listed founders) = 3K
- Product Hunt/Reddit launch tail = 3K

**This is achievable in 60–90 days** with consistent daily work (2 hrs/day to start).

**What kills directories:**
- Picking a niche with no buyers (hobbyist niches)
- Never emailing listed founders (they're your customers)
- Letting the site go stale (weekly updates are non-negotiable)
- Trying to monetize before you have 50+ listings

---

## First-Week Checklist

- [ ] Pick a niche (use test above)
- [ ] Buy domain on Cloudflare (~$10)
- [ ] Edit `index.html`: change "AI Tools Vault" → your brand, swap category chips, adjust colors if desired
- [ ] Add first 50 listings by hand (Days 1–7, 7/day)
- [ ] Deploy to Netlify Drop / Cloudflare Pages
- [ ] Create 3 Stripe Payment Links ($49, $149, $299)
- [ ] Wire up Beehiiv for the newsletter form
- [ ] Write 1 pillar article (SEO)
- [ ] Email 10 founders of listed tools to tell them they're listed
- [ ] Post launch on Twitter + 3 subreddits + Product Hunt

That's Week 1. Total cost: ~$10 (domain). Everything else is free.

---

## What to Build Next

Once you hit $150/day consistently (~Month 3), the upgrades that double revenue:

1. **Add a jobs board** — $99/post, zero inventory risk
2. **Paid newsletter tier** — "AI Tools Pro" at $15/mo for deep-dive reviews
3. **API access** — sell the directory data as an API ($99/mo)
4. **Duplicate the playbook** — launch directory #2 in an adjacent niche using the same codebase

Directories compound. Site #2 takes half the time. Site #3 takes a quarter. That's how people quietly hit $1M/year running 6 directories.

---

**Your file is ready: `index.html`. The only thing standing between you and the first $49 is picking the niche and shipping.**
