# Social proof elements are placed near conversion points

- **Pattern:** `ab-001746` (`marketing-conversion.trust-social-proof.social-proof-proximity`)
- **Severity:** high
- **Lifecycle:** active
- **Last modified:** 2026-04-18
- **Canonical URL:** https://auditbuffet.com/patterns/ab-001746
- **License:** CC-BY-4.0 — attribute to AuditBuffet Pattern Catalog (https://auditbuffet.com/patterns/ab-001746)

## Why it matters

Social proof parked in a dedicated testimonials section far from the CTA arrives too late — the visitor has already decided whether to trust the offer by the time they scroll past the hero. A compact proof signal ("Trusted by 12,000+ teams · ★★★★★ 4.9 on G2") rendered directly under the primary button reduces the silent "is this real?" objection at the exact moment of decision and measurably lifts signup conversion.

## Severity rationale

High because proximity-free social proof fails to defuse purchase anxiety at the moment of conversion.

## Remediation

Move or duplicate a concise proof element — user count, star rating, or a customer logo strip — directly beneath or beside the primary CTA inside the hero section. Edit `components/hero.tsx` to add a micro-proof line:

```tsx
<section className="hero">
  <h1>Your headline</h1>
  <Button size="lg">Start Free Trial</Button>
  <p className="text-sm text-muted-foreground mt-2">
    Trusted by 12,000+ teams · ★★★★★ 4.9 on G2
  </p>
</section>
```

## Detection

- **ID:** `social-proof-proximity`
- **Severity:** `high`
- **What to look for:** Examine where social proof elements (testimonials, star ratings, user counts, logos, review quotes) appear relative to CTA buttons and signup forms. Check: (1) Is there a social proof element (even a brief one — "Join 10,000+ teams" or a star rating) visible within the hero section near the primary CTA? (2) Does the pricing page or signup page include testimonials, reviews, or trust indicators near the payment/signup form? Social proof in a dedicated "Testimonials" section far from any CTA provides less conversion value than social proof adjacent to the action point.
- **Pass criteria:** Count all social proof elements on the landing page and classify each by type (user count, rating, logos, testimonial). At least 1 social proof signal is visible either (a) within the hero section near the primary CTA, or (b) immediately adjacent to the primary signup or pricing form. No more than 2 sections may separate social proof from the nearest CTA. Report: "X social proof elements found, Y within proximity of CTAs."
- **Fail criteria:** All social proof elements are isolated in a standalone testimonials or social proof section with no proximity to the primary CTA or conversion form.
- **Skip (N/A) when:** The project has no marketing/landing page, or no social proof elements of any kind exist in the codebase (those are addressed by other checks).
- **Detail on fail:** `"Testimonials section exists but appears 4 sections below the hero CTA. No social proof element (count, stars, or logos) exists near the primary 'Start Free Trial' button."`.
- **Remediation:** Social proof closest to the conversion point reduces hesitation at the moment of decision. Move or duplicate a concise proof element next to your CTA:

  ```tsx
  <section className="hero">
    <h1>Your headline</h1>
    <Button size="lg">Start Free Trial</Button>
    <p className="text-sm text-muted-foreground mt-2">
      Trusted by 12,000+ teams · ★★★★★ 4.9 on G2
    </p>
  </section>
  ```

  This "micro social proof" approach takes one line and meaningfully reduces friction.

Taxons: content-integrity

HTML version: https://auditbuffet.com/patterns/ab-001746
