---
name: landing-page-optimizer
description: Optimize landing pages for conversions, performance, and SEO. Use when improving landing pages, increasing conversions, or optimizing page performance.
---
# Landing Page Optimizer
## Instructions
When optimizing landing pages:
1. **Audit current page** (speed, UX, conversion elements)
2. **Identify improvement areas**
3. **Implement optimizations**
4. **Set up tracking**
## Above the Fold Checklist
- [ ] **Clear headline** - Value proposition in <5 seconds
- [ ] **Supporting subheadline** - Expand on benefit
- [ ] **Hero image/video** - Relevant, high-quality
- [ ] **Primary CTA** - Contrasting color, action-oriented
- [ ] **Social proof** - Logos, ratings, testimonials
- [ ] **No navigation distractions** - Minimal or hidden nav
## Page Structure Template
```tsx
// Optimal landing page structure
{/* 1. Hero Section */}
New Feature
Main Value Proposition
Supporting statement that expands on the benefit
{/* 2. Social Proof - Logos */}
Trusted by leading companies
{logos.map(logo =>

)}
{/* 3. Problem/Solution */}
The Problem
Describe the pain point your audience faces
{/* 4. Features/Benefits */}
How It Works
{features.map(feature => (
{feature.title}
{feature.description}
))}
{/* 5. Testimonials */}
What Customers Say
{testimonials.map(t => (
))}
{/* 6. Pricing (if applicable) */}
{/* 7. FAQ */}
{/* 8. Final CTA */}
Ready to Get Started?
Join 2,000+ companies already using our product
No credit card required
```
## CTA Optimization
### Button Best Practices
```tsx
// Good CTAs
// Add urgency/value
// Reduce friction
No credit card required • Cancel anytime
```
### CTA Placement
1. **Hero section** - Primary CTA above fold
2. **After features** - Reinforce value
3. **After testimonials** - Social proof boost
4. **Sticky header/footer** - Always accessible
5. **Exit intent popup** - Last chance
## Performance Optimization
### Image Optimization
```tsx
// Next.js Image component
import Image from 'next/image';
// Lazy load below-fold images
```
### Critical CSS
```tsx
// Inline critical styles for above-fold
```
### Performance Targets
| Metric | Target |
|--------|--------|
| LCP | < 2.5s |
| FID/INP | < 100ms |
| CLS | < 0.1 |
| Total Size | < 1MB |
| Time to Interactive | < 3s |
## SEO Optimization
### Meta Tags
```tsx
// app/layout.tsx or pages/_app.tsx
export const metadata = {
title: 'Product Name - Main Benefit | Brand',
description: 'Clear description with keywords. 150-160 chars.',
openGraph: {
title: 'Product Name - Main Benefit',
description: 'Description for social sharing',
images: [{ url: '/og-image.png', width: 1200, height: 630 }],
},
twitter: {
card: 'summary_large_image',
},
};
```
### Structured Data
```tsx
```
## Conversion Tracking
```tsx
// Google Analytics 4 events
const trackCTA = (ctaName: string) => {
gtag('event', 'cta_click', {
cta_name: ctaName,
page_location: window.location.href,
});
};
// Track scroll depth
useEffect(() => {
const observer = new IntersectionObserver(
(entries) => {
entries.forEach((entry) => {
if (entry.isIntersecting) {
gtag('event', 'section_viewed', {
section_name: entry.target.id,
});
}
});
},
{ threshold: 0.5 }
);
document.querySelectorAll('section[id]').forEach((section) => {
observer.observe(section);
});
}, []);
```
## A/B Testing Elements
Priority elements to test:
1. **Headline copy** - Different value propositions
2. **CTA text** - "Start Free" vs "Get Started" vs "Try Now"
3. **CTA color** - High contrast options
4. **Hero image** - Product vs people vs abstract
5. **Social proof placement** - Above vs below fold
6. **Pricing display** - Monthly vs annual default
7. **Form length** - Email only vs full form
## Mobile Optimization
```tsx
// Thumb-friendly CTAs
// Sticky mobile CTA
// Reduce content on mobile
{fullDescription}
{shortDescription}
```
## Quick Wins Checklist
- [ ] Headline communicates value in 5 seconds
- [ ] CTA button is high contrast and above fold
- [ ] Page loads in under 3 seconds
- [ ] Social proof visible above fold
- [ ] Mobile-optimized with thumb-friendly CTAs
- [ ] No broken images or links
- [ ] Forms have minimal required fields
- [ ] Trust badges near CTAs (security, guarantees)
- [ ] Clear pricing (no hidden fees messaging)
- [ ] Testimonials include photos and titles