const FOOTER_I18N = { EN: { nav: [ { title: 'Services', links: [ { label: 'Managed IT Services', href: 'services/managed-it.html' }, { label: 'Database Management', href: 'services/database.html' }, { label: 'AI Solutions & Simulation', href: 'services/ai-simulation.html' }, { label: 'Medical Device Integration', href: 'services/medical-devices.html' }, { label: 'ServiceNow', href: 'services/servicenow.html' }, { label: 'Digital Services', href: 'services/digital.html' }, ] }, { title: 'Company', links: [ { label: 'About', href: 'about.html' }, { label: 'Case Studies', href: 'case-studies.html' }, { label: 'Insights', href: 'insights.html' }, { label: 'Careers', href: 'about.html' }, { label: 'Press', href: 'about.html' }, ] }, { title: 'Resources', links: [ { label: 'Documentation', href: 'insights.html' }, { label: 'Compliance & DPA', href: 'about.html' }, { label: 'Security', href: 'about.html' }, { label: 'Status', href: 'about.html' }, { label: 'Support', href: 'contact.html' }, { label: 'Contact Us', href: 'contact.html' }, ] }, ], tagline: 'Grey Space IT Services GmbH — helping organizations streamline operations with scalable, well-architected IT.', headquartersLabel: 'Headquarters', contactLabel: 'Contact', supportLine: '24/7 support desk', regions: ['Germany', 'USA', 'Europe', 'India', 'Pakistan'], newsletterTitle: 'Field notes from the operations side of IT.', newsletterSub: 'One brief email a month. No noise.', subscribe: 'Subscribe', legal: ['Impressum', 'Datenschutz', 'AGB', 'Cookies'], }, DE: { nav: [ { title: 'Leistungen', links: [ { label: 'Managed IT Services', href: 'services/managed-it.html' }, { label: 'Datenbankmanagement', href: 'services/database.html' }, { label: 'KI-Lösungen & Simulation', href: 'services/ai-simulation.html' }, { label: 'Integration Medizintechnik', href: 'services/medical-devices.html' }, { label: 'ServiceNow', href: 'services/servicenow.html' }, { label: 'Digital Services', href: 'services/digital.html' }, ] }, { title: 'Unternehmen', links: [ { label: 'Über uns', href: 'about.html' }, { label: 'Case Studies', href: 'case-studies.html' }, { label: 'Insights', href: 'insights.html' }, { label: 'Karriere', href: 'about.html' }, { label: 'Presse', href: 'about.html' }, ] }, { title: 'Ressourcen', links: [ { label: 'Dokumentation', href: 'insights.html' }, { label: 'Compliance & AVV', href: 'about.html' }, { label: 'Sicherheit', href: 'about.html' }, { label: 'Status', href: 'about.html' }, { label: 'Support', href: 'contact.html' }, { label: 'Kontakt', href: 'contact.html' }, ] }, ], tagline: 'Grey Space IT Services GmbH — wir helfen Unternehmen, ihre Abläufe mit skalierbarer, gut konzipierter IT zu optimieren.', headquartersLabel: 'Hauptsitz', contactLabel: 'Kontakt', supportLine: '24/7 Support-Desk', regions: ['Deutschland', 'USA', 'Europa', 'Indien', 'Pakistan'], newsletterTitle: 'Field Notes aus dem IT-Betrieb.', newsletterSub: 'Eine kurze E-Mail pro Monat. Kein Rauschen.', subscribe: 'Abonnieren', legal: ['Impressum', 'Datenschutz', 'AGB', 'Cookies'], }, }; function Footer({ base, lang = 'EN' }) { const F = FOOTER_I18N[lang] || FOOTER_I18N.EN; const FOOTER_NAV = F.nav; const B = base || ''; return ( ); } window.Footer = Footer;