// FastFund website — hero (2026 rebrand) function Hero({ onApply }) { const { Button, Stat } = window.CapFrontDesignSystem_019e08; const { mobile, narrow } = window.useBreakpoint(); const [amount, setAmount] = React.useState('150,000'); return (
{/* signature violet→teal glow, top-right */}
Checking your offers won't affect your credit score

Small business funding,
fast‑forward.

One application unlocks competitive offers from our marketplace of lenders — plus deals we fund ourselves for better rates. Approvals in as little as 4 hours.

{/* Inline lead-capture qualifier */}
$ setAmount(e.target.value)} aria-label="How much do you need?" style={{ flex: 1, border: 'none', outline: 'none', background: 'transparent', padding: '0 12px', fontFamily: 'var(--font-body)', fontSize: 17, color: 'var(--text-strong)' }} />
Free to apply · No obligation · Funding from $5K to $5M+
{!narrow && } {narrow &&
}
); } // Hero panel — real photography with a floating offers chip overlaid. function HeroPanel() { const { Badge } = window.CapFrontDesignSystem_019e08; return (
{/* Photo */}
Small business owner at the counter of her shop {/* teal accent edge */}
{/* Floating offers chip */}
Funding options ready
2 hrs
Term Loan
24 mo · 8.9% APR
$250K
+ 2 more offers Compare
); } window.Hero = Hero;