// FastFund website — content sections (trust, process, products, why, CTA) function TrustBar() { const items = ['Forbes Business Council', 'Inc. 5000', 'BBB Accredited', 'Trustpilot 4.8★']; return (
Trusted & recognized by
{items.map((i) => ( {i} ))}
); } function Process() { const { mobile } = window.useBreakpoint(); const steps = [ { n: '01', icon: 'file-pen', title: 'Apply', body: 'Connect with a dedicated relationship manager and send the documents they request to start underwriting.' }, { n: '02', icon: 'list-checks', title: 'Review', body: 'Receive multiple funding options within hours and choose the most cost-effective one — together.' }, { n: '03', icon: 'banknote', title: 'Fund', body: 'Depending on the product, capital can hit your account the same day you agree to terms.' }, ]; return (
Our Process

Easy as 1 · 2 · 3

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

{s.title}

{s.body}

))}
); } function Products({ onApply }) { const { ProductCard, Button, Card } = window.CapFrontDesignSystem_019e08; const { mobile, tablet } = window.useBreakpoint(); const products = [ { name: 'Term Loans', icon: 'trending-up', href: 'term-loans.html', blurb: 'A lump sum repaid plus interest over a set period of time.', terms: ['Up to $15M', 'Terms to 25 yr', 'Unsecured or asset-backed'] }, { name: 'Lines of Credit', icon: 'wallet', href: 'lines-of-credit.html', blurb: 'Draw only what you need and pay interest only on what you use.', terms: ['Up to $1.5M', '6 mo – 3 yr terms', 'Rates from 1% / mo'] }, { name: 'Revenue-Based Financing', icon: 'percent', href: 'revenue-based-financing.html', blurb: 'Repay as a percentage of sales — flexible with your cash flow.', terms: ['$5K – $10M', '6 mo – 4 yr terms', 'Fixed or % of sales'] }, { name: 'SBA Loans', icon: 'landmark', href: 'product.html', blurb: 'Government-backed, low-interest loans with very favorable terms.', terms: ['Up to $10M', 'Terms to 30 yr', 'Funding in ~1 week'] }, { name: 'Equipment Financing', icon: 'forklift', href: 'equipment-financing.html', blurb: 'Buy or lease equipment — the equipment itself is the collateral.', terms: ['Up to 100% of value', 'Terms to 7 yr', 'APR from 6%'] }, { name: 'Invoice Factoring', icon: 'file-text', href: 'invoice-factoring.html', blurb: 'Sell unpaid invoices for an immediate cash advance.', terms: ['No collateral', 'Up to 90% upfront', 'Easy application'] }, { name: 'HELOC', icon: 'house', href: 'heloc.html', blurb: "Tap your home's equity for flexible, low-cost business capital.", terms: ['Up to $750K', '10 – 30 yr terms', 'Rates from 5.99%'] }, { name: 'Real Estate Financing', icon: 'building-2', href: 'real-estate-financing.html', blurb: 'Acquire, refinance, or develop commercial property.', terms: ['Up to $25M', 'Up to 30 yr', 'Competitive rates'] }, { name: 'Independent Contractor Financing', icon: 'hard-hat', href: 'independent-contractor-financing.html', blurb: 'Funding built for 1099 contractors and the self-employed.', terms: ['Up to $20K', 'Terms to 12 mo', 'Fixed daily or weekly'] }, { name: 'Ecommerce Funding', icon: 'shopping-cart', href: 'ecommerce-funding.html', blurb: "Capital for online sellers, tied to your store's performance.", terms: ['Up to $20M', 'Terms to 12 mo', 'Weekly/monthly or % of sales'] }, ]; return (
Our Products

Funding for any situation

{products.map((p) => ( } /> ))}
Not sure which fits?
Answer a few questions and we'll match you with the right products in minutes.
); } function WhyFastFund() { const { Logo } = window.CapFrontDesignSystem_019e08; const { mobile } = window.useBreakpoint(); const ours = ['Relationship building', 'Client education', 'Product graduation', 'Full transparency', 'Sustainable financing']; const theirs = ['Exorbitant interest rates', 'Outrageous 3rd-party fees', 'Bait-and-switch tactics', 'Misleading contracts', 'Misinformed brokers']; return (
Why FastFund

A partner, not a broker

We launched FastFund to protect entrepreneurs from predatory lending in an almost completely unregulated market. Here's how we're different.

    {ours.map((o) => (
  • {o}
  • ))}
The other guys
    {theirs.map((t) => (
  • {t}
  • ))}
); } function CTASection({ onApply }) { const { Button } = window.CapFrontDesignSystem_019e08; const { mobile } = window.useBreakpoint(); return (

Your next move starts here

One application. Multiple offers. A relationship manager in your corner — every step of the way.

); } Object.assign(window, { TrustBar, Process, Products, WhyFastFund, CTASection });