// FooterV2 — bilingual, updated section map. function FooterV2() { const { lang } = React.useContext(window.LangContext); const { isMobile, isTablet } = window.useBreakpoint(); const sections = lang === 'de' ? [ ["Philosophie", "#philosophy"], ["Leistungen", "#capabilities"], ["Methode", "#method"], ["Einsatzfelder", "#notfor"], ["Bausteine", "#addons"], ["Positionierung","#position"], ["Notizen", "#thinking"], ] : [ ["Philosophy", "#philosophy"], ["Services", "#capabilities"], ["Method", "#method"], ["Focus Areas", "#notfor"], ["Add-ons", "#addons"], ["Position", "#position"], ["Notes", "#thinking"], ]; const practiceLabel = lang === 'de' ? "Praxis" : "Practice"; const connectLabel = lang === 'de' ? "Kontakt" : "Connect"; return ( ); } window.FooterV2 = FooterV2;