Landing Page Generator
by @michael-laffin
Generate high-converting landing pages for products, services, and lead generation. Use when creating marketing pages, product launches, squeeze pages, or digital asset sales pages.
clawhub install landing-page-generatorπ About This Skill
name: landing-page-generator description: Generate high-converting landing pages for products, services, and lead generation. Use when creating marketing pages, product launches, squeeze pages, or digital asset sales pages.
Landing Page Generator
Overview
Generate high-converting landing pages with copy, structure, and HTML/CSS ready for deployment. Create marketing pages that convert visitors into customers.
Core Capabilities
1. Page Templates
Pre-built templates for:
2. Copywriting Frameworks
Built with proven frameworks:
3. SEO Optimization
Automatically includes:
4. Conversion Elements
Built-in conversion triggers:
5. Responsive Design
Optimized for:
Quick Start
Generate Product Launch Page
# Use scripts/generate_landing.py
python3 scripts/generate_landing.py \
--type product-launch \
--product "SEO Course" \
--price 299 \
--benefits "learn SEO,rank higher,get traffic" \
--testimonials 3 \
--cta "Enroll Now" \
--output product_launch.html
Generate Squeeze Page
python3 scripts/generate_landing.py \
--type squeeze \
--headline "Get Free SEO Checklist" \
--benefits "checklist,tips,strategies" \
--cta "Send Me The Checklist" \
--output squeeze.html
Generate Affiliate Review Page
python3 scripts/generate_landing.py \
--type affiliate-review \
--product "Software XYZ" \
--affiliate-link "https://example.com/affiliate" \
--pros 5 \
--cons 2 \
--cta "Try XYZ Now" \
--output affiliate_review.html
Scripts
generate_landing.py
Generate landing page from parameters.Parameters:
--type: Page type (product-launch, squeeze, webinar, digital-product, service, affiliate-review, comparison, thank-you)--headline: Main headline--subheadline: Supporting subheadline--product: Product/service name--price: Price or "Starting at $X"--benefits: Comma-separated benefits--features: Comma-separated features--testimonials: Number of testimonials to include--cta: Call-to-action button text--guarantee: Guarantee text (optional)--urgency: Urgency message (optional)--output: Output fileExample:
python3 scripts/generate_landing.py \
--type product-launch \
--headline "Master SEO in 30 Days" \
--subheadline "Complete course with live coaching" \
--product "SEO Mastery Course" \
--price 299 \
--benefits "rank higher,drive traffic,boost sales" \
--features "video lessons,templates,community" \
--testimonials 5 \
--cta "Enroll Now - Save 50% Today" \
--guarantee "30-day money-back guarantee" \
--urgency "Limited spots - Offer ends Friday" \
--output landing.html
optimize_copy.py
Optimize existing landing page copy.Parameters:
--input: Input HTML file--framework: Copywriting framework (AIDA, PAS, story)--add-social-proof: Add testimonial placeholders--add-urgency: Add scarcity elements--output: Optimized outputab_test_variations.py
Generate A/B testing variations.Parameters:
--input: Base landing page--variations: Number to generate (default: 3)--test-elements: What to test (headline, cta, price, colors)--output-dir: Output directory for variationsPage Templates
Product Launch Page Structure
[Product Name] - Transform Your Life
[Headline]
[Subheadline]
[CTA]
Struggling with [Problem]?
You're not alone...
Introducing [Product Name]
[Benefits List]
What You'll Get
[Feature 1]
[Feature 2]
[Feature 3]
What People Are Saying
[Testimonial Cards]
Choose Your Plan
[Pricing Cards]
[Guarantee]
[Risk-free language]
Frequently Asked Questions
[FAQ Items]
[CTA]
[Urgency message]
Best Practices
Headlines
CTAs
Social Proof
Pricing
Mobile Optimization
Automation
Bulk Landing Page Generation
# Generate landing pages for multiple products
0 10 * * * /path/to/landing-page-generator/scripts/bulk_generate.py \
--csv products.csv \
--output-dir /path/to/landing-pages
A/B Test Automation
# Generate variations for top pages
0 9 * * 1 /path/to/landing-page-generator/scripts/ab_test_variations.py \
--input /path/to/top-pages/ \
--variations 3 \
--output-dir /path/to/ab-tests
Integration Opportunities
With Product Description Generator
# 1. Generate product description
product-description-generator/scripts/generate_description.py \
--product "Course Name"2. Extract benefits
3. Generate landing page
landing-page-generator/scripts/generate_landing.py \
--benefits "[extracted]"
With Review Summarizer
# 1. Get review insights
review-summarizer/scripts/scrape_reviews.py --url "[product_url]"2. Extract pros/cons
3. Generate review page
landing-page-generator/scripts/generate_landing.py \
--type affiliate-review \
--pros "[extracted]" \
--cons "[extracted]"
Build pages. Convert visitors. Scale revenue.
π‘ Examples
Generate Product Launch Page
# Use scripts/generate_landing.py
python3 scripts/generate_landing.py \
--type product-launch \
--product "SEO Course" \
--price 299 \
--benefits "learn SEO,rank higher,get traffic" \
--testimonials 3 \
--cta "Enroll Now" \
--output product_launch.html
Generate Squeeze Page
python3 scripts/generate_landing.py \
--type squeeze \
--headline "Get Free SEO Checklist" \
--benefits "checklist,tips,strategies" \
--cta "Send Me The Checklist" \
--output squeeze.html
Generate Affiliate Review Page
python3 scripts/generate_landing.py \
--type affiliate-review \
--product "Software XYZ" \
--affiliate-link "https://example.com/affiliate" \
--pros 5 \
--cons 2 \
--cta "Try XYZ Now" \
--output affiliate_review.html