Craft High-Converting Landing Pages
Skill for landing pages - AIDA/PAS copy frameworks, page templates, mobile optimization, and A/B testing.
Maintainer of this project? Claim this page to edit the listing.
1.0.0Add to Favorites
Why it matters
Leverage proven landing page frameworks and conversion optimization techniques to design and build high-converting landing pages that drive user action and achieve business goals.
Outcomes
What it gets done
Apply AIDA, PAS, and Before-After-Bridge frameworks to landing page copy.
Optimize headlines, CTAs, and social proof for maximum conversion.
Generate HTML and CSS code snippets for landing page elements.
Implement A/B testing strategies for continuous improvement.
Install
Add it to your toolbox
Run in your project directory:
curl -fsSL https://spark.entire.vc/get/vb-landing-page-framework | bash Overview
Landing Page Framework Expert
A skill for landing-page design - AIDA and PAS copy frameworks, above-the-fold structure, page-structure templates, mobile optimization, and impact-ranked A/B testing. Use it for the landing page itself - structure, copy framework, conversion mechanics - not full brand or content-marketing strategy.
What it does
This skill covers landing-page design, conversion optimization, and marketing psychology - applying proven frameworks like AIDA, PAS, and Before-After-Bridge to build high-converting pages. AIDA (Attention, Interest, Desire, Action) is demonstrated with an HTML example: a benefit-led headline, a supporting subheadline with social proof, a benefits list, and a primary CTA button. PAS (Problem, Agitation, Solution) is shown identifying a pain point, amplifying its cost, then presenting the offer with a CTA.
Essential landing-page elements: an above-the-fold structure (headline in 10 words or less, subheadline, hero image or video, a single primary CTA, trust indicators) and a value-proposition formula (end result plus a specific time period plus objection handling, for example "Get 500+ Qualified Leads in 60 Days"). Conversion-optimization best practices cover CTA button styling:
.cta-button {
background-color: #ff6b35; /* High-contrast color */
color: white;
font-size: 18px;
font-weight: bold;
padding: 15px 40px;
border: none;
border-radius: 5px;
box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
transition: all 0.3s ease;
}
.cta-button:hover {
transform: translateY(-2px);
box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}
social-proof placement (customer count and logos right after the headline, a testimonial with a specific metric right before the CTA), and two page-structure templates: a high-ticket service page (hero, problem, solution, proof, final CTA) and a product-sales page (hero, benefits, social proof, FAQ objection-handling, urgency, guarantee, final CTA).
Mobile optimization is shown via mobile-first CSS (a larger, tap-friendly CTA fixed to the bottom of the screen, a 16px form-field font size to prevent iOS zoom). A/B testing strategy ranks elements by impact - headlines first, then CTA buttons, hero images, form fields, social proof - and is demonstrated with a simple JavaScript headline-variant randomizer tracked via an analytics event. Performance optimization targets a page-load time under 3 seconds, First Contentful Paint under 1.5 seconds, and Cumulative Layout Shift under 0.1, shown via resource preloading and lazy-loaded images. Psychological triggers cover scarcity and urgency (a limited-spots banner with a countdown) and risk reversal (a 100% money-back guarantee).
Common mistakes flagged: multiple CTAs above the fold, generic headlines, no mobile optimization even though over 60% of traffic is mobile, slow load times where each second costs 7% conversion, asking for too much form information, no social proof, and a weak value proposition that isn't understood within 5 seconds.
When to use - and when NOT to
Use it when designing or optimizing a landing page for conversion - applying AIDA or PAS copy structure, choosing a page-structure template, running A/B tests on specific elements, or fixing mobile or performance issues. It is not a full brand or content-marketing strategy guide - it is scoped to the landing page itself: structure, copy framework, and conversion mechanics.
Inputs and outputs
Given an offer and target audience, it produces landing-page copy structured to AIDA or PAS, an above-the-fold layout, a page-structure template (service or product sales), mobile-optimized CSS, and an A/B test plan prioritized by impact.
Integrations
Code samples span HTML/CSS for page structure and styling, JavaScript for a simple A/B test variant assignment tracked via an analytics event, and standard web-performance techniques such as resource preloading and lazy-loaded images.
Who it's for
Marketers, growth teams, and landing-page designers building or optimizing conversion-focused pages.
Source README
Landing Page Framework Expert
You are an expert in landing page design, conversion optimization, and marketing psychology. You understand the science behind high-converting landing pages and can apply proven frameworks like AIDA, PAS, and Before-After-Bridge to create compelling user experiences that drive action.
Core Landing Page Frameworks
AIDA Framework
Attention → Interest → Desire → Action
<h1>Double Your Sales in 30 Days Without Expensive Ads</h1>
<h2>Proven system used by 10,000+ businesses to boost revenue using organic traffic</h2>
<div class="benefits">
<h3>What You'll Get:</h3>
<ul>
<li>✓ Step-by-step traffic generation blueprint</li>
<li>✓ 50+ proven conversion templates</li>
<li>✓ Private community access</li>
</ul>
</div>
<button class="cta-primary">Get Instant Access - $97</button>
PAS Framework
Problem → Agitation → Solution
<h1>Struggling to Get Quality Leads from Your Website?</h1>
<p>You're spending thousands on traffic but visitors leave without converting.
Every day you delay costs you potential customers who go to competitors instead.</p>
<h2>Introducing LeadMagnet Pro - Convert 40% More Visitors</h2>
<button class="cta">Start Your Free Trial</button>
Essential Landing Page Elements
Above-the-Fold Structure
- Headline (value proposition in 10 words or less)
- Subheadline (supporting details)
- Hero image/video (shows product or outcome)
- Primary CTA (single, clear action)
- Trust indicators (logos, testimonials, guarantees)
Value Proposition Formula
Headline = End Result Customer Wants + Specific Time Period + Address Objections
Example: "Get 500+ Qualified Leads in 60 Days (Even If You've Never Done Marketing Before)"
Conversion Optimization Best Practices
CTA Button Optimization
.cta-button {
background-color: #ff6b35; /* High-contrast color */
color: white;
font-size: 18px;
font-weight: bold;
padding: 15px 40px;
border: none;
border-radius: 5px;
box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
transition: all 0.3s ease;
}
.cta-button:hover {
transform: translateY(-2px);
box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}
Social Proof Placement
<div class="social-proof">
<p>Join 25,847+ successful entrepreneurs</p>
<div class="customer-logos">
<img src="customer1.jpg" alt="Customer logo">
<img src="customer2.jpg" alt="Customer logo">
</div>
</div>
<div class="testimonial">
<blockquote>"This increased our conversion rate by 340% in just 2 weeks!"</blockquote>
<cite>- Sarah Johnson, CEO of TechStart</cite>
</div>
Page Structure Templates
High-Ticket Service Landing Page
<section class="hero">
<h1>Headline</h1>
<h2>Subheadline</h2>
<button class="cta">Book Free Strategy Call</button>
</section>
<section class="problem">
<h2>Are You Experiencing These Challenges?</h2>
</section>
<section class="solution">
<h2>Here's How We Solve This</h2>
</section>
<section class="proof">
<h2>Success Stories</h2>
</section>
<section class="cta-final">
<h2>Ready to Get Started?</h2>
<button>Schedule Your Call Now</button>
</section>
Product Sales Page Structure
<section class="hero">Headline + Product Image + CTA</section>
<section class="benefits">What's Included</section>
<section class="social-proof">Testimonials</section>
<section class="objection-handling">FAQ</section>
<section class="urgency">Limited Time Offer</section>
<section class="guarantee">Risk Reversal</section>
<section class="final-cta">Order Now</section>
Mobile Optimization
/* Mobile-first approach */
@media (max-width: 768px) {
.hero h1 {
font-size: 28px;
line-height: 1.2;
margin-bottom: 15px;
}
.cta-button {
width: 100%;
font-size: 20px;
padding: 18px;
position: fixed;
bottom: 0;
left: 0;
border-radius: 0;
z-index: 1000;
}
.form-field {
font-size: 16px; /* Prevents zoom on iOS */
}
}
A/B Testing Strategy
Elements to Test (in order of impact):
- Headlines - Test different value propositions
- CTA buttons - Color, text, placement
- Hero images - Product vs. benefit-focused
- Form fields - Number and types of fields
- Social proof - Testimonials vs. logos vs. numbers
Testing Implementation
// Simple A/B test for headline
const headlines = [
"Original Headline",
"Variant A Headline",
"Variant B Headline"
];
const variant = Math.floor(Math.random() * headlines.length);
document.getElementById('headline').textContent = headlines[variant];
// Track which variant user saw
gtag('event', 'page_view', {
'custom_parameter': 'headline_variant_' + variant
});
Performance Optimization
Critical Performance Metrics
- Page load time: < 3 seconds
- First Contentful Paint: < 1.5 seconds
- Cumulative Layout Shift: < 0.1
<link rel="preload" href="hero-image.jpg" as="image">
<link rel="preload" href="fonts/main-font.woff2" as="font" type="font/woff2" crossorigin>
<img src="testimonial.jpg" loading="lazy" alt="Customer testimonial">
Psychological Triggers
Scarcity and Urgency
<div class="urgency-banner">
<p>⏰ Limited Time: Only 3 spots left for this month</p>
<div id="countdown">23:59:45</div>
</div>
Risk Reversal
<div class="guarantee">
<h3>100% Money-Back Guarantee</h3>
<p>Try it risk-free for 30 days. If you don't see results,
we'll refund every penny - no questions asked.</p>
</div>
Common Mistakes to Avoid
- Multiple CTAs above fold - Confuses visitors
- Generic headlines - "Welcome to our website"
- No mobile optimization - 60%+ of traffic is mobile
- Slow loading times - Each second costs 7% conversion
- Asking for too much information - Keep forms minimal
- No social proof - People need validation before buying
- Weak value proposition - Visitors should understand benefit in 5 seconds
FAQ
Common questions
Discussion
Questions & comments · 0
Sign In Sign in to leave a comment.