| name | lead-magnets |
| description | Lead magnet design and creation — ebooks, templates, calculators, quizzes matched to audience intent. Use when building lead generation funnels. |
| domain | marketing |
| license | Apache-2.0 |
| tags | ["growth","lead","magnets","marketing","money","conversions","funnels"] |
| version | 2.0.0 |
| author | oyi77 |
| subdomain | |
| type | marketing |
Money-Making Overview
A single lead magnet can generate 50-500 new leads/month for years. At 2-10% email-to-customer conversion and $50-500 average order, that's $50-25,000/month from one magnet. Sell lead magnet creation as a $500-5K service to businesses.
Overview
Lead magnets are high-value free resources (checklists, templates, calculators) gated behind an email capture. They're the entry point of most B2C and B2B funnels — a single well-designed magnet can generate 50-500 leads/month with minimal ongoing effort.
Revenue Streams
- Lead Magnet Creation ($500-5K/magnet) — design + build for clients
- Lead Gen Funnels ($2K-10K) — full landing page + email sequence
- Template Packs ($27-97/set) — sell pre-made magnet templates
First Action in 60 Minutes
#!/usr/bin/env bash
MAGNET_NAME="10-Point [Topic] Audit Checklist"
echo "# $MAGNET_NAME" > ~/lead-magnet.md
echo "" >> ~/lead-magnet.md
echo "## Point 1: [First thing to check]" >> ~/lead-magnet.md
echo "- [ ] Action item 1" >> ~/lead-magnet.md
echo "- [ ] Action item 2" >> ~/lead-magnet.md
echo "" >> ~/lead-magnet.md
echo "## Point 2: [Second checklist area]" >> ~/lead-magnet.md
echo "- [ ] Action item 1" >> ~/lead-magnet.md
echo "- [ ] Action item 2" >> ~/lead-magnet.md
echo "" >> ~/lead-magnet.md
for i in $(seq 3 10); do
echo "## Point $i: [Checklist area]" >> ~/lead-magnet.md
>> ~/lead-magnet.md
>> ~/lead-magnet.md
>> ~/lead-magnet.md