// FastFund website — Resources / blog index const CF_POSTS = [ { id: 'compare-offers', cat: 'Funding 101', title: 'How to compare business funding offers without getting burned', excerpt: 'APR, factor rates, fees, and term length rarely line up apples-to-apples. Here is the framework our managers use to find the true lowest cost of capital.', read: '6 min', author: 'FastFund Team', date: 'Jun 2, 2026', img: '1573164713988-8665fc963095', featured: true }, { id: 'loc-vs-term', cat: 'Funding 101', title: 'When a line of credit beats a term loan', excerpt: 'For uneven cash flow, a revolving line can cost far less than a lump-sum loan. Here is how to tell which one fits.', read: '4 min', author: 'FastFund Team', date: 'May 28, 2026', img: '1604719312566-8912e9227c6a' }, { id: 'restaurant-buildout', cat: 'Industry', title: 'Financing a restaurant build-out: a playbook', excerpt: 'From equipment leases to working capital, how food-service owners stack the right products to open on time and on budget.', read: '7 min', author: 'FastFund Team', date: 'May 21, 2026', img: '1414235077428-338989a2e8c0' }, { id: 'equipment-101', cat: 'Funding 101', title: 'Equipment financing 101 for contractors', excerpt: 'Why the equipment itself is your best collateral — and how to keep 100% of your cash for the jobs that earn.', read: '5 min', author: 'FastFund Team', date: 'May 14, 2026', img: '1504917595217-d4dc5ebe6122' }, { id: 'ready-to-scale', cat: 'Growth', title: '5 signs your small business is ready to scale', excerpt: 'Demand outpacing capacity? Consistent margins? Here are the signals that it is time to fund your next chapter.', read: '4 min', author: 'FastFund Team', date: 'May 7, 2026', img: '1466692476868-aef1dfb1e735' }, { id: 'rbf-vs-advance', cat: 'Funding 101', title: 'Revenue-based financing vs. a merchant advance', excerpt: 'They look similar on the surface. The differences in cost and structure can be worth tens of thousands.', read: '6 min', author: 'FastFund Team', date: 'Apr 30, 2026', img: '1581092918056-0c4c3acd3789' }, { id: 'barbershop-story', cat: 'Owner stories', title: 'How one 3-chair barbershop became three locations', excerpt: 'A dual-product plan — equipment financing plus a line of credit — turned a neighborhood shop into a small chain.', read: '5 min', author: 'FastFund Team', date: 'Apr 23, 2026', img: '1503951914875-452162b0f3f1' }, ]; const CF_IMG = (id, w) => `https://images.unsplash.com/photo-${id}?auto=format&fit=crop&w=${w || 800}&q=70`; function Resources() { const { Button, Badge } = window.CapFrontDesignSystem_019e08; const { mobile, tablet } = window.useBreakpoint(); const cats = ['All', 'Funding 101', 'Growth', 'Industry', 'Owner stories']; const [cat, setCat] = React.useState('All'); React.useEffect(() => { window.lucide && window.lucide.createIcons(); }, [cat]); const featured = CF_POSTS.find((p) => p.featured); const rest = CF_POSTS.filter((p) => !p.featured && (cat === 'All' || p.cat === cat)); return (
{/* Heading */}
Resources

The FastFund capital playbook

Plain-spoken guides, comparisons, and owner stories to help you fund your business the smart way.

{/* Featured */}
{featured.cat} Featured · {featured.read} read

{featured.title}

{featured.excerpt}

{featured.author.split(' ').map((s) => s[0]).join('')} {featured.author} · {featured.date}
{/* Filters */}
{cats.map((c) => { const on = cat === c; return ( ); })}
{/* Grid */}
{rest.map((p) => )}
{/* Newsletter capture */}
); } function ArticleCard({ post }) { const { Badge } = window.CapFrontDesignSystem_019e08; const [hover, setHover] = React.useState(false); return ( setHover(true)} onMouseLeave={() => setHover(false)} style={{ display: 'flex', flexDirection: 'column', background: 'var(--surface-card)', border: '1px solid var(--border-subtle)', borderRadius: 'var(--radius-xl)', overflow: 'hidden', textDecoration: 'none', transform: hover ? 'translateY(-4px)' : 'none', boxShadow: hover ? 'var(--shadow-lg)' : 'var(--shadow-xs)', transition: 'transform var(--duration-normal) var(--ease-out), box-shadow var(--duration-normal) var(--ease-out)' }}>
{post.cat}

{post.title}

{post.excerpt}

{post.author} {post.read} read
); } function Newsletter() { const { Button } = window.CapFrontDesignSystem_019e08; const { mobile } = window.useBreakpoint(); const [sent, setSent] = React.useState(false); React.useEffect(() => { window.lucide && window.lucide.createIcons(); }); return (

Capital tips, every other week

Join 12,000+ owners getting FastFund's plain-spoken funding guides. No spam, unsubscribe anytime.

{!sent ? (
) : (
You're subscribed — watch your inbox.
)}
); } window.Resources = Resources;