// Deezer-aware Footer: links point to index-deezer.html / portfolio-deezer.html function FooterDeezer() { const isHome = (typeof window !== 'undefined') && ( window.location.pathname.endsWith('/index-deezer.html') || window.location.pathname.endsWith('/') ); const base = (typeof window !== 'undefined' && window.SITE_HOME) ? window.SITE_HOME : (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;