// FastFund website — Partner / referral program page function Partners() { const { Button, Stat, Card, Badge, Field, Select, Checkbox } = window.CapFrontDesignSystem_019e08; const { mobile, tablet } = window.useBreakpoint(); const reasons = [ { icon: 'percent', t: 'Industry-leading payouts', b: 'Competitive commissions on every funded deal, paid fast — with full transparency on every split.' }, { icon: 'zap', t: 'Approvals in hours', b: 'Your referrals get answers in as little as 4 hours across our full marketplace of lenders.' }, { icon: 'layers', t: 'One submission, 10 products', b: 'Send a single deal and we match it to term loans, SBA, equipment, RBF, HELOC and more.' }, { icon: 'headset', t: 'A real partner desk', b: 'A dedicated partner manager, co-branded materials, and white-glove support for your clients.' }, ]; const partnerTypes = [ { icon: 'briefcase', t: 'ISOs & brokers' }, { icon: 'calculator', t: 'Accountants & CPAs' }, { icon: 'store', t: 'Franchise consultants' }, { icon: 'plug', t: 'SaaS & platforms' }, ]; const steps = [ { n: '01', t: 'Refer a deal', b: 'Submit a client in minutes through your partner portal — or just send us a warm intro.' }, { n: '02', t: 'We do the work', b: 'Your dedicated desk packages the file, shops our lender network, and keeps you in the loop.' }, { n: '03', t: 'You get paid', b: 'When the deal funds, your commission is calculated transparently and paid out fast.' }, ]; return (
{/* Hero */}
Business partners shaking hands over a deal
Partner Program

Refer deals.
Earn more.

Bring your clients the full FastFund marketplace and a dedicated partner desk — and earn industry-leading commissions on every funded deal.

{/* Why partner */}
Why partner with us

Built to make you look great

{reasons.map((r) => (
{r.t}
{r.b}
))}
{/* How it works */}
How it works

Three steps to your first payout

{steps.map((s) => (
{s.n}

{s.t}

{s.b}

))}
{/* Partner types */}
Who partners with FastFund

If you serve business owners, we should talk

{partnerTypes.map((t) => (
{t.t}
))}
); } // Inline partner-application lead-capture form function PartnerForm() { const { Button, Field, Select, Checkbox } = window.CapFrontDesignSystem_019e08; const { mobile } = window.useBreakpoint(); const [sent, setSent] = React.useState(false); React.useEffect(() => { window.lucide && window.lucide.createIcons(); }); return (
{!sent ? (
Become a partner
Apply in 60 seconds. A partner manager reaches out within one business day.
) : (
Application received
Thanks for your interest in partnering with FastFund. A partner manager will reach out within one business day.
)}
); } window.Partners = Partners;