介绍
# Landing Page Generator
## 概述
生成高转化率的落地页,包含文案、结构以及随时可部署的 HTML/CSS。创建能将访客转化为客户的营销页面。
## 核心能力
### 1. 页面模板
**预置模板适用于:** - 产品发布页面(预热和正式发布) - 压缩页面(电子邮件捕获) - 网络研讨会注册页面 - 数字产品销售页面(课程、电子书、模板) - 服务预约页面 - 联盟营销评论页面 - 对比页面(产品 A vs 产品 B) - 致谢/确认页面
### 2. 文案框架
**基于经过验证的框架构建:** - AIDA(注意、兴趣、欲望、行动) - PAS(问题、煽动、解决方案) - 基于故事的钩子 - 社交证明集成 - 异议处理 - 稀缺性/紧迫感元素
### 3. SEO 优化
**自动包含:** - 优化的元标签(title、description、keywords) - 标题标签(H1、H2、H3) - 图片 Alt 文本 - 结构化数据 - 移动端响应式设计 - 快速加载结构
### 4. 转化元素
**内置转化触发器:** - 清晰的价值主张 - 以利益为导向的要点列表 - 客户评价/社交证明 - 常见问题解答(FAQ)板块 - 多个行动号召(CTA)(首屏上方和下方) - 保证/风险逆转声明 - 倒计时器 - 限时优惠
### 5. 响应式设计
**针对以下设备优化:** - 桌面端(1920px+) - 平板端(768px - 1024px) - 移动端(320px - 767px) - 跨浏览器兼容性
## 快速开始
### 生成产品发布页面
```python # 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 ```
### 生成压缩页面
```python python3 scripts/generate_landing.py \ --type squeeze \ --headline "Get Free SEO Checklist" \ --benefits "checklist,tips,strategies" \ --cta "Send Me The Checklist" \ --output squeeze.html ```
### 生成联盟营销评论页面
```python 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 ```
## 脚本
### `generate_landing.py` 根据参数生成落地页。
**参数:** - `--type`: 页面类型 (product-launch, squeeze, webinar, digital-product, service, affiliate-review, comparison, thank-you) - `--headline`: 主标题 - `--subheadline`: 辅助副标题 - `--product`: 产品/服务名称 - `--price`: 价格或 "起价 $X" - `--benefits`: 逗号分隔的利益点 - `--features`: 逗号分隔的功能点 - `--testimonials`: 包含的客户评价数量 - `--cta`: 行动号召按钮文本 - `--guarantee`: 保证文本(可选) - `--urgency`: 紧迫感消息(可选) - `--output`: 输出文件
**示例:** ```bash 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` 优化现有落地页文案。
**参数:** - `--input`: 输入 HTML 文件 - `--framework`: 文案框架 (AIDA, PAS, story) - `--add-social-proof`: 添加客户评价占位符 - `--add-urgency`: 添加稀缺性元素 - `--output`: 优化后的输出文件
### `ab_test_variations.py` 生成 A/B 测试变体。
**参数:** - `--input`: 基础落地页 - `--variations`: 生成数量(默认:3) - `--test-elements`: 测试对象 (headline, cta, price, colors) - `--output-dir`: 变体输出目录
## 页面模板
### 产品发布页面结构
```html <!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>[Product Name] - Transform Your Life</title> <meta name="description" content="..."> <!-- SEO meta tags --> <!-- Schema markup --> </head> <body> <!-- Hero Section --> <section class="hero"> <h1>[Headline]</h1> <p>[Subheadline]</p> <a href="#pricing" class="cta">[CTA]</a> </section>
<!-- Problem Section --> <section class="problem"> <h2>Struggling with [Problem]?</h2> <p>You're not alone...</p> </section>
<!-- Solution Section --> <section class="solution"> <h2>Introducing [Product Name]</h2> <ul>[Benefits List]</ul> </section>
<!-- Features Section --> <section class="features"> <h2>What You'll Get</h2> <div class="feature-grid"> [Feature 1] [Feature 2] [Feature 3] </div> </section>
<!-- Testimonials Section --> <section class="testimonials"> <h2>What People Are Saying</h2> [Testimonial Cards] </section>
<!-- Pricing Section --> <section class="pricing" id="pricing"> <h2>Choose Your Plan</h2> [Pricing Cards] </section>
<!-- Guarantee Section --> <section class="guarantee"> <h2>[Guarantee]</h2> <p>[Risk-free language]</p> </section>
<!-- FAQ Section --> <section class="faq"> <h2>Frequently Asked Questions</h2> [FAQ Items] </section>
<!-- Final CTA --> <section class="final-cta"> <a href="#pricing" class="cta">[CTA]</a> <p>[Urgency message]</p> </section>
<!-- Footer --> <footer>[Legal links, contact info]</footer> </body> </html> ```
## 最佳实践
### 标题 - **长度:** 最多 6-12 个词 - **格式:** 清晰、以利益为导向 - **标点:** 使用数字和括号 - **示例:** - "Master SEO in 30 Days" - "[Product Name]: The #1 Solution" - "How to [Benefit] Without [Pain]"
### 行动号召(CTA) - **位置:** 首屏上方 + 下方多次出现 - **颜色:** 高对比度(绿色、橙色、蓝色) - **文本:** 行动导向(Enroll, Get, Start, Join) - **紧迫感:** 添加时间限制或稀缺性
### 社交证明 - **位置:** 靠近 CTA 板块 - **多样性:** 评论、案例研究、统计数据相结合 - **具体性:** 包含姓名、照片、结果
### 定价 - **锚定:** 先展示昂贵的选项 - **分层:** 3 个层级(Good, Better, Best) - **突出:** 使中间选项脱颖而出 - **心理定价:** 使用 $299 而不是 $300
### 移动端优化 - **CTA 位置:** 移动端首屏上方 - **字体大小:** 最小 16px - **触控目标:** 按钮最小 44px - **表单字段:** 每屏一个输入框
## 自动化
### 批量落地页生成
```bash # 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 测试自动化
```bash # 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 ```
## 集成机会
### 与产品描述生成器集成 ```bash # 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]" ```
### 与评论摘要器集成 ```bash # 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]" ```
---
**构建页面。转化访客。扩展营收。**