DEV Community

Alexandre Lasly
Alexandre Lasly

Posted on

How I prospect tradespeople with aging websites — and deliver a demo before even contacting them

When you're a freelance developer, the hardest part isn't coding. It's proving your value before you've signed anything.

I built a pipeline that lets me:

  1. Find tradespeople whose websites are stuck in 2005
  2. Generate a modern version before contacting them
  3. Send them an email with a clickable link to their future site

All in 5 minutes per lead.


Step 1: Scrape aging websites

I target sites hosted on free.fr, pages with no viewport meta tag, those still using <font> or <center> tags.

OLD_SIGNALS = [
    'free.fr',        # Free hosting from the 2000s
    '<font ',         # Deprecated HTML tag
    '<center>',       # Pure HTML centering
]

curl -sL "http://example.free.fr" | grep -c '<font '
Enter fullscreen mode Exit fullscreen mode

In 30 minutes, 10-15 qualified leads.


Step 2: Generate the deliverable automatically

I created Artisan Démo, which generates everything in a single command:

python3 genere-demo.py "E.D. Maçonnerie" \
  --secteur maconnerie --ville "Estissac (10)" \
  --email "contact@ed-maconnerie.fr" --auto
Enter fullscreen mode Exit fullscreen mode

✅ Full showcase website (Tailwind, responsive, PWA)
✅ Sector-adapted color schemes
✅ Built-in quote request form
✅ Auto-deployed to atlasnexus.tech

The site is live before the prospect even knows I exist.


Step 3: Reach out with something concrete

"Hi, I visited your website and took the liberty of creating a modernized version:
👉 https://atlasnexus.tech/your-business/"

No abstract pitch. The site is already done, right there.


Results

8 demos on the AtlasNexus portfolio.


The stack

  • Scraping: Python + curl
  • Generation: Artisan Démo (open-source)
  • Deployment: git push → GitHub Pages
  • Visibility: Dev.to API

Why it works

  1. Deliverable before contact — you show something that exists
  2. Automation — 5 min per lead
  3. Pricing — €50 per redesign, €10/month maintenance
  4. Volume — 10 clients = €500 + €100/month recurring

Open-source repo: AtlasNexusOps/artisan-demo — more demos at atlasnexus.tech.

Top comments (0)