function Footer() { const isHome = (typeof window !== 'undefined') && ( window.location.pathname.endsWith('/') || window.location.pathname.endsWith('/index.html') || window.location.pathname === '' ); const base = isHome ? '' : 'index.html'; const link = (hash) => base + hash; const items = [ { href: link('#problemy'), label: 'Dla kogo' }, { href: link('#pomagam'), label: 'Jak pomagam' }, { href: 'portfolio.html', label: 'Portfolio' }, { href: link('#proces'), label: 'Współpraca' }, { href: link('#omnie'), label: 'O mnie' }, { href: link('#faq'), label: 'FAQ' }, ]; return ( ); } window.Footer = Footer;