// FastFund website — footer function Footer() { const { Logo } = window.CapFrontDesignSystem_019e08; const { mobile } = window.useBreakpoint(); const cols = [ { h: 'Products', links: ['Term Loans', 'Lines of Credit', 'Revenue-Based Financing', 'SBA Loans', 'Equipment Financing', 'Real Estate Financing'] }, { h: 'Company', links: ['Our Story', 'Customer stories', 'Careers', 'Contact Us'] }, { h: 'Resources', links: ['Funding guides', 'HELOC', 'Invoice Factoring', 'Partner with us', 'Privacy Policy'] }, ]; const linkHref = (l) => ({ 'Term Loans': 'term-loans.html', 'Lines of Credit': 'lines-of-credit.html', 'Revenue-Based Financing': 'revenue-based-financing.html', 'SBA Loans': 'product.html', 'Equipment Financing': 'equipment-financing.html', 'Real Estate Financing': 'real-estate-financing.html', 'HELOC': 'heloc.html', 'Invoice Factoring': 'invoice-factoring.html', 'Ecommerce Funding': 'ecommerce-funding.html', 'Partner with us': 'partners.html', 'Our Story': 'about.html', 'Contact Us': 'contact.html', 'Customer stories': 'story.html', 'Funding guides': 'resources.html', })[l] || '#'; return ( ); } window.Footer = Footer;