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