From forged-claude-code
Designs and generates conversion-optimized landing pages with Hero, benefits, social proof, CTA, and FAQ sections. Outputs HTML/React code with Tailwind CSS styling.
How this skill is triggered — by the user, by Claude, or both
Slash command
/forged-claude-code:landing-page-genThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Generates landing pages that convert visitors into users. Every section has a job — no decorative filler.
Generates landing pages that convert visitors into users. Every section has a job — no decorative filler.
| Trigger | Behavior |
|---|---|
| Product launch / Product Hunt | Full landing page generation |
| "landing page", "waitlist" | Interactive page builder |
| A/B test variant needed | Alternative section variants |
1. Hero (Above the fold)
├── Headline (6-12 words, core benefit)
├── Subheadline (1-2 sentences, how)
├── CTA Button (action verb, specific)
└── Social proof snippet (user count, logos, rating)
2. Problem Statement
└── "You know this pain..." (empathy-driven)
3. Solution / How It Works
├── 3-step process or feature highlights
└── Screenshot / Demo GIF
4. Benefits (not features)
├── Benefit 1 + icon
├── Benefit 2 + icon
└── Benefit 3 + icon
5. Social Proof
├── Testimonials (with photo, name, title)
├── Customer logos
└── Stats (users, uptime, satisfaction)
6. Pricing (if applicable)
└── Simple tiers (Free / Pro / Enterprise)
7. FAQ
└── 5-7 common objections answered
8. Final CTA
├── Repeat headline
└── CTA button (same as hero)
- [Verb] [desired outcome] without [pain point]
→ "Ship features faster without breaking things"
- The [category] that [key differentiator]
→ "The analytics tool that respects user privacy"
- [Outcome] in [timeframe]
→ "Beautiful docs in 5 minutes"
- Stop [pain]. Start [gain].
→ "Stop guessing. Start knowing."
✅ Good: "Start Free Trial" / "Get Started Free" / "Try It Now"
❌ Bad: "Submit" / "Click Here" / "Learn More"
Rule: [Action Verb] + [Value] + [Urgency hint]
→ "Start Building — Free Forever"
→ "Join 2,000+ Teams"
export default function LandingPage() {
return (
<main className="min-h-screen">
{/* Hero */}
<section className="px-6 py-24 text-center">
<h1 className="text-5xl font-bold tracking-tight">
{headline}
</h1>
<p className="mt-6 text-xl text-gray-600 max-w-2xl mx-auto">
{subheadline}
</p>
<a href="/signup" className="mt-8 inline-block px-8 py-4 bg-blue-600 text-white rounded-lg text-lg font-semibold hover:bg-blue-700">
{cta}
</a>
</section>
{/* ... more sections */}
</main>
)
}
Static HTML with inline Tailwind classes, no build step required.
- [ ] Hero headline is benefit-focused (not feature-focused)
- [ ] CTA is above the fold
- [ ] Only ONE primary CTA per page (don't split attention)
- [ ] Social proof is visible early (above fold or just below)
- [ ] Page loads in < 3 seconds
- [ ] Mobile-responsive
- [ ] No navigation links that distract from CTA
- [ ] FAQ addresses top 3 objections
- [ ] Final CTA repeats at bottom
| Tool | Purpose |
|---|---|
| Write | Generate page code (React/HTML) |
| Read | Reference brand-voice, value-proposition |
Will:
Will Not:
npx claudepluginhub dokkabei97/forged-claude-code --plugin forged-claude-codeGenerates high-converting Next.js/React landing pages with Tailwind CSS using PAS, AIDA, and BAB copy frameworks. Outputs complete TSX components (Heroes, Features, Pricing, FAQ, Testimonials, CTA, Footer) with SEO meta and Core Web Vitals optimization.
Generates a single-file HTML landing page from a brief using Tailwind CSS CDN. Includes responsive design, dark mode, hero with CTA, features, testimonials, FAQ, footer, and OG meta tags.
Generates landing page structures and copy including hero headlines, subheadlines, CTAs, how-it-works steps, features, and buyer psychology elements for sales pages.