Solo Landing Page
A comprehensive framework for solo founders to build, review, and optimize landing pages that convert visitors into customers.
Purpose
Help solo founders create effective landing pages that drive signups, trials, and sales. Whether building from scratch, reviewing existing pages, or optimizing for conversions, this skill provides actionable guidance focused on what actually works.
When to Use This Skill
Apply this skill for any landing page task:
- Creating: Building new landing pages from scratch
- Reviewing: Providing CRO feedback on existing pages
- Optimizing: Improving conversion rates
- Writing: Crafting compelling headlines, copy, and CTAs
- Structuring: Organizing page flow and sections
- Tracking: Setting up lean conversion measurement
- Validating: Checking if ready to ship
Core Framework: The 6 Conversion Pillars
Every effective landing page needs these six elements:
1. First Impression (Above the Fold)
- Value Proposition Clarity: Visitors understand what this is in 5 seconds
- Headline Impact: Benefit-focused, not feature-focused
- Hero Section: Answers "What is this?" and "Why should I care?"
- Visual Hierarchy: Eye naturally flows to the most important elements
2. Messaging & Copy
- Clarity over Cleverness: Clear and direct beats clever but confusing
- Benefit vs Feature Balance: Benefits clearly stated, features support them
- Customer Language: Sounds like how customers talk, not marketing speak
- Specificity: Claims are specific and credible, not vague
- Objection Handling: Addresses common concerns and doubts
3. Social Proof & Trust
- Testimonials: Specific and credible with real names/results
- Authority Markers: Logos, metrics, case studies
- Risk Reduction: Free trial, money-back guarantee, no credit card
- Proof Points: Real numbers, real results, real customers
4. Call-to-Action (CTA)
- CTA Clarity: Primary action is obvious and singular
- Button Copy: States the value, not generic "Submit"
- CTA Repetition: Repeated at logical points
- Friction Analysis: Minimal form fields, no unnecessary barriers
5. Structure & Flow
- Logical Progression: Guides visitors through a clear journey
- Scannability: Value understood by skimming
- Section Purpose: Each section has a clear job
- Length vs. Depth: Right depth for product complexity and price
6. Solo Founder Specific
- Launch Readiness: Good enough to ship vs needs work
- Quick Wins: Highest-impact changes available now
- De-prioritization: What can be removed or simplified
- Revenue Focus: Guides toward paid conversion, not just signups
Measurement Requirements (Stay Lean)
Must Track (Non-Negotiable)
These are the minimum events needed to understand landing page performance:
CTA Button Clicks - Track every primary CTA click
- Event:
cta_clicked
- Properties:
{button_text, button_location} (e.g., hero, footer)
Form Submissions - Track when forms are submitted (if applicable)
- Event:
form_submitted
- Properties:
{form_type} (e.g., signup, demo_request)
Page Views - Basic traffic measurement
- Event:
page_viewed
- Properties:
{referrer_source} (where they came from)
Implementation: Use a simple analytics tool (Plausible, PostHog, Simple Analytics) or basic custom tracking.
Should Track (High Value, Low Effort)
Add these for additional insight:
Scroll Depth - Did they read the whole page?
- Track at 25%, 50%, 75%, 100%
- Helps identify if people see your bottom CTA
Video Plays - If you have a demo video
- Event:
video_played
- Tells you if video is helping or ignored
Could Track (Post-Launch Optimization)
Only add after you have initial traction:
- Section Visibility - Which sections got viewed
- Link Clicks - External links, testimonials, social proof
- A/B Test Variations - When you're ready to test headlines/CTAs
Don't Track (Analysis Paralysis)
Avoid these until you have real revenue:
- Heatmaps (nice-to-have, not essential)
- Session recordings (overkill for pre-launch)
- Micro-interactions (hover states, etc.)
- Complex funnels (keep it simple)
The Goal: Know the conversion rate (visitors → signups/trials). Avoid drowning in data before having customers.
Task-Specific Guidance
When Building a New Landing Page
Required Information to Gather:
- What problem does the product solve?
- Who is the target customer?
- What's the primary conversion goal (trial, demo, purchase)?
- What's the price point (free, low, medium, high)?
- Any existing social proof or metrics?
Structure to Follow:
- Hero Section - Value prop, headline, subheadline, primary CTA
- Problem/Agitation - What pain are they experiencing?
- Solution - How your product solves it (benefits, not features)
- Social Proof - Testimonials, logos, metrics
- How It Works - Simple 3-step explanation
- Features/Benefits - Key capabilities tied to outcomes
- Pricing (if applicable) - Clear, simple, objection-handling
- Final CTA - Repeat the conversion ask
Copy Formula:
- Headline: [Desired outcome] without [common pain point]
- Subheadline: [How it works in one sentence]
- CTA: First-person, value-focused ("Start my free trial", not "Sign up")
Tracking Setup:
- Add
cta_clicked event to all CTA buttons
- Add
form_submitted event to signup/demo forms
- Add
page_viewed event on load
- Use simple analytics (Plausible, PostHog, or custom)
When Reviewing an Existing Landing Page
Output Format:
Quick Summary
Overall Assessment: [2-3 sentences on current state]
Ship It?: [Yes/No/Almost - with reasoning]
Tracking Status: [What's tracked, what's missing]
Critical Issues (Fix Before Launch)
List 2-4 issues that significantly hurt conversions:
- [Issue]: [Why it matters] → [Specific fix]
High-Impact Improvements
List 3-5 changes that would likely increase conversions:
- [Current state] → [Recommended change] → [Expected impact]
Copy Feedback
Headline: [Current] → [Suggested with reasoning]
Subheadline: [Current] → [Suggested with reasoning]
CTA Copy: [Current] → [Suggested alternatives with reasoning]
Tracking Gaps
Missing Events: [What's not being tracked that should be]
Quick Fix: [Simplest way to add essential tracking]
Specific Rewrite Suggestions
BEFORE:
[Current copy]
AFTER:
[Improved version]
WHY: [What changed and why it converts better]
What's Working Well
List 2-3 things to NOT change:
- [Element]: [Why it's effective]
Quick Wins (Do These First)
Ranked by impact/effort:
- [Change] - [Why this matters]
- [Change] - [Why this matters]
For Later (Post-Launch)
- [Optimization idea]
- [Optimization idea]
When Writing Copy
Headlines That Convert:
- Lead with outcome/benefit, not product
- Be specific: "Cut support tickets by 40%" beats "Better customer service"
- Avoid jargon and clever wordplay
- Test benefit-focused vs curiosity-driven
Effective CTAs:
- Use first-person: "Start my free trial" beats "Start your free trial"
- State the value: "Get my custom report" beats "Submit"
- Reduce friction: "No credit card required"
- Create urgency without false scarcity
Social Proof That Works:
- Specific testimonials: "Saved 10 hours/week" beats "Great product"
- Include name, photo, company for credibility
- Show real numbers: "2,453 solo founders" beats "Thousands of users"
- Use recognizable brand logos if available
When Setting Up Tracking
Minimum Viable Tracking Setup:
// Example: Simple tracking (adapt to your stack)
// Must have
trackEvent('cta_clicked', {
button_text: 'Start Free Trial',
button_location: 'hero' // or 'footer', 'pricing', etc.
})
trackEvent('form_submitted', {
form_type: 'signup' // or 'demo_request', 'contact', etc.
})
trackEvent('page_viewed', {
referrer_source: document.referrer
})
// Nice to have
trackScrollDepth([25, 50, 75, 100])
Tool Recommendations (Pick One):
- Plausible: Privacy-focused, simple, lightweight
- PostHog: Open-source, self-hostable, feature-rich
- Simple Analytics: Dead simple, privacy-friendly
- Custom: Log events to your database (perfectly fine)
Don't Overcomplicate: Logging CTA clicks and form submissions covers 80% of needs. Ship first, optimize later.
When Optimizing for Conversion
Common Friction Points:
- Too many form fields (only ask what you need NOW)
- Unclear pricing (show it or explain why you don't)
- Generic copy that could apply to any product
- No clear next step
- Weak value proposition
- Missing objection handling
- No tracking (can't measure what you don't track)
Quick Win Checklist:
Copywriting Formulas
PAS (Problem-Agitate-Solution)
- Problem: State the pain point
- Agitate: Make them feel it
- Solution: Present your product as the answer
AIDA (Attention-Interest-Desire-Action)
- Attention: Grab with bold headline
- Interest: Show you understand their problem
- Desire: Demonstrate the transformation
- Action: Clear CTA to convert
Before-After-Bridge
- Before: Current painful state
- After: Desired future state
- Bridge: Your product is how they get there
Principles for Solo Founders
- Conversion over aesthetics: Pretty doesn't pay the bills
- Specific over vague: "Save 5 hours/week" beats "Save time"
- Quick wins first: High-impact, low-effort changes
- Ship when ready: Good enough to test beats perfect paralysis
- Measure what matters: Track conversions, not vanity metrics
- Test and iterate: Launch, measure, improve
- Revenue focus: Guide toward paid conversion
- Customer language: Talk how they talk, not how you think
Common Issues by Stage
Pre-Launch (Must Fix)
- Unclear value proposition
- No obvious CTA
- Technical errors (broken links, typos)
- Trust issues (no social proof, looks unprofessional)
- Missing tracking (can't measure success)
Launch-Ready (High Impact)
- Weak headlines
- Feature-focused instead of benefit-focused
- Generic testimonials
- Too much friction in signup flow
- Incomplete tracking setup
Post-Launch (Optimize)
- A/B test copy variations
- Add more social proof as you get it
- Optimize based on scroll depth data
- Refine messaging based on customer feedback
- Test different CTA copy
Tone & Approach
- Direct and Actionable: Specific changes, not vague advice
- Encouraging but Honest: Truth over sugar-coating
- Revenue-Focused: Everything ties to conversion
- Pragmatic: Balance perfect with shipped
- Show, Don't Tell: Provide actual copy examples
- Data-Informed: Track enough to know what works
Remember: The goal is landing pages that convert. Good enough to test and iterate beats endless optimization before launch. Ship it, track the essentials, measure conversion rate, improve based on data.
1---2name: solo-landing-page3description: This skill should be used for ANYTHING related to landing page development including "review my landing page", "create a landing page", "write landing page copy", "build a landing page", "improve conversion rate", "optimize landing page", "landing page CRO", "write headlines", "create CTAs", "landing page structure", "add tracking", or any landing page-related task for marketing sites, product pages, or sales pages.4---5
6# Solo Landing Page
7
8A comprehensive framework for solo founders to build, review, and optimize landing pages that convert visitors into customers.
9
10## Purpose
11
12Help solo founders create effective landing pages that drive signups, trials, and sales. Whether building from scratch, reviewing existing pages, or optimizing for conversions, this skill provides actionable guidance focused on what actually works.
13
14## When to Use This Skill
15
16Apply this skill for any landing page task:
17- **Creating**: Building new landing pages from scratch
18- **Reviewing**: Providing CRO feedback on existing pages
19- **Optimizing**: Improving conversion rates
20- **Writing**: Crafting compelling headlines, copy, and CTAs
21- **Structuring**: Organizing page flow and sections
22- **Tracking**: Setting up lean conversion measurement
23- **Validating**: Checking if ready to ship
24
25## Core Framework: The 6 Conversion Pillars
26
27Every effective landing page needs these six elements:
28
29### 1. First Impression (Above the Fold)
30- **Value Proposition Clarity**: Visitors understand what this is in 5 seconds
31- **Headline Impact**: Benefit-focused, not feature-focused
32- **Hero Section**: Answers "What is this?" and "Why should I care?"
33- **Visual Hierarchy**: Eye naturally flows to the most important elements
34
35### 2. Messaging & Copy
36- **Clarity over Cleverness**: Clear and direct beats clever but confusing
37- **Benefit vs Feature Balance**: Benefits clearly stated, features support them
38- **Customer Language**: Sounds like how customers talk, not marketing speak
39- **Specificity**: Claims are specific and credible, not vague
40- **Objection Handling**: Addresses common concerns and doubts
41
42### 3. Social Proof & Trust
43- **Testimonials**: Specific and credible with real names/results
44- **Authority Markers**: Logos, metrics, case studies
45- **Risk Reduction**: Free trial, money-back guarantee, no credit card
46- **Proof Points**: Real numbers, real results, real customers
47
48### 4. Call-to-Action (CTA)
49- **CTA Clarity**: Primary action is obvious and singular
50- **Button Copy**: States the value, not generic "Submit"
51- **CTA Repetition**: Repeated at logical points
52- **Friction Analysis**: Minimal form fields, no unnecessary barriers
53
54### 5. Structure & Flow
55- **Logical Progression**: Guides visitors through a clear journey
56- **Scannability**: Value understood by skimming
57- **Section Purpose**: Each section has a clear job
58- **Length vs. Depth**: Right depth for product complexity and price
59
60### 6. Solo Founder Specific
61- **Launch Readiness**: Good enough to ship vs needs work
62- **Quick Wins**: Highest-impact changes available now
63- **De-prioritization**: What can be removed or simplified
64- **Revenue Focus**: Guides toward paid conversion, not just signups
65
66## Measurement Requirements (Stay Lean)
67
68### Must Track (Non-Negotiable)
69These are the minimum events needed to understand landing page performance:
70
711. **CTA Button Clicks** - Track every primary CTA click
72 - Event: `cta_clicked`
73 - Properties: `{button_text, button_location}` (e.g., hero, footer)
74
752. **Form Submissions** - Track when forms are submitted (if applicable)
76 - Event: `form_submitted`
77 - Properties: `{form_type}` (e.g., signup, demo_request)
78
793. **Page Views** - Basic traffic measurement
80 - Event: `page_viewed`
81 - Properties: `{referrer_source}` (where they came from)
82
83**Implementation**: Use a simple analytics tool (Plausible, PostHog, Simple Analytics) or basic custom tracking.
84
85### Should Track (High Value, Low Effort)
86Add these for additional insight:
87
884. **Scroll Depth** - Did they read the whole page?
89 - Track at 25%, 50%, 75%, 100%
90 - Helps identify if people see your bottom CTA
91
925. **Video Plays** - If you have a demo video
93 - Event: `video_played`
94 - Tells you if video is helping or ignored
95
96### Could Track (Post-Launch Optimization)
97Only add after you have initial traction:
98
996. **Section Visibility** - Which sections got viewed
1007. **Link Clicks** - External links, testimonials, social proof
1018. **A/B Test Variations** - When you're ready to test headlines/CTAs
102
103### Don't Track (Analysis Paralysis)
104Avoid these until you have real revenue:
105- Heatmaps (nice-to-have, not essential)
106- Session recordings (overkill for pre-launch)
107- Micro-interactions (hover states, etc.)
108- Complex funnels (keep it simple)
109
110**The Goal**: Know the conversion rate (visitors → signups/trials). Avoid drowning in data before having customers.
111
112## Task-Specific Guidance
113
114### When Building a New Landing Page
115
116**Required Information to Gather:**
1171. What problem does the product solve?
1182. Who is the target customer?
1193. What's the primary conversion goal (trial, demo, purchase)?
1204. What's the price point (free, low, medium, high)?
1215. Any existing social proof or metrics?
122
123**Structure to Follow:**
1241. **Hero Section** - Value prop, headline, subheadline, primary CTA
1252. **Problem/Agitation** - What pain are they experiencing?
1263. **Solution** - How your product solves it (benefits, not features)
1274. **Social Proof** - Testimonials, logos, metrics
1285. **How It Works** - Simple 3-step explanation
1296. **Features/Benefits** - Key capabilities tied to outcomes
1307. **Pricing** (if applicable) - Clear, simple, objection-handling
1318. **Final CTA** - Repeat the conversion ask
132
133**Copy Formula:**
134- **Headline**: [Desired outcome] without [common pain point]
135- **Subheadline**: [How it works in one sentence]
136- **CTA**: First-person, value-focused ("Start my free trial", not "Sign up")
137
138**Tracking Setup:**
139- Add `cta_clicked` event to all CTA buttons
140- Add `form_submitted` event to signup/demo forms
141- Add `page_viewed` event on load
142- Use simple analytics (Plausible, PostHog, or custom)
143
144### When Reviewing an Existing Landing Page
145
146**Output Format:**
147
148#### Quick Summary
149**Overall Assessment**: [2-3 sentences on current state]
150**Ship It?**: [Yes/No/Almost - with reasoning]
151**Tracking Status**: [What's tracked, what's missing]
152
153#### Critical Issues (Fix Before Launch)
154List 2-4 issues that significantly hurt conversions:
155- **[Issue]**: [Why it matters] → [Specific fix]
156
157#### High-Impact Improvements
158List 3-5 changes that would likely increase conversions:
159- **[Current state]** → [Recommended change] → [Expected impact]
160
161#### Copy Feedback
162**Headline**: [Current] → [Suggested with reasoning]
163**Subheadline**: [Current] → [Suggested with reasoning]
164**CTA Copy**: [Current] → [Suggested alternatives with reasoning]
165
166#### Tracking Gaps
167**Missing Events**: [What's not being tracked that should be]
168**Quick Fix**: [Simplest way to add essential tracking]
169
170#### Specific Rewrite Suggestions
171```
172BEFORE:
173[Current copy]
174
175AFTER:
176[Improved version]
177
178WHY: [What changed and why it converts better]
179```
180
181#### What's Working Well
182List 2-3 things to NOT change:
183- **[Element]**: [Why it's effective]
184
185#### Quick Wins (Do These First)
186Ranked by impact/effort:
1871. **[Change]** - [Why this matters]
1882. **[Change]** - [Why this matters]
189
190#### For Later (Post-Launch)
191- [Optimization idea]
192- [Optimization idea]
193
194### When Writing Copy
195
196**Headlines That Convert:**
197- Lead with outcome/benefit, not product
198- Be specific: "Cut support tickets by 40%" beats "Better customer service"
199- Avoid jargon and clever wordplay
200- Test benefit-focused vs curiosity-driven
201
202**Effective CTAs:**
203- Use first-person: "Start my free trial" beats "Start your free trial"
204- State the value: "Get my custom report" beats "Submit"
205- Reduce friction: "No credit card required"
206- Create urgency without false scarcity
207
208**Social Proof That Works:**
209- Specific testimonials: "Saved 10 hours/week" beats "Great product"
210- Include name, photo, company for credibility
211- Show real numbers: "2,453 solo founders" beats "Thousands of users"
212- Use recognizable brand logos if available
213
214### When Setting Up Tracking
215
216**Minimum Viable Tracking Setup:**
217
218```javascript
219// Example: Simple tracking (adapt to your stack)
220
221// Must have
222trackEvent('cta_clicked', {
223 button_text: 'Start Free Trial',
224 button_location: 'hero' // or 'footer', 'pricing', etc.
225})
226
227trackEvent('form_submitted', {
228 form_type: 'signup' // or 'demo_request', 'contact', etc.
229})
230
231trackEvent('page_viewed', {
232 referrer_source: document.referrer
233})
234
235// Nice to have
236trackScrollDepth([25, 50, 75, 100])
237```
238
239**Tool Recommendations (Pick One):**
240- **Plausible**: Privacy-focused, simple, lightweight
241- **PostHog**: Open-source, self-hostable, feature-rich
242- **Simple Analytics**: Dead simple, privacy-friendly
243- **Custom**: Log events to your database (perfectly fine)
244
245**Don't Overcomplicate**: Logging CTA clicks and form submissions covers 80% of needs. Ship first, optimize later.
246
247### When Optimizing for Conversion
248
249**Common Friction Points:**
250- Too many form fields (only ask what you need NOW)
251- Unclear pricing (show it or explain why you don't)
252- Generic copy that could apply to any product
253- No clear next step
254- Weak value proposition
255- Missing objection handling
256- No tracking (can't measure what you don't track)
257
258**Quick Win Checklist:**
259- [ ] Headline clearly states the benefit
260- [ ] Primary CTA is obvious and above the fold
261- [ ] CTA clicks are tracked
262- [ ] Social proof is present and specific
263- [ ] Copy uses "you" and customer language
264- [ ] No technical jargon unless target audience uses it
265- [ ] Form submissions are tracked
266- [ ] Conversion rate is measurable
267
268## Copywriting Formulas
269
270### PAS (Problem-Agitate-Solution)
2711. **Problem**: State the pain point
2722. **Agitate**: Make them feel it
2733. **Solution**: Present your product as the answer
274
275### AIDA (Attention-Interest-Desire-Action)
2761. **Attention**: Grab with bold headline
2772. **Interest**: Show you understand their problem
2783. **Desire**: Demonstrate the transformation
2794. **Action**: Clear CTA to convert
280
281### Before-After-Bridge
2821. **Before**: Current painful state
2832. **After**: Desired future state
2843. **Bridge**: Your product is how they get there
285
286## Principles for Solo Founders
287
288- **Conversion over aesthetics**: Pretty doesn't pay the bills
289- **Specific over vague**: "Save 5 hours/week" beats "Save time"
290- **Quick wins first**: High-impact, low-effort changes
291- **Ship when ready**: Good enough to test beats perfect paralysis
292- **Measure what matters**: Track conversions, not vanity metrics
293- **Test and iterate**: Launch, measure, improve
294- **Revenue focus**: Guide toward paid conversion
295- **Customer language**: Talk how they talk, not how you think
296
297## Common Issues by Stage
298
299### Pre-Launch (Must Fix)
300- Unclear value proposition
301- No obvious CTA
302- Technical errors (broken links, typos)
303- Trust issues (no social proof, looks unprofessional)
304- Missing tracking (can't measure success)
305
306### Launch-Ready (High Impact)
307- Weak headlines
308- Feature-focused instead of benefit-focused
309- Generic testimonials
310- Too much friction in signup flow
311- Incomplete tracking setup
312
313### Post-Launch (Optimize)
314- A/B test copy variations
315- Add more social proof as you get it
316- Optimize based on scroll depth data
317- Refine messaging based on customer feedback
318- Test different CTA copy
319
320## Tone & Approach
321
322- **Direct and Actionable**: Specific changes, not vague advice
323- **Encouraging but Honest**: Truth over sugar-coating
324- **Revenue-Focused**: Everything ties to conversion
325- **Pragmatic**: Balance perfect with shipped
326- **Show, Don't Tell**: Provide actual copy examples
327- **Data-Informed**: Track enough to know what works
328
329Remember: The goal is landing pages that convert. Good enough to test and iterate beats endless optimization before launch. Ship it, track the essentials, measure conversion rate, improve based on data.