/* global React, Footer, Wordmark, Eyebrow, LockPill, Icon, IntentBadge, TrustStrip */ const { useState: mUseState, useEffect: mUseEffect } = React; // ═══════════════════════════════════════════════════════════ // WHO BUYS — supply-side credibility // ═══════════════════════════════════════════════════════════ const WHO_BUYS_TYPES = [ { label: 'Private Equity', n: '04', count: '420+ firms', aum: '$5.1B in active mandates', desc: 'Lower-middle-market funds running platform plays and add-on roll-ups across industrials, services, and healthcare. Typical hold: 4–7 years.', profile: 'Hold periods · Equity checks $5–80M · Industries: 180+ NAICS codes', }, { label: 'Search Funds', n: '03', count: '210+ searchers', aum: '$1.2B in committed equity', desc: "Solo and partnered MBA-track operators with funded search vehicles. Looking to buy and run a single business they'll lead for 5–10 years.", profile: 'Owner-operator transition · Checks $2–15M · Strong on culture fit', }, { label: 'Family Offices', n: '02', count: '180+ offices', aum: '$1.6B in active mandates', desc: 'Multi-generational capital with patient horizons. Often willing to pay for stability over growth, retain management, structure earn-outs over 5+ years.', profile: 'Long hold · Checks $3–60M · Multi-asset diversification', }, { label: 'Strategic Acquirers', n: '01', count: '190+ corporates', aum: 'Tuck-in mandates', desc: 'Operating companies acquiring within or adjacent to their core business. Synergy-driven, often willing to overpay for fit. Faster diligence; tighter integration timelines.', profile: 'Synergy-driven · Variable check sizes · Industry-specific', }, ]; const SAMPLE_MANDATES = [ { kind: 'PE', region: 'Southeast', industry: 'HVAC platform', size: '$2–8M EBITDA', pe: '450M AUM · Active 8 mo', status: 'Open · 12 matches reviewed' }, { kind: 'Search', region: 'Texas / Sun Belt', industry: 'Specialty distribution', size: '$1–4M EBITDA', pe: 'Self-funded · Active 3 mo', status: 'Open · 4 matches reviewed' }, { kind: 'Family', region: 'National', industry: 'B2B services', size: '$3–12M EBITDA', pe: '3rd-gen · Active 14 mo', status: 'Open · 21 matches reviewed' }, { kind: 'Strategic', region: 'Mid-Atlantic', industry: 'Commercial roofing', size: 'Tuck-in', pe: 'Public co. · Active 5 mo', status: 'Open · 6 matches reviewed' }, { kind: 'PE', region: 'California', industry: 'MSP / IT services', size: '$2–6M EBITDA', pe: '$1.2B AUM · Active 11 mo', status: 'Open · 9 matches reviewed' }, { kind: 'Search', region: 'Pacific NW', industry: 'Niche manufacturing', size: '$1.5–5M EBITDA', pe: "Stanford GSB '24 · Active 6 mo", status: 'Open · 7 matches reviewed' }, ]; const HEADLINE_STATS = [ { v: '1,000+', l: 'Verified buyers' }, { v: '$8.2B', l: 'Active buyer demand' }, { v: '62', l: 'Deals facilitated, trailing 12 mo' }, { v: '47', l: 'States with active mandates' }, ]; const WhoBuysPage = ({ bp, navigate, accent }) => { const isMobile = bp === 'mobile'; const isTablet = bp === 'tablet'; const padX = isMobile ? 24 : isTablet ? 56 : 80; return (
{/* Top nav */}
{!isMobile && ( )}
{/* Hero */}
The buyer side

Real institutional buyers, vetted before they see you.

The strength of a confidential matching service is the strength of its buyer pool. Here’s who is on the other side — categorized, sized, and (where possible) shown in anonymized form.

{/* Headline stats */}
{HEADLINE_STATS.map((s, i) => (
{s.v}
{s.l}
))}
As of Q1 2026 · Active mandates only · Updated weekly
{/* Buyer types */}
Buyer types in our network

Four kinds of capital. Each looking for something different.

{WHO_BUYS_TYPES.map((t) => (
{t.n}
{t.count}

{t.label}

{t.aum}

{t.desc}

Typical profile
{t.profile}
))}
{/* Sample mandates */}
Sample mandates

A view of what buyers are asking for, this quarter.

Anonymized to protect both sides. Real mandates from active buyers in our network.
{SAMPLE_MANDATES.map((m, i) => (
{m.kind}
{m.industry}
{m.region}
{m.size}
{m.pe}
{m.status}
))}
247 more open mandates not shown here. Match against all of them in 90 seconds.
{/* How buyers join */}
How buyers get in

Verification before access. Always.

{[ { n: '01', t: 'Proof of capital', b: 'Fund LPA, recent capital call notice, or a signed letter from the institutional source. Search funds: capital commitment letters or self-funded equity proof.' }, { n: '02', t: 'Track record check', b: 'For PE: prior fund deal history. For search funds: GSB / HBS / Wharton credentials or a referrer in our network. For family offices: principal verification.' }, { n: '03', t: 'Annual recertification', b: "Buyers re-verify yearly. Mandates expire on a rolling 6-month cycle unless explicitly renewed. We don't carry stale demand." }, ].map((s) => (
{s.n}

{s.t}

{s.b}

))}
{/* CTA */}

The supply side is real. Now check demand for your business.

Free · Confidential · 90 seconds
); }; Object.assign(window, { WhoBuysPage });